diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index ceea615d5d7..d85d9e481f2 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,9 @@ ###### Things done -- [ ] Tested using sandboxing (`nix-build --option build-use-chroot true` or [nix.useChroot](http://nixos.org/nixos/manual/options.html#opt-nix.useChroot) on NixOS) +- [ ] Tested using sandboxing + ([nix.useSandbox](http://nixos.org/nixos/manual/options.html#opt-nix.useSandbox) on NixOS, + or option `build-use-sandbox` in [`nix.conf`](http://nixos.org/nix/manual/#sec-conf-file) + on non-NixOS) - Built on platform(s) - [ ] NixOS - [ ] OS X diff --git a/doc/beam-users-guide.xml b/doc/beam-users-guide.xml new file mode 100644 index 00000000000..c1a4c90bc27 --- /dev/null +++ b/doc/beam-users-guide.xml @@ -0,0 +1,376 @@ + + + User's Guide to the Beam Infrastructure +
+ Beam Languages (Erlang & Elixir) on Nix + + In this document and related Nix expressions we use the term + Beam to describe the environment. Beam is + the name of the Erlang Virtial Machine and, as far as we know, + from a packaging perspective all languages that run on Beam are + interchangable. The things that do change, like the build + system, are transperant to the users of the package. So we make + no distinction. + +
+
+ Build Tools +
+ Rebar3 + + By default Rebar3 wants to manage it's own dependencies. In the + normal non-Nix, this is perfectly acceptable. In the Nix world it + is not. To support this we have created two versions of rebar3, + rebar3 and rebar3-open. The + rebar3 version has been patched to remove the + ability to download anything from it. If you are not running it a + nix-shell or a nix-build then its probably not going to work for + you. rebar3-open is the normal, un-modified + rebar3. It should work exactly as would any other version of + rebar3. Any Erlang package should rely on + rebar3 and thats really what you should be + using too. + +
+
+ Mix & Erlang.mk + + Both Mix and Erlang.mk work exactly as you would expect. There + is a bootstrap process that needs to be run for both of + them. However, that is supported by the + buildMix and buildErlangMk derivations. + +
+ +
+ +
+ How to install Beam packages + + Beam packages are not registered in the top level simply because + they are not relevant to the vast majority of Nix users. They are + installable using the beamPackages attribute + set. + + You can list the avialable packages in the + beamPackages with the following command: + + + +$ nix-env -f "<nixpkgs>" -qaP -A beamPackages +beamPackages.esqlite esqlite-0.2.1 +beamPackages.goldrush goldrush-0.1.7 +beamPackages.ibrowse ibrowse-4.2.2 +beamPackages.jiffy jiffy-0.14.5 +beamPackages.lager lager-3.0.2 +beamPackages.meck meck-0.8.3 +beamPackages.rebar3-pc pc-1.1.0 + + + To install any of those packages into your profile, refer to them by + their attribute path (first column): + + +$ nix-env -f "<nixpkgs>" -iA beamPackages.ibrowse + + + The attribute path of any Beam packages corresponds to the name + of that particular package in Hex or its OTP Application/Release name. + +
+
+ Packaging Beam Applications +
+ Erlang Applications +
+ Rebar3 Packages + + There is a Nix functional called + buildRebar3. We use this function to make a + derivation that understands how to build the rebar3 project. For + example, the epression we use to build the hex2nix + project follows. + + + {stdenv, fetchFromGitHub, buildRebar3, ibrowse, jsx, erlware_commons }: + + buildRebar3 rec { + name = "hex2nix"; + version = "0.0.1"; + + src = fetchFromGitHub { + owner = "ericbmerritt"; + repo = "hex2nix"; + rev = "${version}"; + sha256 = "1w7xjidz1l5yjmhlplfx7kphmnpvqm67w99hd2m7kdixwdxq0zqg"; + }; + + beamDeps = [ ibrowse jsx erlware_commons ]; + } + + + The only visible difference between this derivation and + something like stdenv.mkDerivation is that we + have added erlangDeps to the derivation. If + you add your Beam dependencies here they will be correctly + handled by the system. + + + If your package needs to compile native code via Rebar's port + compilation mechenism. You should add compilePort = + true; to the derivation. + +
+
+ Erlang.mk Packages + + Erlang.mk functions almost identically to Rebar. The only real + difference is that buildErlangMk is called + instead of buildRebar3 + + + { buildErlangMk, fetchHex, cowlib, ranch }: + buildErlangMk { + name = "cowboy"; + version = "1.0.4"; + src = fetchHex { + pkg = "cowboy"; + version = "1.0.4"; + sha256 = + "6a0edee96885fae3a8dd0ac1f333538a42e807db638a9453064ccfdaa6b9fdac"; + }; + beamDeps = [ cowlib ranch ]; + + meta = { + description = ''Small, fast, modular HTTP server written in + Erlang.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/ninenines/cowboy"; + }; + } + +
+
+ Mix Packages + + Mix functions almost identically to Rebar. The only real + difference is that buildMix is called + instead of buildRebar3 + + + { buildMix, fetchHex, plug, absinthe }: + buildMix { + name = "absinthe_plug"; + version = "1.0.0"; + src = fetchHex { + pkg = "absinthe_plug"; + version = "1.0.0"; + sha256 = + "08459823fe1fd4f0325a8bf0c937a4520583a5a26d73b193040ab30a1dfc0b33"; + }; + beamDeps = [ plug absinthe]; + + meta = { + description = ''A plug for Absinthe, an experimental GraphQL + toolkit''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/CargoSense/absinthe_plug"; + }; + } + +
+
+
+
+ How to develop +
+ Accessing an Environment + + Often, all you want to do is be able to access a valid + environment that contains a specific package and its + dependencies. we can do that with the env + part of a derivation. For example, lets say we want to access an + erlang repl with ibrowse loaded up. We could do the following. + + + ~/w/nixpkgs ❯❯❯ nix-shell -A beamPackages.ibrowse.env --run "erl" + Erlang/OTP 18 [erts-7.0] [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false] + + Eshell V7.0 (abort with ^G) + 1> m(ibrowse). + Module: ibrowse + MD5: 3b3e0137d0cbb28070146978a3392945 + Compiled: January 10 2016, 23:34 + Object file: /nix/store/g1rlf65rdgjs4abbyj4grp37ry7ywivj-ibrowse-4.2.2/lib/erlang/lib/ibrowse-4.2.2/ebin/ibrowse.beam + Compiler options: [{outdir,"/tmp/nix-build-ibrowse-4.2.2.drv-0/hex-source-ibrowse-4.2.2/_build/default/lib/ibrowse/ebin"}, + debug_info,debug_info,nowarn_shadow_vars, + warn_unused_import,warn_unused_vars,warnings_as_errors, + {i,"/tmp/nix-build-ibrowse-4.2.2.drv-0/hex-source-ibrowse-4.2.2/_build/default/lib/ibrowse/include"}] + Exports: + add_config/1 send_req_direct/7 + all_trace_off/0 set_dest/3 + code_change/3 set_max_attempts/3 + get_config_value/1 set_max_pipeline_size/3 + get_config_value/2 set_max_sessions/3 + get_metrics/0 show_dest_status/0 + get_metrics/2 show_dest_status/1 + handle_call/3 show_dest_status/2 + handle_cast/2 spawn_link_worker_process/1 + handle_info/2 spawn_link_worker_process/2 + init/1 spawn_worker_process/1 + module_info/0 spawn_worker_process/2 + module_info/1 start/0 + rescan_config/0 start_link/0 + rescan_config/1 stop/0 + send_req/3 stop_worker_process/1 + send_req/4 stream_close/1 + send_req/5 stream_next/1 + send_req/6 terminate/2 + send_req_direct/4 trace_off/0 + send_req_direct/5 trace_off/2 + send_req_direct/6 trace_on/0 + trace_on/2 + ok + 2> + + + Notice the -A beamPackages.ibrowse.env.That + is the key to this functionality. + +
+
+ Creating a Shell + + Getting access to an environment often isn't enough to do real + development. Many times we need to create a + shell.nix file and do our development inside + of the environment specified by that file. This file looks a lot + like the packageing described above. The main difference is that + src points to project root and we call the + package directly. + + +{ pkgs ? import "<nixpkgs"> {} }: + +with pkgs; + +let + + f = { buildRebar3, ibrowse, jsx, erlware_commons }: + buildRebar3 { + name = "hex2nix"; + version = "0.1.0"; + src = ./.; + erlangDeps = [ ibrowse jsx erlware_commons ]; + }; + drv = beamPackages.callPackage f {}; + +in + drv + +
+ Building in a shell + + We can leveral the support of the Derivation, regardless of + which build Derivation is called by calling the commands themselv.s + + +# ============================================================================= +# Variables +# ============================================================================= + +NIX_TEMPLATES := "$(CURDIR)/nix-templates" + +TARGET := "$(PREFIX)" + +PROJECT_NAME := thorndyke + +NIXPKGS=../nixpkgs +NIX_PATH=nixpkgs=$(NIXPKGS) +NIX_SHELL=nix-shell -I "$(NIX_PATH)" --pure +# ============================================================================= +# Rules +# ============================================================================= +.PHONY= all test clean repl shell build test analyze configure install \ + test-nix-install publish plt analyze + +all: build + +guard-%: + @ if [ "${${*}}" == "" ]; then \ + echo "Environment variable $* not set"; \ + exit 1; \ + fi + +clean: + rm -rf _build + rm -rf .cache + +repl: + $(NIX_SHELL) --run "iex -pa './_build/prod/lib/*/ebin'" + +shell: + $(NIX_SHELL) + +configure: + $(NIX_SHELL) --command 'eval "$$configurePhase"' + +build: configure + $(NIX_SHELL) --command 'eval "$$buildPhase"' + +install: + $(NIX_SHELL) --command 'eval "$$installPhase"' + +test: + $(NIX_SHELL) --command 'mix test --no-start --no-deps-check' + +plt: + $(NIX_SHELL) --run "mix dialyzer.plt --no-deps-check" + +analyze: build plt + $(NIX_SHELL) --run "mix dialyzer --no-compile" + + + + If you add the shell.nix as described and + user rebar as follows things should simply work. Aside from the + test, plt, and + analyze the talks work just fine for all of + the build Derivations. + +
+
+
+
+ Generating Packages from Hex with Hex2Nix + + Updating the Hex packages requires the use of the + hex2nix tool. Given the path to the Erlang + modules (usually + pkgs/development/erlang-modules). It will + happily dump a file called + hex-packages.nix. That file will contain all + the packages that use a recognized build system in Hex. However, + it can't know whether or not all those packages are buildable. + + + To make life easier for our users, it makes good sense to go + ahead and attempt to build all those packages and remove the + ones that don't build. To do that, simply run the command (in + the root of your nixpkgs repository). that follows. + + +$ nix-build -A beamPackages + + + That will build every package in + beamPackages. Then you can go through and + manually remove the ones that fail. Hopefully, someone will + improve hex2nix in the future to automate + that. + +
+
diff --git a/doc/erlang-users-guide.xml b/doc/erlang-users-guide.xml deleted file mode 100644 index 074ae50b1c0..00000000000 --- a/doc/erlang-users-guide.xml +++ /dev/null @@ -1,305 +0,0 @@ - - -User's Guide to the Erlang Infrastructure -
- Build Tools - - By default Rebar3 wants to manage it's own dependencies. In the - normal non-Nix, this is perfectly acceptable. In the Nix world it - is not. To support this we have created two versions of rebar3, - rebar3 and rebar3-open. The - rebar3 version has been patched to remove the - ability to download anything from it. If you are not running it a - nix-shell or a nix-build then its probably not going to work for - you. rebar3-open is the normal, un-modified - rebar3. It should work exactly as would any other version of - rebar3. Any Erlang package should rely on - rebar3 and thats really what you should be - using too. - -
- -
- How to install Erlang packages - - Erlang packages are not registered in the top level simply because - they are not relevant to the vast majority of Nix users. They are - installable using the erlangPackages attribute set. - - You can list the avialable packages in the - erlangPackages with the following command: - - - -$ nix-env -f "<nixpkgs>" -qaP -A erlangPackages -erlangPackages.esqlite esqlite-0.2.1 -erlangPackages.goldrush goldrush-0.1.7 -erlangPackages.ibrowse ibrowse-4.2.2 -erlangPackages.jiffy jiffy-0.14.5 -erlangPackages.lager lager-3.0.2 -erlangPackages.meck meck-0.8.3 -erlangPackages.rebar3-pc pc-1.1.0 - - - To install any of those packages into your profile, refer to them by - their attribute path (first column): - - -$ nix-env -f "<nixpkgs>" -iA erlangPackages.ibrowse - - - The attribute path of any Erlang packages corresponds to the name - of that particular package in Hex or its OTP Application/Release name. - -
-
- Packaging Erlang Applications -
- Rebar3 Packages - - There is a Nix functional called - buildRebar3. We use this function to make a - derivation that understands how to build the rebar3 project. For - example, the epression we use to build the hex2nix - project follows. - - -{stdenv, fetchFromGitHub, buildRebar3, ibrowse, jsx, erlware_commons }: - -buildRebar3 rec { - name = "hex2nix"; - version = "0.0.1"; - - src = fetchFromGitHub { - owner = "ericbmerritt"; - repo = "hex2nix"; - rev = "${version}"; - sha256 = "1w7xjidz1l5yjmhlplfx7kphmnpvqm67w99hd2m7kdixwdxq0zqg"; - }; - - erlangDeps = [ ibrowse jsx erlware_commons ]; -} - - - The only visible difference between this derivation and - something like stdenv.mkDerivation is that we - have added erlangDeps to the derivation. If - you add your Erlang dependencies here they will be correctly - handled by the system. - - - If your package needs to compile native code via Rebar's port - compilation mechenism. You should add compilePort = - true; to the derivation. - -
- -
- Hex Packages - - Hex packages are based on Rebar packages. In fact, at the moment - we can only compile Hex packages that are buildable with - Rebar3. Packages that use Mix and other build systems are not - supported. That being said, we know a lot more about Hex and can - do more for you. - - -{ buildHex }: - buildHex { - name = "esqlite"; - version = "0.2.1"; - sha256 = "1296fn1lz4lz4zqzn4dwc3flgkh0i6n4sydg501faabfbv8d3wkr"; - compilePort = true; -} - - - For Hex packages you need to provide the name, the version, and - the Sha 256 digest of the package and use - buildHex to build it. Obviously, the package - needs to have already been published to Hex. - -
-
-
- How to develop -
- Accessing an Environment - - Often, all you want to do is be able to access a valid - environment that contains a specific package and its - dependencies. we can do that with the env - part of a derivation. For example, lets say we want to access an - erlang repl with ibrowse loaded up. We could do the following. - - - ~/w/nixpkgs ❯❯❯ nix-shell -A erlangPackages.ibrowse.env --run "erl" - Erlang/OTP 18 [erts-7.0] [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false] - - Eshell V7.0 (abort with ^G) - 1> m(ibrowse). - Module: ibrowse - MD5: 3b3e0137d0cbb28070146978a3392945 - Compiled: January 10 2016, 23:34 - Object file: /nix/store/g1rlf65rdgjs4abbyj4grp37ry7ywivj-ibrowse-4.2.2/lib/erlang/lib/ibrowse-4.2.2/ebin/ibrowse.beam - Compiler options: [{outdir,"/tmp/nix-build-ibrowse-4.2.2.drv-0/hex-source-ibrowse-4.2.2/_build/default/lib/ibrowse/ebin"}, - debug_info,debug_info,nowarn_shadow_vars, - warn_unused_import,warn_unused_vars,warnings_as_errors, - {i,"/tmp/nix-build-ibrowse-4.2.2.drv-0/hex-source-ibrowse-4.2.2/_build/default/lib/ibrowse/include"}] - Exports: - add_config/1 send_req_direct/7 - all_trace_off/0 set_dest/3 - code_change/3 set_max_attempts/3 - get_config_value/1 set_max_pipeline_size/3 - get_config_value/2 set_max_sessions/3 - get_metrics/0 show_dest_status/0 - get_metrics/2 show_dest_status/1 - handle_call/3 show_dest_status/2 - handle_cast/2 spawn_link_worker_process/1 - handle_info/2 spawn_link_worker_process/2 - init/1 spawn_worker_process/1 - module_info/0 spawn_worker_process/2 - module_info/1 start/0 - rescan_config/0 start_link/0 - rescan_config/1 stop/0 - send_req/3 stop_worker_process/1 - send_req/4 stream_close/1 - send_req/5 stream_next/1 - send_req/6 terminate/2 - send_req_direct/4 trace_off/0 - send_req_direct/5 trace_off/2 - send_req_direct/6 trace_on/0 - trace_on/2 - ok - 2> - - - Notice the -A erlangPackages.ibrowse.env.That - is the key to this functionality. - -
-
- Creating a Shell - - Getting access to an environment often isn't enough to do real - development. Many times we need to create a - shell.nix file and do our development inside - of the environment specified by that file. This file looks a lot - like the packageing described above. The main difference is that - src points to project root and we call the - package directly. - - -{ pkgs ? import "<nixpkgs"> {} }: - -with pkgs; - -let - - f = { buildHex, ibrowse, jsx, erlware_commons }: - buildHex { - name = "hex2nix"; - version = "0.1.0"; - src = ./.; - erlangDeps = [ ibrowse jsx erlware_commons ]; - }; - drv = erlangPackages.callPackage f {}; - -in - drv - -
- Building in a shell - - Unfortunatly for us users of Nix, Rebar isn't very cooperative - with us from the standpoint of building a hermetic - environment. When building the rebar3 support we had to do some - sneaky things to get it not to go out and pull packages on its - own. Also unfortunately, you have to do some of the same things - when building a project inside of a Nix shell. - - - - Run rebar3-nix-bootstrap every time - dependencies change - - - Set Home to the current directory. - - - - If you do these two things then Rebar will be happy with you. I - codify these into a makefile. Forunately, rebar3-nix-bootstrap - is idempotent and fairly quick. so you can run it as often as - you like. - - -# ============================================================================= -# Rules -# ============================================================================= -.PHONY= all test clean repl shell build test analyze bootstrap - -all: test - -clean: - rm -rf _build - rm -rf .cache - -repl: - nix-shell --run "erl" - -shell: - nix-shell --run "bash" - -bootstrap: - nix-shell --pure --run "rebar3-nix-bootstrap" - -build: bootstrap - nix-shell --pure --run "HOME=$(CURDIR) rebar3 compile" - -analyze: bootstrap - nix-shell --pure --run "HOME=$(CURDIR) rebar3 do compile,dialyzer" - -test: bootstrap - nix-shell --pure --run "HOME=$(CURDIR) rebar3 do compile,dialyzer,eunit" - - - - If you add the shell.nix as described and - user rebar as follows things should simply work. - -
-
-
-
- Generating Packages from Hex with Hex2Nix - - Updating the Hex packages requires the use of the - hex2nix tool. Given the path to the Erlang - modules (usually - pkgs/development/erlang-modules). It will - happily dump a file called - hex-packages.nix. That file will contain all - the packages that use a recognized build system in Hex. However, - it can't know whether or not all those packages are buildable. - - - To make life easier for our users, it makes good sense to go - ahead and attempt to build all those packages and remove the - ones that don't build. To do that, simply run the command (in - the root of your nixpkgs repository). that follows. - - -$ nix-build -A erlangPackages - - - That will build every package in - erlangPackages. Then you can go through and - manually remove the ones that fail. Hopefully, someone will - improve hex2nix in the future to automate - that. - -
-
diff --git a/doc/languages-frameworks/go.xml b/doc/languages-frameworks/go.xml index 89908b3b8ff..d715765f6a1 100644 --- a/doc/languages-frameworks/go.xml +++ b/doc/languages-frameworks/go.xml @@ -119,6 +119,6 @@ done - To extract dependency information from a Go package in automated way use go2nix. + To extract dependency information from a Go package in automated way use go2nix. diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md index 3ee25669f74..098df2dfa5d 100644 --- a/doc/languages-frameworks/python.md +++ b/doc/languages-frameworks/python.md @@ -108,7 +108,7 @@ toolz = buildPythonPackage rec{ version = "0.7.4"; src = pkgs.fetchurl{ - url = "https://pypi.python.org/packages/source/t/toolz/toolz-${version}.tar.gz"; + url = "mirror://pypi/t/toolz/toolz-${version}.tar.gz"; sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; }; @@ -146,7 +146,7 @@ pkgs.python35Packages.buildPythonPackage rec { version = "0.7.4"; src = pkgs.fetchurl{ - url = "https://pypi.python.org/packages/source/t/toolz/toolz-${version}.tar.gz"; + url = "mirror://pypi/t/toolz/toolz-${version}.tar.gz"; sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; }; @@ -175,7 +175,7 @@ with import {}; version = "0.7.4"; src = pkgs.fetchurl{ - url = "https://pypi.python.org/packages/source/t/toolz/toolz-${version}.tar.gz"; + url = "mirror://pypi/t/toolz/toolz-${version}.tar.gz"; sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; }; @@ -220,7 +220,7 @@ datashape = buildPythonPackage rec { version = "0.4.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/D/DataShape/${name}.tar.gz"; + url = "mirror://pypi/D/DataShape/${name}.tar.gz"; sha256 = "14b2ef766d4c9652ab813182e866f493475e65e558bed0822e38bf07bba1a278"; }; @@ -251,7 +251,7 @@ lxml = buildPythonPackage rec { name = "lxml-3.4.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/l/lxml/${name}.tar.gz"; + url = "mirror://pypi/l/lxml/${name}.tar.gz"; sha256 = "16a0fa97hym9ysdk3rmqz32xdjqmy4w34ld3rm3jf5viqjx65lxk"; }; @@ -282,7 +282,7 @@ pyfftw = buildPythonPackage rec { version = "0.9.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyFFTW/pyFFTW-${version}.tar.gz"; + url = "mirror://pypi/p/pyFFTW/pyFFTW-${version}.tar.gz"; sha256 = "f6bbb6afa93085409ab24885a1a3cdb8909f095a142f4d49e346f2bd1b789074"; }; @@ -373,7 +373,7 @@ buildPythonPackage rec { version = "0.7.4"; src = pkgs.fetchurl{ - url = "https://pypi.python.org/packages/source/t/toolz/toolz-${version}.tar.gz"; + url = "mirror://pypi/t/toolz/toolz-${version}.tar.gz"; sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; }; diff --git a/doc/manual.xml b/doc/manual.xml index de663fcd5b6..1045d0d4f81 100644 --- a/doc/manual.xml +++ b/doc/manual.xml @@ -21,7 +21,7 @@ - + diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 720824ee66e..871e7920a8d 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -14,6 +14,7 @@ adev = "Adrien Devresse "; Adjective-Object = "Maxwell Huang-Hobbs "; aespinosa = "Allan Espinosa "; + adnelson = "Allen Nelson "; aflatter = "Alexander Flatter "; aforemny = "Alexander Foremny "; afranchuk = "Alex Franchuk "; @@ -72,6 +73,7 @@ cfouche = "Chaddaï Fouché "; chaoflow = "Florian Friesdorf "; chattered = "Phil Scott "; + choochootrain = "Hurshal Patel "; christopherpoole = "Christopher Mark Poole "; cleverca22 = "Michael Bishop "; coconnor = "Corey O'Connor "; @@ -101,6 +103,7 @@ dmalikov = "Dmitry Malikov "; dochang = "Desmond O. Chang "; doublec = "Chris Double "; + drewkett = "Andrew Burkett "; ebzzry = "Rommel Martinez "; ederoyd46 = "Matthew Brown "; eduarrrd = "Eduard Bachmakov "; @@ -140,6 +143,7 @@ garrison = "Jim Garrison "; gavin = "Gavin Rogers "; gebner = "Gabriel Ebner "; + gilligan = "Tobias Pflug "; giogadi = "Luis G. Torres "; gleber = "Gleb Peregud "; globin = "Robin Gloster "; @@ -233,6 +237,7 @@ mirdhyn = "Merlin Gaillard "; modulistic = "Pablo Costa "; mog = "Matthew O'Gorman "; + moosingin3space = "Nathan Moos "; moretea = "Maarten Hoogendoorn "; mornfall = "Petr Ročkai "; MostAwesomeDude = "Corbin Simpson "; @@ -252,7 +257,7 @@ notthemessiah = "Brian Cohen "; np = "Nicolas Pouillard "; nslqqq = "Nikita Mikhailov "; - obadz = "obadz "; + obadz = "obadz "; ocharles = "Oliver Charles "; odi = "Oliver Dunkl "; offline = "Jaka Hudoklin "; @@ -289,11 +294,14 @@ pxc = "Patrick Callahan "; qknight = "Joachim Schiele "; ragge = "Ragnar Dahlen "; + rardiol = "Ricardo Ardissone "; + rasendubi = "Alexey Shmalko "; raskin = "Michael Raskin <7c6f434c@mail.ru>"; redbaron = "Maxim Ivanov "; refnil = "Martin Lavoie "; relrod = "Ricky Elrod "; renzo = "Renzo Carbonara "; + retrry = "Tadas Barzdžius "; rick68 = "Wei-Ming Yang "; rickynils = "Rickard Nilsson "; rnhmjoj = "Michele Guerini Rocco "; @@ -310,6 +318,7 @@ ryanartecona = "Ryan Artecona "; ryantm = "Ryan Mulligan "; rycee = "Robert Helgesson "; + ryneeverett = "Ryne Everett "; samuelrivas = "Samuel Rivas "; sander = "Sander van der Burg "; schmitthenner = "Fabian Schmitthenner "; @@ -336,6 +345,7 @@ spwhitt = "Spencer Whitt "; stephenmw = "Stephen Weinberg "; steveej = "Stefan Junker "; + swistak35 = "Rafał Łasocha "; szczyp = "Szczyp "; sztupi = "Attila Sztupak "; taeer = "Taeer Bar-Yam "; diff --git a/maintainers/scripts/copy-tarballs.pl b/maintainers/scripts/copy-tarballs.pl index b1233827ad8..db0cea3e670 100755 --- a/maintainers/scripts/copy-tarballs.pl +++ b/maintainers/scripts/copy-tarballs.pl @@ -22,6 +22,9 @@ use JSON; use Net::Amazon::S3; use Nix::Store; +isValidPath("/nix/store/foo"); # FIXME: forces Nix::Store initialisation + + # S3 setup. my $aws_access_key_id = $ENV{'AWS_ACCESS_KEY_ID'} or die; my $aws_secret_access_key = $ENV{'AWS_SECRET_ACCESS_KEY'} or die; @@ -127,6 +130,7 @@ elsif ($op eq "--expr") { my $url = $fetch->{url}; my $algo = $fetch->{type}; my $hash = $fetch->{hash}; + my $name = $fetch->{name}; if (defined $ENV{DEBUG}) { print "$url $algo $hash\n"; @@ -143,21 +147,34 @@ elsif ($op eq "--expr") { next; } - print STDERR "mirroring $url...\n"; + my $storePath = makeFixedOutputPath(0, $algo, $hash, $name); + + print STDERR "mirroring $url ($storePath)...\n"; next if $ENV{DRY_RUN}; - # Download the file using nix-prefetch-url. - $ENV{QUIET} = 1; - $ENV{PRINT_PATH} = 1; - my $fh; - my $pid = open($fh, "-|", "nix-prefetch-url", "--type", $algo, $url, $hash) or die; - waitpid($pid, 0) or die; - if ($? != 0) { - print STDERR "failed to fetch $url: $?\n"; - next; + # Substitute the output. + if (!isValidPath($storePath)) { + system("nix-store", "-r", $storePath); + } + + # Otherwise download the file using nix-prefetch-url. + if (!isValidPath($storePath)) { + $ENV{QUIET} = 1; + $ENV{PRINT_PATH} = 1; + my $fh; + my $pid = open($fh, "-|", "nix-prefetch-url", "--type", $algo, $url, $hash) or die; + waitpid($pid, 0) or die; + if ($? != 0) { + print STDERR "failed to fetch $url: $?\n"; + next; + } + <$fh>; my $storePath2 = <$fh>; chomp $storePath2; + if ($storePath ne $storePath2) { + warn "strange: $storePath != $storePath2\n"; + next; + } } - <$fh>; my $storePath = <$fh>; chomp $storePath; uploadFile($storePath, $url); $mirrored++; diff --git a/maintainers/scripts/find-tarballs.nix b/maintainers/scripts/find-tarballs.nix index ad79af90901..bd6afda900c 100644 --- a/maintainers/scripts/find-tarballs.nix +++ b/maintainers/scripts/find-tarballs.nix @@ -14,7 +14,7 @@ let operator = const [ ]; }); - urls = map (drv: { url = head (drv.urls or [ drv.url ]); hash = drv.outputHash; type = drv.outputHashAlgo; }) fetchurlDependencies; + urls = map (drv: { url = head (drv.urls or [ drv.url ]); hash = drv.outputHash; type = drv.outputHashAlgo; name = drv.name; }) fetchurlDependencies; fetchurlDependencies = filter diff --git a/maintainers/scripts/map-files.pl b/maintainers/scripts/map-files.pl deleted file mode 100644 index 96149a61549..00000000000 --- a/maintainers/scripts/map-files.pl +++ /dev/null @@ -1,22 +0,0 @@ -#! /usr/bin/perl -w - -use strict; - -my %map; -open LIST1, "<$ARGV[0]" or die; -while () { - /^(\S+)\s+(.*)$/; - $map{$1} = $2; -} - -open LIST1, "<$ARGV[1]" or die; -while () { - /^(\S+)\s+(.*)$/; - if (!defined $map{$1}) { - print STDERR "missing file: $2\n"; - next; - } - print "$2\n"; - print "$map{$1}\n"; -} - diff --git a/nixos/default.nix b/nixos/default.nix index 5d69b79e13a..5f3e2ae081c 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -39,5 +39,5 @@ in vmWithBootLoader = vmWithBootLoaderConfig.system.build.vm; # The following are used by nixos-rebuild. - nixFallback = pkgs.nixUnstable; + nixFallback = pkgs.nixUnstable.out; } diff --git a/nixos/doc/manual/configuration/config-file.xml b/nixos/doc/manual/configuration/config-file.xml index 9b240979273..3d1cdaf4c4a 100644 --- a/nixos/doc/manual/configuration/config-file.xml +++ b/nixos/doc/manual/configuration/config-file.xml @@ -106,11 +106,15 @@ networking.extraHosts = ''; - The main difference is that preceding whitespace is - automatically stripped from each line, and that characters like + The main difference is that it strips from each line + a number of spaces equal to the minimal indentation of + the string as a whole (disregarding the indentation of + empty lines), and that characters like " and \ are not special (making it more convenient for including things like shell - code). + code). + See more info about this in the Nix manual here. diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix index 86a39322ba5..50b1bb9c735 100644 --- a/nixos/doc/manual/default.nix +++ b/nixos/doc/manual/default.nix @@ -74,6 +74,63 @@ let ''; + manualXsltprocOptions = toString [ + "--param section.autolabel 1" + "--param section.label.includes.component.label 1" + "--stringparam html.stylesheet style.css" + "--param xref.with.number.and.title 1" + "--param toc.section.depth 3" + "--stringparam admon.style ''" + "--stringparam callout.graphics.extension .gif" + "--stringparam current.docid manual" + "--param chunk.section.depth 0" + "--param chunk.first.sections 1" + "--param use.id.as.filename 1" + "--stringparam generate.toc 'book toc appendix toc'" + "--stringparam chunk.toc ${toc}" + ]; + + olinkDB = stdenv.mkDerivation { + name = "manual-olinkdb"; + + inherit sources; + + buildInputs = [ libxml2 libxslt ]; + + buildCommand = '' + ${copySources} + + xsltproc \ + ${manualXsltprocOptions} \ + --stringparam collect.xref.targets only \ + --stringparam targets.filename "$out/manual.db" \ + --nonet --xinclude \ + ${docbook5_xsl}/xml/xsl/docbook/xhtml/chunktoc.xsl \ + ./manual.xml + + # Check the validity of the man pages sources. + xmllint --noout --nonet --xinclude --noxincludenode \ + --relaxng ${docbook5}/xml/rng/docbook/docbook.rng \ + ./man-pages.xml + + cat > "$out/olinkdb.xml" < + + ]> + + + Allows for cross-referencing olinks between the manpages + and the HTML/PDF manuals. + + + &manualtargets; + + EOF + ''; + }; + in rec { # The NixOS options in JSON format. @@ -116,18 +173,8 @@ in rec { dst=$out/share/doc/nixos mkdir -p $dst xsltproc \ - --param section.autolabel 1 \ - --param section.label.includes.component.label 1 \ - --stringparam html.stylesheet style.css \ - --param xref.with.number.and.title 1 \ - --param toc.section.depth 3 \ - --stringparam admon.style "" \ - --stringparam callout.graphics.extension .gif \ - --param chunk.section.depth 0 \ - --param chunk.first.sections 1 \ - --param use.id.as.filename 1 \ - --stringparam generate.toc "book toc appendix toc" \ - --stringparam chunk.toc ${toc} \ + ${manualXsltprocOptions} \ + --stringparam target.database.document "${olinkDB}/olinkdb.xml" \ --nonet --xinclude --output $dst/ \ ${docbook5_xsl}/xml/xsl/docbook/xhtml/chunktoc.xsl ./manual.xml @@ -159,6 +206,7 @@ in rec { dst=$out/share/doc/nixos mkdir -p $dst xmllint --xinclude manual.xml | dblatex -o $dst/manual.pdf - \ + -P target.database.document="${olinkDB}/olinkdb.xml" \ -P doc.collab.show=0 \ -P latex.output.revhistory=0 @@ -178,7 +226,7 @@ in rec { buildCommand = '' ${copySources} - # Check the validity of the manual sources. + # Check the validity of the man pages sources. xmllint --noout --nonet --xinclude --noxincludenode \ --relaxng ${docbook5}/xml/rng/docbook/docbook.rng \ ./man-pages.xml @@ -190,6 +238,7 @@ in rec { --param man.output.base.dir "'$out/share/man/'" \ --param man.endnotes.are.numbered 0 \ --param man.break.after.slash 1 \ + --stringparam target.database.document "${olinkDB}/olinkdb.xml" \ ${docbook5_xsl}/xml/xsl/docbook/manpages/docbook.xsl \ ./man-pages.xml ''; diff --git a/nixos/doc/manual/development/sources.xml b/nixos/doc/manual/development/sources.xml index 879a31e32c5..fd0b0109b32 100644 --- a/nixos/doc/manual/development/sources.xml +++ b/nixos/doc/manual/development/sources.xml @@ -11,35 +11,25 @@ uses the NixOS and Nixpkgs sources provided by the nixos-unstable channel (kept in /nix/var/nix/profiles/per-user/root/channels/nixos). To modify NixOS, however, you should check out the latest sources from -Git. This is done using the following command: +Git. This is as follows: -$ nixos-checkout /my/sources - - -or - - -$ mkdir -p /my/sources -$ cd /my/sources -$ nix-env -i git $ git clone git://github.com/NixOS/nixpkgs.git $ cd nixpkgs $ git remote add channels git://github.com/NixOS/nixpkgs-channels.git $ git remote update channels -This will check out the latest NixOS sources to -/my/sources/nixpkgs/nixos -and the Nixpkgs sources to -/my/sources/nixpkgs. -(The NixOS source tree lives in a subdirectory of the Nixpkgs -repository.) The remote channels refers to a -read-only repository that tracks the Nixpkgs/NixOS channels (see for more information about channels). Thus, -the Git branch channels/nixos-14.12 will contain -the latest built and tested version available in the -nixos-14.12 channel. +This will check out the latest Nixpkgs sources to +./nixpkgs the NixOS sources to +./nixpkgs/nixos. (The NixOS source tree lives in +a subdirectory of the Nixpkgs repository.) The remote +channels refers to a read-only repository that +tracks the Nixpkgs/NixOS channels (see +for more information about channels). Thus, the Git branch +channels/nixos-14.12 will contain the latest built +and tested version available in the nixos-14.12 +channel. It’s often inconvenient to develop directly on the master branch, since if somebody has just committed (say) a change to GCC, diff --git a/nixos/doc/manual/installation/installing-pxe.xml b/nixos/doc/manual/installation/installing-pxe.xml new file mode 100644 index 00000000000..7b7597c9162 --- /dev/null +++ b/nixos/doc/manual/installation/installing-pxe.xml @@ -0,0 +1,48 @@ +
+ +Booting from the <quote>netboot</quote> media (PXE) + + Advanced users may wish to install NixOS using an existing PXE or + iPXE setup. + + + These instructions assume that you have an existing PXE or iPXE + infrastructure and simply want to add the NixOS installer as another + option. To build the necessary files from a recent version of + nixpkgs, you can run: + + +nix-build -A netboot nixos/release.nix + + + This will create a result directory containing: * + bzImage – the Linux kernel * + initrd – the initrd file * + netboot.ipxe – an example ipxe script + demonstrating the appropriate kernel command line arguments for this + image + + + If you’re using plain PXE, configure your boot loader to use the + bzImage and initrd files and + have it provide the same kernel command line arguments found in + netboot.ipxe. + + + If you’re using iPXE, depending on how your HTTP/FTP/etc. server is + configured you may be able to use netboot.ipxe + unmodified, or you may need to update the paths to the files to + match your server’s directory layout + + + In the future we may begin making these files available as build + products from hydra at which point we will update this documentation + with instructions on how to obtain them either for placing on a + dedicated TFTP server or to boot them directly over the internet. + + +
diff --git a/nixos/doc/manual/installation/installing.xml b/nixos/doc/manual/installation/installing.xml index 4a0b3fee7c1..3e53062c3e8 100644 --- a/nixos/doc/manual/installation/installing.xml +++ b/nixos/doc/manual/installation/installing.xml @@ -270,5 +270,6 @@ $ reboot + diff --git a/nixos/doc/manual/release-notes/release-notes.xml b/nixos/doc/manual/release-notes/release-notes.xml index 2beaab00800..31a7ae04a4f 100644 --- a/nixos/doc/manual/release-notes/release-notes.xml +++ b/nixos/doc/manual/release-notes/release-notes.xml @@ -9,6 +9,7 @@ This section lists the release notes for each stable version of NixOS and current unstable revision. + diff --git a/nixos/doc/manual/release-notes/rl-1609.xml b/nixos/doc/manual/release-notes/rl-1609.xml new file mode 100644 index 00000000000..22dea802924 --- /dev/null +++ b/nixos/doc/manual/release-notes/rl-1609.xml @@ -0,0 +1,48 @@ +
+ +Release 16.09 (“Flounder”, 2016/09/??) + +In addition to numerous new and upgraded packages, this release +has the following highlights: + + + + + PXE "netboot" media has landed in . + See for documentation. + + + + +The following new services were added since the last release: + + + (this will get automatically generated at release time) + + + +When upgrading from a previous release, please be aware of the +following incompatible changes: + + + + todo + + + + +Other notable improvements: + + + + todo + + + + + +
diff --git a/nixos/lib/make-disk-image.nix b/nixos/lib/make-disk-image.nix index caf0ab4c07b..63666c99b23 100644 --- a/nixos/lib/make-disk-image.nix +++ b/nixos/lib/make-disk-image.nix @@ -81,14 +81,14 @@ pkgs.vmTools.runInLinuxVM ( # Register the paths in the Nix database. printRegistration=1 perl ${pkgs.pathsFromGraph} /tmp/xchg/closure | \ - chroot /mnt ${config.nix.package}/bin/nix-store --load-db --option build-users-group "" + chroot /mnt ${config.nix.package.out}/bin/nix-store --load-db --option build-users-group "" # Add missing size/hash fields to the database. FIXME: # exportReferencesGraph should provide these directly. - chroot /mnt ${config.nix.package}/bin/nix-store --verify --check-contents + chroot /mnt ${config.nix.package.out}/bin/nix-store --verify --check-contents # Create the system profile to allow nixos-rebuild to work. - chroot /mnt ${config.nix.package}/bin/nix-env --option build-users-group "" \ + chroot /mnt ${config.nix.package.out}/bin/nix-env --option build-users-group "" \ -p /nix/var/nix/profiles/system --set ${config.system.build.toplevel} # `nixos-rebuild' requires an /etc/NIXOS. diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix index 642aedc3f24..f2db428a444 100644 --- a/nixos/modules/config/pulseaudio.nix +++ b/nixos/modules/config/pulseaudio.nix @@ -98,9 +98,9 @@ in { package = mkOption { type = types.package; - default = pulseaudioLight; - defaultText = "pkgs.pulseaudioLight"; - example = literalExample "pkgs.pulseaudioFull"; + default = pulseaudioLight.out; + defaultText = "pkgs.pulseaudioLight.out"; + example = literalExample "pkgs.pulseaudioFull.out"; description = '' The PulseAudio derivation to use. This can be used to enable features (such as JACK support, Bluetooth) via the @@ -134,7 +134,7 @@ in { } (mkIf cfg.enable { - environment.systemPackages = [ cfg.package.out ]; + environment.systemPackages = [ cfg.package ]; environment.etc = singleton { target = "asound.conf"; @@ -158,7 +158,7 @@ in { wantedBy = [ "default.target" ]; serviceConfig = { Type = "notify"; - ExecStart = "${cfg.package}/bin/pulseaudio --daemonize=no"; + ExecStart = "${cfg.package.out}/bin/pulseaudio --daemonize=no"; Restart = "on-failure"; }; }; diff --git a/nixos/modules/hardware/all-firmware.nix b/nixos/modules/hardware/all-firmware.nix index d0d481f72a4..fb8e1ccab66 100644 --- a/nixos/modules/hardware/all-firmware.nix +++ b/nixos/modules/hardware/all-firmware.nix @@ -22,7 +22,11 @@ with lib; ###### implementation config = mkIf config.hardware.enableAllFirmware { - hardware.firmware = [ pkgs.firmwareLinuxNonfree pkgs.intel2200BGFirmware ]; + hardware.firmware = with pkgs; [ + firmwareLinuxNonfree + intel2200BGFirmware + rtl8723bs-firmware + ]; }; } diff --git a/nixos/modules/hardware/video/webcam/facetimehd.nix b/nixos/modules/hardware/video/webcam/facetimehd.nix index b35709763b9..2a2fcf3057d 100644 --- a/nixos/modules/hardware/video/webcam/facetimehd.nix +++ b/nixos/modules/hardware/video/webcam/facetimehd.nix @@ -31,13 +31,13 @@ in # unload module during suspend/hibernate as it crashes the whole system powerManagement.powerDownCommands = '' - ${pkgs.module_init_tools}/bin/rmmod -f facetimehd + ${pkgs.kmod}/bin/lsmod | ${pkgs.gnugrep}/bin/grep -q "^facetimehd" && ${pkgs.kmod}/bin/rmmod -f -v facetimehd ''; # and load it back on resume powerManagement.resumeCommands = '' export MODULE_DIR=/run/current-system/kernel-modules/lib/modules - ${pkgs.module_init_tools}/bin/modprobe -v facetimehd + ${pkgs.kmod}/bin/modprobe -v facetimehd ''; }; diff --git a/nixos/modules/installer/cd-dvd/channel.nix b/nixos/modules/installer/cd-dvd/channel.nix index 1e5e2b2615c..cd6e72755de 100644 --- a/nixos/modules/installer/cd-dvd/channel.nix +++ b/nixos/modules/installer/cd-dvd/channel.nix @@ -34,7 +34,7 @@ in if ! [ -e /var/lib/nixos/did-channel-init ]; then echo "unpacking the NixOS/Nixpkgs sources..." mkdir -p /nix/var/nix/profiles/per-user/root - ${config.nix.package}/bin/nix-env -p /nix/var/nix/profiles/per-user/root/channels \ + ${config.nix.package.out}/bin/nix-env -p /nix/var/nix/profiles/per-user/root/channels \ -i ${channelSources} --quiet --option build-use-substitutes false mkdir -m 0700 -p /root/.nix-defexpr ln -s /nix/var/nix/profiles/per-user/root/channels /root/.nix-defexpr/channels diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix index 5702e2d9a1e..c31ded977e6 100644 --- a/nixos/modules/installer/cd-dvd/iso-image.nix +++ b/nixos/modules/installer/cd-dvd/iso-image.nix @@ -364,12 +364,12 @@ in '' # After booting, register the contents of the Nix store on the # CD in the Nix database in the tmpfs. - ${config.nix.package}/bin/nix-store --load-db < /nix/store/nix-path-registration + ${config.nix.package.out}/bin/nix-store --load-db < /nix/store/nix-path-registration # nixos-rebuild also requires a "system" profile and an # /etc/NIXOS tag. touch /etc/NIXOS - ${config.nix.package}/bin/nix-env -p /nix/var/nix/profiles/system --set /run/current-system + ${config.nix.package.out}/bin/nix-env -p /nix/var/nix/profiles/system --set /run/current-system ''; # Add vfat support to the initrd to enable people to copy the diff --git a/nixos/modules/installer/cd-dvd/sd-image.nix b/nixos/modules/installer/cd-dvd/sd-image.nix index 9eba542d8c9..23312c073d5 100644 --- a/nixos/modules/installer/cd-dvd/sd-image.nix +++ b/nixos/modules/installer/cd-dvd/sd-image.nix @@ -113,11 +113,11 @@ in ${pkgs.e2fsprogs}/bin/resize2fs $rootPart # Register the contents of the initial Nix store - ${config.nix.package}/bin/nix-store --load-db < /nix-path-registration + ${config.nix.package.out}/bin/nix-store --load-db < /nix-path-registration # nixos-rebuild also requires a "system" profile and an /etc/NIXOS tag. touch /etc/NIXOS - ${config.nix.package}/bin/nix-env -p /nix/var/nix/profiles/system --set /run/current-system + ${config.nix.package.out}/bin/nix-env -p /nix/var/nix/profiles/system --set /run/current-system # Prevents this from running on later boots. rm -f /nix-path-registration diff --git a/nixos/modules/installer/cd-dvd/system-tarball-fuloong2f.nix b/nixos/modules/installer/cd-dvd/system-tarball-fuloong2f.nix index 6fe490b02bf..d984cb30717 100644 --- a/nixos/modules/installer/cd-dvd/system-tarball-fuloong2f.nix +++ b/nixos/modules/installer/cd-dvd/system-tarball-fuloong2f.nix @@ -52,8 +52,7 @@ in # Include some utilities that are useful for installing or repairing # the system. environment.systemPackages = - [ pkgs.subversion # for nixos-checkout - pkgs.w3m # needed for the manual anyway + [ pkgs.w3m # needed for the manual anyway pkgs.testdisk # useful for repairing boot problems pkgs.mssys # for writing Microsoft boot sectors / MBRs pkgs.parted diff --git a/nixos/modules/installer/cd-dvd/system-tarball-sheevaplug.nix b/nixos/modules/installer/cd-dvd/system-tarball-sheevaplug.nix index 7badfcb8df2..9e733241993 100644 --- a/nixos/modules/installer/cd-dvd/system-tarball-sheevaplug.nix +++ b/nixos/modules/installer/cd-dvd/system-tarball-sheevaplug.nix @@ -49,8 +49,7 @@ in # Include some utilities that are useful for installing or repairing # the system. environment.systemPackages = - [ pkgs.subversion # for nixos-checkout - pkgs.w3m # needed for the manual anyway + [ pkgs.w3m # needed for the manual anyway pkgs.ddrescue pkgs.ccrypt pkgs.cryptsetup # needed for dm-crypt volumes diff --git a/nixos/modules/installer/cd-dvd/system-tarball.nix b/nixos/modules/installer/cd-dvd/system-tarball.nix index 90e9b98a457..1962a1959ea 100644 --- a/nixos/modules/installer/cd-dvd/system-tarball.nix +++ b/nixos/modules/installer/cd-dvd/system-tarball.nix @@ -78,14 +78,14 @@ in # After booting, register the contents of the Nix store on the # CD in the Nix database in the tmpfs. if [ -f /nix-path-registration ]; then - ${config.nix.package}/bin/nix-store --load-db < /nix-path-registration && + ${config.nix.package.out}/bin/nix-store --load-db < /nix-path-registration && rm /nix-path-registration fi # nixos-rebuild also requires a "system" profile and an # /etc/NIXOS tag. touch /etc/NIXOS - ${config.nix.package}/bin/nix-env -p /nix/var/nix/profiles/system --set /run/current-system + ${config.nix.package.out}/bin/nix-env -p /nix/var/nix/profiles/system --set /run/current-system ''; }; diff --git a/nixos/modules/installer/netboot/netboot-base.nix b/nixos/modules/installer/netboot/netboot-base.nix new file mode 100644 index 00000000000..b12eaccf870 --- /dev/null +++ b/nixos/modules/installer/netboot/netboot-base.nix @@ -0,0 +1,20 @@ +# This module contains the basic configuration for building netboot +# images + +{ config, lib, pkgs, ... }: + +with lib; + +{ + imports = + [ ./netboot.nix + + # Profiles of this basic netboot media + ../../profiles/all-hardware.nix + ../../profiles/base.nix + ../../profiles/installation-device.nix + ]; + + # Allow the user to log in as root without a password. + users.extraUsers.root.initialHashedPassword = ""; +} diff --git a/nixos/modules/installer/netboot/netboot-minimal.nix b/nixos/modules/installer/netboot/netboot-minimal.nix new file mode 100644 index 00000000000..8ad6234edc7 --- /dev/null +++ b/nixos/modules/installer/netboot/netboot-minimal.nix @@ -0,0 +1,10 @@ +# This module defines a small netboot environment. + +{ config, lib, ... }: + +{ + imports = + [ ./netboot-base.nix + ../../profiles/minimal.nix + ]; +} diff --git a/nixos/modules/installer/netboot/netboot.nix b/nixos/modules/installer/netboot/netboot.nix new file mode 100644 index 00000000000..366591a8114 --- /dev/null +++ b/nixos/modules/installer/netboot/netboot.nix @@ -0,0 +1,91 @@ +# This module creates netboot media containing the given NixOS +# configuration. + +{ config, lib, pkgs, ... }: + +with lib; + +{ + options = { + + netboot.storeContents = mkOption { + example = literalExample "[ pkgs.stdenv ]"; + description = '' + This option lists additional derivations to be included in the + Nix store in the generated netboot image. + ''; + }; + + }; + + config = { + + boot.loader.grub.version = 2; + + # Don't build the GRUB menu builder script, since we don't need it + # here and it causes a cyclic dependency. + boot.loader.grub.enable = false; + + boot.initrd.postMountCommands = '' + mkdir -p /mnt-root/nix/store + mount -t squashfs /nix-store.squashfs /mnt-root/nix/store + ''; + + # !!! Hack - attributes expected by other modules. + system.boot.loader.kernelFile = "bzImage"; + environment.systemPackages = [ pkgs.grub2 pkgs.grub2_efi pkgs.syslinux ]; + + boot.consoleLogLevel = mkDefault 7; + + fileSystems."/" = + { fsType = "tmpfs"; + options = [ "mode=0755" ]; + }; + + boot.initrd.availableKernelModules = [ "squashfs" ]; + + boot.initrd.kernelModules = [ "loop" ]; + + # Closures to be copied to the Nix store, namely the init + # script and the top-level system configuration directory. + netboot.storeContents = + [ config.system.build.toplevel ]; + + # Create the squashfs image that contains the Nix store. + system.build.squashfsStore = import ../../../lib/make-squashfs.nix { + inherit (pkgs) stdenv squashfsTools perl pathsFromGraph; + storeContents = config.netboot.storeContents; + }; + + + # Create the initrd + system.build.netbootRamdisk = pkgs.makeInitrd { + inherit (config.boot.initrd) compressor; + prepend = [ "${config.system.build.initialRamdisk}/initrd" ]; + + contents = + [ { object = config.system.build.squashfsStore; + symlink = "/nix-store.squashfs"; + } + ]; + }; + + system.build.netbootIpxeScript = pkgs.writeTextDir "netboot.ipxe" "#!ipxe\nkernel bzImage init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams}\ninitrd initrd\nboot"; + + boot.loader.timeout = 10; + + boot.postBootCommands = + '' + # After booting, register the contents of the Nix store + # in the Nix database in the tmpfs. + ${config.nix.package}/bin/nix-store --load-db < /nix/store/nix-path-registration + + # nixos-rebuild also requires a "system" profile and an + # /etc/NIXOS tag. + touch /etc/NIXOS + ${config.nix.package}/bin/nix-env -p /nix/var/nix/profiles/system --set /run/current-system + ''; + + }; + +} diff --git a/nixos/modules/installer/tools/auto-upgrade.nix b/nixos/modules/installer/tools/auto-upgrade.nix index 79ccb5c3d18..b21b80c666a 100644 --- a/nixos/modules/installer/tools/auto-upgrade.nix +++ b/nixos/modules/installer/tools/auto-upgrade.nix @@ -78,7 +78,7 @@ let cfg = config.system.autoUpgrade; in HOME = "/root"; }; - path = [ pkgs.gnutar pkgs.xz.bin config.nix.package ]; + path = [ pkgs.gnutar pkgs.xz.bin config.nix.package.out ]; script = '' ${config.system.build.nixos-rebuild}/bin/nixos-rebuild switch ${toString cfg.flags} diff --git a/nixos/modules/installer/tools/nixos-checkout.nix b/nixos/modules/installer/tools/nixos-checkout.nix deleted file mode 100644 index 07274e139f7..00000000000 --- a/nixos/modules/installer/tools/nixos-checkout.nix +++ /dev/null @@ -1,60 +0,0 @@ -# This module generates the nixos-checkout script, which performs a -# checkout of the Nixpkgs Git repository. - -{ config, lib, pkgs, ... }: - -with lib; - -let - - nixosCheckout = pkgs.substituteAll { - name = "nixos-checkout"; - dir = "bin"; - isExecutable = true; - src = pkgs.writeScript "nixos-checkout" - '' - #! ${pkgs.stdenv.shell} -e - - if [ "$1" == "-h" ] || [ "$1" == "--help" ]; then - echo "Usage: `basename $0` [PREFIX]. See NixOS Manual for more info." - exit 0 - fi - - prefix="$1" - if [ -z "$prefix" ]; then prefix=/etc/nixos; fi - mkdir -p "$prefix" - cd "$prefix" - - if [ -z "$(type -P git)" ]; then - echo "installing Git..." - nix-env -iA nixos.git - fi - - # Move any old nixpkgs directories out of the way. - backupTimestamp=$(date "+%Y%m%d%H%M%S") - - if [ -e nixpkgs -a ! -e nixpkgs/.git ]; then - mv nixpkgs nixpkgs-$backupTimestamp - fi - - # Check out the Nixpkgs sources. - if ! [ -e nixpkgs/.git ]; then - echo "Creating repository in $prefix/nixpkgs..." - git init --quiet nixpkgs - else - echo "Updating repository in $prefix/nixpkgs..." - fi - cd nixpkgs - git remote add origin git://github.com/NixOS/nixpkgs.git || true - git remote add channels git://github.com/NixOS/nixpkgs-channels.git || true - git remote set-url origin --push git@github.com:NixOS/nixpkgs.git - git remote update - git checkout master - ''; - }; - -in - -{ - environment.systemPackages = [ nixosCheckout ]; -} diff --git a/nixos/modules/installer/tools/nixos-rebuild.sh b/nixos/modules/installer/tools/nixos-rebuild.sh index cd30958d9e8..5ecdcdb3cdb 100644 --- a/nixos/modules/installer/tools/nixos-rebuild.sh +++ b/nixos/modules/installer/tools/nixos-rebuild.sh @@ -271,7 +271,7 @@ remotePATH= if [ -n "$buildNix" ]; then echo "building Nix..." >&2 nixDrv= - if ! nixDrv="$(nix-instantiate '' --add-root $tmpDir/nix.drv --indirect -A config.nix.package "${extraBuildFlags[@]}")"; then + if ! nixDrv="$(nix-instantiate '' --add-root $tmpDir/nix.drv --indirect -A config.nix.package.out "${extraBuildFlags[@]}")"; then if ! nixDrv="$(nix-instantiate '' --add-root $tmpDir/nix.drv --indirect -A nixFallback "${extraBuildFlags[@]}")"; then if ! nixDrv="$(nix-instantiate '' --add-root $tmpDir/nix.drv --indirect -A nix "${extraBuildFlags[@]}")"; then nixStorePath="$(prebuiltNix "$(uname -m)")" diff --git a/nixos/modules/installer/tools/tools.nix b/nixos/modules/installer/tools/tools.nix index 9ac3b7a5b16..b8fd9deaf1e 100644 --- a/nixos/modules/installer/tools/tools.nix +++ b/nixos/modules/installer/tools/tools.nix @@ -22,17 +22,17 @@ let src = ./nixos-install.sh; inherit (pkgs) perl pathsFromGraph; - nix = config.nix.package; + nix = config.nix.package.out; nixClosure = pkgs.runCommand "closure" - { exportReferencesGraph = ["refs" config.nix.package]; } + { exportReferencesGraph = ["refs" config.nix.package.out]; } "cp refs $out"; }; nixos-rebuild = makeProg { name = "nixos-rebuild"; src = ./nixos-rebuild.sh; - nix = config.nix.package; + nix = config.nix.package.out; }; nixos-generate-config = makeProg { diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index 9e6bbc74438..7e40c136667 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -263,6 +263,8 @@ caddy = 239; taskd = 240; factorio = 241; + emby = 242; + graylog = 243; # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! @@ -497,6 +499,7 @@ caddy = 239; taskd = 240; factorio = 241; + emby = 242; # 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/module-list.nix b/nixos/modules/module-list.nix index 756804b5d09..38d06926170 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -47,7 +47,6 @@ ./i18n/input-method/nabi.nix ./i18n/input-method/uim.nix ./installer/tools/auto-upgrade.nix - ./installer/tools/nixos-checkout.nix ./installer/tools/tools.nix ./misc/assertions.nix ./misc/crashdump.nix @@ -71,6 +70,7 @@ ./programs/kbdlight.nix ./programs/light.nix ./programs/man.nix + ./programs/mosh.nix ./programs/nano.nix ./programs/screen.nix ./programs/shadow.nix @@ -158,6 +158,7 @@ ./services/desktops/gnome3/tracker.nix ./services/desktops/profile-sync-daemon.nix ./services/desktops/telepathy.nix + ./services/development/hoogle.nix ./services/games/factorio.nix ./services/games/ghost-one.nix ./services/games/minecraft-server.nix @@ -182,6 +183,7 @@ ./services/hardware/thermald.nix ./services/logging/awstats.nix ./services/logging/fluentd.nix + ./services/logging/graylog.nix ./services/logging/klogd.nix ./services/logging/logcheck.nix ./services/logging/logrotate.nix @@ -215,6 +217,7 @@ ./services/misc/dictd.nix ./services/misc/disnix.nix ./services/misc/docker-registry.nix + ./services/misc/emby.nix ./services/misc/etcd.nix ./services/misc/felix.nix ./services/misc/folding-at-home.nix @@ -336,6 +339,7 @@ ./services/networking/kippo.nix ./services/networking/lambdabot.nix ./services/networking/libreswan.nix + ./services/networking/logmein-hamachi.nix ./services/networking/mailpile.nix ./services/networking/mfi.nix ./services/networking/mjpg-streamer.nix @@ -398,6 +402,7 @@ ./services/networking/wicd.nix ./services/networking/wpa_supplicant.nix ./services/networking/xinetd.nix + ./services/networking/zerobin.nix ./services/networking/zerotierone.nix ./services/networking/znc.nix ./services/printing/cupsd.nix diff --git a/nixos/modules/profiles/docker-container.nix b/nixos/modules/profiles/docker-container.nix index df762b7ac58..433492b9613 100644 --- a/nixos/modules/profiles/docker-container.nix +++ b/nixos/modules/profiles/docker-container.nix @@ -37,12 +37,12 @@ in { # After booting, register the contents of the Nix store in the Nix # database. if [ -f /nix-path-registration ]; then - ${config.nix.package}/bin/nix-store --load-db < /nix-path-registration && + ${config.nix.package.out}/bin/nix-store --load-db < /nix-path-registration && rm /nix-path-registration fi # nixos-rebuild also requires a "system" profile - ${config.nix.package}/bin/nix-env -p /nix/var/nix/profiles/system --set /run/current-system + ${config.nix.package.out}/bin/nix-env -p /nix/var/nix/profiles/system --set /run/current-system ''; # Install new init script diff --git a/nixos/modules/programs/mosh.nix b/nixos/modules/programs/mosh.nix new file mode 100644 index 00000000000..b478f8e180f --- /dev/null +++ b/nixos/modules/programs/mosh.nix @@ -0,0 +1,26 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.programs.mosh; + +in +{ + options.programs.mosh = { + enable = mkOption { + description = '' + Whether to enable mosh. Note, this will open ports in your firewall! + ''; + default = false; + example = true; + type = lib.types.bool; + }; + }; + + config = mkIf cfg.enable { + environment.systemPackages = with pkgs; [ mosh ]; + networking.firewall.allowedUDPPortRanges = [ { from = 60000; to = 61000; } ]; + }; +} diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 84eccfd5129..6b02446d53b 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -68,6 +68,10 @@ with lib; # proxy (mkRenamedOptionModule [ "nix" "proxy" ] [ "networking" "proxy" "default" ]) + # sandboxing + (mkRenamedOptionModule [ "nix" "useChroot" ] [ "nix" "useSandbox" ]) + (mkRenamedOptionModule [ "nix" "chrootDirs" ] [ "nix" "sandboxPaths" ]) + # KDE (mkRenamedOptionModule [ "kde" "extraPackages" ] [ "environment" "systemPackages" ]) (mkRenamedOptionModule [ "environment" "kdePackages" ] [ "environment" "systemPackages" ]) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 236206026c3..11668162808 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -234,7 +234,8 @@ in systemd.services.grsec-lock = mkIf cfg.config.sysctl { description = "grsecurity sysctl-lock Service"; - requires = [ "systemd-sysctl.service" ]; + wants = [ "systemd-sysctl.service" ]; + after = [ "systemd-sysctl.service" ]; wantedBy = [ "multi-user.target" ]; serviceConfig.Type = "oneshot"; serviceConfig.RemainAfterExit = "yes"; diff --git a/nixos/modules/services/backup/crashplan.nix b/nixos/modules/services/backup/crashplan.nix index 94aa3b17b66..a69526f968b 100644 --- a/nixos/modules/services/backup/crashplan.nix +++ b/nixos/modules/services/backup/crashplan.nix @@ -50,11 +50,8 @@ with lib; ensureDir ${crashplan.vardir}/log 777 cp -avn ${crashplan}/conf.template/* ${crashplan.vardir}/conf for x in app.asar bin EULA.txt install.vars lang lib libjniwrap64.so libjniwrap.so libjtux64.so libjtux.so libmd564.so libmd5.so share skin upgrade; do - if [ -e ${crashplan.vardir}/$x ]; then - true; - else - ln -s ${crashplan}/$x ${crashplan.vardir}/$x; - fi; + rm -f ${crashplan.vardir}/$x; + ln -sf ${crashplan}/$x ${crashplan.vardir}/$x; done ''; diff --git a/nixos/modules/services/databases/postgresql.nix b/nixos/modules/services/databases/postgresql.nix index 31ffe51c11e..80ee32f4ee3 100644 --- a/nixos/modules/services/databases/postgresql.nix +++ b/nixos/modules/services/databases/postgresql.nix @@ -242,7 +242,7 @@ in if test -e "${cfg.dataDir}/.first_startup"; then ${optionalString (cfg.initialScript != null) '' - cat "${cfg.initialScript}" | psql --port=${toString cfg.port} postgres + psql -f "${cfg.initialScript}" --port=${toString cfg.port} postgres ''} rm -f "${cfg.dataDir}/.first_startup" fi diff --git a/nixos/modules/services/development/hoogle.nix b/nixos/modules/services/development/hoogle.nix new file mode 100644 index 00000000000..90aa04d2762 --- /dev/null +++ b/nixos/modules/services/development/hoogle.nix @@ -0,0 +1,70 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.hoogle; + + hoogleEnv = pkgs.buildEnv { + name = "hoogle"; + paths = [ (cfg.haskellPackages.ghcWithHoogle cfg.packages) ]; + }; + +in { + + options.services.hoogle = { + enable = mkEnableOption "Haskell documentation server"; + + port = mkOption { + type = types.int; + default = 8080; + description = '' + Port number Hoogle will be listening to. + ''; + }; + + packages = mkOption { + default = hp: []; + defaultText = "hp: []"; + example = "hp: with hp; [ text lens ]"; + description = '' + The Haskell packages to generate documentation for. + + The option value is a function that takes the package set specified in + the haskellPackages option as its sole parameter and + returns a list of packages. + ''; + }; + + haskellPackages = mkOption { + description = "Which haskell package set to use."; + default = pkgs.haskellPackages; + defaultText = "pkgs.haskellPackages"; + }; + + }; + + config = mkIf cfg.enable { + systemd.services.hoogle = { + description = "Haskell documentation server"; + + wantedBy = [ "multi-user.target" ]; + + serviceConfig = { + Restart = "always"; + ExecStart = ''${hoogleEnv}/bin/hoogle server --local -p ${toString cfg.port}''; + + User = "nobody"; + Group = "nogroup"; + + PrivateTmp = true; + ProtectHome = true; + + RuntimeDirectory = "hoogle"; + WorkingDirectory = "%t/hoogle"; + }; + }; + }; + +} diff --git a/nixos/modules/services/hardware/sane_extra_backends/brscan4.nix b/nixos/modules/services/hardware/sane_extra_backends/brscan4.nix new file mode 100644 index 00000000000..3ec74458cd2 --- /dev/null +++ b/nixos/modules/services/hardware/sane_extra_backends/brscan4.nix @@ -0,0 +1,116 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.hardware.sane.brscan4; + + netDeviceList = attrValues cfg.netDevices; + + etcFiles = pkgs.callPackage ./brscan4_etc_files.nix { netDevices = netDeviceList; }; + + netDeviceOpts = { name, config, ... }: { + + options = { + + name = mkOption { + type = types.str; + description = '' + The friendly name you give to the network device. If undefined, + the name of attribute will be used. + ''; + + example = literalExample "office1"; + }; + + model = mkOption { + type = types.str; + description = '' + The model of the network device. + ''; + + example = literalExample "MFC-7860DW"; + }; + + ip = mkOption { + type = with types; nullOr str; + default = null; + description = '' + The ip address of the device. If undefined, you will have to + provide a nodename. + ''; + + example = literalExample "192.168.1.2"; + }; + + nodename = mkOption { + type = with types; nullOr str; + default = null; + description = '' + The node name of the device. If undefined, you will have to + provide an ip. + ''; + + example = literalExample "BRW0080927AFBCE"; + }; + + }; + + + config = + { name = mkDefault name; + }; + }; + +in + +{ + options = { + + hardware.sane.brscan4.enable = + mkEnableOption "Brother's brscan4 scan backend" // { + description = '' + When enabled, will automatically register the "brscan4" sane + backend and bring configuration files to their expected location. + ''; + }; + + hardware.sane.brscan4.netDevices = mkOption { + default = {}; + example = + { office1 = { model = "MFC-7860DW"; ip = "192.168.1.2"; }; + office2 = { model = "MFC-7860DW"; nodename = "BRW0080927AFBCE"; }; + }; + type = types.loaOf types.optionSet; + description = '' + The list of network devices that will be registered against the brscan4 + sane backend. + ''; + options = [ netDeviceOpts ]; + }; + }; + + config = mkIf (config.hardware.sane.enable && cfg.enable) { + + hardware.sane.extraBackends = [ + pkgs.brscan4 + ]; + + environment.etc = singleton { + target = "opt/brother/scanner/brscan4"; + source = "${etcFiles}/etc/opt/brother/scanner/brscan4"; + }; + + assertions = [ + { assertion = all (x: !(null != x.ip && null != x.nodename)) netDeviceList; + + message = '' + When describing a network device as part of the attribute list + `hardware.sane.brscan4.netDevices`, only one of its `ip` or `nodename` + attribute should be specified, not both! + ''; + } + ]; + + }; +} \ No newline at end of file diff --git a/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix b/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix new file mode 100644 index 00000000000..bd114f0d2cc --- /dev/null +++ b/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix @@ -0,0 +1,71 @@ +{ stdenv, lib, brscan4, netDevices ? [] }: + +/* + +Testing +------- + +No net devices: + +~~~ +nix-shell -E 'with import { }; brscan4-etc-files' +~~~ + +Two net devices: + +~~~ +nix-shell -E 'with import { }; brscan4-etc-files.override{netDevices=[{name="a"; model="MFC-7860DW"; nodename="BRW0080927AFBCE";} {name="b"; model="MFC-7860DW"; ip="192.168.1.2";}];}' +~~~ + +*/ + +with lib; + +let + + addNetDev = nd: '' + brsaneconfig4 -a \ + name="${nd.name}" \ + model="${nd.model}" \ + ${if (hasAttr "nodename" nd && nd.nodename != null) then + ''nodename="${nd.nodename}"'' else + ''ip="${nd.ip}"''}''; + addAllNetDev = xs: concatStringsSep "\n" (map addNetDev xs); +in + +stdenv.mkDerivation rec { + + name = "brscan4-etc-files-0.4.3-3"; + src = "${brscan4}/opt/brother/scanner/brscan4"; + + nativeBuildInputs = [ brscan4 ]; + + configurePhase = ":"; + + buildPhase = '' + TARGET_DIR="$out/etc/opt/brother/scanner/brscan4" + mkdir -p "$TARGET_DIR" + cp -rp "./models4" "$TARGET_DIR" + cp -rp "./Brsane4.ini" "$TARGET_DIR" + cp -rp "./brsanenetdevice4.cfg" "$TARGET_DIR" + + export BRSANENETDEVICE4_CFG_FILENAME="$TARGET_DIR/brsanenetdevice4.cfg" + + printf '${addAllNetDev netDevices}\n' + + ${addAllNetDev netDevices} + ''; + + installPhase = ":"; + + dontStrip = true; + dontPatchELF = true; + + meta = { + description = "Brother brscan4 sane backend driver etc files"; + homepage = http://www.brother.com; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.unfree; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; + }; +} diff --git a/nixos/modules/services/logging/graylog.nix b/nixos/modules/services/logging/graylog.nix new file mode 100644 index 00000000000..a7785decd19 --- /dev/null +++ b/nixos/modules/services/logging/graylog.nix @@ -0,0 +1,161 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.graylog; + configBool = b: if b then "true" else "false"; + + confFile = pkgs.writeText "graylog.conf" '' + is_master = ${configBool cfg.isMaster} + node_id_file = ${cfg.nodeIdFile} + password_secret = ${cfg.passwordSecret} + root_username = ${cfg.rootUsername} + root_password_sha2 = ${cfg.rootPasswordSha2} + elasticsearch_cluster_name = ${cfg.elasticsearchClusterName} + elasticsearch_discovery_zen_ping_multicast_enabled = ${configBool cfg.elasticsearchDiscoveryZenPingMulticastEnabled} + elasticsearch_discovery_zen_ping_unicast_hosts = ${cfg.elasticsearchDiscoveryZenPingUnicastHosts} + message_journal_dir = ${cfg.messageJournalDir} + mongodb_uri = ${cfg.mongodbUri} + + ${cfg.extraConfig} + ''; +in + +{ + ###### interface + + options = { + + services.graylog = { + + enable = mkEnableOption "Graylog"; + + package = mkOption { + type = types.package; + default = pkgs.graylog; + defaultText = "pkgs.graylog"; + example = literalExample "pkgs.graylog"; + description = "Graylog package to use."; + }; + + user = mkOption { + type = types.str; + default = "graylog"; + example = literalExample "graylog"; + description = "User account under which graylog runs"; + }; + + isMaster = mkOption { + type = types.bool; + default = true; + description = "Whether this is the master instance of your Graylog cluster"; + }; + + nodeIdFile = mkOption { + type = types.str; + default = "/var/lib/graylog/server/node-id"; + description = "Path of the file containing the graylog node-id"; + }; + + passwordSecret = mkOption { + type = types.str; + description = '' + You MUST set a secret to secure/pepper the stored user passwords here. Use at least 64 characters. + Generate one by using for example: pwgen -N 1 -s 96 + ''; + }; + + rootUsername = mkOption { + type = types.str; + default = "admin"; + description = "Name of the default administrator user"; + }; + + rootPasswordSha2 = mkOption { + type = types.str; + example = "e3c652f0ba0b4801205814f8b6bc49672c4c74e25b497770bb89b22cdeb4e952"; + description = '' + You MUST specify a hash password for the root user (which you only need to initially set up the + system and in case you lose connectivity to your authentication backend) + This password cannot be changed using the API or via the web interface. If you need to change it, + modify it here. + Create one by using for example: echo -n yourpassword | shasum -a 256 + and use the resulting hash value as string for the option + ''; + }; + + elasticsearchClusterName = mkOption { + type = types.str; + example = "graylog"; + description = "This must be the same as for your Elasticsearch cluster"; + }; + + elasticsearchDiscoveryZenPingMulticastEnabled = mkOption { + type = types.bool; + default = false; + description = "Whether to use elasticsearch multicast discovery"; + }; + + elasticsearchDiscoveryZenPingUnicastHosts = mkOption { + type = types.str; + default = "127.0.0.1:9300"; + description = "Tells Graylogs Elasticsearch client how to find other cluster members. See Elasticsearch documentation for details"; + }; + + messageJournalDir = mkOption { + type = types.str; + default = "/var/lib/graylog/data/journal"; + description = "The directory which will be used to store the message journal. The directory must be exclusively used by Graylog and must not contain any other files than the ones created by Graylog itself"; + }; + + mongodbUri = mkOption { + type = types.str; + default = "mongodb://localhost/graylog"; + description = "MongoDB connection string. See http://docs.mongodb.org/manual/reference/connection-string/ for details"; + }; + + extraConfig = mkOption { + type = types.str; + default = ""; + description = "Any other configuration options you might want to add"; + }; + + }; + }; + + + ###### implementation + + config = mkIf cfg.enable { + + users.extraUsers = mkIf (cfg.user == "graylog") { + graylog = { + uid = config.ids.uids.graylog; + description = "Graylog server daemon user"; + }; + }; + + systemd.services.graylog = with pkgs; { + description = "Graylog Server"; + wantedBy = [ "multi-user.target" ]; + environment = { + JAVA_HOME = jre; + GRAYLOG_CONF = "${confFile}"; + }; + path = [ pkgs.openjdk8 pkgs.which pkgs.procps ]; + preStart = '' + mkdir -p /var/lib/graylog -m 755 + chown -R ${cfg.user} /var/lib/graylog + + mkdir -p ${cfg.messageJournalDir} -m 755 + chown -R ${cfg.user} ${cfg.messageJournalDir} + ''; + serviceConfig = { + User="${cfg.user}"; + PermissionsStartOnly=true; + ExecStart = "${cfg.package}/bin/graylogctl run"; + }; + }; + }; +} diff --git a/nixos/modules/services/logging/logcheck.nix b/nixos/modules/services/logging/logcheck.nix index 6069262b470..3a85fa60fe7 100644 --- a/nixos/modules/services/logging/logcheck.nix +++ b/nixos/modules/services/logging/logcheck.nix @@ -11,7 +11,10 @@ let rm $out/logcheck.* ''; - rulesDir = pkgs.symlinkJoin "logcheck-rules-dir" ([ defaultRules ] ++ cfg.extraRulesDirs); + rulesDir = pkgs.symlinkJoin + { name = "logcheck-rules-dir"; + paths = ([ defaultRules ] ++ cfg.extraRulesDirs); + }; configFile = pkgs.writeText "logcheck.conf" cfg.config; diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix index 127c3da69d1..47e374d8edc 100644 --- a/nixos/modules/services/mail/dovecot.nix +++ b/nixos/modules/services/mail/dovecot.nix @@ -63,8 +63,10 @@ let cfg.extraConfig ]; - modulesDir = pkgs.symlinkJoin "dovecot-modules" - (map (pkg: "${pkg}/lib/dovecot") ([ dovecotPkg ] ++ map (module: module.override { dovecot = dovecotPkg; }) cfg.modules)); + modulesDir = pkgs.symlinkJoin { + name = "dovecot-modules"; + paths = map (pkg: "${pkg}/lib/dovecot") ([ dovecotPkg ] ++ map (module: module.override { dovecot = dovecotPkg; }) cfg.modules); + }; in { diff --git a/nixos/modules/services/mail/rmilter.nix b/nixos/modules/services/mail/rmilter.nix index a6e2a9fc780..d1f7cd2e173 100644 --- a/nixos/modules/services/mail/rmilter.nix +++ b/nixos/modules/services/mail/rmilter.nix @@ -7,9 +7,14 @@ let rspamdCfg = config.services.rspamd; cfg = config.services.rmilter; + inetSockets = map (sock: let s = stringSplit ":" sock; in "inet:${last s}:${head s}") cfg.bindInetSockets; + unixSockets = map (sock: "unix:${sock}") cfg.bindUnixSockets; + + allSockets = unixSockets ++ inetSockets; + rmilterConf = '' pidfile = /run/rmilter/rmilter.pid; -bind_socket = ${cfg.bindSocket}; +bind_socket = ${if cfg.socketActivation then "fd:3" else concatStringsSep ", " allSockets}; tempdir = /tmp; '' + (with cfg.rspamd; if enable then '' @@ -68,14 +73,37 @@ in ''; }; - bindSocket = mkOption { - type = types.string; - default = "unix:/run/rmilter/rmilter.sock"; - description = "Socket to listed for MTA requests"; + bindUnixSockets = mkOption { + type = types.listOf types.str; + default = ["/run/rmilter.sock"]; + description = '' + Unix domain sockets to listen for MTA requests. + ''; example = '' - "unix:/run/rmilter/rmilter.sock" or - "inet:11990@127.0.0.1" - ''; + [ "/run/rmilter.sock"] + ''; + }; + + bindInetSockets = mkOption { + type = types.listOf types.str; + default = []; + description = '' + Inet addresses to listen (in format accepted by systemd.socket) + ''; + example = '' + ["127.0.0.1:11990"] + ''; + }; + + socketActivation = mkOption { + type = types.bool; + default = true; + description = '' + Enable systemd socket activation for rmilter. + (disabling socket activation not recommended + when unix socket used, and follow to wrong + permissions on unix domain socket.) + ''; }; rspamd = { @@ -86,7 +114,7 @@ in servers = mkOption { type = types.listOf types.str; - default = ["r:0.0.0.0:11333"]; + default = ["r:/run/rspamd.sock"]; description = '' Spamd socket definitions. Is server name is prefixed with r: it is rspamd server. @@ -129,7 +157,7 @@ in type = types.str; description = "Addon to postfix configuration"; default = '' -smtpd_milters = ${cfg.bindSocket} +smtpd_milters = ${head allSockets} # or for TCP socket # # smtpd_milters = inet:localhost:9900 milter_protocol = 6 @@ -169,21 +197,30 @@ milter_default_action = accept serviceConfig = { ExecStart = "${pkgs.rmilter}/bin/rmilter ${optionalString cfg.debug "-d"} -n -c ${rmilterConfigFile}"; + ExecReload = "/bin/kill -USR1 $MAINPID"; User = cfg.user; Group = cfg.group; PermissionsStartOnly = true; Restart = "always"; + RuntimeDirectory = "rmilter"; + RuntimeDirectoryPermissions="0755"; }; - preStart = '' - ${pkgs.coreutils}/bin/mkdir -p /run/rmilter - ${pkgs.coreutils}/bin/chown ${cfg.user}:${cfg.group} /run/rmilter - ''; - }; - services.postfix.extraConfig = optionalString cfg.postfix.enable cfg.postfix.configFragment; + systemd.sockets.rmilter = mkIf cfg.socketActivation { + description = "Rmilter service socket"; + wantedBy = [ "sockets.target" ]; + socketConfig = { + ListenStream = cfg.bindUnixSockets ++ cfg.bindInetSockets; + SocketUser = cfg.user; + SocketGroup = cfg.group; + SocketMode = "0660"; + }; + }; + services.postfix.extraConfig = optionalString cfg.postfix.enable cfg.postfix.configFragment; + users.users.postfix.extraGroups = [ cfg.group ]; }; } diff --git a/nixos/modules/services/mail/rspamd.nix b/nixos/modules/services/mail/rspamd.nix index a083f829324..412b99ccc57 100644 --- a/nixos/modules/services/mail/rspamd.nix +++ b/nixos/modules/services/mail/rspamd.nix @@ -6,6 +6,35 @@ let cfg = config.services.rspamd; + mkBindSockets = socks: concatStringsSep "\n" (map (each: " bind_socket = \"${each}\"") socks); + + rspamdConf = + '' + .include "$CONFDIR/common.conf" + + options { + pidfile = "$RUNDIR/rspamd.pid"; + .include "$CONFDIR/options.inc" + } + + logging { + type = "file"; + filename = "$LOGDIR/rspamd.log"; + .include "$CONFDIR/logging.inc" + } + + worker { + ${mkBindSockets cfg.bindSocket} + .include "$CONFDIR/worker-normal.inc" + } + + worker { + ${mkBindSockets cfg.bindUISocket} + .include "$CONFDIR/worker-controller.inc" + } + ''; + rspamdConfFile = pkgs.writeText "rspamd.conf" rspamdConf; + in { @@ -26,6 +55,32 @@ in description = "Whether to run the rspamd daemon in debug mode."; }; + bindSocket = mkOption { + type = types.listOf types.str; + default = [ + "/run/rspamd.sock mode=0666 owner=${cfg.user}" + ]; + description = '' + List of sockets to listen, in format acceptable by rspamd + ''; + example = '' + bindSocket = [ + "/run/rspamd.sock mode=0666 owner=rspamd" + "*:11333" + ]; + ''; + }; + + bindUISocket = mkOption { + type = types.listOf types.str; + default = [ + "localhost:11334" + ]; + description = '' + List of sockets for web interface, in format acceptable by rspamd + ''; + }; + user = mkOption { type = types.string; default = "rspamd"; @@ -62,7 +117,7 @@ in users.extraGroups = singleton { name = cfg.group; - gid = config.ids.gids.spamd; + gid = config.ids.gids.rspamd; }; systemd.services.rspamd = { @@ -72,7 +127,7 @@ in after = [ "network.target" ]; serviceConfig = { - ExecStart = "${pkgs.rspamd}/bin/rspamd ${optionalString cfg.debug "-d"} --user=${cfg.user} --group=${cfg.group} --pid=/run/rspamd.pid -f"; + ExecStart = "${pkgs.rspamd}/bin/rspamd ${optionalString cfg.debug "-d"} --user=${cfg.user} --group=${cfg.group} --pid=/run/rspamd.pid -c ${rspamdConfFile} -f"; RuntimeDirectory = "/var/lib/rspamd"; PermissionsStartOnly = true; Restart = "always"; diff --git a/nixos/modules/services/misc/emby.nix b/nixos/modules/services/misc/emby.nix new file mode 100644 index 00000000000..fe872349f45 --- /dev/null +++ b/nixos/modules/services/misc/emby.nix @@ -0,0 +1,64 @@ +{ config, pkgs, lib, mono, ... }: + +with lib; + +let + cfg = config.services.emby; + emby = pkgs.emby; +in +{ + options = { + services.emby = { + enable = mkEnableOption "Emby Media Server"; + + user = mkOption { + type = types.str; + default = "emby"; + description = "User account under which Emby runs."; + }; + + group = mkOption { + type = types.str; + default = "emby"; + description = "Group under which emby runs."; + }; + }; + }; + + config = mkIf cfg.enable { + systemd.services.emby = { + description = "Emby Media Server"; + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; + preStart = '' + test -d /var/lib/emby/ProgramData-Server || { + echo "Creating initial Emby data directory in /var/lib/emby/ProgramData-Server" + mkdir -p /var/lib/emby/ProgramData-Server + chown -R ${cfg.user}:${cfg.group} /var/lib/emby/ProgramData-Server + } + ''; + + serviceConfig = { + Type = "simple"; + User = cfg.user; + Group = cfg.group; + PermissionsStartOnly = "true"; + ExecStart = "${pkgs.mono}/bin/mono ${pkgs.emby}/bin/MediaBrowser.Server.Mono.exe"; + Restart = "on-failure"; + }; + }; + + users.extraUsers = mkIf (cfg.user == "emby") { + emby = { + group = cfg.group; + uid = config.ids.uids.emby; + }; + }; + + users.extraGroups = mkIf (cfg.group == "emby") { + emby = { + gid = config.ids.gids.emby; + }; + }; + }; +} diff --git a/nixos/modules/services/misc/nix-daemon.nix b/nixos/modules/services/misc/nix-daemon.nix index 911f79e5756..d71837737ab 100644 --- a/nixos/modules/services/misc/nix-daemon.nix +++ b/nixos/modules/services/misc/nix-daemon.nix @@ -6,7 +6,7 @@ let cfg = config.nix; - nix = cfg.package; + nix = cfg.package.out; makeNixBuildUser = nr: { name = "nixbld${toString nr}"; @@ -24,8 +24,8 @@ let nixConf = let - # If we're using a chroot for builds, then provide /bin/sh in - # the chroot as a bind-mount to bash. This means we also need to + # If we're using sandbox for builds, then provide /bin/sh in + # the sandbox as a bind-mount to bash. This means we also need to # include the entire closure of bash. sh = pkgs.stdenv.shell; binshDeps = pkgs.writeReferencesToFile sh; @@ -39,8 +39,8 @@ let build-users-group = nixbld build-max-jobs = ${toString (cfg.maxJobs)} build-cores = ${toString (cfg.buildCores)} - build-use-chroot = ${if (builtins.isBool cfg.useChroot) then (if cfg.useChroot then "true" else "false") else cfg.useChroot} - build-chroot-dirs = ${toString cfg.chrootDirs} /bin/sh=${sh} $(echo $extraPaths) + build-use-sandbox = ${if (builtins.isBool cfg.useSandbox) then (if cfg.useSandbox then "true" else "false") else cfg.useSandbox} + build-sandbox-paths = ${toString cfg.sandboxPaths} /bin/sh=${sh} $(echo $extraPaths) binary-caches = ${toString cfg.binaryCaches} trusted-binary-caches = ${toString cfg.trustedBinaryCaches} binary-cache-public-keys = ${toString cfg.binaryCachePublicKeys} @@ -98,25 +98,25 @@ in ''; }; - useChroot = mkOption { + useSandbox = mkOption { type = types.either types.bool (types.enum ["relaxed"]); default = false; description = " - If set, Nix will perform builds in a chroot-environment that it + If set, Nix will perform builds in a sandboxed environment that it will set up automatically for each build. This prevents impurities in builds by disallowing access to dependencies outside of the Nix store. "; }; - chrootDirs = mkOption { + sandboxPaths = mkOption { type = types.listOf types.str; default = []; example = [ "/dev" "/proc" ]; description = '' Directories from the host filesystem to be included - in the chroot. + in the sandbox. ''; }; diff --git a/nixos/modules/services/misc/nix-gc.nix b/nixos/modules/services/misc/nix-gc.nix index 6a7a7f4cee7..5c13da6e83d 100644 --- a/nixos/modules/services/misc/nix-gc.nix +++ b/nixos/modules/services/misc/nix-gc.nix @@ -52,7 +52,7 @@ in systemd.services.nix-gc = { description = "Nix Garbage Collector"; - script = "exec ${config.nix.package}/bin/nix-collect-garbage ${cfg.options}"; + script = "exec ${config.nix.package.out}/bin/nix-collect-garbage ${cfg.options}"; startAt = optionalString cfg.automatic cfg.dates; }; diff --git a/nixos/modules/services/misc/nix-ssh-serve.nix b/nixos/modules/services/misc/nix-ssh-serve.nix index d70bd855c7f..66148431709 100644 --- a/nixos/modules/services/misc/nix-ssh-serve.nix +++ b/nixos/modules/services/misc/nix-ssh-serve.nix @@ -41,7 +41,7 @@ with lib; PermitTTY no PermitTunnel no X11Forwarding no - ForceCommand ${config.nix.package}/bin/nix-store --serve + ForceCommand ${config.nix.package.out}/bin/nix-store --serve Match All ''; diff --git a/nixos/modules/services/misc/taskserver/default.nix b/nixos/modules/services/misc/taskserver/default.nix index 8459aafeee7..b7d14e90a2b 100644 --- a/nixos/modules/services/misc/taskserver/default.nix +++ b/nixos/modules/services/misc/taskserver/default.nix @@ -449,7 +449,7 @@ in { }; }; }) - (mkIf needToCreateCA { + (mkIf (cfg.enable && needToCreateCA) { systemd.services.taskserver-ca = { wantedBy = [ "taskserver.service" ]; after = [ "taskserver-init.service" ]; @@ -533,7 +533,7 @@ in { ''; }; }) - (mkIf (cfg.listenHost != "localhost") { + (mkIf (cfg.enable && cfg.listenHost != "localhost") { networking.firewall.allowedTCPPorts = [ cfg.listenPort ]; }) { meta.doc = ./taskserver.xml; } diff --git a/nixos/modules/services/network-filesystems/openafs-client/default.nix b/nixos/modules/services/network-filesystems/openafs-client/default.nix index 7a44fc1ea5e..61c66bb8835 100644 --- a/nixos/modules/services/network-filesystems/openafs-client/default.nix +++ b/nixos/modules/services/network-filesystems/openafs-client/default.nix @@ -80,7 +80,7 @@ in preStart = '' mkdir -p -m 0755 /afs mkdir -m 0700 -p ${cfg.cacheDirectory} - ${pkgs.module_init_tools}/sbin/insmod ${openafsPkgs}/lib/openafs/libafs-*.ko || true + ${pkgs.kmod}/sbin/insmod ${openafsPkgs}/lib/openafs/libafs-*.ko || true ${openafsPkgs}/sbin/afsd -confdir ${afsConfig} -cachedir ${cfg.cacheDirectory} ${if cfg.sparse then "-dynroot-sparse" else "-dynroot"} -fakestat -afsdb ${openafsPkgs}/bin/fs setcrypt ${if cfg.crypt then "on" else "off"} ''; @@ -92,7 +92,7 @@ in preStop = '' ${pkgs.utillinux}/bin/umount /afs ${openafsPkgs}/sbin/afsd -shutdown - ${pkgs.module_init_tools}/sbin/rmmod libafs + ${pkgs.kmod}/sbin/rmmod libafs ''; }; }; diff --git a/nixos/modules/services/networking/copy-com.nix b/nixos/modules/services/networking/copy-com.nix deleted file mode 100644 index ee0d043d471..00000000000 --- a/nixos/modules/services/networking/copy-com.nix +++ /dev/null @@ -1,54 +0,0 @@ -{ config, lib, pkgs, ... }: - -with lib; - -let - - cfg = config.services.copy-com; - -in - -{ - options = { - - services.copy-com = { - - enable = mkOption { - default = false; - description = " - Enable the Copy.com client. - NOTE: before enabling the client for the first time, it must be - configured by first running CopyConsole (command line) or CopyAgent - (graphical) as the appropriate user. - "; - }; - - user = mkOption { - description = "The user for which the Copy.com client should be run."; - }; - - debug = mkOption { - default = false; - description = "Output more (debugging) messages to the console."; - }; - }; - }; - - config = mkIf cfg.enable { - environment.systemPackages = [ pkgs.postfix ]; - - systemd.services."copy-com-${cfg.user}" = { - description = "Copy.com client"; - wants = [ "network-online.target" ]; - after = [ "network-online.target" "local-fs.target" ]; - wantedBy = [ "multi-user.target" ]; - serviceConfig = { - ExecStart = "${pkgs.copy-com}/bin/CopyConsole ${if cfg.debug then "-consoleOutput -debugToConsole=dirwatch,path-watch,csm_path,csm -debug -console" else ""}"; - User = "${cfg.user}"; - }; - - }; - }; - -} - diff --git a/nixos/modules/services/networking/logmein-hamachi.nix b/nixos/modules/services/networking/logmein-hamachi.nix new file mode 100644 index 00000000000..406626a8a34 --- /dev/null +++ b/nixos/modules/services/networking/logmein-hamachi.nix @@ -0,0 +1,50 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.logmein-hamachi; + +in + +{ + + ###### interface + + options = { + + services.logmein-hamachi.enable = mkOption { + type = types.bool; + default = false; + description = + '' + Whether to enable LogMeIn Hamachi, a proprietary + (closed source) commercial VPN software. + ''; + }; + + }; + + + ###### implementation + + config = mkIf cfg.enable { + + systemd.services.logmein-hamachi = { + description = "LogMeIn Hamachi Daemon"; + + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" "local-fs.target" ]; + + serviceConfig = { + Type = "forking"; + ExecStart = "${pkgs.logmein-hamachi}/bin/hamachid"; + }; + }; + + environment.systemPackages = [ pkgs.logmein-hamachi ]; + + }; + +} diff --git a/nixos/modules/services/networking/mfi.nix b/nixos/modules/services/networking/mfi.nix index 5afb83ed022..775564a2c44 100644 --- a/nixos/modules/services/networking/mfi.nix +++ b/nixos/modules/services/networking/mfi.nix @@ -10,6 +10,7 @@ let { what = "${pkgs.mfi}/dl"; where = "${stateDir}/dl"; } { what = "${pkgs.mfi}/lib"; where = "${stateDir}/lib"; } { what = "${pkgs.mongodb248}/bin"; where = "${stateDir}/bin"; } + { what = "${cfg.dataDir}"; where = "${stateDir}/data"; } ]; systemdMountPoints = map (m: "${utils.escapeSystemdPath m.where}.mount") mountPoints; ports = [ 6080 6880 6443 6843 ]; @@ -23,6 +24,15 @@ in default = true; description = "Whether to open TCP ports ${concatMapStrings (a: "${toString a} ") ports}for the services."; }; + dataDir = mkOption { + type = types.str; + default = "${stateDir}/data"; + description = '' + Where to store the database and other data. + + This directory will be bind-mounted to ${stateDir}/data as part of the service startup. + ''; + }; }; }; diff --git a/nixos/modules/services/networking/nix-serve.nix b/nixos/modules/services/networking/nix-serve.nix index 8f6881441cf..3e865e3b76a 100644 --- a/nixos/modules/services/networking/nix-serve.nix +++ b/nixos/modules/services/networking/nix-serve.nix @@ -50,7 +50,7 @@ in after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - path = [ config.nix.package pkgs.bzip2.bin ]; + path = [ config.nix.package.out pkgs.bzip2.bin ]; environment.NIX_REMOTE = "daemon"; environment.NIX_SECRET_KEY_FILE = cfg.secretKeyFile; diff --git a/nixos/modules/services/networking/quassel.nix b/nixos/modules/services/networking/quassel.nix index 52c7ac8e689..99269c49e8f 100644 --- a/nixos/modules/services/networking/quassel.nix +++ b/nixos/modules/services/networking/quassel.nix @@ -3,7 +3,7 @@ with lib; let - quassel = pkgs.quasselDaemon_qt5; + quassel = pkgs.kde4.quasselDaemon; cfg = config.services.quassel; user = if cfg.user != null then cfg.user else "quassel"; in diff --git a/nixos/modules/services/networking/unifi.nix b/nixos/modules/services/networking/unifi.nix index 4dc0cd96904..cb5a88e67aa 100644 --- a/nixos/modules/services/networking/unifi.nix +++ b/nixos/modules/services/networking/unifi.nix @@ -17,6 +17,10 @@ let what = "${pkgs.mongodb}/bin"; where = "${stateDir}/bin"; } + { + what = "${cfg.dataDir}"; + where = "${stateDir}/data"; + } ]; systemdMountPoints = map (m: "${utils.escapeSystemdPath m.where}.mount") mountPoints; in @@ -32,6 +36,16 @@ in ''; }; + services.unifi.dataDir = mkOption { + type = types.str; + default = "${stateDir}/data"; + description = '' + Where to store the database and other data. + + This directory will be bind-mounted to ${stateDir}/data as part of the service startup. + ''; + }; + }; config = mkIf cfg.enable { @@ -62,7 +76,7 @@ in bindsTo = systemdMountPoints; unitConfig.RequiresMountsFor = stateDir; # This a HACK to fix missing dependencies of dynamic libs extracted from jars - environment.LD_LIBRARY_PATH = with pkgs.stdenv; "${cc.cc}/lib"; + environment.LD_LIBRARY_PATH = with pkgs.stdenv; "${cc.cc.lib}/lib"; preStart = '' # Ensure privacy of state diff --git a/nixos/modules/services/networking/zerobin.nix b/nixos/modules/services/networking/zerobin.nix new file mode 100644 index 00000000000..1c524602f8e --- /dev/null +++ b/nixos/modules/services/networking/zerobin.nix @@ -0,0 +1,102 @@ +{ config, pkgs, lib, nodes, ... }: +with lib; +let + cfg = config.services.zerobin; + + zerobin_config = pkgs.writeText "zerobin-config.py" '' + PASTE_FILES_ROOT = "${cfg.dataDir}" + ${cfg.extraConfig} + ''; + +in + { + options = { + services.zerobin = { + enable = mkEnableOption "0bin"; + + dataDir = mkOption { + type = types.str; + default = "/var/lib/zerobin"; + description = '' + Path to the 0bin data directory + ''; + }; + + user = mkOption { + type = types.str; + default = "zerobin"; + description = '' + The user 0bin should run as + ''; + }; + + group = mkOption { + type = types.str; + default = "zerobin"; + description = '' + The group 0bin should run as + ''; + }; + + listenPort = mkOption { + type = types.int; + default = 8000; + example = 1357; + description = '' + The port zerobin should listen on + ''; + }; + + listenAddress = mkOption { + type = types.str; + default = "localhost"; + example = "127.0.0.1"; + description = '' + The address zerobin should listen to + ''; + }; + + extraConfig = mkOption { + type = types.lines; + default = ""; + example = '' + MENU = ( + ('Home', '/'), + ) + COMPRESSED_STATIC_FILE = True + ''; + description = '' + Extra configuration to be appended to the 0bin config file + (see https://0bin.readthedocs.org/en/latest/en/options.html) + ''; + }; + }; + }; + + config = mkIf (cfg.enable) { + users.users."${cfg.user}" = + if cfg.user == "zerobin" then { + isSystemUser = true; + group = cfg.group; + home = cfg.dataDir; + createHome = true; + } + else {}; + users.groups."${cfg.group}" = {}; + + systemd.services.zerobin = { + enable = true; + after = [ "network-interfaces.target" ]; + wantedBy = [ "multi-user.target" ]; + serviceConfig.ExecStart = "${pkgs.pythonPackages.zerobin}/bin/zerobin ${cfg.listenAddress} ${toString cfg.listenPort} false ${cfg.user} ${cfg.group} ${zerobin_config}"; + serviceConfig.PrivateTmp="yes"; + serviceConfig.User = cfg.user; + serviceConfig.Group = cfg.group; + preStart = '' + mkdir -p ${cfg.dataDir} + chown ${cfg.user} ${cfg.dataDir} + ''; + }; + }; + } + diff --git a/nixos/modules/services/search/elasticsearch.nix b/nixos/modules/services/search/elasticsearch.nix index c51a42b8e9c..17ac8fe7e24 100644 --- a/nixos/modules/services/search/elasticsearch.nix +++ b/nixos/modules/services/search/elasticsearch.nix @@ -145,6 +145,7 @@ in { # Install plugins ln -sfT ${esPlugins}/plugins ${cfg.dataDir}/plugins ln -sfT ${cfg.package}/lib ${cfg.dataDir}/lib + ln -sfT ${cfg.package}/modules ${cfg.dataDir}/modules if [ "$(id -u)" = 0 ]; then chown -R elasticsearch ${cfg.dataDir}; fi ''; postStart = mkBefore '' diff --git a/nixos/modules/services/security/fail2ban.nix b/nixos/modules/services/security/fail2ban.nix index afbd81be91f..33c4910fc0c 100644 --- a/nixos/modules/services/security/fail2ban.nix +++ b/nixos/modules/services/security/fail2ban.nix @@ -99,34 +99,32 @@ in wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; + partOf = optional config.networking.firewall.enable "firewall.service"; restartTriggers = [ fail2banConf jailConf ]; path = [ pkgs.fail2ban pkgs.iptables ]; preStart = '' - mkdir -p /run/fail2ban -m 0755 mkdir -p /var/lib/fail2ban ''; + unitConfig.Documentation = "man:fail2ban(1)"; + serviceConfig = - { ExecStart = "${pkgs.fail2ban}/bin/fail2ban-server -f"; + { Type = "forking"; + ExecStart = "${pkgs.fail2ban}/bin/fail2ban-client -x start"; + ExecStop = "${pkgs.fail2ban}/bin/fail2ban-client stop"; + ExecReload = "${pkgs.fail2ban}/bin/fail2ban-client reload"; + PIDFile = "/run/fail2ban/fail2ban.pid"; + Restart = "always"; + ReadOnlyDirectories = "/"; - ReadWriteDirectories = "/run /var/tmp /var/lib"; + ReadWriteDirectories = "/run/fail2ban /var/tmp /var/lib"; + PrivateTmp = "true"; + RuntimeDirectory = "fail2ban"; CapabilityBoundingSet = "CAP_DAC_READ_SEARCH CAP_NET_ADMIN CAP_NET_RAW"; }; - - postStart = - '' - # Wait for the server to start listening. - for ((n = 0; n < 20; n++)); do - if fail2ban-client ping; then break; fi - sleep 0.5 - done - - # Reload its configuration. - fail2ban-client reload - ''; }; # Add some reasonable default jails. The special "DEFAULT" jail diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix index 2e29ef6a8f5..59c2e482e1a 100644 --- a/nixos/modules/services/system/dbus.nix +++ b/nixos/modules/services/system/dbus.nix @@ -121,7 +121,7 @@ in security.setuidOwners = singleton { program = "dbus-daemon-launch-helper"; - source = "${pkgs.dbus_daemon.lib}/libexec/dbus-daemon-launch-helper"; + source = "${pkgs.dbus_daemon.out}/libexec/dbus-daemon-launch-helper"; owner = "root"; group = "messagebus"; setuid = true; diff --git a/nixos/modules/services/system/kerberos.nix b/nixos/modules/services/system/kerberos.nix index 347302c6090..4f2e2fdf662 100644 --- a/nixos/modules/services/system/kerberos.nix +++ b/nixos/modules/services/system/kerberos.nix @@ -4,7 +4,7 @@ let inherit (lib) mkOption mkIf singleton; - inherit (pkgs) heimdal; + inherit (pkgs) heimdalFull; stateDir = "/var/heimdal"; in @@ -33,7 +33,7 @@ in config = mkIf config.services.kerberos_server.enable { - environment.systemPackages = [ heimdal ]; + environment.systemPackages = [ heimdalFull ]; services.xinetd.enable = true; services.xinetd.services = lib.singleton @@ -42,7 +42,7 @@ in protocol = "tcp"; user = "root"; server = "${pkgs.tcp_wrappers}/sbin/tcpd"; - serverArgs = "${pkgs.heimdal}/sbin/kadmind"; + serverArgs = "${pkgs.heimdalFull}/sbin/kadmind"; }; systemd.services.kdc = { @@ -51,13 +51,13 @@ in preStart = '' mkdir -m 0755 -p ${stateDir} ''; - script = "${heimdal}/sbin/kdc"; + script = "${heimdalFull}/sbin/kdc"; }; systemd.services.kpasswdd = { description = "Kerberos Password Changing daemon"; wantedBy = [ "multi-user.target" ]; - script = "${heimdal}/sbin/kpasswdd"; + script = "${heimdalFull}/sbin/kpasswdd"; }; }; diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix index c2220cb0cff..26182dc93cd 100644 --- a/nixos/modules/services/torrent/transmission.nix +++ b/nixos/modules/services/torrent/transmission.nix @@ -124,7 +124,7 @@ in ${pkgs.xz.out}/lib/liblzma*.so* mr, ${pkgs.libgcrypt.out}/lib/libgcrypt*.so* mr, ${pkgs.libgpgerror.out}/lib/libgpg-error*.so* mr, - ${pkgs.libnghttp2.out}/lib/libnghttp2*.so* mr, + ${pkgs.nghttp2.lib}/lib/libnghttp2*.so* mr, ${pkgs.c-ares.out}/lib/libcares*.so* mr, ${pkgs.libcap.out}/lib/libcap*.so* mr, ${pkgs.attr.out}/lib/libattr*.so* mr, diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index b112fc2422a..16996b9f96c 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -165,6 +165,8 @@ in { ''; }; + services.xserver.updateDbusEnvironment = true; + environment.variables.GIO_EXTRA_MODULES = [ "${gnome3.dconf}/lib/gio/modules" "${gnome3.glib_networking.out}/lib/gio/modules" "${gnome3.gvfs}/lib/gio/modules" ]; diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 4f74d5732af..70dc1ac2a26 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -62,17 +62,25 @@ in ${config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" ''} - exec startkde + exec "${kde5.startkde}" + ''; }; - security.setuidOwners = singleton { - program = "kcheckpass"; - source = "${kde5.plasma-workspace.out}/lib/libexec/kcheckpass"; - owner = "root"; - group = "root"; - setuid = true; - }; + security.setuidOwners = [ + { + program = "kcheckpass"; + source = "${kde5.plasma-workspace}/lib/libexec/kcheckpass"; + owner = "root"; + setuid = true; + } + { + program = "start_kdeinit_wrapper"; + source = "${kde5.plasma-workspace}/lib/libexec/kf5/start_kdeinit_wrapper"; + owner = "root"; + setuid = true; + } + ]; environment.systemPackages = [ diff --git a/nixos/modules/services/x11/desktop-managers/xfce.nix b/nixos/modules/services/x11/desktop-managers/xfce.nix index 33b6dd32c19..60934ed5f19 100644 --- a/nixos/modules/services/x11/desktop-managers/xfce.nix +++ b/nixos/modules/services/x11/desktop-managers/xfce.nix @@ -42,10 +42,13 @@ in # Set GTK_DATA_PREFIX so that GTK+ can find the Xfce themes. export GTK_DATA_PREFIX=${config.system.path} - exec ${pkgs.stdenv.shell} ${pkgs.xfce.xinitrc} + ${pkgs.stdenv.shell} ${pkgs.xfce.xinitrc} & + waitPID=$! ''; }; + services.xserver.updateDbusEnvironment = true; + environment.systemPackages = [ pkgs.gtk # To get GTK+'s themes. pkgs.hicolor_icon_theme diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix index be634fc259a..376f9f4b46b 100644 --- a/nixos/modules/services/x11/display-managers/default.nix +++ b/nixos/modules/services/x11/display-managers/default.nix @@ -126,6 +126,14 @@ let (*) echo "$0: Desktop manager '$desktopManager' not found.";; esac + ${optionalString (cfg.startDbusSession && cfg.updateDbusEnvironment) '' + ${pkgs.glib}/bin/gdbus call --session \ + --dest org.freedesktop.DBus --object-path /org/freedesktop/DBus \ + --method org.freedesktop.DBus.UpdateActivationEnvironment \ + "{$(env | ${pkgs.gnused}/bin/sed "s/'/\\\\'/g; s/\([^=]*\)=\(.*\)/'\1':'\2'/" \ + | ${pkgs.coreutils}/bin/paste -sd,)}" + ''} + test -n "$waitPID" && wait "$waitPID" exit 0 ''; diff --git a/nixos/modules/services/x11/redshift.nix b/nixos/modules/services/x11/redshift.nix index 4318a17a4fa..8f1e317e52b 100644 --- a/nixos/modules/services/x11/redshift.nix +++ b/nixos/modules/services/x11/redshift.nix @@ -94,11 +94,9 @@ in { }; config = mkIf cfg.enable { - systemd.services.redshift = { + systemd.user.services.redshift = { description = "Redshift colour temperature adjuster"; - requires = [ "display-manager.service" ]; - after = [ "display-manager.service" ]; - wantedBy = [ "graphical.target" ]; + wantedBy = [ "default.target" ]; serviceConfig = { ExecStart = '' ${cfg.package}/bin/redshift \ @@ -107,10 +105,10 @@ in { -b ${toString cfg.brightness.day}:${toString cfg.brightness.night} \ ${lib.strings.concatStringsSep " " cfg.extraOptions} ''; - RestartSec = 3; + RestartSec = 3; + Restart = "always"; }; environment = { DISPLAY = ":0"; }; - serviceConfig.Restart = "always"; }; }; diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index dcf9f820f59..9cb9c8de31d 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -233,6 +233,15 @@ in ''; }; + updateDbusEnvironment = mkOption { + type = types.bool; + default = false; + description = '' + Whether to update the DBus activation environment after launching the + desktop manager. + ''; + }; + layout = mkOption { type = types.str; default = "us"; diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix index 0728db98644..b0bd4ef9695 100644 --- a/nixos/modules/system/boot/loader/grub/grub.nix +++ b/nixos/modules/system/boot/loader/grub/grub.nix @@ -499,7 +499,7 @@ in } ] ++ flip map args.devices (device: { assertion = device == "nodev" || hasPrefix "/" device; - message = "GRUB devices must be absolute paths, not ${dev} in ${args.path}"; + message = "GRUB devices must be absolute paths, not ${device} in ${args.path}"; })); }) diff --git a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix b/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix index 6c201eb8212..69ad2c6d44f 100644 --- a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix +++ b/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix @@ -14,7 +14,7 @@ let inherit (pkgs) python gummiboot; - nix = config.nix.package; + nix = config.nix.package.out; timeout = if cfg.timeout != null then cfg.timeout else ""; diff --git a/nixos/modules/system/etc/etc.nix b/nixos/modules/system/etc/etc.nix index 9d5b3db472c..163f4f4106e 100644 --- a/nixos/modules/system/etc/etc.nix +++ b/nixos/modules/system/etc/etc.nix @@ -36,7 +36,7 @@ in type = types.loaOf types.optionSet; default = {}; example = literalExample '' - { hosts = + { example-configuration-file = { source = "/nix/store/.../etc/dir/file.conf.example"; mode = "0440"; }; diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix index 0528012adfd..c52bd904cae 100644 --- a/nixos/modules/tasks/network-interfaces.nix +++ b/nixos/modules/tasks/network-interfaces.nix @@ -523,7 +523,7 @@ in networking.bonds = mkOption { default = { }; - example = { + example = literalExample { bond0 = { interfaces = [ "eth0" "wlan0" ]; miimon = 100; @@ -598,7 +598,7 @@ in networking.macvlans = mkOption { type = types.attrsOf types.optionSet; default = { }; - example = { + example = literalExample { wan = { interface = "enp2s0"; mode = "vepa"; @@ -629,7 +629,7 @@ in networking.sits = mkOption { type = types.attrsOf types.optionSet; default = { }; - example = { + example = literalExample { hurricane = { remote = "10.0.0.1"; local = "10.0.0.22"; @@ -688,7 +688,7 @@ in networking.vlans = mkOption { default = { }; - example = { + example = literalExample { vlan0 = { id = 3; interface = "enp3s0"; @@ -727,7 +727,7 @@ in networking.wlanInterfaces = mkOption { default = { }; - example = { + example = literalExample { "wlan-station0" = { device = "wlp6s0"; }; diff --git a/nixos/modules/virtualisation/amazon-init.nix b/nixos/modules/virtualisation/amazon-init.nix index 886552f33c2..c9356c9b4ea 100644 --- a/nixos/modules/virtualisation/amazon-init.nix +++ b/nixos/modules/virtualisation/amazon-init.nix @@ -8,7 +8,7 @@ let echo "attempting to fetch configuration from EC2 user data..." - export PATH=${config.nix.package}/bin:${pkgs.systemd}/bin:${pkgs.gnugrep}/bin:${pkgs.gnused}/bin:${config.system.build.nixos-rebuild}/bin:$PATH + export PATH=${pkgs.lib.makeBinPath [ config.nix.package pkgs.systemd pkgs.gnugrep pkgs.gnused config.system.build.nixos-rebuild]}:$PATH export NIX_PATH=/nix/var/nix/profiles/per-user/root/channels/nixos:nixos-config=/etc/nixos/configuration.nix:/nix/var/nix/profiles/per-user/root/channels userData=/etc/ec2-metadata/user-data diff --git a/nixos/modules/virtualisation/azure-image.nix b/nixos/modules/virtualisation/azure-image.nix index 9dc0ce11992..9fac543b03d 100644 --- a/nixos/modules/virtualisation/azure-image.nix +++ b/nixos/modules/virtualisation/azure-image.nix @@ -62,10 +62,10 @@ in echo Register the paths in the Nix database. printRegistration=1 perl ${pkgs.pathsFromGraph} /tmp/xchg/closure | \ - chroot /mnt ${config.nix.package}/bin/nix-store --load-db --option build-users-group "" + chroot /mnt ${config.nix.package.out}/bin/nix-store --load-db --option build-users-group "" echo Create the system profile to allow nixos-rebuild to work. - chroot /mnt ${config.nix.package}/bin/nix-env \ + chroot /mnt ${config.nix.package.out}/bin/nix-env \ -p /nix/var/nix/profiles/system --set ${config.system.build.toplevel} --option build-users-group "" echo nixos-rebuild requires an /etc/NIXOS. diff --git a/nixos/modules/virtualisation/brightbox-image.nix b/nixos/modules/virtualisation/brightbox-image.nix index b6b2bd4f69b..bcafc06e47c 100644 --- a/nixos/modules/virtualisation/brightbox-image.nix +++ b/nixos/modules/virtualisation/brightbox-image.nix @@ -62,10 +62,10 @@ in # Register the paths in the Nix database. printRegistration=1 perl ${pkgs.pathsFromGraph} /tmp/xchg/closure | \ - chroot /mnt ${config.nix.package}/bin/nix-store --load-db --option build-users-group "" + chroot /mnt ${config.nix.package.out}/bin/nix-store --load-db --option build-users-group "" # Create the system profile to allow nixos-rebuild to work. - chroot /mnt ${config.nix.package}/bin/nix-env \ + chroot /mnt ${config.nix.package.out}/bin/nix-env \ -p /nix/var/nix/profiles/system --set ${config.system.build.toplevel} \ --option build-users-group "" diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix index 121ecbc9bf2..fca21a8610b 100644 --- a/nixos/modules/virtualisation/containers.nix +++ b/nixos/modules/virtualisation/containers.nix @@ -28,14 +28,23 @@ let # Initialise the container side of the veth pair. if [ "$PRIVATE_NETWORK" = 1 ]; then + ip link set host0 name eth0 ip link set dev eth0 up + + if [ -n "$LOCAL_ADDRESS" ]; then + ip addr add $LOCAL_ADDRESS dev eth0 + fi + if [ -n "$LOCAL_ADDRESS6" ]; then + ip -6 addr add $LOCAL_ADDRESS6 dev eth0 + fi if [ -n "$HOST_ADDRESS" ]; then ip route add $HOST_ADDRESS dev eth0 ip route add default via $HOST_ADDRESS fi - if [ -n "$LOCAL_ADDRESS" ]; then - ip addr add $LOCAL_ADDRESS dev eth0 + if [ -n "$HOST_ADDRESS6" ]; then + ip -6 route add $HOST_ADDRESS6 dev eth0 + ip -6 route add default via $HOST_ADDRESS6 fi fi @@ -48,7 +57,7 @@ let system = config.nixpkgs.system; bindMountOpts = { name, config, ... }: { - + options = { mountPoint = mkOption { example = "/mnt/usb"; @@ -68,13 +77,13 @@ let description = "Determine whether the mounted path will be accessed in read-only mode."; }; }; - + config = { mountPoint = mkDefault name; }; - + }; - + mkBindFlag = d: let flagPrefix = if d.isReadOnly then " --bind-ro=" else " --bind="; mountstr = if d.hostPath != null then "${d.hostPath}:${d.mountPoint}" else "${d.mountPoint}"; @@ -142,12 +151,33 @@ in ''; }; + hostBridge = mkOption { + type = types.nullOr types.string; + default = null; + example = "br0"; + description = '' + Put the host-side of the veth-pair into the named bridge. + Only one of hostAddress* or hostBridge can be given. + ''; + }; + hostAddress = mkOption { type = types.nullOr types.str; default = null; example = "10.231.136.1"; description = '' The IPv4 address assigned to the host interface. + (Not used when hostBridge is set.) + ''; + }; + + hostAddress6 = mkOption { + type = types.nullOr types.string; + default = null; + example = "fc00::1"; + description = '' + The IPv6 address assigned to the host interface. + (Not used when hostBridge is set.) ''; }; @@ -161,6 +191,16 @@ in ''; }; + localAddress6 = mkOption { + type = types.nullOr types.string; + default = null; + example = "fc00::2"; + description = '' + The IPv6 address assigned to eth0 + in the container. + ''; + }; + interfaces = mkOption { type = types.listOf types.string; default = []; @@ -185,7 +225,7 @@ in example = { "/home" = { hostPath = "/home/alice"; isReadOnly = false; }; }; - + description = '' An extra list of directories that is bound to the container. @@ -238,154 +278,180 @@ in }; - config = mkIf (config.boot.enableContainers) { + config = mkIf (config.boot.enableContainers) (let - systemd.services."container@" = - { description = "Container '%i'"; + unit = { + description = "Container '%i'"; - unitConfig.RequiresMountsFor = [ "/var/lib/containers/%i" ]; + unitConfig.RequiresMountsFor = [ "/var/lib/containers/%i" ]; - path = [ pkgs.iproute ]; + path = [ pkgs.iproute ]; - environment.INSTANCE = "%i"; - environment.root = "/var/lib/containers/%i"; + environment.INSTANCE = "%i"; + environment.root = "/var/lib/containers/%i"; - preStart = - '' - # Clean up existing machined registration and interfaces. - machinectl terminate "$INSTANCE" 2> /dev/null || true + preStart = + '' + # Clean up existing machined registration and interfaces. + machinectl terminate "$INSTANCE" 2> /dev/null || true - if [ "$PRIVATE_NETWORK" = 1 ]; then - ip link del dev "ve-$INSTANCE" 2> /dev/null || true + if [ "$PRIVATE_NETWORK" = 1 ]; then + ip link del dev "ve-$INSTANCE" 2> /dev/null || true + ip link del dev "vb-$INSTANCE" 2> /dev/null || true + fi + ''; + + script = + '' + mkdir -p -m 0755 "$root/etc" "$root/var/lib" + mkdir -p -m 0700 "$root/var/lib/private" "$root/root" /run/containers + if ! [ -e "$root/etc/os-release" ]; then + touch "$root/etc/os-release" + fi + + mkdir -p -m 0755 \ + "/nix/var/nix/profiles/per-container/$INSTANCE" \ + "/nix/var/nix/gcroots/per-container/$INSTANCE" + + cp --remove-destination /etc/resolv.conf "$root/etc/resolv.conf" + + if [ "$PRIVATE_NETWORK" = 1 ]; then + extraFlags+=" --network-veth" + if [ -n "$HOST_BRIDGE" ]; then + extraFlags+=" --network-bridge=$HOST_BRIDGE" fi + fi + for iface in $INTERFACES; do + extraFlags+=" --network-interface=$iface" + done - if [ "$PRIVATE_NETWORK" = 1 ]; then - ip link del dev "ve-$INSTANCE" 2> /dev/null || true + for iface in $MACVLANS; do + extraFlags+=" --network-macvlan=$iface" + done + + # If the host is 64-bit and the container is 32-bit, add a + # --personality flag. + ${optionalString (config.nixpkgs.system == "x86_64-linux") '' + if [ "$(< ''${SYSTEM_PATH:-/nix/var/nix/profiles/per-container/$INSTANCE/system}/system)" = i686-linux ]; then + extraFlags+=" --personality=x86" fi - ''; - - script = - '' - mkdir -p -m 0755 "$root/etc" "$root/var/lib" - mkdir -p -m 0700 "$root/var/lib/private" "$root/root" /run/containers - if ! [ -e "$root/etc/os-release" ]; then - touch "$root/etc/os-release" - fi - - mkdir -p -m 0755 \ - "/nix/var/nix/profiles/per-container/$INSTANCE" \ - "/nix/var/nix/gcroots/per-container/$INSTANCE" - - cp --remove-destination /etc/resolv.conf "$root/etc/resolv.conf" - - if [ "$PRIVATE_NETWORK" = 1 ]; then - extraFlags+=" --network-veth" - fi - - for iface in $INTERFACES; do - extraFlags+=" --network-interface=$iface" - done - - for iface in $MACVLANS; do - extraFlags+=" --network-macvlan=$iface" - done - - # If the host is 64-bit and the container is 32-bit, add a - # --personality flag. - ${optionalString (config.nixpkgs.system == "x86_64-linux") '' - if [ "$(< ''${SYSTEM_PATH:-/nix/var/nix/profiles/per-container/$INSTANCE/system}/system)" = i686-linux ]; then - extraFlags+=" --personality=x86" - fi - ''} + ''} - # Run systemd-nspawn without startup notification (we'll - # wait for the container systemd to signal readiness). - EXIT_ON_REBOOT=1 NOTIFY_SOCKET= \ - exec ${config.systemd.package}/bin/systemd-nspawn \ - --keep-unit \ - -M "$INSTANCE" -D "$root" $extraFlags \ - $EXTRA_NSPAWN_FLAGS \ - --bind-ro=/nix/store \ - --bind-ro=/nix/var/nix/db \ - --bind-ro=/nix/var/nix/daemon-socket \ - --bind=/run/systemd/notify:/var/lib/private/host-notify \ - --bind="/nix/var/nix/profiles/per-container/$INSTANCE:/nix/var/nix/profiles" \ - --bind="/nix/var/nix/gcroots/per-container/$INSTANCE:/nix/var/nix/gcroots" \ - --setenv PRIVATE_NETWORK="$PRIVATE_NETWORK" \ - --setenv HOST_ADDRESS="$HOST_ADDRESS" \ - --setenv LOCAL_ADDRESS="$LOCAL_ADDRESS" \ - --setenv PATH="$PATH" \ - ${containerInit} "''${SYSTEM_PATH:-/nix/var/nix/profiles/system}/init" - ''; + # Run systemd-nspawn without startup notification (we'll + # wait for the container systemd to signal readiness). + EXIT_ON_REBOOT=1 NOTIFY_SOCKET= \ + exec ${config.systemd.package}/bin/systemd-nspawn \ + --keep-unit \ + -M "$INSTANCE" -D "$root" $extraFlags \ + $EXTRA_NSPAWN_FLAGS \ + --bind-ro=/nix/store \ + --bind-ro=/nix/var/nix/db \ + --bind-ro=/nix/var/nix/daemon-socket \ + --bind=/run/systemd/notify:/var/lib/private/host-notify \ + --bind="/nix/var/nix/profiles/per-container/$INSTANCE:/nix/var/nix/profiles" \ + --bind="/nix/var/nix/gcroots/per-container/$INSTANCE:/nix/var/nix/gcroots" \ + --setenv PRIVATE_NETWORK="$PRIVATE_NETWORK" \ + --setenv HOST_BRIDGE="$HOST_BRIDGE" \ + --setenv HOST_ADDRESS="$HOST_ADDRESS" \ + --setenv LOCAL_ADDRESS="$LOCAL_ADDRESS" \ + --setenv HOST_ADDRESS6="$HOST_ADDRESS6" \ + --setenv LOCAL_ADDRESS6="$LOCAL_ADDRESS6" \ + --setenv PATH="$PATH" \ + ${containerInit} "''${SYSTEM_PATH:-/nix/var/nix/profiles/system}/init" + ''; - postStart = - '' - if [ "$PRIVATE_NETWORK" = 1 ]; then + postStart = + '' + if [ "$PRIVATE_NETWORK" = 1 ]; then + if [ -z "$HOST_BRIDGE" ]; then ifaceHost=ve-$INSTANCE ip link set dev $ifaceHost up if [ -n "$HOST_ADDRESS" ]; then ip addr add $HOST_ADDRESS dev $ifaceHost fi + if [ -n "$HOST_ADDRESS6" ]; then + ip -6 addr add $HOST_ADDRESS6 dev $ifaceHost + fi if [ -n "$LOCAL_ADDRESS" ]; then ip route add $LOCAL_ADDRESS dev $ifaceHost fi + if [ -n "$LOCAL_ADDRESS6" ]; then + ip -6 route add $LOCAL_ADDRESS6 dev $ifaceHost + fi fi + fi - # Get the leader PID so that we can signal it in - # preStop. We can't use machinectl there because D-Bus - # might be shutting down. FIXME: in systemd 219 we can - # just signal systemd-nspawn to do a clean shutdown. - machinectl show "$INSTANCE" | sed 's/Leader=\(.*\)/\1/;t;d' > "/run/containers/$INSTANCE.pid" - ''; + # Get the leader PID so that we can signal it in + # preStop. We can't use machinectl there because D-Bus + # might be shutting down. FIXME: in systemd 219 we can + # just signal systemd-nspawn to do a clean shutdown. + machinectl show "$INSTANCE" | sed 's/Leader=\(.*\)/\1/;t;d' > "/run/containers/$INSTANCE.pid" + ''; - preStop = + preStop = + '' + pid="$(cat /run/containers/$INSTANCE.pid)" + if [ -n "$pid" ]; then + kill -RTMIN+4 "$pid" + fi + rm -f "/run/containers/$INSTANCE.pid" + ''; + + restartIfChanged = false; + + serviceConfig = { + ExecReload = pkgs.writeScript "reload-container" '' - pid="$(cat /run/containers/$INSTANCE.pid)" - if [ -n "$pid" ]; then - kill -RTMIN+4 "$pid" - fi - rm -f "/run/containers/$INSTANCE.pid" + #! ${pkgs.stdenv.shell} -e + ${nixos-container}/bin/nixos-container run "$INSTANCE" -- \ + bash --login -c "''${SYSTEM_PATH:-/nix/var/nix/profiles/system}/bin/switch-to-configuration test" ''; - restartIfChanged = false; - #reloadIfChanged = true; # FIXME + SyslogIdentifier = "container %i"; - serviceConfig = { - ExecReload = pkgs.writeScript "reload-container" - '' - #! ${pkgs.stdenv.shell} -e - ${nixos-container}/bin/nixos-container run "$INSTANCE" -- \ - bash --login -c "''${SYSTEM_PATH:-/nix/var/nix/profiles/system}/bin/switch-to-configuration test" - ''; + EnvironmentFile = "-/etc/containers/%i.conf"; - SyslogIdentifier = "container %i"; + Type = "notify"; - EnvironmentFile = "-/etc/containers/%i.conf"; + NotifyAccess = "all"; - Type = "notify"; + # Note that on reboot, systemd-nspawn returns 133, so this + # unit will be restarted. On poweroff, it returns 0, so the + # unit won't be restarted. + RestartForceExitStatus = "133"; + SuccessExitStatus = "133"; - NotifyAccess = "all"; + Restart = "on-failure"; - # Note that on reboot, systemd-nspawn returns 133, so this - # unit will be restarted. On poweroff, it returns 0, so the - # unit won't be restarted. - RestartForceExitStatus = "133"; - SuccessExitStatus = "133"; - - Restart = "on-failure"; - - # Hack: we don't want to kill systemd-nspawn, since we call - # "machinectl poweroff" in preStop to shut down the - # container cleanly. But systemd requires sending a signal - # (at least if we want remaining processes to be killed - # after the timeout). So send an ignored signal. - KillMode = "mixed"; - KillSignal = "WINCH"; - }; + # Hack: we don't want to kill systemd-nspawn, since we call + # "machinectl poweroff" in preStop to shut down the + # container cleanly. But systemd requires sending a signal + # (at least if we want remaining processes to be killed + # after the timeout). So send an ignored signal. + KillMode = "mixed"; + KillSignal = "WINCH"; }; + }; + in { + systemd.services = listToAttrs (filter (x: x.value != null) ( + # The generic container template used by imperative containers + [{ name = "container@"; value = unit; }] + # declarative containers + ++ (mapAttrsToList (name: cfg: nameValuePair "container@${name}" ( + if cfg.autoStart then + unit // { + wantedBy = [ "multi-user.target" ]; + wants = [ "network.target" ]; + after = [ "network.target" ]; + restartTriggers = [ cfg.path ]; + reloadIfChanged = true; + } + else null + )) config.containers) + )); # Generate a configuration file in /etc/containers for each # container so that container@.target can get the container @@ -396,12 +462,21 @@ in SYSTEM_PATH=${cfg.path} ${optionalString cfg.privateNetwork '' PRIVATE_NETWORK=1 + ${optionalString (cfg.hostBridge != null) '' + HOST_BRIDGE=${cfg.hostBridge} + ''} ${optionalString (cfg.hostAddress != null) '' HOST_ADDRESS=${cfg.hostAddress} ''} + ${optionalString (cfg.hostAddress6 != null) '' + HOST_ADDRESS6=${cfg.hostAddress6} + ''} ${optionalString (cfg.localAddress != null) '' LOCAL_ADDRESS=${cfg.localAddress} ''} + ${optionalString (cfg.localAddress6 != null) '' + LOCAL_ADDRESS6=${cfg.localAddress6} + ''} ''} INTERFACES="${toString cfg.interfaces}" ${optionalString cfg.autoStart '' @@ -420,31 +495,5 @@ in networking.dhcpcd.denyInterfaces = [ "ve-*" ]; environment.systemPackages = [ nixos-container ]; - - # Start containers at boot time. - systemd.services.all-containers = - { description = "All Containers"; - - wantedBy = [ "multi-user.target" ]; - - unitConfig.ConditionDirectoryNotEmpty = "/etc/containers"; - - serviceConfig.Type = "oneshot"; - - script = - '' - res=0 - shopt -s nullglob - for i in /etc/containers/*.conf; do - AUTO_START= - source "$i" - if [ "$AUTO_START" = 1 ]; then - systemctl start "container@$(basename "$i" .conf).service" || res=1 - fi - done - exit $res - ''; # */ - }; - - }; + }); } diff --git a/nixos/modules/virtualisation/ec2-amis.nix b/nixos/modules/virtualisation/ec2-amis.nix index e0aad5e42f2..5257aaf6202 100644 --- a/nixos/modules/virtualisation/ec2-amis.nix +++ b/nixos/modules/virtualisation/ec2-amis.nix @@ -90,40 +90,40 @@ "15.09".us-west-2.pv-ebs = "ami-005fb160"; "15.09".us-west-2.pv-s3 = "ami-cd55bbad"; - "16.03".ap-northeast-1.hvm-ebs = "ami-885040e6"; - "16.03".ap-northeast-1.hvm-s3 = "ami-d15a4abf"; - "16.03".ap-northeast-1.pv-ebs = "ami-7f455511"; - "16.03".ap-northeast-1.pv-s3 = "ami-6d7d6d03"; - "16.03".ap-southeast-1.hvm-ebs = "ami-478a5f24"; - "16.03".ap-southeast-1.hvm-s3 = "ami-b2885dd1"; - "16.03".ap-southeast-1.pv-ebs = "ami-55b46136"; - "16.03".ap-southeast-1.pv-s3 = "ami-92b762f1"; - "16.03".ap-southeast-2.hvm-ebs = "ami-26b09345"; - "16.03".ap-southeast-2.hvm-s3 = "ami-52ac8f31"; - "16.03".ap-southeast-2.pv-ebs = "ami-1fb3907c"; - "16.03".ap-southeast-2.pv-s3 = "ami-49b1922a"; - "16.03".eu-central-1.hvm-ebs = "ami-2bd63744"; - "16.03".eu-central-1.hvm-s3 = "ami-82d435ed"; - "16.03".eu-central-1.pv-ebs = "ami-b729c8d8"; - "16.03".eu-central-1.pv-s3 = "ami-a12dccce"; - "16.03".eu-west-1.hvm-ebs = "ami-87c242f4"; - "16.03".eu-west-1.hvm-s3 = "ami-b6c343c5"; - "16.03".eu-west-1.pv-ebs = "ami-6bc94918"; - "16.03".eu-west-1.pv-s3 = "ami-00cb4b73"; - "16.03".sa-east-1.hvm-ebs = "ami-845cd3e8"; - "16.03".sa-east-1.hvm-s3 = "ami-8142cded"; - "16.03".sa-east-1.pv-ebs = "ami-1643cc7a"; - "16.03".sa-east-1.pv-s3 = "ami-1646c97a"; - "16.03".us-east-1.hvm-ebs = "ami-2cc4d046"; - "16.03".us-east-1.hvm-s3 = "ami-9bc9ddf1"; - "16.03".us-east-1.pv-ebs = "ami-7df4e017"; - "16.03".us-east-1.pv-s3 = "ami-90f2e6fa"; - "16.03".us-west-1.hvm-ebs = "ami-d8116db8"; - "16.03".us-west-1.hvm-s3 = "ami-a7166ac7"; - "16.03".us-west-1.pv-ebs = "ami-e90c7089"; - "16.03".us-west-1.pv-s3 = "ami-5b0c703b"; - "16.03".us-west-2.hvm-ebs = "ami-b339ccd3"; - "16.03".us-west-2.hvm-s3 = "ami-2c3bce4c"; - "16.03".us-west-2.pv-ebs = "ami-0625d066"; - "16.03".us-west-2.pv-s3 = "ami-7414e114"; + "16.03".ap-northeast-1.hvm-ebs = "ami-b6edf5d8"; + "16.03".ap-northeast-1.hvm-s3 = "ami-b1e3fbdf"; + "16.03".ap-northeast-1.pv-ebs = "ami-6190880f"; + "16.03".ap-northeast-1.pv-s3 = "ami-908d95fe"; + "16.03".ap-southeast-1.hvm-ebs = "ami-35b16656"; + "16.03".ap-southeast-1.hvm-s3 = "ami-41be6922"; + "16.03".ap-southeast-1.pv-ebs = "ami-4cb96e2f"; + "16.03".ap-southeast-1.pv-s3 = "ami-3bb96e58"; + "16.03".ap-southeast-2.hvm-ebs = "ami-debc91bd"; + "16.03".ap-southeast-2.hvm-s3 = "ami-55bc9136"; + "16.03".ap-southeast-2.pv-ebs = "ami-b38ba6d0"; + "16.03".ap-southeast-2.pv-s3 = "ami-9e8ba6fd"; + "16.03".eu-central-1.hvm-ebs = "ami-7c967413"; + "16.03".eu-central-1.hvm-s3 = "ami-b29072dd"; + "16.03".eu-central-1.pv-ebs = "ami-7a947615"; + "16.03".eu-central-1.pv-s3 = "ami-729b791d"; + "16.03".eu-west-1.hvm-ebs = "ami-ff27a98c"; + "16.03".eu-west-1.hvm-s3 = "ami-6c21af1f"; + "16.03".eu-west-1.pv-ebs = "ami-a33cb2d0"; + "16.03".eu-west-1.pv-s3 = "ami-ec38b69f"; + "16.03".sa-east-1.hvm-ebs = "ami-5bef6637"; + "16.03".sa-east-1.hvm-s3 = "ami-55f87139"; + "16.03".sa-east-1.pv-ebs = "ami-76e56c1a"; + "16.03".sa-east-1.pv-s3 = "ami-e1f8718d"; + "16.03".us-east-1.hvm-ebs = "ami-4bfd1926"; + "16.03".us-east-1.hvm-s3 = "ami-60c5210d"; + "16.03".us-east-1.pv-ebs = "ami-c0c92dad"; + "16.03".us-east-1.pv-s3 = "ami-f9d63294"; + "16.03".us-west-1.hvm-ebs = "ami-13aad473"; + "16.03".us-west-1.hvm-s3 = "ami-e1a8d681"; + "16.03".us-west-1.pv-ebs = "ami-c0a6d8a0"; + "16.03".us-west-1.pv-s3 = "ami-6aa9d70a"; + "16.03".us-west-2.hvm-ebs = "ami-265dad46"; + "16.03".us-west-2.hvm-s3 = "ami-cd40b0ad"; + "16.03".us-west-2.pv-ebs = "ami-7b4aba1b"; + "16.03".us-west-2.pv-s3 = "ami-0849b968"; } diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix index 77074b88246..38417315df5 100644 --- a/nixos/modules/virtualisation/google-compute-image.nix +++ b/nixos/modules/virtualisation/google-compute-image.nix @@ -66,10 +66,10 @@ in # Register the paths in the Nix database. printRegistration=1 perl ${pkgs.pathsFromGraph} /tmp/xchg/closure | \ - chroot /mnt ${config.nix.package}/bin/nix-store --load-db --option build-users-group "" + chroot /mnt ${config.nix.package.out}/bin/nix-store --load-db --option build-users-group "" # Create the system profile to allow nixos-rebuild to work. - chroot /mnt ${config.nix.package}/bin/nix-env \ + chroot /mnt ${config.nix.package.out}/bin/nix-env \ -p /nix/var/nix/profiles/system --set ${config.system.build.toplevel} \ --option build-users-group "" diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index 7dfbc38efee..8aa64368755 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -149,11 +149,11 @@ let ${pkgs.mtools}/bin/mlabel -i /dev/vda2 ::boot # Mount /boot; load necessary modules first. - ${pkgs.module_init_tools}/sbin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/nls/nls_cp437.ko || true - ${pkgs.module_init_tools}/sbin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/nls/nls_iso8859-1.ko || true - ${pkgs.module_init_tools}/sbin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/fat/fat.ko || true - ${pkgs.module_init_tools}/sbin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/fat/vfat.ko || true - ${pkgs.module_init_tools}/sbin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/efivarfs/efivarfs.ko || true + ${pkgs.kmod}/sbin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/nls/nls_cp437.ko.xz || true + ${pkgs.kmod}/sbin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/nls/nls_iso8859-1.ko.xz || true + ${pkgs.kmod}/sbin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/fat/fat.ko.xz || true + ${pkgs.kmod}/sbin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/fat/vfat.ko.xz || true + ${pkgs.kmod}/sbin/insmod ${pkgs.linux}/lib/modules/*/kernel/fs/efivarfs/efivarfs.ko.xz || true mkdir /boot mount /dev/vda2 /boot @@ -403,7 +403,7 @@ in boot.postBootCommands = '' if [[ "$(cat /proc/cmdline)" =~ regInfo=([^ ]*) ]]; then - ${config.nix.package}/bin/nix-store --load-db < ''${BASH_REMATCH[1]} + ${config.nix.package.out}/bin/nix-store --load-db < ''${BASH_REMATCH[1]} fi ''; diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index 731dd36cdfd..abb69f121da 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -48,7 +48,7 @@ in rec { nixos.ova.x86_64-linux #(all nixos.tests.containers) - #(all nixos.tests.chromium.stable) + (all nixos.tests.chromium.stable) (all nixos.tests.firefox) (all nixos.tests.firewall) nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux @@ -64,6 +64,9 @@ in rec { (all nixos.tests.installer.btrfsSubvols) (all nixos.tests.installer.btrfsSubvolDefault) (all nixos.tests.boot.biosCdrom) + (all nixos.tests.boot.biosUsb) + (all nixos.tests.boot.uefiCdrom) + (all nixos.tests.boot.uefiUsb) (all nixos.tests.ipv6) (all nixos.tests.kde4) #(all nixos.tests.lightdm) diff --git a/nixos/release-small.nix b/nixos/release-small.nix index 08ca4cfb3e4..fb5a97f98ab 100644 --- a/nixos/release-small.nix +++ b/nixos/release-small.nix @@ -31,7 +31,8 @@ in rec { inherit (nixos') channel manual iso_minimal dummy; tests = { inherit (nixos'.tests) - containers + containers-imperative + containers-ipv4 firewall ipv6 login diff --git a/nixos/release.nix b/nixos/release.nix index 2bccef1fd34..8409191200c 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -103,6 +103,19 @@ in rec { # Build the initial ramdisk so Hydra can keep track of its size over time. initialRamdisk = buildFromConfig ({ pkgs, ... }: { }) (config: config.system.build.initialRamdisk); + netboot.x86_64-linux = let build = (import lib/eval-config.nix { + system = "x86_64-linux"; + modules = [ + ./modules/installer/netboot/netboot-minimal.nix + versionModule + ]; + }).config.system.build; + in + pkgs.symlinkJoin {name="netboot"; paths=[ + build.netbootRamdisk + build.kernel + build.netbootIpxeScript + ];}; iso_minimal = forAllSystems (system: makeIso { module = ./modules/installer/cd-dvd/installation-cd-minimal.nix; @@ -199,7 +212,10 @@ in rec { tests.cadvisor = hydraJob (import tests/cadvisor.nix { system = "x86_64-linux"; }); tests.chromium = callSubTests tests/chromium.nix {}; tests.cjdns = callTest tests/cjdns.nix {}; - tests.containers = callTest tests/containers.nix {}; + tests.containers-ipv4 = callTest tests/containers-ipv4.nix {}; + tests.containers-ipv6 = callTest tests/containers-ipv6.nix {}; + tests.containers-bridge = callTest tests/containers-bridge.nix {}; + tests.containers-imperative = callTest tests/containers-imperative.nix {}; tests.docker = hydraJob (import tests/docker.nix { system = "x86_64-linux"; }); tests.dockerRegistry = hydraJob (import tests/docker-registry.nix { system = "x86_64-linux"; }); tests.dnscrypt-proxy = callTest tests/dnscrypt-proxy.nix { system = "x86_64-linux"; }; diff --git a/nixos/tests/boot.nix b/nixos/tests/boot.nix index 905d1645882..a138ba4bcf0 100644 --- a/nixos/tests/boot.nix +++ b/nixos/tests/boot.nix @@ -44,5 +44,41 @@ in { usb => glob("${iso}/iso/*.iso"), bios => '${pkgs.OVMF}/FV/OVMF.fd' ''; - } - + netboot = let + config = (import ../lib/eval-config.nix { + inherit system; + modules = + [ ../modules/installer/netboot/netboot.nix + ../modules/testing/test-instrumentation.nix + { key = "serial"; } + ]; + }).config; + ipxeScriptDir = pkgs.writeTextFile { + name = "ipxeScriptDir"; + text = '' + #!ipxe + dhcp + kernel bzImage init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} console=ttyS0 + initrd initrd + boot + ''; + destination = "/boot.ipxe"; + }; + ipxeBootDir = pkgs.symlinkJoin "ipxeBootDir" [ + config.system.build.netbootRamdisk + config.system.build.kernel + ipxeScriptDir + ]; + in + makeTest { + name = "boot-netboot"; + nodes = { }; + testScript = + '' + my $machine = createMachine({ qemuFlags => '-boot order=n -net nic,model=e1000 -net user,tftp=${ipxeBootDir}/,bootfile=boot.ipxe -m 2000M' }); + $machine->start; + $machine->waitForUnit("multi-user.target"); + $machine->shutdown; + ''; + }; +} \ No newline at end of file diff --git a/nixos/tests/containers-bridge.nix b/nixos/tests/containers-bridge.nix new file mode 100644 index 00000000000..8c3340b60a7 --- /dev/null +++ b/nixos/tests/containers-bridge.nix @@ -0,0 +1,81 @@ +# Test for NixOS' container support. + +let + hostIp = "192.168.0.1"; + containerIp = "192.168.0.100/24"; + hostIp6 = "fc00::1"; + containerIp6 = "fc00::2/7"; +in + +import ./make-test.nix ({ pkgs, ...} : { + name = "containers-bridge"; + meta = with pkgs.stdenv.lib.maintainers; { + maintainers = [ aristid aszlig eelco chaoflow ]; + }; + + machine = + { config, pkgs, ... }: + { imports = [ ../modules/installer/cd-dvd/channel.nix ]; + virtualisation.writableStore = true; + virtualisation.memorySize = 768; + + networking.bridges = { + br0 = { + interfaces = []; + }; + }; + networking.interfaces = { + br0 = { + ip4 = [{ address = hostIp; prefixLength = 24; }]; + ip6 = [{ address = hostIp6; prefixLength = 7; }]; + }; + }; + + containers.webserver = + { + autoStart = true; + privateNetwork = true; + hostBridge = "br0"; + localAddress = containerIp; + localAddress6 = containerIp6; + config = + { services.httpd.enable = true; + services.httpd.adminAddr = "foo@example.org"; + networking.firewall.allowedTCPPorts = [ 80 ]; + networking.firewall.allowPing = true; + }; + }; + + virtualisation.pathsInNixDB = [ pkgs.stdenv ]; + }; + + testScript = + '' + $machine->waitForUnit("default.target"); + $machine->succeed("nixos-container list") =~ /webserver/ or die; + + # Start the webserver container. + $machine->succeed("nixos-container status webserver") =~ /up/ or die; + + "${containerIp}" =~ /([^\/]+)\/([0-9+])/; + my $ip = $1; + chomp $ip; + $machine->succeed("ping -n -c 1 $ip"); + $machine->succeed("curl --fail http://$ip/ > /dev/null"); + + "${containerIp6}" =~ /([^\/]+)\/([0-9+])/; + my $ip6 = $1; + chomp $ip6; + $machine->succeed("ping6 -n -c 1 $ip6"); + $machine->succeed("curl --fail http://[$ip6]/ > /dev/null"); + + # Stop the container. + $machine->succeed("nixos-container stop webserver"); + $machine->fail("curl --fail --connect-timeout 2 http://$ip/ > /dev/null"); + $machine->fail("curl --fail --connect-timeout 2 http://[$ip6]/ > /dev/null"); + + # Destroying a declarative container should fail. + $machine->fail("nixos-container destroy webserver"); + ''; + +}) diff --git a/nixos/tests/containers.nix b/nixos/tests/containers-imperative.nix similarity index 70% rename from nixos/tests/containers.nix rename to nixos/tests/containers-imperative.nix index ce36a7e0588..8d100fedf78 100644 --- a/nixos/tests/containers.nix +++ b/nixos/tests/containers-imperative.nix @@ -1,7 +1,7 @@ # Test for NixOS' container support. import ./make-test.nix ({ pkgs, ...} : { - name = "containers"; + name = "containers-imperative"; meta = with pkgs.stdenv.lib.maintainers; { maintainers = [ aristid aszlig eelco chaoflow ]; }; @@ -11,40 +11,11 @@ import ./make-test.nix ({ pkgs, ...} : { { imports = [ ../modules/installer/cd-dvd/channel.nix ]; virtualisation.writableStore = true; virtualisation.memorySize = 768; - - containers.webserver = - { privateNetwork = true; - hostAddress = "10.231.136.1"; - localAddress = "10.231.136.2"; - config = - { services.httpd.enable = true; - services.httpd.adminAddr = "foo@example.org"; - networking.firewall.allowedTCPPorts = [ 80 ]; - networking.firewall.allowPing = true; - }; - }; - virtualisation.pathsInNixDB = [ pkgs.stdenv ]; }; testScript = '' - $machine->succeed("nixos-container list") =~ /webserver/ or die; - - # Start the webserver container. - $machine->succeed("nixos-container start webserver"); - - # Since "start" returns after the container has reached - # multi-user.target, we should now be able to access it. - my $ip = $machine->succeed("nixos-container show-ip webserver"); - chomp $ip; - #$machine->succeed("ping -c1 $ip"); # FIXME - $machine->succeed("curl --fail http://$ip/ > /dev/null"); - - # Stop the container. - $machine->succeed("nixos-container stop webserver"); - $machine->fail("curl --fail --connect-timeout 2 http://$ip/ > /dev/null"); - # Make sure we have a NixOS tree (required by ‘nixos-container create’). $machine->succeed("PAGER=cat nix-env -qa -A nixos.hello >&2"); @@ -111,9 +82,6 @@ import ./make-test.nix ({ pkgs, ...} : { # Ensure that the container path is gone "test ! -e /var/lib/containers/$id1" ); - - # Destroying a declarative container should fail. - $machine->fail("nixos-container destroy webserver"); ''; }) diff --git a/nixos/tests/containers-ipv4.nix b/nixos/tests/containers-ipv4.nix new file mode 100644 index 00000000000..8f1ab40221a --- /dev/null +++ b/nixos/tests/containers-ipv4.nix @@ -0,0 +1,55 @@ +# Test for NixOS' container support. + +import ./make-test.nix ({ pkgs, ...} : { + name = "containers-ipv4"; + meta = with pkgs.stdenv.lib.maintainers; { + maintainers = [ aristid aszlig eelco chaoflow ]; + }; + + machine = + { config, pkgs, ... }: + { imports = [ ../modules/installer/cd-dvd/channel.nix ]; + virtualisation.writableStore = true; + virtualisation.memorySize = 768; + + containers.webserver = + { privateNetwork = true; + hostAddress = "10.231.136.1"; + localAddress = "10.231.136.2"; + config = + { services.httpd.enable = true; + services.httpd.adminAddr = "foo@example.org"; + networking.firewall.allowedTCPPorts = [ 80 ]; + networking.firewall.allowPing = true; + }; + }; + + virtualisation.pathsInNixDB = [ pkgs.stdenv ]; + }; + + testScript = + '' + $machine->succeed("nixos-container list") =~ /webserver/ or die; + + # Start the webserver container. + $machine->succeed("nixos-container start webserver"); + + # wait two seconds for the container to start and the network to be up + sleep 2; + + # Since "start" returns after the container has reached + # multi-user.target, we should now be able to access it. + my $ip = $machine->succeed("nixos-container show-ip webserver"); + chomp $ip; + $machine->succeed("ping -n -c1 $ip"); + $machine->succeed("curl --fail http://$ip/ > /dev/null"); + + # Stop the container. + $machine->succeed("nixos-container stop webserver"); + $machine->fail("curl --fail --connect-timeout 2 http://$ip/ > /dev/null"); + + # Destroying a declarative container should fail. + $machine->fail("nixos-container destroy webserver"); + ''; + +}) diff --git a/nixos/tests/containers-ipv6.nix b/nixos/tests/containers-ipv6.nix new file mode 100644 index 00000000000..0c1b8e88564 --- /dev/null +++ b/nixos/tests/containers-ipv6.nix @@ -0,0 +1,61 @@ +# Test for NixOS' container support. + +let + hostIp = "fc00::2"; + localIp = "fc00::1"; +in + +import ./make-test.nix ({ pkgs, ...} : { + name = "containers-ipv6"; + meta = with pkgs.stdenv.lib.maintainers; { + maintainers = [ aristid aszlig eelco chaoflow ]; + }; + + machine = + { config, pkgs, ... }: + { imports = [ ../modules/installer/cd-dvd/channel.nix ]; + virtualisation.writableStore = true; + virtualisation.memorySize = 768; + + containers.webserver = + { privateNetwork = true; + hostAddress6 = hostIp; + localAddress6 = localIp; + config = + { services.httpd.enable = true; + services.httpd.adminAddr = "foo@example.org"; + networking.firewall.allowedTCPPorts = [ 80 ]; + networking.firewall.allowPing = true; + }; + }; + + virtualisation.pathsInNixDB = [ pkgs.stdenv ]; + }; + + testScript = + '' + $machine->waitForUnit("default.target"); + $machine->succeed("nixos-container list") =~ /webserver/ or die; + + # Start the webserver container. + $machine->succeed("nixos-container start webserver"); + + # wait two seconds for the container to start and the network to be up + sleep 2; + + # Since "start" returns after the container has reached + # multi-user.target, we should now be able to access it. + my $ip = "${localIp}"; + chomp $ip; + $machine->succeed("ping6 -n -c 1 $ip"); + $machine->succeed("curl --fail http://[$ip]/ > /dev/null"); + + # Stop the container. + $machine->succeed("nixos-container stop webserver"); + $machine->fail("curl --fail --connect-timeout 2 http://[$ip]/ > /dev/null"); + + # Destroying a declarative container should fail. + $machine->fail("nixos-container destroy webserver"); + ''; + +}) diff --git a/nixos/tests/printing.nix b/nixos/tests/printing.nix index 10d69b446cd..c777fd41b78 100644 --- a/nixos/tests/printing.nix +++ b/nixos/tests/printing.nix @@ -62,7 +62,7 @@ import ./make-test.nix ({pkgs, ... }: { # Test printing various file types. foreach my $file ("${pkgs.groff.doc}/share/doc/*/examples/mom/penguin.pdf", "${pkgs.groff.doc}/share/doc/*/meref.ps", - "${pkgs.cups}/share/doc/cups/images/cups.png", + "${pkgs.cups.out}/share/doc/cups/images/cups.png", "${pkgs.pcre.doc}/share/doc/pcre/pcre.txt") { $file =~ /([^\/]*)$/; my $fn = $1; diff --git a/pkgs/applications/altcoins/memorycoin.nix b/pkgs/applications/altcoins/memorycoin.nix index 4e5e24e3062..0470fd21eae 100644 --- a/pkgs/applications/altcoins/memorycoin.nix +++ b/pkgs/applications/altcoins/memorycoin.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, openssl, db48, boost -, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode +, zlib, miniupnpc, qt4, qmake4Hook, utillinux, protobuf, qrencode , withGui }: with stdenv.lib; @@ -15,13 +15,11 @@ stdenv.mkDerivation rec{ buildInputs = [ pkgconfig openssl db48 boost zlib miniupnpc utillinux protobuf ] - ++ optionals withGui [ qt4 qrencode ]; + ++ optionals withGui [ qt4 qmake4Hook qrencode ]; configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; - configurePhase = optional withGui "qmake"; - preBuild = optional (!withGui) "cd src; cp makefile.unix Makefile"; installPhase = diff --git a/pkgs/applications/altcoins/namecoin.nix b/pkgs/applications/altcoins/namecoin.nix index f2e2aae698e..563363b8baf 100644 --- a/pkgs/applications/altcoins/namecoin.nix +++ b/pkgs/applications/altcoins/namecoin.nix @@ -1,4 +1,4 @@ -{ stdenv, db4, boost, openssl, qt4, miniupnpc, unzip, namecoind }: +{ stdenv, db4, boost, openssl, qt4, qmake4Hook, miniupnpc, unzip, namecoind }: with stdenv.lib; stdenv.mkDerivation rec { @@ -7,15 +7,9 @@ stdenv.mkDerivation rec { version = namecoind.version; src = namecoind.src; - buildInputs = [ db4 boost openssl unzip qt4 miniupnpc ]; + buildInputs = [ db4 boost openssl unzip qt4 qmake4Hook miniupnpc ]; - configurePhase = '' - qmake USE_UPNP=- - ''; - - buildPhase = '' - make - ''; + qmakeFlags = [ "USE_UPNP=-" ]; installPhase = '' mkdir -p $out/bin diff --git a/pkgs/applications/altcoins/primecoin.nix b/pkgs/applications/altcoins/primecoin.nix index 61bba04cb6a..360a39a4fd8 100644 --- a/pkgs/applications/altcoins/primecoin.nix +++ b/pkgs/applications/altcoins/primecoin.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, openssl, db48, boost -, zlib, miniupnpc, qt4, utillinux, protobuf, qrencode +, zlib, miniupnpc, qt4, qmake4Hook, utillinux, protobuf, qrencode , withGui }: with stdenv.lib; @@ -15,13 +15,11 @@ stdenv.mkDerivation rec{ buildInputs = [ pkgconfig openssl db48 boost zlib miniupnpc utillinux protobuf ] - ++ optionals withGui [ qt4 qrencode ]; + ++ optionals withGui [ qt4 qmake4Hook qrencode ]; configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; - configurePhase = optional withGui "qmake"; - preBuild = optional (!withGui) "cd src; cp makefile.unix Makefile"; installPhase = diff --git a/pkgs/applications/audio/MMA/default.nix b/pkgs/applications/audio/MMA/default.nix new file mode 100644 index 00000000000..224ae9f6f6f --- /dev/null +++ b/pkgs/applications/audio/MMA/default.nix @@ -0,0 +1,68 @@ +{ stdenv, fetchurl, makeWrapper, python, alsaUtils, timidity }: + + stdenv.mkDerivation rec { + version = "15.12"; + name = "mma-${version}"; + + src = fetchurl { + url = "http://www.mellowood.ca/mma/mma-bin-${version}.tar.gz"; + sha256 = "0k37kcrfaxmwjb8xb1cbqinrkx3g50dbvwqbvwl3l762j4vr8jgx"; + }; + + buildInputs = [ makeWrapper python alsaUtils timidity ]; + + patchPhase = '' + sed -i 's@/usr/bin/aplaymidi@/${alsaUtils}/bin/aplaymidi@g' mma-splitrec + sed -i 's@/usr/bin/aplaymidi@/${alsaUtils}/bin/aplaymidi@g' util/mma-splitrec.py + sed -i 's@/usr/bin/arecord@/${alsaUtils}/bin/arecord@g' mma-splitrec + sed -i 's@/usr/bin/arecord@/${alsaUtils}/bin/arecord@g' util/mma-splitrec.py + sed -i 's@/usr/bin/timidity@/${timidity}/bin/timidity@g' mma-splitrec + sed -i 's@/usr/bin/timidity@/${timidity}/bin/timidity@g' util/mma-splitrec.py + find . -type f | xargs sed -i 's@/usr/bin/env python@${python}/bin/python@g' + ''; + + installPhase = '' + mkdir -p $out/{bin,share/mma,share/man/man1,share/man/man8} + mkdir -p $out/etc + + cp mma.py $out/bin/mma + cp mma-gb $out/bin/mma-gb + cp mma-libdoc $out/bin/mma-libdoc + cp mma-renum $out/bin/mma-renum + cp mma-splitrec $out/bin/mma-splitrec + cp util/mma-mnx.py $out/bin/mma-mnx + cp util/mma-rm2std.py $out/bin/mma-rm2std + cp util/mmatabs.py $out/bin/mmatabs + cp util/mup2mma.py $out/bin/mup2mma + cp util/pg2mma.py $out/bin/pg2mma + cp util/synthsplit.py $out/bin/mma-synthsplit + cp -r {docs,egs,includes,lib,MMA,text} $out/share/mma + rmdir $out/share/mma/includes/aria + + cp util/README.* $out/share/mma/docs + mv $out/share/mma/docs/man/mma-libdoc.8 $out/share/man/man8 + mv $out/share/mma/docs/man/mma-renum.1 $out/share/man/man1 + mv $out/share/mma/docs/man/mma.1 $out/share/man/man1 + mv $out/share/mma/docs/man/mma-gb.1 $out/share/man/man1 + rm -rf $out/share/mma/docs/man + find $out -type f | xargs sed -i "s@/usr/share/mma@$out/share/mma@g" + ''; + + preFixup = '' + PYTHONPATH=$out/share/mma/:$PYTHONPATH + for f in $out/bin/*; do + wrapProgram $f \ + --prefix PYTHONPATH : $PYTHONPATH + done + cd $out/share/mma/ + $out/bin/mma -G + ''; + + meta = { + description = "Creates MIDI tracks for a soloist to perform over from a user supplied file containing chords"; + homepage = http://www.mellowood.ca/mma/index.html; + license = stdenv.lib.licenses.gpl2; + maintainers = [ stdenv.lib.maintainers.magnetophon ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/applications/audio/abcde/default.nix b/pkgs/applications/audio/abcde/default.nix index cfce61c8752..b5ccde86619 100644 --- a/pkgs/applications/audio/abcde/default.nix +++ b/pkgs/applications/audio/abcde/default.nix @@ -3,13 +3,13 @@ , perl, DigestSHA, MusicBrainz, MusicBrainzDiscID , makeWrapper }: -let version = "2.7"; +let version = "2.7.2"; in stdenv.mkDerivation { name = "abcde-${version}"; src = fetchurl { url = "http://abcde.einval.com/download/abcde-${version}.tar.gz"; - sha256 = "0ikpffzvacadh6vj9qlary8126j1zrd2knp9gvivmp7y1656jj01"; + sha256 = "1pakpi41k8yd780mfp0snhia6mmwjwxk9lcrq6gynimch8b8hfda"; }; # FIXME: This package does not support `distmp3', `eject', etc. @@ -39,6 +39,8 @@ in buildInputs = [ makeWrapper ]; + installFlags = [ "sysconfdir=$(out)/etc" ]; + postInstall = '' # substituteInPlace "$out/bin/cddb-tool" \ # --replace '#!/bin/sh' '#!${bash}/bin/sh' diff --git a/pkgs/applications/audio/audacity/default.nix b/pkgs/applications/audio/audacity/default.nix index afa8a94d200..a93a445db31 100644 --- a/pkgs/applications/audio/audacity/default.nix +++ b/pkgs/applications/audio/audacity/default.nix @@ -1,15 +1,15 @@ -{ stdenv, fetchurl, wxGTK, pkgconfig, gettext, gtk, glib, zlib, perl, intltool, +{ stdenv, fetchurl, wxGTK30, pkgconfig, gettext, gtk, glib, zlib, perl, intltool, libogg, libvorbis, libmad, alsaLib, libsndfile, soxr, flac, lame, fetchpatch, expat, libid3tag, ffmpeg, soundtouch /*, portaudio - given up fighting their portaudio.patch */ }: stdenv.mkDerivation rec { - version = "2.1.1"; + version = "2.1.2"; name = "audacity-${version}"; src = fetchurl { url = "https://github.com/audacity/audacity/archive/Audacity-${version}.tar.gz"; - sha256 = "15c5ff7ac1c0b19b08f4bdcb0f4988743da2f9ed3fab41d6f07600e67cb9ddb6"; + sha256 = "1ggr6g0mk36rqj7ahsg8b0b1r9kphwajzvxgn43md263rm87n04h"; }; patches = [(fetchpatch { name = "new-ffmpeg.patch"; @@ -18,12 +18,6 @@ stdenv.mkDerivation rec { sha256 = "19fr674mw844zmkp1476yigkcnmb6zyn78av64ccdwi3p68i00rf"; })]; - # fix with gcc-5 from http://lists.freebsd.org/pipermail/freebsd-ports-bugs/2012-December/245884.html - postPatch = '' - substituteInPlace lib-src/libnyquist/nyquist/ffts/src/fftlib.c \ - --replace 'inline void' 'static inline void' - ''; - preConfigure = /* we prefer system-wide libs */ '' mv lib-src lib-src-rm mkdir lib-src @@ -31,11 +25,11 @@ stdenv.mkDerivation rec { rm -r lib-src-rm/ ''; - configureFlags = "--with-libsamplerate"; + configureFlags = [ "--with-libsamplerate" ]; buildInputs = [ - pkgconfig gettext wxGTK gtk expat alsaLib - libsndfile soxr libid3tag + pkgconfig gettext wxGTK30 expat alsaLib + libsndfile soxr libid3tag gtk ffmpeg libmad lame libvorbis flac soundtouch ]; #ToDo: detach sbsms diff --git a/pkgs/applications/audio/deadbeef/default.nix b/pkgs/applications/audio/deadbeef/default.nix index b8942033976..43aba89213f 100644 --- a/pkgs/applications/audio/deadbeef/default.nix +++ b/pkgs/applications/audio/deadbeef/default.nix @@ -53,11 +53,11 @@ assert remoteSupport -> curl != null; stdenv.mkDerivation rec { name = "deadbeef-${version}"; - version = "0.7.0"; + version = "0.7.2"; src = fetchurl { url = "mirror://sourceforge/project/deadbeef/${name}.tar.bz2"; - sha256 = "0s6qip1zs83pig75pnd30ayiv1dbbj7s72px9mr31f4m0v86kaqx"; + sha256 = "0rwdxxn7h94vlgblbkswyvj6pm82488v8x5nrmlrcsbzjjf2pccw"; }; buildInputs = with stdenv.lib; [ jansson ] @@ -96,10 +96,10 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Ultimate Music Player for GNU/Linux"; - homepage = http://deadbeef.sourceforge.net/; + homepage = "http://deadbeef.sourceforge.net/"; license = licenses.gpl2; platforms = platforms.linux; maintainers = [ maintainers.abbradar ]; - repositories.git = https://github.com/Alexey-Yakovenko/deadbeef; + repositories.git = "https://github.com/Alexey-Yakovenko/deadbeef"; }; } diff --git a/pkgs/applications/audio/deadbeef/wrapper.nix b/pkgs/applications/audio/deadbeef/wrapper.nix index b612f195af3..5b14302204e 100644 --- a/pkgs/applications/audio/deadbeef/wrapper.nix +++ b/pkgs/applications/audio/deadbeef/wrapper.nix @@ -1,22 +1,14 @@ -{ stdenv, buildEnv, deadbeef, makeWrapper, plugins }: +{ stdenv, symlinkJoin, deadbeef, makeWrapper, plugins }: -let -drv = buildEnv { - name = "deadbeef-with-plugins-" + (builtins.parseDrvName deadbeef.name).version; +symlinkJoin { + name = "deadbeef-with-plugins-${deadbeef.version}"; paths = [ deadbeef ] ++ plugins; + buildInputs = [ makeWrapper ]; + postBuild = '' - # TODO: This could be avoided if buildEnv could be forced to create all directories - if [ -L $out/bin ]; then - rm $out/bin - mkdir $out/bin - for i in ${deadbeef}/bin/*; do - ln -s $i $out/bin - done - fi wrapProgram $out/bin/deadbeef \ --set DEADBEEF_PLUGIN_DIR "$out/lib/deadbeef" ''; - }; -in stdenv.lib.overrideDerivation drv (x : { buildInputs = x.buildInputs ++ [ makeWrapper ]; }) +} diff --git a/pkgs/applications/audio/dfasma/default.nix b/pkgs/applications/audio/dfasma/default.nix index 94f20bc543e..d006f2c0178 100644 --- a/pkgs/applications/audio/dfasma/default.nix +++ b/pkgs/applications/audio/dfasma/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, fftw, libsndfile, qtbase, qtmultimedia, makeQtWrapper }: +{ stdenv, fetchFromGitHub, fftw, libsndfile, qtbase, qtmultimedia, qmakeHook, makeQtWrapper }: let @@ -37,7 +37,7 @@ in stdenv.mkDerivation rec { owner = "gillesdegottex"; }; - buildInputs = [ fftw libsndfile qtbase qtmultimedia ]; + buildInputs = [ fftw libsndfile qtbase qtmultimedia qmakeHook ]; nativeBuildInputs = [ makeQtWrapper ]; @@ -47,10 +47,8 @@ in stdenv.mkDerivation rec { cp -Rv "${libqaudioextra.src}"/* external/libqaudioextra ''; - configurePhase = '' - runHook preConfigure - qmake PREFIX=$out PREFIXSHORTCUT=$out dfasma.pro - runHook postConfigure + preConfigure = '' + qmakeFlags="$qmakeFlags PREFIXSHORTCUT=$out" ''; enableParallelBuilding = true; diff --git a/pkgs/applications/audio/fmit/default.nix b/pkgs/applications/audio/fmit/default.nix index c27e049a4ae..d99e2e577eb 100644 --- a/pkgs/applications/audio/fmit/default.nix +++ b/pkgs/applications/audio/fmit/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, fftw, freeglut, qtbase, qtmultimedia +{ stdenv, fetchFromGitHub, fftw, freeglut, mesa_glu, qtbase, qtmultimedia, qmakeHook , alsaSupport ? true, alsaLib ? null , jackSupport ? false, libjack2 ? null , portaudioSupport ? false, portaudio ? null }: @@ -9,31 +9,26 @@ assert portaudioSupport -> portaudio != null; stdenv.mkDerivation rec { name = "fmit-${version}"; - version = "1.0.8"; + version = "1.0.13"; src = fetchFromGitHub { - sha256 = "04s7xcgmi5g58lirr48vf203n1jwdxf981x1p6ysbax24qwhs2kd"; + sha256 = "04cj70q60sqns68nvw4zfy6078x4cc2q1y2y13z3rs5n80jw27by"; rev = "v${version}"; repo = "fmit"; owner = "gillesdegottex"; }; - buildInputs = [ fftw freeglut qtbase qtmultimedia ] + buildInputs = [ fftw freeglut mesa_glu qtbase qtmultimedia qmakeHook ] ++ stdenv.lib.optionals alsaSupport [ alsaLib ] ++ stdenv.lib.optionals jackSupport [ libjack2 ] ++ stdenv.lib.optionals portaudioSupport [ portaudio ]; - configurePhase = '' - runHook preConfigure - mkdir build - cd build - qmake \ + preConfigure = '' + qmakeFlags="$qmakeFlags \ CONFIG+=${stdenv.lib.optionalString alsaSupport "acs_alsa"} \ CONFIG+=${stdenv.lib.optionalString jackSupport "acs_jack"} \ CONFIG+=${stdenv.lib.optionalString portaudioSupport "acs_portaudio"} \ - PREFIX="$out" PREFIXSHORTCUT="$out" \ - ../fmit.pro - runHook postConfigure + PREFIXSHORTCUT=$out" ''; enableParallelBuilding = true; diff --git a/pkgs/applications/audio/iannix/default.nix b/pkgs/applications/audio/iannix/default.nix index f17abf97521..83fd2b14ed2 100644 --- a/pkgs/applications/audio/iannix/default.nix +++ b/pkgs/applications/audio/iannix/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, alsaLib, pkgconfig, qt5 +{ stdenv, fetchFromGitHub, alsaLib, pkgconfig, qtbase, qtscript, qmakeHook }: stdenv.mkDerivation rec { @@ -11,13 +11,9 @@ stdenv.mkDerivation rec { sha256 = "184ydb9f1303v332k5k3f1ki7cb6nkxhh6ij0yn72v7dp7figrgj"; }; - buildInputs = [ alsaLib pkgconfig qt5.qtbase qt5.qtscript ]; + buildInputs = [ alsaLib pkgconfig qtbase qtscript qmakeHook ]; - configurePhase = '' - runHook preConfigure - qmake PREFIX=/ - runHook postConfigure - ''; + qmakeFlags = [ "PREFIX=/" ]; installFlags = [ "INSTALL_ROOT=$(out)" ]; diff --git a/pkgs/applications/audio/keyfinder/default.nix b/pkgs/applications/audio/keyfinder/default.nix index 049920d2807..0cacd772493 100644 --- a/pkgs/applications/audio/keyfinder/default.nix +++ b/pkgs/applications/audio/keyfinder/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, libav_0_8, libkeyfinder, qtbase, qtxmlpatterns, taglib }: +{ stdenv, fetchFromGitHub, libav_0_8, libkeyfinder, qtbase, qtxmlpatterns, qmakeHook, taglib }: stdenv.mkDerivation rec { name = "keyfinder-${version}"; @@ -11,21 +11,14 @@ stdenv.mkDerivation rec { owner = "ibsh"; }; - buildInputs = [ libav_0_8 libkeyfinder qtbase qtxmlpatterns taglib ]; + buildInputs = [ libav_0_8 libkeyfinder qtbase qtxmlpatterns qmakeHook taglib ]; postPatch = '' substituteInPlace is_KeyFinder.pro \ --replace "keyfinder.0" "keyfinder" \ - --replace '$$[QT_INSTALL_PREFIX]' "$out" \ --replace "-stdlib=libc++" "" ''; - configurePhase = '' - runHook preConfigure - qmake - runHook postConfigure - ''; - enableParallelBuilding = true; meta = with stdenv.lib; { diff --git a/pkgs/applications/audio/non/default.nix b/pkgs/applications/audio/non/default.nix index ead53721950..9217bc285bc 100644 --- a/pkgs/applications/audio/non/default.nix +++ b/pkgs/applications/audio/non/default.nix @@ -4,12 +4,12 @@ stdenv.mkDerivation rec { name = "non-${version}"; - version = "2016-03-06"; + version = "2016-04-05"; src = fetchFromGitHub { owner = "original-male"; repo = "non"; - rev = "3946d392216ee999b560d8b7cdee7c4347110e29"; - sha256 = "02vnq2mfimgdrmv3lmz80yif4h9a1lympv0wqc5dr2l0f8amj2fp"; + rev = "16885e69fe865495dc32d869d1454ab148b0dca6"; + sha256 = "1nwzzgcdpbqh5kjvz40yy5nmzvpp8gcr9biyhhwi68s5bsg972ss"; }; buildInputs = [ pkgconfig python2 cairo libjpeg ntk libjack2 libsndfile diff --git a/pkgs/applications/audio/paprefs/default.nix b/pkgs/applications/audio/paprefs/default.nix index 3ce52806a4e..0f8c7a95010 100644 --- a/pkgs/applications/audio/paprefs/default.nix +++ b/pkgs/applications/audio/paprefs/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { dialog for the PulseAudio sound server. ''; - homepage = http://freedesktop.org/software/pulseaudio/paprefs/; + homepage = "http://freedesktop.org/software/pulseaudio/paprefs/"; license = licenses.gpl2Plus; diff --git a/pkgs/applications/audio/pavucontrol/default.nix b/pkgs/applications/audio/pavucontrol/default.nix index 2c6f70195b1..f218767c55e 100644 --- a/pkgs/applications/audio/pavucontrol/default.nix +++ b/pkgs/applications/audio/pavucontrol/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { easily control the volume of all clients, sinks, etc. ''; - homepage = http://freedesktop.org/software/pulseaudio/pavucontrol/ ; + homepage = "http://freedesktop.org/software/pulseaudio/pavucontrol/"; license = stdenv.lib.licenses.gpl2Plus; diff --git a/pkgs/applications/audio/puredata/wrapper.nix b/pkgs/applications/audio/puredata/wrapper.nix index 0a30037b226..9c0a48db51c 100644 --- a/pkgs/applications/audio/puredata/wrapper.nix +++ b/pkgs/applications/audio/puredata/wrapper.nix @@ -1,23 +1,16 @@ -{ stdenv, buildEnv, puredata, makeWrapper, plugins }: +{ stdenv, symlinkJoin, puredata, makeWrapper, plugins }: let puredataFlags = map (x: "-path ${x}/") plugins; -drv = buildEnv { - name = "puredata-with-plugins-" + (builtins.parseDrvName puredata.name).version; +in symlinkJoin { + name = "puredata-with-plugins-${puredata.version}"; paths = [ puredata ] ++ plugins; + buildInputs = [ makeWrapper ]; + postBuild = '' - # TODO: This could be avoided if buildEnv could be forced to create all directories - if [ -L $out/bin ]; then - rm $out/bin - mkdir $out/bin - for i in ${puredata}/bin/*; do - ln -s $i $out/bin - done - fi wrapProgram $out/bin/pd \ --add-flags "${toString puredataFlags}" ''; - }; -in stdenv.lib.overrideDerivation drv (x : { buildInputs = x.buildInputs ++ [ makeWrapper ]; }) +} diff --git a/pkgs/applications/audio/qtscrobbler/default.nix b/pkgs/applications/audio/qtscrobbler/default.nix index e7108ebe487..453da89953e 100644 --- a/pkgs/applications/audio/qtscrobbler/default.nix +++ b/pkgs/applications/audio/qtscrobbler/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchurl, withMtp ? true, libmtp, pkgconfig, which, qt4 }: +{ stdenv, lib, fetchurl, withMtp ? true, libmtp, pkgconfig, which, qt4, qmake4Hook }: stdenv.mkDerivation rec { name = "qtscrobbler-${version}"; @@ -9,18 +9,16 @@ stdenv.mkDerivation rec { sha256 = "01c8e48f616ed09504833d27d92fd62f455bd645ea2d1cc2a5f4c287d641daba"; }; - nativeBuildInputs = lib.optionals withMtp [ pkgconfig which ]; + nativeBuildInputs = [ qmake4Hook ] ++ lib.optionals withMtp [ pkgconfig which ]; buildInputs = [ qt4 ] ++ lib.optional withMtp libmtp; enableParallelBuilding = true; postPatch = '' cd src - sed -i "s,/usr/local,$out," common.pri + sed -i -e "s,/usr/local,$out," -e "s,/usr,," common.pri ''; - configurePhase = "qmake"; - meta = with lib; { description = "Qt based last.fm scrobbler"; longDescription = '' diff --git a/pkgs/applications/audio/renoise/default.nix b/pkgs/applications/audio/renoise/default.nix index 39c0d579e81..7b4c1143fb4 100644 --- a/pkgs/applications/audio/renoise/default.nix +++ b/pkgs/applications/audio/renoise/default.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { ln -s $path/lib/*.so* $out/lib/ done - ln -s ${stdenv.cc.cc}/lib/libstdc++.so.6 $out/lib/ + ln -s ${stdenv.cc.cc.lib}/lib/libstdc++.so.6 $out/lib/ mkdir $out/bin ln -s $out/renoise $out/bin/renoise diff --git a/pkgs/applications/audio/sonic-visualiser/default.nix b/pkgs/applications/audio/sonic-visualiser/default.nix index ae7a39240a5..31a95c51fc5 100644 --- a/pkgs/applications/audio/sonic-visualiser/default.nix +++ b/pkgs/applications/audio/sonic-visualiser/default.nix @@ -3,7 +3,7 @@ { stdenv, fetchurl, alsaLib, bzip2, fftw, libjack2, libX11, liblo , libmad, libogg, librdf, librdf_raptor, librdf_rasqal, libsamplerate , libsndfile, pkgconfig, libpulseaudio, makeQtWrapper, qtbase, redland -, rubberband, serd, sord, vampSDK, fftwFloat +, qmakeHook, rubberband, serd, sord, vampSDK, fftwFloat }: stdenv.mkDerivation rec { @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { }; buildInputs = - [ libsndfile qtbase fftw fftwFloat bzip2 librdf rubberband + [ libsndfile qtbase qmakeHook fftw fftwFloat bzip2 librdf rubberband libsamplerate vampSDK alsaLib librdf_raptor librdf_rasqal redland serd sord @@ -32,13 +32,12 @@ stdenv.mkDerivation rec { libX11 ]; - nativeBuildInputs = [ makeQtWrapper ]; + nativeBuildInputs = [ makeQtWrapper qmakeHook ]; - buildPhase = '' + configurePhase = '' for i in sonic-visualiser svapp svcore svgui; - do cd $i && qmake -makefile PREFIX=$out && cd ..; + do cd $i && qmake PREFIX=$out && cd ..; done - make ''; installPhase = '' diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index 0875ca939ee..d6db4403d77 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -5,7 +5,7 @@ assert stdenv.system == "x86_64-linux"; let - version = "1.0.27.71.g0a26e3b2-9"; + version = "1.0.28.89.gf959d4ce-37"; deps = [ alsaLib @@ -50,7 +50,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb"; - sha256 = "1rs08cvn0y1lzazlmzj4sn2iyacadwi6j70n5c7rvfvvs4p61p42"; + sha256 = "06v6fmjn0zi1riqhbmwkrq4m1q1vs95p348i8c12hqvsrp0g2qy5"; }; buildInputs = [ dpkg makeWrapper ]; diff --git a/pkgs/applications/audio/svox/default.nix b/pkgs/applications/audio/svox/default.nix new file mode 100644 index 00000000000..90e7d41a97b --- /dev/null +++ b/pkgs/applications/audio/svox/default.nix @@ -0,0 +1,43 @@ +{ stdenv, fetchgit }: + +stdenv.mkDerivation rec { + name = "svox-${version}"; + version = "2016-01-25"; + + src = fetchgit { + url = "https://android.googlesource.com/platform/external/svox"; + rev = "dfb9937746b1828d093faf3b1494f9dc403f392d"; + sha256 = "1gkfj5avikzmr2vv8bhf83n15jcbz4phz5j13l0qnh3gjzh4f1bk"; + }; + + postPatch = '' + cd pico + ''; + + buildPhase = '' + cd lib + for i in *.c; do + $CC -O2 -fPIC -c -o ''${i%.c}.o $i + done + $CC -shared -o libttspico.so *.o + cd .. + ''; + + installPhase = '' + install -Dm755 lib/libttspico.so $out/lib/libttspico.so + mkdir -p $out/include + cp lib/*.h $out/include + mkdir -p $out/share/pico/lang + cp lang/*.bin $out/share/pico/lang + ''; + + NIX_CFLAGS_COMPILE = [ "-include stdint.h" ]; + + meta = with stdenv.lib; { + description = "Text-to-speech engine"; + homepage = "https://android.googlesource.com/platform/external/svox"; + platforms = platforms.linux; + license = licenses.asl20; + maintainers = with maintainers; [ abbradar ]; + }; +} diff --git a/pkgs/applications/backup/crashplan/default.nix b/pkgs/applications/backup/crashplan/default.nix index b9566e9c535..ef2a19c8451 100644 --- a/pkgs/applications/backup/crashplan/default.nix +++ b/pkgs/applications/backup/crashplan/default.nix @@ -2,14 +2,14 @@ let version = "4.6.0"; - rev = "2"; #tracks unversioned changes that occur on download.code42.com from time to time + rev = "3"; #tracks unversioned changes that occur on download.code42.com from time to time in stdenv.mkDerivation rec { name = "crashplan-${version}-r${rev}"; crashPlanArchive = fetchurl { url = "https://download.code42.com/installs/linux/install/CrashPlan/CrashPlan_${version}_Linux.tgz"; - sha256 = "13rmmdj048r8k4v7ig4i6pnvwyzc1vasfgksf070bx6ksklgbq47"; + sha256 = "0crrx8gy132xcpjfah08qhsl8g2arx14p5mpypcihl9j6mldi6mz"; }; srcs = [ crashPlanArchive ]; diff --git a/pkgs/applications/display-managers/lightdm/default.nix b/pkgs/applications/display-managers/lightdm/default.nix index 968dd7ab991..c33d06e7822 100644 --- a/pkgs/applications/display-managers/lightdm/default.nix +++ b/pkgs/applications/display-managers/lightdm/default.nix @@ -5,15 +5,15 @@ }: let - ver_branch = "1.16"; - version = "1.16.5"; + ver_branch = "1.18"; + version = "1.18.1"; in stdenv.mkDerivation rec { name = "lightdm-${version}"; src = fetchurl { url = "${meta.homepage}/${ver_branch}/${version}/+download/${name}.tar.xz"; - sha256 = "1qb3gvwdm2rymwn8rb1qc4gyam226xmvy2fq5rvmrcmgxblmi34c"; + sha256 = "1yl9zhn9l83bj5mbifkxfw15nqgsjzzhqcrgb81fr290wijqaj45"; }; patches = [ ./fix-paths.patch ]; diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix index 9f8f6f5fd0c..9a392b90dc1 100644 --- a/pkgs/applications/editors/atom/default.nix +++ b/pkgs/applications/editors/atom/default.nix @@ -1,20 +1,6 @@ -{ stdenv, fetchurl, lib, makeDesktopItem, makeWrapper, zlib, glib, alsaLib -, dbus, gtk, atk, pango, freetype, fontconfig, libgnome_keyring3, gdk_pixbuf -, gvfs, cairo, cups, expat, libgpgerror, nspr, gconf, nss, xorg, libcap, systemd -}: +{ stdenv, fetchurl, lib, makeWrapper, gvfs, atomEnv }: -let - atomPkgs = [ - stdenv.cc.cc zlib glib dbus gtk atk pango freetype libgnome_keyring3 - fontconfig gdk_pixbuf cairo cups expat libgpgerror alsaLib nspr gconf nss - xorg.libXrender xorg.libX11 xorg.libXext xorg.libXdamage xorg.libXtst - xorg.libXcomposite xorg.libXi xorg.libXfixes xorg.libXrandr - xorg.libXcursor libcap systemd - ]; - atomLib = lib.makeLibraryPath atomPkgs; - atomLib64 = lib.makeSearchPathOutputs "lib64" ["lib"] atomPkgs; - -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "atom-${version}"; version = "1.6.2"; @@ -26,25 +12,25 @@ in stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper ]; - phases = [ "installPhase" "fixupPhase" ]; - - installPhase = '' - mkdir -p $out + buildCommand = '' + mkdir -p $out/usr/ ar p $src data.tar.gz | tar -C $out -xz ./usr substituteInPlace $out/usr/share/applications/atom.desktop \ --replace /usr/share/atom $out/bin mv $out/usr/* $out/ rm -r $out/share/lintian rm -r $out/usr/ + wrapProgram $out/bin/atom \ + --prefix "PATH" : "${gvfs}/bin" + + fixupPhase + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath "${atomEnv.libPath}:$out/share/atom" \ $out/share/atom/atom patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath "${atomEnv.libPath}" \ $out/share/atom/resources/app/apm/bin/node - wrapProgram $out/bin/atom \ - --prefix "LD_LIBRARY_PATH" : "${atomLib}:${atomLib64}" \ - --prefix "PATH" : "${gvfs}/bin" - wrapProgram $out/bin/apm \ - --prefix "LD_LIBRARY_PATH" : "${atomLib}:${atomLib64}" ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/editors/atom/env.nix b/pkgs/applications/editors/atom/env.nix new file mode 100644 index 00000000000..d91d8a4ecbe --- /dev/null +++ b/pkgs/applications/editors/atom/env.nix @@ -0,0 +1,19 @@ +{ stdenv, lib, zlib, glib, alsaLib, dbus, gtk, atk, pango, freetype, fontconfig +, libgnome_keyring3, gdk_pixbuf, gvfs, cairo, cups, expat, libgpgerror, nspr +, gconf, nss, xorg, libcap, systemd, libnotify +}: + +let + packages = [ + stdenv.cc.cc zlib glib dbus gtk atk pango freetype libgnome_keyring3 + fontconfig gdk_pixbuf cairo cups expat libgpgerror alsaLib nspr gconf nss + xorg.libXrender xorg.libX11 xorg.libXext xorg.libXdamage xorg.libXtst + xorg.libXcomposite xorg.libXi xorg.libXfixes xorg.libXrandr + xorg.libXcursor libcap systemd libnotify + ]; + + libPathNative = lib.makeLibraryPath packages; + libPath64 = lib.makeSearchPathOutputs "lib64" ["lib"] packages; + libPath = "${libPathNative}:${libPath64}"; + +in { inherit packages libPath; } diff --git a/pkgs/applications/editors/eclipse/build-eclipse.nix b/pkgs/applications/editors/eclipse/build-eclipse.nix index 074a622667f..e6828e6adad 100644 --- a/pkgs/applications/editors/eclipse/build-eclipse.nix +++ b/pkgs/applications/editors/eclipse/build-eclipse.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { tar xfvz $src -C $out # Patch binaries. - interpreter=$(echo ${stdenv.glibc}/lib/ld-linux*.so.2) + interpreter=$(echo ${stdenv.glibc.out}/lib/ld-linux*.so.2) libCairo=$out/eclipse/libcairo-swt.so patchelf --set-interpreter $interpreter $out/eclipse/eclipse [ -f $libCairo ] && patchelf --set-rpath ${freetype}/lib:${fontconfig}/lib:${libX11}/lib:${libXrender}/lib:${zlib}/lib $libCairo @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { makeWrapper $out/eclipse/eclipse $out/bin/eclipse \ --prefix PATH : ${jdk}/bin \ - --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib${stdenv.lib.optionalString (webkitgtk2 != null) ":${webkitgtk2}/lib"} \ + --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk.out}/lib:${libXtst}/lib${stdenv.lib.optionalString (webkitgtk2 != null) ":${webkitgtk2}/lib"} \ --add-flags "-configuration \$HOME/.eclipse/''${productId}_$productVersion/configuration" # Create desktop item. diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 87603f20b89..13c2795ea55 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -214,21 +214,22 @@ rec { cup = buildEclipsePluginBase rec { name = "cup-${version}"; - version = "1.0.0.201412081321"; + version = "1.1.0.201604221613"; + version_ = "1.0.0.201604221613"; srcFeature = fetchurl { url = "http://www2.in.tum.de/projects/cup/eclipse/features/CupEclipsePluginFeature_${version}.jar"; - sha256 = "353513445f77ed144687bafc20ab85dc31f2f95ffdc47f102ab773ab0b7afb8b"; + sha256 = "13nnsf0cqg02z3af6xg45rhcgiffsibxbx6h1zahjv7igvqgkyna"; }; srcPlugin1 = fetchurl { - url = "http://www2.in.tum.de/projects/cup/eclipse/plugins/CupReferencedLibraries_${version}.jar"; - sha256 = "082b5ed8730ad065efaac6ea2812dae15669ae74a49778911125b171bea41187"; + url = "http://www2.in.tum.de/projects/cup/eclipse/plugins/CupReferencedLibraries_${version_}.jar"; + sha256 = "0kif8kivrysprva1pxzajm88gi967qf7idhb6ga2xpvsdcris91j"; }; srcPlugin2 = fetchurl { url = "http://www2.in.tum.de/projects/cup/eclipse/plugins/de.tum.in.www2.CupPlugin_${version}.jar"; - sha256 = "6b67937fa11944b0330173a9d8564a19eccd705e76b96291d80077a1d7344939"; + sha256 = "022phbrsny3gb8npb6sxyqqxacx138q5bd7dq3gqxh3kprx5chbl"; }; srcs = [ srcFeature srcPlugin1 srcPlugin2 ]; @@ -377,16 +378,16 @@ rec { testng = buildEclipsePlugin rec { name = "testng-${version}"; - version = "6.9.11.201603260617"; + version = "6.9.11.201604020423"; srcFeature = fetchurl { url = "http://beust.com/eclipse-old/eclipse_${version}/features/org.testng.eclipse_${version}.jar"; - sha256 = "0cd7d3bdp6f081vrampsv53z55g1mjn04w9ngz3h8dr0h6jnxz3y"; + sha256 = "1cp7f6f0525wqwjj4pyrp0q0ii7zcd5gwd5acaq9jjb13xgw8vav"; }; srcPlugin = fetchurl { url = "http://beust.com/eclipse-old/eclipse_${version}/plugins/org.testng.eclipse_${version}.jar"; - sha256 = "10kdwnydmsvngn8ahijxrv50aps6wa4ckbf7p24mxbwlnmpqfj03"; + sha256 = "04m07cdfw0isp27ykx6dbrlcdw33rxww7vnavanygxxnlpyvyas3"; }; meta = with stdenv.lib; { diff --git a/pkgs/applications/editors/emacs-25/default.nix b/pkgs/applications/editors/emacs-25/default.nix index 93baa43abc3..99343624129 100644 --- a/pkgs/applications/editors/emacs-25/default.nix +++ b/pkgs/applications/editors/emacs-25/default.nix @@ -23,13 +23,13 @@ let in stdenv.mkDerivation rec { - name = "emacs-25.0.92"; + name = "emacs-25.0.93"; builder = ./builder.sh; src = fetchurl { - url = "ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-25.0.92.tar.xz"; - sha256 = "13jnj1js2l90k4yk219r3z67fff90r6mniprsp0sgip2kaak75y2"; + url = "ftp://alpha.gnu.org/gnu/emacs/pretest/${name}.tar.xz"; + sha256 = "1wbr2n723ycg16rlg81v9x17w9ciy7qyckxplnwghlyfj6j9k4dk"; }; patches = lib.optionals stdenv.isDarwin [ diff --git a/pkgs/applications/editors/emacs-modes/elpa-generated.nix b/pkgs/applications/editors/emacs-modes/elpa-generated.nix index f10b1fbe61f..a54f364b8d4 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-generated.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-generated.nix @@ -3,12 +3,12 @@ pname = "ace-window"; version = "0.9.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ace-window-0.9.0.el"; + url = "https://elpa.gnu.org/packages/ace-window-0.9.0.el"; sha256 = "1m7fc4arcxn7fp0hnzyp20czjp4zx3rjaspfzpxzgc8sbghi81a3"; }; packageRequires = [ avy ]; meta = { - homepage = "http://elpa.gnu.org/packages/ace-window.html"; + homepage = "https://elpa.gnu.org/packages/ace-window.html"; license = lib.licenses.free; }; }) {}; @@ -16,12 +16,12 @@ pname = "ack"; version = "1.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ack-1.5.tar"; + url = "https://elpa.gnu.org/packages/ack-1.5.tar"; sha256 = "0sljshiy44z27idy0rxjs2fx4smlm4v607wic7md1vihp6qp4l9r"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/ack.html"; + homepage = "https://elpa.gnu.org/packages/ack.html"; license = lib.licenses.free; }; }) {}; @@ -30,12 +30,12 @@ pname = "ada-mode"; version = "5.1.9"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ada-mode-5.1.9.tar"; + url = "https://elpa.gnu.org/packages/ada-mode-5.1.9.tar"; sha256 = "04hwy9py22c4vpbk24idbyavjdjpm1akvnfigdzx35zljdrvk3l7"; }; packageRequires = [ cl-lib emacs wisi ]; meta = { - homepage = "http://elpa.gnu.org/packages/ada-mode.html"; + homepage = "https://elpa.gnu.org/packages/ada-mode.html"; license = lib.licenses.free; }; }) {}; @@ -43,12 +43,12 @@ pname = "ada-ref-man"; version = "2012.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ada-ref-man-2012.0.tar"; + url = "https://elpa.gnu.org/packages/ada-ref-man-2012.0.tar"; sha256 = "1g97892h8d1xa7cfxgg4i232i15hhci7gijj0dzc31yd9vbqayx8"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/ada-ref-man.html"; + homepage = "https://elpa.gnu.org/packages/ada-ref-man.html"; license = lib.licenses.free; }; }) {}; @@ -56,12 +56,12 @@ pname = "adaptive-wrap"; version = "0.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/adaptive-wrap-0.5.el"; + url = "https://elpa.gnu.org/packages/adaptive-wrap-0.5.el"; sha256 = "0frgmp8vrrml4iykm60j4d6cl9rbcivy9yh24q6kd10bcyx59ypy"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/adaptive-wrap.html"; + homepage = "https://elpa.gnu.org/packages/adaptive-wrap.html"; license = lib.licenses.free; }; }) {}; @@ -69,26 +69,26 @@ pname = "adjust-parens"; version = "3.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/adjust-parens-3.0.tar"; + url = "https://elpa.gnu.org/packages/adjust-parens-3.0.tar"; sha256 = "16gmrgdfyqs7i617669f7xy5mds1svbyfv12xhdjk96rbssfngzg"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/adjust-parens.html"; + homepage = "https://elpa.gnu.org/packages/adjust-parens.html"; license = lib.licenses.free; }; }) {}; aggressive-indent = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "aggressive-indent"; - version = "1.5"; + version = "1.6"; src = fetchurl { - url = "http://elpa.gnu.org/packages/aggressive-indent-1.5.el"; - sha256 = "00ddfni659rl19ybzrywj3b444akvil6n06k8lf5jyaqb53mkc5d"; + url = "https://elpa.gnu.org/packages/aggressive-indent-1.6.el"; + sha256 = "1xnxc2x1hbhkbqhp9p3c9azrdm6mr6czqc9pl63phjp9dbslny7i"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/aggressive-indent.html"; + homepage = "https://elpa.gnu.org/packages/aggressive-indent.html"; license = lib.licenses.free; }; }) {}; @@ -97,12 +97,12 @@ pname = "ahungry-theme"; version = "1.1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ahungry-theme-1.1.0.tar"; + url = "https://elpa.gnu.org/packages/ahungry-theme-1.1.0.tar"; sha256 = "1jy2h4r72fr26yavs0s8dy1xnkxvaf2hsrlm63f6sng81njj9dgx"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/ahungry-theme.html"; + homepage = "https://elpa.gnu.org/packages/ahungry-theme.html"; license = lib.licenses.free; }; }) {}; @@ -110,12 +110,12 @@ pname = "all"; version = "1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/all-1.0.el"; + url = "https://elpa.gnu.org/packages/all-1.0.el"; sha256 = "17h4cp0xnh08szh3snbmn1mqq2smgqkn45bq7v0cpsxq1i301hi3"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/all.html"; + homepage = "https://elpa.gnu.org/packages/all.html"; license = lib.licenses.free; }; }) {}; @@ -123,25 +123,26 @@ pname = "ampc"; version = "0.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ampc-0.2.el"; + url = "https://elpa.gnu.org/packages/ampc-0.2.el"; sha256 = "1pdy5mvi6h8m7qjnxiy217fgcp9w91375hq29bacfgh7bix56jlr"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/ampc.html"; + homepage = "https://elpa.gnu.org/packages/ampc.html"; license = lib.licenses.free; }; }) {}; - arbitools = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { + arbitools = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }: + elpaBuild { pname = "arbitools"; - version = "0.51"; + version = "0.70"; src = fetchurl { - url = "http://elpa.gnu.org/packages/arbitools-0.51.el"; - sha256 = "1pwps73s885i1777wlmqhkmfgj564bkb6rkpc964v0vcqia6fpag"; + url = "https://elpa.gnu.org/packages/arbitools-0.70.el"; + sha256 = "129ykqhx26adw0x26wzb4biyr5pnjgqmycsabsag2hzxjd7c92gl"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/arbitools.html"; + homepage = "https://elpa.gnu.org/packages/arbitools.html"; license = lib.licenses.free; }; }) {}; @@ -150,12 +151,12 @@ pname = "ascii-art-to-unicode"; version = "1.9"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ascii-art-to-unicode-1.9.el"; + url = "https://elpa.gnu.org/packages/ascii-art-to-unicode-1.9.el"; sha256 = "0lfgfkx81s4dd318xcxsl7hdgpi0dc1fv3d00m3xg8smyxcf3adv"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/ascii-art-to-unicode.html"; + homepage = "https://elpa.gnu.org/packages/ascii-art-to-unicode.html"; license = lib.licenses.free; }; }) {}; @@ -163,25 +164,25 @@ pname = "async"; version = "1.6"; src = fetchurl { - url = "http://elpa.gnu.org/packages/async-1.6.tar"; + url = "https://elpa.gnu.org/packages/async-1.6.tar"; sha256 = "17psvz75n42x33my967wkgi7r0blx46n3jdv510j0z5jswv66039"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/async.html"; + homepage = "https://elpa.gnu.org/packages/async.html"; license = lib.licenses.free; }; }) {}; auctex = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "auctex"; - version = "11.89.1"; + version = "11.89.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/auctex-11.89.1.tar"; - sha256 = "0nqp12l5x2h0hxl8p3l6aiz4mvdf79zz84z1wl3q2prliac3xz17"; + url = "https://elpa.gnu.org/packages/auctex-11.89.3.tar"; + sha256 = "16yjalh8qf1m3zgwxf1h3dkjq7hkb9895g2lb6ajwjfn02yiav80"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/auctex.html"; + homepage = "https://elpa.gnu.org/packages/auctex.html"; license = lib.licenses.free; }; }) {}; @@ -189,12 +190,12 @@ pname = "aumix-mode"; version = "7"; src = fetchurl { - url = "http://elpa.gnu.org/packages/aumix-mode-7.el"; + url = "https://elpa.gnu.org/packages/aumix-mode-7.el"; sha256 = "0qyjw2g3pzcxqdg1cpp889nmb524jxqq32dz7b7cg2m903lv5gmv"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/aumix-mode.html"; + homepage = "https://elpa.gnu.org/packages/aumix-mode.html"; license = lib.licenses.free; }; }) {}; @@ -202,12 +203,12 @@ pname = "auto-overlays"; version = "0.10.9"; src = fetchurl { - url = "http://elpa.gnu.org/packages/auto-overlays-0.10.9.tar"; + url = "https://elpa.gnu.org/packages/auto-overlays-0.10.9.tar"; sha256 = "0aqjp3bkd7mi191nm971z857s09py390ikcd93hyhmknblk0v14p"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/auto-overlays.html"; + homepage = "https://elpa.gnu.org/packages/auto-overlays.html"; license = lib.licenses.free; }; }) {}; @@ -216,39 +217,39 @@ pname = "avy"; version = "0.4.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/avy-0.4.0.tar"; + url = "https://elpa.gnu.org/packages/avy-0.4.0.tar"; sha256 = "1vbp37ndv5930x120n0isxxxfs8d5wqlrbnxvp6h3ahbbv0zdcsn"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/avy.html"; + homepage = "https://elpa.gnu.org/packages/avy.html"; license = lib.licenses.free; }; }) {}; beacon = callPackage ({ elpaBuild, fetchurl, lib, seq }: elpaBuild { pname = "beacon"; - version = "1.0"; + version = "1.2.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/beacon-1.0.el"; - sha256 = "1rdvdn50kb7kplvi8x199cm15mn4pxidn17p84l8q5wk3arj9c09"; + url = "https://elpa.gnu.org/packages/beacon-1.2.1.el"; + sha256 = "00i0p7azkkk4jpz6dnbkc4rhcvm1q7dg953874ph50fjihwqi1m6"; }; packageRequires = [ seq ]; meta = { - homepage = "http://elpa.gnu.org/packages/beacon.html"; + homepage = "https://elpa.gnu.org/packages/beacon.html"; license = lib.licenses.free; }; }) {}; bug-hunter = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib, seq }: elpaBuild { pname = "bug-hunter"; - version = "1.1"; + version = "1.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/bug-hunter-1.1.el"; - sha256 = "07j455hizqiicpigy8ybpqk0v87iqa57jvpirg5yb2g8j5ipwygs"; + url = "https://elpa.gnu.org/packages/bug-hunter-1.3.el"; + sha256 = "1j1d9nml2wl3yj7llykq5k1a81kzb3r4rbn695c0853fk036gk5x"; }; packageRequires = [ cl-lib seq ]; meta = { - homepage = "http://elpa.gnu.org/packages/bug-hunter.html"; + homepage = "https://elpa.gnu.org/packages/bug-hunter.html"; license = lib.licenses.free; }; }) {}; @@ -256,12 +257,12 @@ pname = "caps-lock"; version = "1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/caps-lock-1.0.el"; + url = "https://elpa.gnu.org/packages/caps-lock-1.0.el"; sha256 = "1i4hwam81p4dr0bk8257fkiz4xmv6knkjxj7a00fa35kgx5blpva"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/caps-lock.html"; + homepage = "https://elpa.gnu.org/packages/caps-lock.html"; license = lib.licenses.free; }; }) {}; @@ -270,12 +271,12 @@ pname = "chess"; version = "2.0.4"; src = fetchurl { - url = "http://elpa.gnu.org/packages/chess-2.0.4.tar"; + url = "https://elpa.gnu.org/packages/chess-2.0.4.tar"; sha256 = "1sq1bjmp513vldfh7hc2bbfc54665abqiz0kqgqq3gijckaxn5js"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/chess.html"; + homepage = "https://elpa.gnu.org/packages/chess.html"; license = lib.licenses.free; }; }) {}; @@ -283,12 +284,12 @@ pname = "cl-generic"; version = "0.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/cl-generic-0.2.el"; + url = "https://elpa.gnu.org/packages/cl-generic-0.2.el"; sha256 = "0b2y114f14fdlk5hkb0fvdbv6pqm9ifw0vwzri1vqp1xq1l1f9p3"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/cl-generic.html"; + homepage = "https://elpa.gnu.org/packages/cl-generic.html"; license = lib.licenses.free; }; }) {}; @@ -296,12 +297,12 @@ pname = "cl-lib"; version = "0.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/cl-lib-0.5.el"; + url = "https://elpa.gnu.org/packages/cl-lib-0.5.el"; sha256 = "1z4ffcx7b95bxz52586lhvdrdm5vp473g3afky9h5my3jp5cd994"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/cl-lib.html"; + homepage = "https://elpa.gnu.org/packages/cl-lib.html"; license = lib.licenses.free; }; }) {}; @@ -309,12 +310,12 @@ pname = "coffee-mode"; version = "0.4.1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/coffee-mode-0.4.1.1.el"; + url = "https://elpa.gnu.org/packages/coffee-mode-0.4.1.1.el"; sha256 = "1jffd8rqmc3l597db26rggis6apf91glyzm1qvpf5g3iz55g6slz"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/coffee-mode.html"; + homepage = "https://elpa.gnu.org/packages/coffee-mode.html"; license = lib.licenses.free; }; }) {}; @@ -323,12 +324,12 @@ pname = "company"; version = "0.8.12"; src = fetchurl { - url = "http://elpa.gnu.org/packages/company-0.8.12.tar"; + url = "https://elpa.gnu.org/packages/company-0.8.12.tar"; sha256 = "1r7q813rjs4dgknsfqi354ahsvk8k4ld4xh1fkp8lbxb13da6gqx"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/company.html"; + homepage = "https://elpa.gnu.org/packages/company.html"; license = lib.licenses.free; }; }) {}; @@ -337,12 +338,12 @@ pname = "company-math"; version = "1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/company-math-1.1.tar"; + url = "https://elpa.gnu.org/packages/company-math-1.1.tar"; sha256 = "10yi5jmv7njcaansgy2aw7wm1j3acch1j9x6lfg9mxk0j21zvgwp"; }; packageRequires = [ company math-symbol-lists ]; meta = { - homepage = "http://elpa.gnu.org/packages/company-math.html"; + homepage = "https://elpa.gnu.org/packages/company-math.html"; license = lib.licenses.free; }; }) {}; @@ -351,12 +352,12 @@ pname = "company-statistics"; version = "0.2.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/company-statistics-0.2.2.tar"; + url = "https://elpa.gnu.org/packages/company-statistics-0.2.2.tar"; sha256 = "0h1k0dbb7ngk6pghli2csfpzpx37si0wg840jmay0jlb80q6vw73"; }; packageRequires = [ company emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/company-statistics.html"; + homepage = "https://elpa.gnu.org/packages/company-statistics.html"; license = lib.licenses.free; }; }) {}; @@ -365,12 +366,12 @@ pname = "context-coloring"; version = "7.2.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/context-coloring-7.2.1.el"; + url = "https://elpa.gnu.org/packages/context-coloring-7.2.1.el"; sha256 = "1lh2p3fsym73h0dcj1gqg1xsw3lcikmcskbx8y3j0ds30l4xs13d"; }; packageRequires = [ emacs js2-mode ]; meta = { - homepage = "http://elpa.gnu.org/packages/context-coloring.html"; + homepage = "https://elpa.gnu.org/packages/context-coloring.html"; license = lib.licenses.free; }; }) {}; @@ -378,25 +379,25 @@ pname = "crisp"; version = "1.3.4"; src = fetchurl { - url = "http://elpa.gnu.org/packages/crisp-1.3.4.el"; + url = "https://elpa.gnu.org/packages/crisp-1.3.4.el"; sha256 = "1xbnf7xlw499zsnr5ky2bghb2fzg3g7cf2ldmbb7c3b84raryn0i"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/crisp.html"; + homepage = "https://elpa.gnu.org/packages/crisp.html"; license = lib.licenses.free; }; }) {}; csv-mode = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "csv-mode"; - version = "1.5"; + version = "1.6"; src = fetchurl { - url = "http://elpa.gnu.org/packages/csv-mode-1.5.el"; - sha256 = "1dmc6brb6m9s29wsr6giwpf77yindfq47344l9jr31hqgg82x1xc"; + url = "https://elpa.gnu.org/packages/csv-mode-1.6.el"; + sha256 = "1v86qna1ypnr55spf6kjiqybplfbb8ak5gnnifh9vghsgb5jkb6a"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/csv-mode.html"; + homepage = "https://elpa.gnu.org/packages/csv-mode.html"; license = lib.licenses.free; }; }) {}; @@ -405,12 +406,12 @@ pname = "darkroom"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/darkroom-0.1.el"; + url = "https://elpa.gnu.org/packages/darkroom-0.1.el"; sha256 = "0fif8fm1h7x7g16949shfnaik5f5488clsvkf8bi5izpqp3vi6ak"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/darkroom.html"; + homepage = "https://elpa.gnu.org/packages/darkroom.html"; license = lib.licenses.free; }; }) {}; @@ -418,12 +419,12 @@ pname = "dash"; version = "2.12.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/dash-2.12.0.tar"; + url = "https://elpa.gnu.org/packages/dash-2.12.0.tar"; sha256 = "02r547vian59zr55z6ri4p2b7q5y5k256wi9j8a317vjzyh54m05"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/dash.html"; + homepage = "https://elpa.gnu.org/packages/dash.html"; license = lib.licenses.free; }; }) {}; @@ -432,25 +433,26 @@ pname = "dbus-codegen"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/dbus-codegen-0.1.el"; + url = "https://elpa.gnu.org/packages/dbus-codegen-0.1.el"; sha256 = "1gi7jc6rn6hlgh01zfwb7cczb5hi3c05wlnzw6akj1h9kai1lmzw"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/dbus-codegen.html"; + homepage = "https://elpa.gnu.org/packages/dbus-codegen.html"; license = lib.licenses.free; }; }) {}; - debbugs = callPackage ({ async, elpaBuild, fetchurl, lib }: elpaBuild { + debbugs = callPackage ({ elpaBuild, fetchurl, lib, soap-client }: + elpaBuild { pname = "debbugs"; - version = "0.9"; + version = "0.9.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/debbugs-0.9.tar"; - sha256 = "1wc6kw7hihqqdx8qyl01akygycnan44x400hwrcf54m3hb4isa0k"; + url = "https://elpa.gnu.org/packages/debbugs-0.9.3.tar"; + sha256 = "0qj1b5ax80bi5kz6jfi4f5kpirkkc2li8zf18fj86q5ayh3rsgnz"; }; - packageRequires = [ async ]; + packageRequires = [ soap-client ]; meta = { - homepage = "http://elpa.gnu.org/packages/debbugs.html"; + homepage = "https://elpa.gnu.org/packages/debbugs.html"; license = lib.licenses.free; }; }) {}; @@ -459,12 +461,12 @@ pname = "dict-tree"; version = "0.12.8"; src = fetchurl { - url = "http://elpa.gnu.org/packages/dict-tree-0.12.8.el"; + url = "https://elpa.gnu.org/packages/dict-tree-0.12.8.el"; sha256 = "08jaifqaq9cfz1z4fr4ib9l6lbx4x60q7d6gajx1cdhh18x6nys5"; }; packageRequires = [ heap tNFA trie ]; meta = { - homepage = "http://elpa.gnu.org/packages/dict-tree.html"; + homepage = "https://elpa.gnu.org/packages/dict-tree.html"; license = lib.licenses.free; }; }) {}; @@ -473,12 +475,12 @@ pname = "diff-hl"; version = "1.8.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/diff-hl-1.8.3.tar"; + url = "https://elpa.gnu.org/packages/diff-hl-1.8.3.tar"; sha256 = "1i3ngx5gmjl1a15y6d0xmcgdimn7ghrqkbzqisz4ra3dgwbbb3f9"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/diff-hl.html"; + homepage = "https://elpa.gnu.org/packages/diff-hl.html"; license = lib.licenses.free; }; }) {}; @@ -487,12 +489,12 @@ pname = "dismal"; version = "1.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/dismal-1.5.tar"; + url = "https://elpa.gnu.org/packages/dismal-1.5.tar"; sha256 = "1vhs6w6c2klsrfjpw8vr5c4gwiw83ppdjhsn2la0fvkm60jmc476"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/dismal.html"; + homepage = "https://elpa.gnu.org/packages/dismal.html"; license = lib.licenses.free; }; }) {}; @@ -500,12 +502,12 @@ pname = "djvu"; version = "0.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/djvu-0.5.el"; + url = "https://elpa.gnu.org/packages/djvu-0.5.el"; sha256 = "1wpyv4ismfsz5hfaj75j3h3nni1mnk33czhw3rd45cf32a2zkqsj"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/djvu.html"; + homepage = "https://elpa.gnu.org/packages/djvu.html"; license = lib.licenses.free; }; }) {}; @@ -513,12 +515,12 @@ pname = "docbook"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/docbook-0.1.el"; + url = "https://elpa.gnu.org/packages/docbook-0.1.el"; sha256 = "01x0g8dhw65mzp9mk6qhx9p2bsvkw96hz1awrrf2ji17sp8hd1v6"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/docbook.html"; + homepage = "https://elpa.gnu.org/packages/docbook.html"; license = lib.licenses.free; }; }) {}; @@ -526,12 +528,12 @@ pname = "dts-mode"; version = "0.1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/dts-mode-0.1.0.el"; + url = "https://elpa.gnu.org/packages/dts-mode-0.1.0.el"; sha256 = "08xwqbdg0gwipc3gfacs3gpc6zz6lhkw7pyj7n9qhg020c4qv7hq"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/dts-mode.html"; + homepage = "https://elpa.gnu.org/packages/dts-mode.html"; license = lib.licenses.free; }; }) {}; @@ -540,12 +542,12 @@ pname = "easy-kill"; version = "0.9.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/easy-kill-0.9.3.tar"; + url = "https://elpa.gnu.org/packages/easy-kill-0.9.3.tar"; sha256 = "17nw0mglmg877axwg1d0gs03yc0p04lzmd3pl0nsnqbh3303fnqb"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/easy-kill.html"; + homepage = "https://elpa.gnu.org/packages/easy-kill.html"; license = lib.licenses.free; }; }) {}; @@ -553,12 +555,12 @@ pname = "ediprolog"; version = "1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ediprolog-1.1.el"; + url = "https://elpa.gnu.org/packages/ediprolog-1.1.el"; sha256 = "19qaciwhzr7k624z455fi8i0v5kl10587ha2mfx1bdsym7y376yd"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/ediprolog.html"; + homepage = "https://elpa.gnu.org/packages/ediprolog.html"; license = lib.licenses.free; }; }) {}; @@ -566,12 +568,12 @@ pname = "el-search"; version = "0.1.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/el-search-0.1.3.el"; + url = "https://elpa.gnu.org/packages/el-search-0.1.3.el"; sha256 = "1iwglpzs78zy07k3ijbwgv9781bs5cpf088giyz6bn5amfpp1jks"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/el-search.html"; + homepage = "https://elpa.gnu.org/packages/el-search.html"; license = lib.licenses.free; }; }) {}; @@ -579,12 +581,12 @@ pname = "eldoc-eval"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/eldoc-eval-0.1.el"; + url = "https://elpa.gnu.org/packages/eldoc-eval-0.1.el"; sha256 = "1mnhxdsn9h43iq941yqmg92v3hbzwyg7acqfnz14q5g52bnagg19"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/eldoc-eval.html"; + homepage = "https://elpa.gnu.org/packages/eldoc-eval.html"; license = lib.licenses.free; }; }) {}; @@ -592,12 +594,12 @@ pname = "electric-spacing"; version = "5.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/electric-spacing-5.0.el"; + url = "https://elpa.gnu.org/packages/electric-spacing-5.0.el"; sha256 = "1jk6v84z0n8jljzsz4wk7rgzh7drpfvxf4bp6xis8gapnd3ycfyv"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/electric-spacing.html"; + homepage = "https://elpa.gnu.org/packages/electric-spacing.html"; license = lib.licenses.free; }; }) {}; @@ -605,12 +607,12 @@ pname = "enwc"; version = "1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/enwc-1.0.tar"; + url = "https://elpa.gnu.org/packages/enwc-1.0.tar"; sha256 = "19mjkcgnacygzwm5dsayrwpbzfxadp9kdmmghrk1vir2hwixgv8y"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/enwc.html"; + homepage = "https://elpa.gnu.org/packages/enwc.html"; license = lib.licenses.free; }; }) {}; @@ -618,12 +620,12 @@ pname = "epoch-view"; version = "0.0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/epoch-view-0.0.1.el"; + url = "https://elpa.gnu.org/packages/epoch-view-0.0.1.el"; sha256 = "1wy25ryyg9f4v83qjym2pwip6g9mszhqkf5a080z0yl47p71avfx"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/epoch-view.html"; + homepage = "https://elpa.gnu.org/packages/epoch-view.html"; license = lib.licenses.free; }; }) {}; @@ -632,26 +634,26 @@ pname = "ergoemacs-mode"; version = "5.14.7.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ergoemacs-mode-5.14.7.3.tar"; + url = "https://elpa.gnu.org/packages/ergoemacs-mode-5.14.7.3.tar"; sha256 = "0lqqrnw6z9w7js8r40khckjc1cyxdiwx8kapf5pvyfs09gs89i90"; }; packageRequires = [ emacs undo-tree ]; meta = { - homepage = "http://elpa.gnu.org/packages/ergoemacs-mode.html"; + homepage = "https://elpa.gnu.org/packages/ergoemacs-mode.html"; license = lib.licenses.free; }; }) {}; excorporate = callPackage ({ elpaBuild, emacs, fetchurl, fsm, lib, soap-client, url-http-ntlm }: elpaBuild { pname = "excorporate"; - version = "0.7.1"; + version = "0.7.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/excorporate-0.7.1.tar"; - sha256 = "1flvhk39yymskzazpwh95j2nj8kg4b02hsg7b8msnqi3q5lpqs54"; + url = "https://elpa.gnu.org/packages/excorporate-0.7.3.tar"; + sha256 = "053pcqv5gcwnl57kcxsm3v60nmi5sm4myjca2xqraldp27k6qd1q"; }; packageRequires = [ emacs fsm soap-client url-http-ntlm ]; meta = { - homepage = "http://elpa.gnu.org/packages/excorporate.html"; + homepage = "https://elpa.gnu.org/packages/excorporate.html"; license = lib.licenses.free; }; }) {}; @@ -659,12 +661,12 @@ pname = "exwm"; version = "0.4"; src = fetchurl { - url = "http://elpa.gnu.org/packages/exwm-0.4.tar"; + url = "https://elpa.gnu.org/packages/exwm-0.4.tar"; sha256 = "1qlplx88mk8c5sahlymxxh46bzf6bxnsqk92wliv5ji4ai5373fb"; }; packageRequires = [ xelb ]; meta = { - homepage = "http://elpa.gnu.org/packages/exwm.html"; + homepage = "https://elpa.gnu.org/packages/exwm.html"; license = lib.licenses.free; }; }) {}; @@ -673,12 +675,12 @@ pname = "f90-interface-browser"; version = "1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/f90-interface-browser-1.1.el"; + url = "https://elpa.gnu.org/packages/f90-interface-browser-1.1.el"; sha256 = "0mf32w2bgc6b43k0r4a11bywprj7y3rvl21i0ry74v425r6hc3is"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/f90-interface-browser.html"; + homepage = "https://elpa.gnu.org/packages/f90-interface-browser.html"; license = lib.licenses.free; }; }) {}; @@ -687,12 +689,12 @@ pname = "flylisp"; version = "0.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/flylisp-0.2.el"; + url = "https://elpa.gnu.org/packages/flylisp-0.2.el"; sha256 = "0hh09qy1xwlv52lsh49nr11h4lk8qlmk06b669q494d79hxyv4v6"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/flylisp.html"; + homepage = "https://elpa.gnu.org/packages/flylisp.html"; license = lib.licenses.free; }; }) {}; @@ -701,12 +703,12 @@ pname = "fsm"; version = "0.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/fsm-0.2.el"; + url = "https://elpa.gnu.org/packages/fsm-0.2.el"; sha256 = "1kh1r5by1q2x8bbg0z2jzmb5i6blvlf105mavrnbcxa6ghbiz6iy"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/fsm.html"; + homepage = "https://elpa.gnu.org/packages/fsm.html"; license = lib.licenses.free; }; }) {}; @@ -715,12 +717,12 @@ pname = "ggtags"; version = "0.8.11"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ggtags-0.8.11.el"; + url = "https://elpa.gnu.org/packages/ggtags-0.8.11.el"; sha256 = "1q2bp2b7lylf7n6c1psfn5swyjg0y78ykm0ak2kd84pbyhqak2mq"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/ggtags.html"; + homepage = "https://elpa.gnu.org/packages/ggtags.html"; license = lib.licenses.free; }; }) {}; @@ -728,12 +730,12 @@ pname = "gnome-c-style"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/gnome-c-style-0.1.tar"; + url = "https://elpa.gnu.org/packages/gnome-c-style-0.1.tar"; sha256 = "09w68jbpzyyhcaqw335qpr840j7xx0j81zxxkxq4ahqv6ck27v4x"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/gnome-c-style.html"; + homepage = "https://elpa.gnu.org/packages/gnome-c-style.html"; license = lib.licenses.free; }; }) {}; @@ -742,12 +744,12 @@ pname = "gnorb"; version = "1.1.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/gnorb-1.1.2.tar"; + url = "https://elpa.gnu.org/packages/gnorb-1.1.2.tar"; sha256 = "18d5wdv33lcg96m3ljnv9zn98in27apm7bjycgq0asd2f31dvcvx"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/gnorb.html"; + homepage = "https://elpa.gnu.org/packages/gnorb.html"; license = lib.licenses.free; }; }) {}; @@ -756,12 +758,12 @@ pname = "gnugo"; version = "3.0.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/gnugo-3.0.0.tar"; + url = "https://elpa.gnu.org/packages/gnugo-3.0.0.tar"; sha256 = "0b94kbqxir023wkmqn9kpjjj2v0gcz856mqipz30gxjbjj42w27x"; }; packageRequires = [ ascii-art-to-unicode cl-lib xpm ]; meta = { - homepage = "http://elpa.gnu.org/packages/gnugo.html"; + homepage = "https://elpa.gnu.org/packages/gnugo.html"; license = lib.licenses.free; }; }) {}; @@ -769,12 +771,12 @@ pname = "heap"; version = "0.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/heap-0.3.el"; + url = "https://elpa.gnu.org/packages/heap-0.3.el"; sha256 = "1347s06nv88zyhmbimvn13f13d1r147kn6kric1ki6n382zbw6k6"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/heap.html"; + homepage = "https://elpa.gnu.org/packages/heap.html"; license = lib.licenses.free; }; }) {}; @@ -782,12 +784,12 @@ pname = "html5-schema"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/html5-schema-0.1.tar"; + url = "https://elpa.gnu.org/packages/html5-schema-0.1.tar"; sha256 = "19k1jal6j64zq78w8h0lw7cljivmp2jzs5sa1ppc0mqkpn2hyq1i"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/html5-schema.html"; + homepage = "https://elpa.gnu.org/packages/html5-schema.html"; license = lib.licenses.free; }; }) {}; @@ -796,12 +798,12 @@ pname = "hydra"; version = "0.13.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/hydra-0.13.5.tar"; + url = "https://elpa.gnu.org/packages/hydra-0.13.5.tar"; sha256 = "0vq1pjyq6ddbikbh0vzdigbs0zlldgwad0192s7v9npg8qlwi668"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/hydra.html"; + homepage = "https://elpa.gnu.org/packages/hydra.html"; license = lib.licenses.free; }; }) {}; @@ -809,12 +811,12 @@ pname = "ioccur"; version = "2.4"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ioccur-2.4.el"; + url = "https://elpa.gnu.org/packages/ioccur-2.4.el"; sha256 = "1isid3kgsi5qkz27ipvmp9v5knx0qigmv7lz12mqdkwv8alns1p9"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/ioccur.html"; + homepage = "https://elpa.gnu.org/packages/ioccur.html"; license = lib.licenses.free; }; }) {}; @@ -822,12 +824,25 @@ pname = "iterators"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/iterators-0.1.el"; + url = "https://elpa.gnu.org/packages/iterators-0.1.el"; sha256 = "0rljqdaj88cbhngj4ddd2z3bfd35r84aivq4h10mk4n4h8whjpj4"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/iterators.html"; + homepage = "https://elpa.gnu.org/packages/iterators.html"; + license = lib.licenses.free; + }; + }) {}; + ivy = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { + pname = "ivy"; + version = "0.8.0"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/ivy-0.8.0.tar"; + sha256 = "1c1impdk1p082v6nb9lms4n258z6ngz8ra90cshprs0ingrk705p"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/ivy.html"; license = lib.licenses.free; }; }) {}; @@ -835,12 +850,12 @@ pname = "javaimp"; version = "0.6"; src = fetchurl { - url = "http://elpa.gnu.org/packages/javaimp-0.6.el"; + url = "https://elpa.gnu.org/packages/javaimp-0.6.el"; sha256 = "00a37jv9wbzy521a15vk7a66rsf463zzr57adc8ii2m4kcyldpqh"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/javaimp.html"; + homepage = "https://elpa.gnu.org/packages/javaimp.html"; license = lib.licenses.free; }; }) {}; @@ -849,12 +864,12 @@ pname = "jgraph-mode"; version = "1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/jgraph-mode-1.1.el"; + url = "https://elpa.gnu.org/packages/jgraph-mode-1.1.el"; sha256 = "0479irjz5r79x6ngl3lfkl1gqsmvcw8kn6285sm6nkn66m1dfs8l"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/jgraph-mode.html"; + homepage = "https://elpa.gnu.org/packages/jgraph-mode.html"; license = lib.licenses.free; }; }) {}; @@ -863,12 +878,12 @@ pname = "js2-mode"; version = "20150909"; src = fetchurl { - url = "http://elpa.gnu.org/packages/js2-mode-20150909.tar"; + url = "https://elpa.gnu.org/packages/js2-mode-20150909.tar"; sha256 = "1ha696jl9k1325r3xlr11rx6lmd545p42f8biw4hb0q1zsr2306h"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/js2-mode.html"; + homepage = "https://elpa.gnu.org/packages/js2-mode.html"; license = lib.licenses.free; }; }) {}; @@ -876,12 +891,12 @@ pname = "jumpc"; version = "3.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/jumpc-3.0.el"; + url = "https://elpa.gnu.org/packages/jumpc-3.0.el"; sha256 = "1vhggw3mzaq33al8f16jbg5qq5f95s8365is9qqyb8yq77gqym6a"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/jumpc.html"; + homepage = "https://elpa.gnu.org/packages/jumpc.html"; license = lib.licenses.free; }; }) {}; @@ -889,25 +904,25 @@ pname = "landmark"; version = "1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/landmark-1.0.el"; + url = "https://elpa.gnu.org/packages/landmark-1.0.el"; sha256 = "0mz1l9zc1nvggjhg4jcly8ncw38xkprlrha8l8vfl9k9rg7s1dv4"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/landmark.html"; + homepage = "https://elpa.gnu.org/packages/landmark.html"; license = lib.licenses.free; }; }) {}; - let-alist = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { + let-alist = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "let-alist"; version = "1.0.4"; src = fetchurl { - url = "http://elpa.gnu.org/packages/let-alist-1.0.4.el"; + url = "https://elpa.gnu.org/packages/let-alist-1.0.4.el"; sha256 = "07312bvvyz86lf64vdkxg2l1wgfjl25ljdjwlf1bdzj01c4hm88x"; }; - packageRequires = []; + packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/let-alist.html"; + homepage = "https://elpa.gnu.org/packages/let-alist.html"; license = lib.licenses.free; }; }) {}; @@ -915,12 +930,12 @@ pname = "lex"; version = "1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/lex-1.1.tar"; + url = "https://elpa.gnu.org/packages/lex-1.1.tar"; sha256 = "1i6ri3k2b2nginhnmwy67mdpv5p75jkxjfwbf42wymza8fxzwbb7"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/lex.html"; + homepage = "https://elpa.gnu.org/packages/lex.html"; license = lib.licenses.free; }; }) {}; @@ -928,12 +943,12 @@ pname = "lmc"; version = "1.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/lmc-1.3.el"; + url = "https://elpa.gnu.org/packages/lmc-1.3.el"; sha256 = "0s5dkksgfbfbhc770z1n7d4jrkpcb8z1935abgrw80icxgsrc01p"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/lmc.html"; + homepage = "https://elpa.gnu.org/packages/lmc.html"; license = lib.licenses.free; }; }) {}; @@ -941,12 +956,12 @@ pname = "load-dir"; version = "0.0.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/load-dir-0.0.3.el"; + url = "https://elpa.gnu.org/packages/load-dir-0.0.3.el"; sha256 = "0w5rdc6gr7nm7r0d258mp5sc06n09mmz7kjg8bd3sqnki8iz7s32"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/load-dir.html"; + homepage = "https://elpa.gnu.org/packages/load-dir.html"; license = lib.licenses.free; }; }) {}; @@ -954,12 +969,12 @@ pname = "load-relative"; version = "1.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/load-relative-1.2.el"; + url = "https://elpa.gnu.org/packages/load-relative-1.2.el"; sha256 = "0vmfal05hznb10k2y3j9mychi9ra4hxcm6qf7j1r8aw9j7af6riw"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/load-relative.html"; + homepage = "https://elpa.gnu.org/packages/load-relative.html"; license = lib.licenses.free; }; }) {}; @@ -967,12 +982,12 @@ pname = "loc-changes"; version = "1.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/loc-changes-1.2.el"; + url = "https://elpa.gnu.org/packages/loc-changes-1.2.el"; sha256 = "1x8fn8vqasayf1rb8a6nma9n6nbvkx60krmiahyb05vl5rrsw6r3"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/loc-changes.html"; + homepage = "https://elpa.gnu.org/packages/loc-changes.html"; license = lib.licenses.free; }; }) {}; @@ -981,12 +996,12 @@ pname = "loccur"; version = "1.2.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/loccur-1.2.2.el"; + url = "https://elpa.gnu.org/packages/loccur-1.2.2.el"; sha256 = "0ij5wzxysaikiccw7mjbw1sfylvih0n6b6yyp55vn8w1z2dba0xk"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/loccur.html"; + homepage = "https://elpa.gnu.org/packages/loccur.html"; license = lib.licenses.free; }; }) {}; @@ -994,12 +1009,12 @@ pname = "markchars"; version = "0.2.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/markchars-0.2.0.el"; + url = "https://elpa.gnu.org/packages/markchars-0.2.0.el"; sha256 = "1wn9v9jzcyq5wxhw5839jsggfy97955ngspn2gn6jmvz6zdgy4hv"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/markchars.html"; + homepage = "https://elpa.gnu.org/packages/markchars.html"; license = lib.licenses.free; }; }) {}; @@ -1007,12 +1022,12 @@ pname = "math-symbol-lists"; version = "1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/math-symbol-lists-1.1.tar"; + url = "https://elpa.gnu.org/packages/math-symbol-lists-1.1.tar"; sha256 = "06klvnqipz0n9slw72fxmhrydrw6bi9fs9vnn8hrja8gsqf8inlz"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/math-symbol-lists.html"; + homepage = "https://elpa.gnu.org/packages/math-symbol-lists.html"; license = lib.licenses.free; }; }) {}; @@ -1020,12 +1035,12 @@ pname = "memory-usage"; version = "0.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/memory-usage-0.2.el"; + url = "https://elpa.gnu.org/packages/memory-usage-0.2.el"; sha256 = "03qwb7sprdh1avxv3g7hhnhl41pwvnpxcpnqrikl7picy78h1gwj"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/memory-usage.html"; + homepage = "https://elpa.gnu.org/packages/memory-usage.html"; license = lib.licenses.free; }; }) {}; @@ -1034,12 +1049,12 @@ pname = "metar"; version = "0.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/metar-0.2.el"; + url = "https://elpa.gnu.org/packages/metar-0.2.el"; sha256 = "0rfzq79llh6ixw02kjpn8s2shxrabvfvsq48pagwak1jl2s0askf"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/metar.html"; + homepage = "https://elpa.gnu.org/packages/metar.html"; license = lib.licenses.free; }; }) {}; @@ -1047,12 +1062,12 @@ pname = "midi-kbd"; version = "0.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/midi-kbd-0.2.el"; + url = "https://elpa.gnu.org/packages/midi-kbd-0.2.el"; sha256 = "1783k07gyiaq784wqv8qqc89cw5d6q1bdqz68b7n1lx4vmvfrhmh"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/midi-kbd.html"; + homepage = "https://elpa.gnu.org/packages/midi-kbd.html"; license = lib.licenses.free; }; }) {}; @@ -1060,12 +1075,12 @@ pname = "minibuffer-line"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/minibuffer-line-0.1.el"; + url = "https://elpa.gnu.org/packages/minibuffer-line-0.1.el"; sha256 = "1ny4iirp26na5118wfgxlv6fxlrdclzdbd9m0lkrv51w0qw7spil"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/minibuffer-line.html"; + homepage = "https://elpa.gnu.org/packages/minibuffer-line.html"; license = lib.licenses.free; }; }) {}; @@ -1073,12 +1088,12 @@ pname = "minimap"; version = "1.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/minimap-1.2.el"; + url = "https://elpa.gnu.org/packages/minimap-1.2.el"; sha256 = "1vcxdxy7mv8mi4lrri3kmyf9kly3rb02z4kpfx5d1xv493havvb8"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/minimap.html"; + homepage = "https://elpa.gnu.org/packages/minimap.html"; license = lib.licenses.free; }; }) {}; @@ -1086,12 +1101,12 @@ pname = "multishell"; version = "1.1.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/multishell-1.1.5.tar"; + url = "https://elpa.gnu.org/packages/multishell-1.1.5.tar"; sha256 = "0g38p5biyxqkjdkmxlikvhkhkmafyy3ibd012q83skaf8fi4cv1y"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/multishell.html"; + homepage = "https://elpa.gnu.org/packages/multishell.html"; license = lib.licenses.free; }; }) {}; @@ -1099,25 +1114,25 @@ pname = "muse"; version = "3.20"; src = fetchurl { - url = "http://elpa.gnu.org/packages/muse-3.20.tar"; + url = "https://elpa.gnu.org/packages/muse-3.20.tar"; sha256 = "0i5gfhgxdm1ripw7j3ixqlfkinx3fxjj2gk5md99h70iigrhcnm9"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/muse.html"; + homepage = "https://elpa.gnu.org/packages/muse.html"; license = lib.licenses.free; }; }) {}; nameless = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "nameless"; - version = "0.5.1"; + version = "1.0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/nameless-0.5.1.el"; - sha256 = "0vv4zpqb56w9xy9wljchwilcwpw7zdmqrwfwffxp0pgbhf4w41y9"; + url = "https://elpa.gnu.org/packages/nameless-1.0.1.el"; + sha256 = "0gb97pjmis4fx48lsm7clp9fw0h2w4p3kdfq3z9vq4fwy5hjsn74"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/nameless.html"; + homepage = "https://elpa.gnu.org/packages/nameless.html"; license = lib.licenses.free; }; }) {}; @@ -1126,12 +1141,12 @@ pname = "names"; version = "20151201.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/names-20151201.0.tar"; + url = "https://elpa.gnu.org/packages/names-20151201.0.tar"; sha256 = "13smsf039x4yd7pzvllgn1vz8lhkwghnhip9y2bka38vk37w912d"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/names.html"; + homepage = "https://elpa.gnu.org/packages/names.html"; license = lib.licenses.free; }; }) {}; @@ -1139,12 +1154,12 @@ pname = "nhexl-mode"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/nhexl-mode-0.1.el"; + url = "https://elpa.gnu.org/packages/nhexl-mode-0.1.el"; sha256 = "0h4kl5d8rj9aw4xxrmv4a9fdcqvkk74ia7bq8jgmjp11pwpzww9j"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/nhexl-mode.html"; + homepage = "https://elpa.gnu.org/packages/nhexl-mode.html"; license = lib.licenses.free; }; }) {}; @@ -1152,12 +1167,12 @@ pname = "nlinum"; version = "1.6"; src = fetchurl { - url = "http://elpa.gnu.org/packages/nlinum-1.6.el"; + url = "https://elpa.gnu.org/packages/nlinum-1.6.el"; sha256 = "1hr5waxbq0fcys8x2nfdl84mp2v8v9qi08f1kqdray2hzmnmipcw"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/nlinum.html"; + homepage = "https://elpa.gnu.org/packages/nlinum.html"; license = lib.licenses.free; }; }) {}; @@ -1165,12 +1180,12 @@ pname = "notes-mode"; version = "1.30"; src = fetchurl { - url = "http://elpa.gnu.org/packages/notes-mode-1.30.tar"; + url = "https://elpa.gnu.org/packages/notes-mode-1.30.tar"; sha256 = "1aqivlfa0nk0y27gdv68k5rg3m5wschh8cw196a13qb7kaghk9r6"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/notes-mode.html"; + homepage = "https://elpa.gnu.org/packages/notes-mode.html"; license = lib.licenses.free; }; }) {}; @@ -1178,12 +1193,12 @@ pname = "ntlm"; version = "2.0.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ntlm-2.0.0.el"; + url = "https://elpa.gnu.org/packages/ntlm-2.0.0.el"; sha256 = "1n602yi60rwsacqw20kqbm97x6bhzjxblxbdprm36f31qmym8si4"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/ntlm.html"; + homepage = "https://elpa.gnu.org/packages/ntlm.html"; license = lib.licenses.free; }; }) {}; @@ -1191,12 +1206,12 @@ pname = "num3-mode"; version = "1.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/num3-mode-1.2.el"; + url = "https://elpa.gnu.org/packages/num3-mode-1.2.el"; sha256 = "1nm3yjp5qs6rq4ak47gb6325vjfw0dnkryfgybgly0m6h4hhpbd8"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/num3-mode.html"; + homepage = "https://elpa.gnu.org/packages/num3-mode.html"; license = lib.licenses.free; }; }) {}; @@ -1204,12 +1219,12 @@ pname = "oauth2"; version = "0.10"; src = fetchurl { - url = "http://elpa.gnu.org/packages/oauth2-0.10.el"; + url = "https://elpa.gnu.org/packages/oauth2-0.10.el"; sha256 = "0rlxmbb88dp0yqw9d5mdx0nxv5l5618scmg5872scbnc735f2yna"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/oauth2.html"; + homepage = "https://elpa.gnu.org/packages/oauth2.html"; license = lib.licenses.free; }; }) {}; @@ -1217,12 +1232,12 @@ pname = "omn-mode"; version = "1.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/omn-mode-1.2.el"; + url = "https://elpa.gnu.org/packages/omn-mode-1.2.el"; sha256 = "0p7lmqabdcn625q9z7libn7q1b6mjc74bkic2kjhhckzvlfjk742"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/omn-mode.html"; + homepage = "https://elpa.gnu.org/packages/omn-mode.html"; license = lib.licenses.free; }; }) {}; @@ -1231,25 +1246,25 @@ pname = "on-screen"; version = "1.3.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/on-screen-1.3.2.el"; + url = "https://elpa.gnu.org/packages/on-screen-1.3.2.el"; sha256 = "15d18mjgv1pnwl6kf3pr5w64q1322p1l1qlfvnckglwmzy5sl2qv"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/on-screen.html"; + homepage = "https://elpa.gnu.org/packages/on-screen.html"; license = lib.licenses.free; }; }) {}; org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "org"; - version = "20160229"; + version = "20160425"; src = fetchurl { - url = "http://elpa.gnu.org/packages/org-20160229.tar"; - sha256 = "15zrkw33ma8q079sb518rmcj97n35rnjv16p6zfw52m9xfdwxgi9"; + url = "https://elpa.gnu.org/packages/org-20160425.tar"; + sha256 = "1slrmy8kpapp36lwk9md7rakl1fw8gi377rfff0ma8n7k5xy7b2a"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/org.html"; + homepage = "https://elpa.gnu.org/packages/org.html"; license = lib.licenses.free; }; }) {}; @@ -1257,12 +1272,12 @@ pname = "osc"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/osc-0.1.el"; + url = "https://elpa.gnu.org/packages/osc-0.1.el"; sha256 = "09nzbbzvxfrjm91wawbv6bg6fqlcx1qi0711qc73yfrbc8ndsnsb"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/osc.html"; + homepage = "https://elpa.gnu.org/packages/osc.html"; license = lib.licenses.free; }; }) {}; @@ -1271,12 +1286,12 @@ pname = "other-frame-window"; version = "1.0.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/other-frame-window-1.0.2.el"; + url = "https://elpa.gnu.org/packages/other-frame-window-1.0.2.el"; sha256 = "0gr4vn7ld4fx372091wxnzm1rhq6rc4ycim4fwz5bxnpykz83l7d"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/other-frame-window.html"; + homepage = "https://elpa.gnu.org/packages/other-frame-window.html"; license = lib.licenses.free; }; }) {}; @@ -1284,12 +1299,12 @@ pname = "pabbrev"; version = "4.2.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/pabbrev-4.2.1.el"; + url = "https://elpa.gnu.org/packages/pabbrev-4.2.1.el"; sha256 = "19v5adk61y8fpigw7k6wz6dj79jwr450hnbi7fj0jvb21cvjmfxh"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/pabbrev.html"; + homepage = "https://elpa.gnu.org/packages/pabbrev.html"; license = lib.licenses.free; }; }) {}; @@ -1297,12 +1312,12 @@ pname = "pinentry"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/pinentry-0.1.el"; + url = "https://elpa.gnu.org/packages/pinentry-0.1.el"; sha256 = "0iiw11prk4w32czk69mvc3x6ja9xbhbvpg9b0nidrsg5njjjh76d"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/pinentry.html"; + homepage = "https://elpa.gnu.org/packages/pinentry.html"; license = lib.licenses.free; }; }) {}; @@ -1310,12 +1325,12 @@ pname = "poker"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/poker-0.1.el"; + url = "https://elpa.gnu.org/packages/poker-0.1.el"; sha256 = "0gbm59m6bs0766r7v8dy9gdif1pb89xj1h8h76bh78hr65yh7gg0"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/poker.html"; + homepage = "https://elpa.gnu.org/packages/poker.html"; license = lib.licenses.free; }; }) {}; @@ -1324,12 +1339,12 @@ pname = "python"; version = "0.25.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/python-0.25.1.el"; + url = "https://elpa.gnu.org/packages/python-0.25.1.el"; sha256 = "16r1sjq5fagrvlnrnbxmf6h2yxrcbhqlaa3ppqsa14vqrj09gisd"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/python.html"; + homepage = "https://elpa.gnu.org/packages/python.html"; license = lib.licenses.free; }; }) {}; @@ -1337,12 +1352,12 @@ pname = "quarter-plane"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/quarter-plane-0.1.el"; + url = "https://elpa.gnu.org/packages/quarter-plane-0.1.el"; sha256 = "0hj3asdzf05h8j1fsxx9y71arnprg2xwk2dcb81zj04hzggzpwmm"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/quarter-plane.html"; + homepage = "https://elpa.gnu.org/packages/quarter-plane.html"; license = lib.licenses.free; }; }) {}; @@ -1350,12 +1365,12 @@ pname = "queue"; version = "0.1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/queue-0.1.1.el"; + url = "https://elpa.gnu.org/packages/queue-0.1.1.el"; sha256 = "0jw24fxqnf9qcaf2nh09cnds1kqfk7hal35dw83x1ari95say391"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/queue.html"; + homepage = "https://elpa.gnu.org/packages/queue.html"; license = lib.licenses.free; }; }) {}; @@ -1363,12 +1378,12 @@ pname = "rainbow-mode"; version = "0.12"; src = fetchurl { - url = "http://elpa.gnu.org/packages/rainbow-mode-0.12.el"; + url = "https://elpa.gnu.org/packages/rainbow-mode-0.12.el"; sha256 = "10a7qs7fvw4qi4vxj9n56j26gjk61bl79dgz4md1d26slb2j1c04"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/rainbow-mode.html"; + homepage = "https://elpa.gnu.org/packages/rainbow-mode.html"; license = lib.licenses.free; }; }) {}; @@ -1376,12 +1391,12 @@ pname = "register-list"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/register-list-0.1.el"; + url = "https://elpa.gnu.org/packages/register-list-0.1.el"; sha256 = "1azgfm4yvhp2bqqplmfbz1fij8gda527lks82bslnpnabd8m6sjh"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/register-list.html"; + homepage = "https://elpa.gnu.org/packages/register-list.html"; license = lib.licenses.free; }; }) {}; @@ -1390,12 +1405,12 @@ pname = "rich-minority"; version = "1.0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/rich-minority-1.0.1.el"; + url = "https://elpa.gnu.org/packages/rich-minority-1.0.1.el"; sha256 = "1pr89k3jz044vf582klphl1zf0r7hj2g7ga8j1dwbrpr9ngiicgc"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/rich-minority.html"; + homepage = "https://elpa.gnu.org/packages/rich-minority.html"; license = lib.licenses.free; }; }) {}; @@ -1403,12 +1418,12 @@ pname = "rnc-mode"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/rnc-mode-0.1.el"; + url = "https://elpa.gnu.org/packages/rnc-mode-0.1.el"; sha256 = "18hm9g05ld8i1apr28dmd9ccq6dc0w6rdqhi0k7ka95jxxdr9m6d"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/rnc-mode.html"; + homepage = "https://elpa.gnu.org/packages/rnc-mode.html"; license = lib.licenses.free; }; }) {}; @@ -1416,12 +1431,12 @@ pname = "rudel"; version = "0.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/rudel-0.3.tar"; + url = "https://elpa.gnu.org/packages/rudel-0.3.tar"; sha256 = "041yac9a7hbz1fpmjlmc31ggcgg90fmw08z6bkzly2141yky8yh1"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/rudel.html"; + homepage = "https://elpa.gnu.org/packages/rudel.html"; license = lib.licenses.free; }; }) {}; @@ -1429,12 +1444,12 @@ pname = "scroll-restore"; version = "1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/scroll-restore-1.0.el"; + url = "https://elpa.gnu.org/packages/scroll-restore-1.0.el"; sha256 = "0h55szlmkmzmcvd6gvv8l74n7y64i0l78nwwmq7xsbzprlmj6khn"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/scroll-restore.html"; + homepage = "https://elpa.gnu.org/packages/scroll-restore.html"; license = lib.licenses.free; }; }) {}; @@ -1442,25 +1457,25 @@ pname = "sed-mode"; version = "1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/sed-mode-1.0.el"; + url = "https://elpa.gnu.org/packages/sed-mode-1.0.el"; sha256 = "1zpdai5k9zhy5hw0a5zx7qv3rcf8cn29hncfjnhk9k6sjq0302lg"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/sed-mode.html"; + homepage = "https://elpa.gnu.org/packages/sed-mode.html"; license = lib.licenses.free; }; }) {}; seq = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "seq"; - version = "1.11"; + version = "2.15"; src = fetchurl { - url = "http://elpa.gnu.org/packages/seq-1.11.el"; - sha256 = "1qpam4cxpy6x6gibln21v29mif71kifyvdfymjsidlnjqqnvdk1h"; + url = "https://elpa.gnu.org/packages/seq-2.15.tar"; + sha256 = "09wi1765bmn7i8fg6ajjfaxgs4ipc42d58zx2fdqpidrdg9c7q73"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/seq.html"; + homepage = "https://elpa.gnu.org/packages/seq.html"; license = lib.licenses.free; }; }) {}; @@ -1468,12 +1483,12 @@ pname = "shen-mode"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/shen-mode-0.1.tar"; + url = "https://elpa.gnu.org/packages/shen-mode-0.1.tar"; sha256 = "1dr24kkah4hr6vrfxwhl9vzjnwn4n773bw23c3j9bkmlgnbvn0kz"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/shen-mode.html"; + homepage = "https://elpa.gnu.org/packages/shen-mode.html"; license = lib.licenses.free; }; }) {}; @@ -1481,12 +1496,12 @@ pname = "sisu-mode"; version = "7.1.8"; src = fetchurl { - url = "http://elpa.gnu.org/packages/sisu-mode-7.1.8.el"; + url = "https://elpa.gnu.org/packages/sisu-mode-7.1.8.el"; sha256 = "12zs6y4rzng1d7djl9wh3wc0f9fj0bqb7h754rvixvndlr5c10nj"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/sisu-mode.html"; + homepage = "https://elpa.gnu.org/packages/sisu-mode.html"; license = lib.licenses.free; }; }) {}; @@ -1494,26 +1509,26 @@ pname = "sml-mode"; version = "6.7"; src = fetchurl { - url = "http://elpa.gnu.org/packages/sml-mode-6.7.el"; + url = "https://elpa.gnu.org/packages/sml-mode-6.7.el"; sha256 = "041dmxx7imiy99si9pscwjh5y4h02y3lirzhv1cfxqr3ghxngf9x"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/sml-mode.html"; + homepage = "https://elpa.gnu.org/packages/sml-mode.html"; license = lib.licenses.free; }; }) {}; soap-client = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }: elpaBuild { pname = "soap-client"; - version = "3.0.2"; + version = "3.1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/soap-client-3.0.2.tar"; - sha256 = "0yx7lnag6fqrnm3a4j77w1lq63izn43sms0n3d4504yr3p826sci"; + url = "https://elpa.gnu.org/packages/soap-client-3.1.1.tar"; + sha256 = "0is2923g882farf73dix6ncq3m26yn5j5qr8wz6s0xad04zdbdhk"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/soap-client.html"; + homepage = "https://elpa.gnu.org/packages/soap-client.html"; license = lib.licenses.free; }; }) {}; @@ -1521,38 +1536,38 @@ pname = "sokoban"; version = "1.4"; src = fetchurl { - url = "http://elpa.gnu.org/packages/sokoban-1.4.tar"; + url = "https://elpa.gnu.org/packages/sokoban-1.4.tar"; sha256 = "1yfkaw8rjris03qpj32vqhg5lfml4hz9v3adka6sw6dv4n67j9w1"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/sokoban.html"; + homepage = "https://elpa.gnu.org/packages/sokoban.html"; license = lib.licenses.free; }; }) {}; sotlisp = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "sotlisp"; - version = "1.5.1"; + version = "1.5.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/sotlisp-1.5.1.el"; - sha256 = "1dm2pl4i091gi5lljl68s6v3l3904jj38v56qjblm160wjiahgkm"; + url = "https://elpa.gnu.org/packages/sotlisp-1.5.2.el"; + sha256 = "1kv161rmg71wjizd359s8l6d1z2ybyc8sbbvbwcbr778dj7x6wld"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/sotlisp.html"; + homepage = "https://elpa.gnu.org/packages/sotlisp.html"; license = lib.licenses.free; }; }) {}; spinner = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "spinner"; - version = "1.7"; + version = "1.7.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/spinner-1.7.el"; - sha256 = "1y78kr26mi74xf0qh32dvhk7w3bkj6d9i2iw1mypsr0h5phg8ahf"; + url = "https://elpa.gnu.org/packages/spinner-1.7.1.el"; + sha256 = "1fmwzdih0kbyvs8bn38mpm4sbs2mikqy2vdykfy9g20wpa8vb681"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/spinner.html"; + homepage = "https://elpa.gnu.org/packages/spinner.html"; license = lib.licenses.free; }; }) {}; @@ -1560,12 +1575,12 @@ pname = "stream"; version = "2.2.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/stream-2.2.0.el"; + url = "https://elpa.gnu.org/packages/stream-2.2.0.el"; sha256 = "0i6vwih61a0z0q05v9wyp9nj5h68snlb9n52nmrv1k0hhzsjmlrs"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/stream.html"; + homepage = "https://elpa.gnu.org/packages/stream.html"; license = lib.licenses.free; }; }) {}; @@ -1573,12 +1588,12 @@ pname = "svg"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/svg-0.1.el"; + url = "https://elpa.gnu.org/packages/svg-0.1.el"; sha256 = "0v27casnjvjjaalmrbw494sk0zciws037cn6cmcc6rnhj30lzbv5"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/svg.html"; + homepage = "https://elpa.gnu.org/packages/svg.html"; license = lib.licenses.free; }; }) {}; @@ -1587,25 +1602,12 @@ pname = "svg-clock"; version = "1.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/svg-clock-1.0.el"; + url = "https://elpa.gnu.org/packages/svg-clock-1.0.el"; sha256 = "0j6zk7fsv72af12phqdw8axbn2y8y4rfgxiab1p3pxq3y7k47jid"; }; packageRequires = [ emacs svg ]; meta = { - homepage = "http://elpa.gnu.org/packages/svg-clock.html"; - license = lib.licenses.free; - }; - }) {}; - swiper = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { - pname = "swiper"; - version = "0.7.0"; - src = fetchurl { - url = "http://elpa.gnu.org/packages/swiper-0.7.0.tar"; - sha256 = "1bzzx41zcf3yk6r6csqzlffwwrw9gyk8ab026r55l6416b6rcynx"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "http://elpa.gnu.org/packages/swiper.html"; + homepage = "https://elpa.gnu.org/packages/svg-clock.html"; license = lib.licenses.free; }; }) {}; @@ -1613,12 +1615,12 @@ pname = "tNFA"; version = "0.1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/tNFA-0.1.1.el"; + url = "https://elpa.gnu.org/packages/tNFA-0.1.1.el"; sha256 = "01n4p8lg8f2k55l2z77razb2sl202qisjqm5lff96a2kxnxinsds"; }; packageRequires = [ queue ]; meta = { - homepage = "http://elpa.gnu.org/packages/tNFA.html"; + homepage = "https://elpa.gnu.org/packages/tNFA.html"; license = lib.licenses.free; }; }) {}; @@ -1626,12 +1628,12 @@ pname = "temp-buffer-browse"; version = "1.4"; src = fetchurl { - url = "http://elpa.gnu.org/packages/temp-buffer-browse-1.4.el"; + url = "https://elpa.gnu.org/packages/temp-buffer-browse-1.4.el"; sha256 = "055z7hm8b2s8z1kd6hahjz0crz9qx8k9qb5pwdwdxcsh2j70pmcw"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/temp-buffer-browse.html"; + homepage = "https://elpa.gnu.org/packages/temp-buffer-browse.html"; license = lib.licenses.free; }; }) {}; @@ -1640,12 +1642,12 @@ pname = "test-simple"; version = "1.2.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/test-simple-1.2.0.el"; + url = "https://elpa.gnu.org/packages/test-simple-1.2.0.el"; sha256 = "1j97qrwi3i2kihszsxf3y2cby2bzp8g0zf6jlpdix3dinav8xa3b"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/test-simple.html"; + homepage = "https://elpa.gnu.org/packages/test-simple.html"; license = lib.licenses.free; }; }) {}; @@ -1654,12 +1656,12 @@ pname = "timerfunctions"; version = "1.4.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/timerfunctions-1.4.2.el"; + url = "https://elpa.gnu.org/packages/timerfunctions-1.4.2.el"; sha256 = "122q8nv08pz1mkgilvi9qfrs7rsnc5picr7jyz2jpnvpd9qw6jw5"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/timerfunctions.html"; + homepage = "https://elpa.gnu.org/packages/timerfunctions.html"; license = lib.licenses.free; }; }) {}; @@ -1667,12 +1669,12 @@ pname = "tiny"; version = "0.1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/tiny-0.1.1.tar"; + url = "https://elpa.gnu.org/packages/tiny-0.1.1.tar"; sha256 = "1nhg8375qdn457wj0xmfaj72s87xbabk2w1nl6q7rjvwxv08yyn7"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/tiny.html"; + homepage = "https://elpa.gnu.org/packages/tiny.html"; license = lib.licenses.free; }; }) {}; @@ -1680,25 +1682,25 @@ pname = "tramp-theme"; version = "0.1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/tramp-theme-0.1.1.el"; + url = "https://elpa.gnu.org/packages/tramp-theme-0.1.1.el"; sha256 = "0l8i625h9sc6h59qfj847blmfwfhf9bvfsbmwfb56qzs535fby3y"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/tramp-theme.html"; + homepage = "https://elpa.gnu.org/packages/tramp-theme.html"; license = lib.licenses.free; }; }) {}; transcribe = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "transcribe"; - version = "1.0.2"; + version = "1.5.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/transcribe-1.0.2.el"; - sha256 = "0b0qaq0b3l37h6wfs4j80csmfcbidcd8a8wk6mwn6p4cdi7msr15"; + url = "https://elpa.gnu.org/packages/transcribe-1.5.0.el"; + sha256 = "0capyagpzmrf26jgqng5kvsxz30pf2iq55drnws73w9jywkq45mf"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/transcribe.html"; + homepage = "https://elpa.gnu.org/packages/transcribe.html"; license = lib.licenses.free; }; }) {}; @@ -1706,12 +1708,12 @@ pname = "trie"; version = "0.2.6"; src = fetchurl { - url = "http://elpa.gnu.org/packages/trie-0.2.6.el"; + url = "https://elpa.gnu.org/packages/trie-0.2.6.el"; sha256 = "1q3i1dhq55c3b1hqpvmh924vzvhrgyp76hr1ci7bhjqvjmjx24ii"; }; packageRequires = [ heap tNFA ]; meta = { - homepage = "http://elpa.gnu.org/packages/trie.html"; + homepage = "https://elpa.gnu.org/packages/trie.html"; license = lib.licenses.free; }; }) {}; @@ -1719,12 +1721,12 @@ pname = "undo-tree"; version = "0.6.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/undo-tree-0.6.5.el"; + url = "https://elpa.gnu.org/packages/undo-tree-0.6.5.el"; sha256 = "0bs97xyxwfkjvzax9llg0zsng0vyndnrxj5d2n5mmynaqcn89d37"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/undo-tree.html"; + homepage = "https://elpa.gnu.org/packages/undo-tree.html"; license = lib.licenses.free; }; }) {}; @@ -1732,12 +1734,12 @@ pname = "uni-confusables"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/uni-confusables-0.1.tar"; + url = "https://elpa.gnu.org/packages/uni-confusables-0.1.tar"; sha256 = "0s3scvzhd4bggk0qafcspf97cmcvdw3w8bbf5ark4p22knvg80zp"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/uni-confusables.html"; + homepage = "https://elpa.gnu.org/packages/uni-confusables.html"; license = lib.licenses.free; }; }) {}; @@ -1746,12 +1748,12 @@ pname = "url-http-ntlm"; version = "2.0.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/url-http-ntlm-2.0.2.el"; + url = "https://elpa.gnu.org/packages/url-http-ntlm-2.0.2.el"; sha256 = "0jci5cl31hw4dj0j9ljq0iplg530wnwbw7b63crrwn3mza5cb2wf"; }; packageRequires = [ cl-lib ntlm ]; meta = { - homepage = "http://elpa.gnu.org/packages/url-http-ntlm.html"; + homepage = "https://elpa.gnu.org/packages/url-http-ntlm.html"; license = lib.licenses.free; }; }) {}; @@ -1759,12 +1761,12 @@ pname = "vlf"; version = "1.7"; src = fetchurl { - url = "http://elpa.gnu.org/packages/vlf-1.7.tar"; + url = "https://elpa.gnu.org/packages/vlf-1.7.tar"; sha256 = "007zdr5szimr6nwwrqz9s338s0qq82r006pdwgcm8nc41jsmsx7r"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/vlf.html"; + homepage = "https://elpa.gnu.org/packages/vlf.html"; license = lib.licenses.free; }; }) {}; @@ -1772,12 +1774,12 @@ pname = "w3"; version = "4.0.49"; src = fetchurl { - url = "http://elpa.gnu.org/packages/w3-4.0.49.tar"; + url = "https://elpa.gnu.org/packages/w3-4.0.49.tar"; sha256 = "01n334b3gwx288xysa1vxsvb14avsz3syfigw85i7m5nizhikqbb"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/w3.html"; + homepage = "https://elpa.gnu.org/packages/w3.html"; license = lib.licenses.free; }; }) {}; @@ -1785,12 +1787,12 @@ pname = "wcheck-mode"; version = "2016.1.30"; src = fetchurl { - url = "http://elpa.gnu.org/packages/wcheck-mode-2016.1.30.el"; + url = "https://elpa.gnu.org/packages/wcheck-mode-2016.1.30.el"; sha256 = "0hzrxnslfl04h083njy7wp4hhgrqpyz0cnm73v348kr1i4wx9xjq"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/wcheck-mode.html"; + homepage = "https://elpa.gnu.org/packages/wcheck-mode.html"; license = lib.licenses.free; }; }) {}; @@ -1798,12 +1800,12 @@ pname = "wconf"; version = "0.2.0"; src = fetchurl { - url = "http://elpa.gnu.org/packages/wconf-0.2.0.el"; + url = "https://elpa.gnu.org/packages/wconf-0.2.0.el"; sha256 = "07adnx2ni7kprxw9mx1nywzs1a2h43rszfa8r8i0s9j16grvgphk"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/wconf.html"; + homepage = "https://elpa.gnu.org/packages/wconf.html"; license = lib.licenses.free; }; }) {}; @@ -1811,12 +1813,12 @@ pname = "web-server"; version = "0.1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/web-server-0.1.1.tar"; + url = "https://elpa.gnu.org/packages/web-server-0.1.1.tar"; sha256 = "1q51fhqw5al4iycdlighwv7jqgdpjb1a66glwd5jnc9b651yk42n"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/web-server.html"; + homepage = "https://elpa.gnu.org/packages/web-server.html"; license = lib.licenses.free; }; }) {}; @@ -1824,12 +1826,12 @@ pname = "websocket"; version = "1.5"; src = fetchurl { - url = "http://elpa.gnu.org/packages/websocket-1.5.tar"; + url = "https://elpa.gnu.org/packages/websocket-1.5.tar"; sha256 = "0plgc8an229cqbghrxd6wh73b081dc17fx1r940dqhgi284pcjsy"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/websocket.html"; + homepage = "https://elpa.gnu.org/packages/websocket.html"; license = lib.licenses.free; }; }) {}; @@ -1837,12 +1839,12 @@ pname = "windresize"; version = "0.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/windresize-0.1.el"; + url = "https://elpa.gnu.org/packages/windresize-0.1.el"; sha256 = "0b5bfs686nkp7s05zgfqvr1mpagmkd74j1grq8kp2w9arj0qfi3x"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/windresize.html"; + homepage = "https://elpa.gnu.org/packages/windresize.html"; license = lib.licenses.free; }; }) {}; @@ -1851,12 +1853,12 @@ pname = "wisi"; version = "1.1.2"; src = fetchurl { - url = "http://elpa.gnu.org/packages/wisi-1.1.2.tar"; + url = "https://elpa.gnu.org/packages/wisi-1.1.2.tar"; sha256 = "04gryfpgbviviwbnvv3sh280pzasr59cp5xz1s0yf0n4d3rv2df3"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/wisi.html"; + homepage = "https://elpa.gnu.org/packages/wisi.html"; license = lib.licenses.free; }; }) {}; @@ -1864,12 +1866,12 @@ pname = "wpuzzle"; version = "1.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/wpuzzle-1.1.el"; + url = "https://elpa.gnu.org/packages/wpuzzle-1.1.el"; sha256 = "1wjg411dc0fvj2n8ak73igfrzc31nizzvvr2qa87fhq99bgh62kj"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/wpuzzle.html"; + homepage = "https://elpa.gnu.org/packages/wpuzzle.html"; license = lib.licenses.free; }; }) {}; @@ -1877,12 +1879,12 @@ pname = "xclip"; version = "1.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/xclip-1.3.el"; + url = "https://elpa.gnu.org/packages/xclip-1.3.el"; sha256 = "1zlqr4sp8588sjga5c9b4prnsbpv3lr2wv8sih2p0s5qmjghc947"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/xclip.html"; + homepage = "https://elpa.gnu.org/packages/xclip.html"; license = lib.licenses.free; }; }) {}; @@ -1891,12 +1893,12 @@ pname = "xelb"; version = "0.6"; src = fetchurl { - url = "http://elpa.gnu.org/packages/xelb-0.6.tar"; + url = "https://elpa.gnu.org/packages/xelb-0.6.tar"; sha256 = "1m91af5srxq8zs9w4gb44kl4bgka8fq7k33h7f2yn213h23kvvvh"; }; packageRequires = [ cl-generic emacs ]; meta = { - homepage = "http://elpa.gnu.org/packages/xelb.html"; + homepage = "https://elpa.gnu.org/packages/xelb.html"; license = lib.licenses.free; }; }) {}; @@ -1904,25 +1906,26 @@ pname = "xpm"; version = "1.0.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/xpm-1.0.3.tar"; + url = "https://elpa.gnu.org/packages/xpm-1.0.3.tar"; sha256 = "0qckb93xwzcg8iwiv4bd08r60jn0n853czmilz0hyyb1lfi82lp4"; }; packageRequires = []; meta = { - homepage = "http://elpa.gnu.org/packages/xpm.html"; + homepage = "https://elpa.gnu.org/packages/xpm.html"; license = lib.licenses.free; }; }) {}; - yasnippet = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { + yasnippet = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }: + elpaBuild { pname = "yasnippet"; - version = "0.8.0"; + version = "0.9.1"; src = fetchurl { - url = "http://elpa.gnu.org/packages/yasnippet-0.8.0.tar"; - sha256 = "1syb9sc6xbw4vjhaix8b41lbm5zq6myrljl4r72yi6ndj5z9bmpr"; + url = "https://elpa.gnu.org/packages/yasnippet-0.9.1.tar"; + sha256 = "0b88q10dxa13afjzpkwgjlrzzvwiiqsi9jr73pxnsy4q1n1n2vml"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/yasnippet.html"; + homepage = "https://elpa.gnu.org/packages/yasnippet.html"; license = lib.licenses.free; }; }) {}; @@ -1931,12 +1934,12 @@ pname = "ztree"; version = "1.0.3"; src = fetchurl { - url = "http://elpa.gnu.org/packages/ztree-1.0.3.tar"; + url = "https://elpa.gnu.org/packages/ztree-1.0.3.tar"; sha256 = "1mwzk48sah4w5jmlmzqxnwhnlnc2mf25ayhgymv24sv8c6hdllsw"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://elpa.gnu.org/packages/ztree.html"; + homepage = "https://elpa.gnu.org/packages/ztree.html"; license = lib.licenses.free; }; }) {}; diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 29cb586484a..0212451bef0 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -2,12 +2,13 @@ # Updating -To update the list of packages from ELPA, +To update the list of packages from MELPA, -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)"` +1. Clone https://github.com/ttuegel/emacs2nix. +2. Run `./elpa-packages.sh` from emacs2nix. +3. Copy the new `elpa-generated.nix` file into Nixpkgs. +4. Check for evaluation errors: `nix-instantiate ./. -A emacsPackagesNg.elpaPackages`. +5. `git add pkgs/applications/editors/emacs-modes/elpa-generated.nix && git commit -m "elpa-packages $(date -Idate)"` */ @@ -40,6 +41,7 @@ self: midi-kbd = markBroken super.midi-kbd; # requires emacs-25 stream = markBroken super.stream; # requires emacs-25 cl-lib = null; # builtin + tle = null; # builtin }; elpaPackages = super // overrides; diff --git a/pkgs/applications/editors/emacs-modes/melpa-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-generated.nix index 138c53dfe9a..ebb24f826be 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-generated.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-generated.nix @@ -6,17 +6,17 @@ src = fetchFromGitHub { owner = "etu"; repo = "0blayout-mode"; - rev = "e256da71d4e0f126a0fd8a9b8fb77f54931f4dfc"; + rev = "6e4ef20e70aed88489c31c48c73da8ff0ce4572b"; sha256 = "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/0blayout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/0blayout"; sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92"; name = "_0blayout"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/0blayout"; + homepage = "https://melpa.org/#/0blayout"; license = lib.licenses.free; }; }) {}; @@ -30,13 +30,13 @@ sha256 = "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/2048-game"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/2048-game"; sha256 = "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0"; name = "_2048-game"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/2048-game"; + homepage = "https://melpa.org/#/2048-game"; license = lib.licenses.free; }; }) {}; @@ -45,19 +45,40 @@ pname = "_4clojure"; version = "20131014.1707"; src = fetchFromGitHub { - owner = "joshuarh"; + owner = "losingkeys"; repo = "4clojure.el"; rev = "3cdfd356c24cd3518397d29ae833f56a4d20b4ca"; sha256 = "1fybicg46fc5jjqv7g2d3dnj1x9n58m2fg9x6qxn9l8qlzk9yxkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/4clojure"; - sha256 = "1w9zxy6jwiln28cmdgkbbdfk3pdscqlfahrqi6lbgpjvkw9z44mb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/4clojure"; + sha256 = "09bmdxkkp676sn1sbbly44k99i47w83yznq950nkxv6x8753ifgk"; name = "_4clojure"; }; packageRequires = [ json request ]; meta = { - homepage = "http://melpa.org/#/4clojure"; + homepage = "https://melpa.org/#/4clojure"; + license = lib.licenses.free; + }; + }) {}; + aa-edit-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, navi2ch }: + melpaBuild { + pname = "aa-edit-mode"; + version = "20160228.17"; + src = fetchFromGitHub { + owner = "zonuexe"; + repo = "aa-edit-mode"; + rev = "573cbd75fc8f866088bf4780d9d7132c0689cef5"; + sha256 = "0d7q0fhcw4cvy9140hwxp8zdh0g37zhfsq6kmsdngxdx7lw3wryi"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aa-edit-mode"; + sha256 = "00b99ik04xx4b2a1cm1z8dl42hjnb5r32qypjyyx8924n1dhxzgn"; + name = "aa-edit-mode"; + }; + packageRequires = [ emacs navi2ch ]; + meta = { + homepage = "https://melpa.org/#/aa-edit-mode"; license = lib.licenses.free; }; }) {}; @@ -72,13 +93,13 @@ sha256 = "1h4gwp2gyd4jhbkb8ai1zbzhhmlhmihbwzr0wsxg5yq074n72ifs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/abc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/abc-mode"; sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx"; name = "abc-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/abc-mode"; + homepage = "https://melpa.org/#/abc-mode"; license = lib.licenses.free; }; }) {}; @@ -93,34 +114,34 @@ sha256 = "09hy7rj27h7xbvasd87146di4vhpg5cmqc9f39fy0ihmv9gy56za"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/abl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/abl-mode"; sha256 = "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb"; name = "abl-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/abl-mode"; + homepage = "https://melpa.org/#/abl-mode"; license = lib.licenses.free; }; }) {}; abyss-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "abyss-theme"; - version = "20160130.425"; + version = "20160420.712"; src = fetchFromGitHub { owner = "mgrbyte"; repo = "emacs-abyss-theme"; - rev = "953bab8dd567c9a49a74f7c9d6ac52504405d517"; - sha256 = "1zifkqkxb0wzddfcapm71g3k52fn36ink779imyncg72plg216g0"; + rev = "e860499a0b2ae0d6d2a27eab12b67dec896a7afc"; + sha256 = "1yr6cqycd7ljkqzfp4prz9ilcpjq8wxg5yf645m24gy9v4w365ia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/abyss-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/abyss-theme"; sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c"; name = "abyss-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/abyss-theme"; + homepage = "https://melpa.org/#/abyss-theme"; license = lib.licenses.free; }; }) {}; @@ -135,13 +156,13 @@ sha256 = "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-alchemist"; sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0"; name = "ac-alchemist"; }; packageRequires = [ alchemist auto-complete cl-lib ]; meta = { - homepage = "http://melpa.org/#/ac-alchemist"; + homepage = "https://melpa.org/#/ac-alchemist"; license = lib.licenses.free; }; }) {}; @@ -156,13 +177,13 @@ sha256 = "092m8y38h4irh2ig6n6510gw2scjjxah37zim6mk92jzn1xv06d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-anaconda"; sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf"; name = "ac-anaconda"; }; packageRequires = [ anaconda-mode auto-complete dash ]; meta = { - homepage = "http://melpa.org/#/ac-anaconda"; + homepage = "https://melpa.org/#/ac-anaconda"; license = lib.licenses.free; }; }) {}; @@ -177,13 +198,13 @@ sha256 = "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-c-headers"; sha256 = "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv"; name = "ac-c-headers"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/ac-c-headers"; + homepage = "https://melpa.org/#/ac-c-headers"; license = lib.licenses.free; }; }) {}; @@ -198,13 +219,13 @@ sha256 = "1llpnb9vy612sg214i76rxnzcl3qx8pqnixczc5pik9kd3fdaz5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cake"; sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl"; name = "ac-cake"; }; packageRequires = [ auto-complete cake ]; meta = { - homepage = "http://melpa.org/#/ac-cake"; + homepage = "https://melpa.org/#/ac-cake"; license = lib.licenses.free; }; }) {}; @@ -219,13 +240,13 @@ sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cake2"; sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy"; name = "ac-cake2"; }; packageRequires = [ auto-complete cake2 ]; meta = { - homepage = "http://melpa.org/#/ac-cake2"; + homepage = "https://melpa.org/#/ac-cake2"; license = lib.licenses.free; }; }) {}; @@ -240,34 +261,34 @@ sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-capf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-capf"; sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm"; name = "ac-capf"; }; packageRequires = [ auto-complete cl-lib ]; meta = { - homepage = "http://melpa.org/#/ac-capf"; + homepage = "https://melpa.org/#/ac-capf"; license = lib.licenses.free; }; }) {}; ac-cider = callPackage ({ auto-complete, cider, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-cider"; - version = "20151012.508"; + version = "20160305.924"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "ac-cider"; - rev = "eeb4b3ae1e91d03d765f6c39994792e4f05f6600"; - sha256 = "1k4zk27zvxmcffwwg0zx19rcy2ysd65nnrifwspdw699glpwx2l5"; + rev = "cc8efb877cb80475392860a478c985421a25acd5"; + sha256 = "0j8bbliijycnvpqbl1x3a0nbixhr57czfch2s8phn7v3zzdr8k3h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cider"; sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6"; name = "ac-cider"; }; packageRequires = [ auto-complete cider cl-lib ]; meta = { - homepage = "http://melpa.org/#/ac-cider"; + homepage = "https://melpa.org/#/ac-cider"; license = lib.licenses.free; }; }) {}; @@ -282,13 +303,13 @@ sha256 = "0n9zagwh3rz7b76irj4ya8wskffns9v1c1pivsdqgpd76spvl7n5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-clang"; sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4"; name = "ac-clang"; }; packageRequires = [ auto-complete cl-lib emacs pos-tip yasnippet ]; meta = { - homepage = "http://melpa.org/#/ac-clang"; + homepage = "https://melpa.org/#/ac-clang"; license = lib.licenses.free; }; }) {}; @@ -296,38 +317,38 @@ pname = "ac-dabbrev"; version = "20130906.18"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/ac-dabbrev.el"; + url = "https://www.emacswiki.org/emacs/download/ac-dabbrev.el"; sha256 = "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-dabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-dabbrev"; sha256 = "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh"; name = "ac-dabbrev"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ac-dabbrev"; + homepage = "https://melpa.org/#/ac-dabbrev"; license = lib.licenses.free; }; }) {}; ac-dcd = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, flycheck-dmd-dub, lib, melpaBuild }: melpaBuild { pname = "ac-dcd"; - version = "20150702.924"; + version = "20160311.817"; src = fetchFromGitHub { owner = "atilaneves"; repo = "ac-dcd"; - rev = "8fe1a48fcfeeafa1970e5041b0e71a4fcd10f336"; - sha256 = "1dydjkilvyzxl7wwy3afmn1cjf8jv0385im4nhn8c3xr8iiil7yv"; + rev = "bfb4fe768c8bf6fc7b7ee880f54e2052ebb23e3b"; + sha256 = "1hlijh415wgl450ry16a1072jjrkqqqkk862hfhswfr2l6rjfw98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-dcd"; sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r"; name = "ac-dcd"; }; packageRequires = [ auto-complete flycheck-dmd-dub ]; meta = { - homepage = "http://melpa.org/#/ac-dcd"; + homepage = "https://melpa.org/#/ac-dcd"; license = lib.licenses.free; }; }) {}; @@ -342,13 +363,13 @@ sha256 = "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-emmet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-emmet"; sha256 = "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x"; name = "ac-emmet"; }; packageRequires = [ auto-complete emmet-mode ]; meta = { - homepage = "http://melpa.org/#/ac-emmet"; + homepage = "https://melpa.org/#/ac-emmet"; license = lib.licenses.free; }; }) {}; @@ -363,13 +384,13 @@ sha256 = "19981mzxnqqdb8dsdizy2i8byb8sx9138x3nrvi6ap2qbcsabjmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-emoji"; sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw"; name = "ac-emoji"; }; packageRequires = [ auto-complete cl-lib ]; meta = { - homepage = "http://melpa.org/#/ac-emoji"; + homepage = "https://melpa.org/#/ac-emoji"; license = lib.licenses.free; }; }) {}; @@ -384,13 +405,13 @@ sha256 = "140i02b2ipyfmki945l1xd1nsqdpganhmi3bmwj1h9w8cg078bd4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-etags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-etags"; sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb"; name = "ac-etags"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/ac-etags"; + homepage = "https://melpa.org/#/ac-etags"; license = lib.licenses.free; }; }) {}; @@ -405,13 +426,13 @@ sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-geiser"; sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx"; name = "ac-geiser"; }; packageRequires = [ auto-complete geiser ]; meta = { - homepage = "http://melpa.org/#/ac-geiser"; + homepage = "https://melpa.org/#/ac-geiser"; license = lib.licenses.free; }; }) {}; @@ -426,34 +447,34 @@ sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-haskell-process"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-haskell-process"; sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw"; name = "ac-haskell-process"; }; packageRequires = [ auto-complete haskell-mode ]; meta = { - homepage = "http://melpa.org/#/ac-haskell-process"; + homepage = "https://melpa.org/#/ac-haskell-process"; license = lib.licenses.free; }; }) {}; ac-helm = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, popup }: melpaBuild { pname = "ac-helm"; - version = "20140919.1117"; + version = "20160318.2133"; src = fetchFromGitHub { owner = "yasuyk"; repo = "ac-helm"; - rev = "0cde22dac4726d08c27801c926cf40b1165c8a07"; - sha256 = "1ycchpiiavxw8n08gra0bsp9pxp6ln8cgjrkz9jjq7i6ixi8f9d6"; + rev = "baf2b1e04bcffa835084389c0fab415f26efbf32"; + sha256 = "1fyikdwn0gzng7pbmfg7zb7jphjv228776vsjc12j7g1aqz92n4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-helm"; sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq"; name = "ac-helm"; }; packageRequires = [ auto-complete cl-lib helm popup ]; meta = { - homepage = "http://melpa.org/#/ac-helm"; + homepage = "https://melpa.org/#/ac-helm"; license = lib.licenses.free; }; }) {}; @@ -468,13 +489,13 @@ sha256 = "1sip87j4wvlf9pfnpr0zyyhys1dd9smh6hy3zs08ihbdh98krgs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html"; sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa"; name = "ac-html"; }; packageRequires = [ auto-complete dash f s ]; meta = { - homepage = "http://melpa.org/#/ac-html"; + homepage = "https://melpa.org/#/ac-html"; license = lib.licenses.free; }; }) {}; @@ -489,34 +510,34 @@ sha256 = "1v3ia439h4n2i204n0sazzbwwm0l5k6j31gq58iv2rqrq2ysikny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html-angular"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html-angular"; sha256 = "05rbxf5kbr4jlskrhvfvhf82qvb55zl5cb6z1ymfh9l3h9j9xk3s"; name = "ac-html-angular"; }; packageRequires = [ web-completion-data ]; meta = { - homepage = "http://melpa.org/#/ac-html-angular"; + homepage = "https://melpa.org/#/ac-html-angular"; license = lib.licenses.free; }; }) {}; ac-html-bootstrap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }: melpaBuild { pname = "ac-html-bootstrap"; - version = "20151222.1512"; + version = "20160302.1101"; src = fetchFromGitHub { owner = "osv"; repo = "ac-html-bootstrap"; - rev = "ea9f7e351e1f39e0c2da5f518948db5ee751d15b"; - sha256 = "0v33p6lnsq1nwyxfbgs6vg6fidfyqwxd5wls2yza95yxzl30m9r7"; + rev = "481e6e441cd566554ce71cd8cb28c9e7ebb1c24b"; + sha256 = "0ry398awbsyswc87v275x4mdyv64kr0s647y6nagqg1h3n3jhvsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html-bootstrap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html-bootstrap"; sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1"; name = "ac-html-bootstrap"; }; packageRequires = [ web-completion-data ]; meta = { - homepage = "http://melpa.org/#/ac-html-bootstrap"; + homepage = "https://melpa.org/#/ac-html-bootstrap"; license = lib.licenses.free; }; }) {}; @@ -531,13 +552,13 @@ sha256 = "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html-csswatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html-csswatcher"; sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn"; name = "ac-html-csswatcher"; }; packageRequires = [ web-completion-data ]; meta = { - homepage = "http://melpa.org/#/ac-html-csswatcher"; + homepage = "https://melpa.org/#/ac-html-csswatcher"; license = lib.licenses.free; }; }) {}; @@ -552,13 +573,13 @@ sha256 = "0xdqk0qr1mmm5q3049ldwlmrcfgz6rzk4yxc8qgz6kll27kciia0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-inf-ruby"; sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr"; name = "ac-inf-ruby"; }; packageRequires = [ auto-complete inf-ruby ]; meta = { - homepage = "http://melpa.org/#/ac-inf-ruby"; + homepage = "https://melpa.org/#/ac-inf-ruby"; license = lib.licenses.free; }; }) {}; @@ -573,13 +594,13 @@ sha256 = "1cq73bdv3lkn8v3nx6aznygqaac9s5i7pvirl8wz9ib31hsgwpbk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-ispell"; sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67"; name = "ac-ispell"; }; packageRequires = [ auto-complete cl-lib ]; meta = { - homepage = "http://melpa.org/#/ac-ispell"; + homepage = "https://melpa.org/#/ac-ispell"; license = lib.licenses.free; }; }) {}; @@ -594,13 +615,13 @@ sha256 = "0yn9333rjs2pzb1wk1japclsqagdcl28j0yjl3q5b70g5gi5vx7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-js2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-js2"; sha256 = "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa"; name = "ac-js2"; }; packageRequires = [ js2-mode skewer-mode ]; meta = { - homepage = "http://melpa.org/#/ac-js2"; + homepage = "https://melpa.org/#/ac-js2"; license = lib.licenses.free; }; }) {}; @@ -609,19 +630,19 @@ pname = "ac-math"; version = "20141116.1527"; src = fetchFromGitHub { - owner = "vitoshka"; + owner = "vspinu"; repo = "ac-math"; rev = "c012a8f620a48cb18db7d78995035d65eae28f11"; sha256 = "0p5cdaw9v8jgnmjqpb95bxy4khwbdgg19wzg8jkr2j2p55dpfbd6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-math"; - sha256 = "1gx35m0wv60cfgm87y2c7vrpwdsqjzk9bz4pp9dbs8dhxvji0ay4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-math"; + sha256 = "02c821zabxp9qkwx252pxjmssdbmas0iwanw09r03bmiby9d4nsl"; name = "ac-math"; }; packageRequires = [ auto-complete math-symbol-lists ]; meta = { - homepage = "http://melpa.org/#/ac-math"; + homepage = "https://melpa.org/#/ac-math"; license = lib.licenses.free; }; }) {}; @@ -636,13 +657,13 @@ sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-mozc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-mozc"; sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f"; name = "ac-mozc"; }; packageRequires = [ auto-complete cl-lib mozc ]; meta = { - homepage = "http://melpa.org/#/ac-mozc"; + homepage = "https://melpa.org/#/ac-mozc"; license = lib.licenses.free; }; }) {}; @@ -657,28 +678,28 @@ sha256 = "16bg2zg08223x7q54rmfjziaccgm64h9vc8z59sjljkw1bgx9m7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-octave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-octave"; sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z"; name = "ac-octave"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/ac-octave"; + homepage = "https://melpa.org/#/ac-octave"; license = lib.licenses.free; }; }) {}; ac-php = callPackage ({ auto-complete, company, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode, popup, s, xcscope, yasnippet }: melpaBuild { pname = "ac-php"; - version = "20160203.2053"; + version = "20160416.213"; src = fetchFromGitHub { owner = "xcwen"; repo = "ac-php"; - rev = "bf5e3b82ac81b420613edc9e67a35bd4650605f2"; - sha256 = "013j8iv62jiq3pbammh3ia6dcf9dm28w938nkh7hljh1c26hg4hp"; + rev = "11acb76d2eeeecd3041a0b237db729a795a7711c"; + sha256 = "1h06s6bn9ld868zbnp7zmgkk6b3m9rmgghf897slmqnqd3wdq3pa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-php"; sha256 = "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk"; name = "ac-php"; }; @@ -695,7 +716,7 @@ yasnippet ]; meta = { - homepage = "http://melpa.org/#/ac-php"; + homepage = "https://melpa.org/#/ac-php"; license = lib.licenses.free; }; }) {}; @@ -710,13 +731,13 @@ sha256 = "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-racer"; sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp"; name = "ac-racer"; }; packageRequires = [ auto-complete cl-lib racer ]; meta = { - homepage = "http://melpa.org/#/ac-racer"; + homepage = "https://melpa.org/#/ac-racer"; license = lib.licenses.free; }; }) {}; @@ -731,13 +752,13 @@ sha256 = "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-skk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-skk"; sha256 = "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z"; name = "ac-skk"; }; packageRequires = [ auto-complete cl-lib ddskk tinysegmenter ]; meta = { - homepage = "http://melpa.org/#/ac-skk"; + homepage = "https://melpa.org/#/ac-skk"; license = lib.licenses.free; }; }) {}; @@ -752,13 +773,13 @@ sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-slime"; sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg"; name = "ac-slime"; }; packageRequires = [ auto-complete cl-lib slime ]; meta = { - homepage = "http://melpa.org/#/ac-slime"; + homepage = "https://melpa.org/#/ac-slime"; license = lib.licenses.free; }; }) {}; @@ -773,13 +794,13 @@ sha256 = "0mif35chyj4ai1bj4gq8qi38dyfsp72yi1xchhzy9zi2plpvqa7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-sly"; sha256 = "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx"; name = "ac-sly"; }; packageRequires = [ auto-complete cl-lib sly ]; meta = { - homepage = "http://melpa.org/#/ac-sly"; + homepage = "https://melpa.org/#/ac-sly"; license = lib.licenses.free; }; }) {}; @@ -794,13 +815,13 @@ sha256 = "1msj0dbzfan0jax5wh5rmv4l7cp5zhrp5wy5k1n9s7xdgz2dprzj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-flyspell"; sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd"; name = "ace-flyspell"; }; packageRequires = [ ace-jump-mode ]; meta = { - homepage = "http://melpa.org/#/ace-flyspell"; + homepage = "https://melpa.org/#/ace-flyspell"; license = lib.licenses.free; }; }) {}; @@ -815,55 +836,55 @@ sha256 = "02i3gxk7kfv3a0pcc82z69hgvjw8bvn40y8h7d59chg8bixcwbyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-isearch"; sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm"; name = "ace-isearch"; }; packageRequires = [ ace-jump-mode avy emacs helm-swoop ]; meta = { - homepage = "http://melpa.org/#/ace-isearch"; + homepage = "https://melpa.org/#/ace-isearch"; license = lib.licenses.free; }; }) {}; ace-jump-buffer = callPackage ({ avy, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-jump-buffer"; - version = "20160219.1756"; + version = "20160229.1658"; src = fetchFromGitHub { owner = "waymondo"; repo = "ace-jump-buffer"; - rev = "d652091416bbe01d1a839809976b8fd6b8eddf32"; - sha256 = "154p332ikyc06hl0paqjyq3hzmf1afv9mwspx6333frsif0g0bds"; + rev = "9224e279a53fba06ed5561e22bf89ab94f74b9e7"; + sha256 = "1y2rl4faj1nfjqbh393yp460cbv24simllak31ag1ischpcbqjy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-buffer"; sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi"; name = "ace-jump-buffer"; }; packageRequires = [ avy dash ]; meta = { - homepage = "http://melpa.org/#/ace-jump-buffer"; + homepage = "https://melpa.org/#/ace-jump-buffer"; license = lib.licenses.free; }; }) {}; ace-jump-helm-line = callPackage ({ avy, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "ace-jump-helm-line"; - version = "20160220.136"; + version = "20160329.1418"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "ace-jump-helm-line"; - rev = "cda9ef9c8d5efdcd027600fe0628b990e32d698f"; - sha256 = "0qd49jbm4rlkv6idjfhfyhifmjlqfag0n06rm7wmyhbzg11lfynf"; + rev = "8779050e4794279946892b6a156d0086554a9c9e"; + sha256 = "1d4bxxcnjbdr6cjr3jmz2zrnzjv5pwrypbp4xqgqyv9rz02n7ac1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-helm-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-helm-line"; sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9"; name = "ace-jump-helm-line"; }; packageRequires = [ avy helm ]; meta = { - homepage = "http://melpa.org/#/ace-jump-helm-line"; + homepage = "https://melpa.org/#/ace-jump-helm-line"; license = lib.licenses.free; }; }) {}; @@ -878,13 +899,13 @@ sha256 = "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-mode"; sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6"; name = "ace-jump-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ace-jump-mode"; + homepage = "https://melpa.org/#/ace-jump-mode"; license = lib.licenses.free; }; }) {}; @@ -899,34 +920,55 @@ sha256 = "0z0rblr41r94l4b2gh9fcw50nk82ifxrr3ilxqzbb8wmvil54gh4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-zap"; sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb"; name = "ace-jump-zap"; }; packageRequires = [ ace-jump-mode dash ]; meta = { - homepage = "http://melpa.org/#/ace-jump-zap"; + homepage = "https://melpa.org/#/ace-jump-zap"; license = lib.licenses.free; }; }) {}; ace-link = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-link"; - version = "20160105.2354"; + version = "20160326.820"; src = fetchFromGitHub { owner = "abo-abo"; repo = "ace-link"; - rev = "bfcfb9bf3ae003dc343d3c69ff31553d0f532737"; - sha256 = "1vs5rwd3gwpydr2fyszjxdkvpzl0vrr48g8f0180fz5b3phh1h1i"; + rev = "9a81b3f3e799d80e400bf3dd87b3eab7b4b07aa2"; + sha256 = "1z8vjks817m328sh3qw48072fi905w5a6mjwymqiqfkzpmf9n48j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-link"; sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5"; name = "ace-link"; }; packageRequires = [ avy ]; meta = { - homepage = "http://melpa.org/#/ace-link"; + homepage = "https://melpa.org/#/ace-link"; + license = lib.licenses.free; + }; + }) {}; + ace-mc = callPackage ({ ace-jump-mode, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: + melpaBuild { + pname = "ace-mc"; + version = "20160408.1937"; + src = fetchFromGitHub { + owner = "mm--"; + repo = "ace-mc"; + rev = "b106bf6a6c78c3e026fbe9a99a34d6239adce4fd"; + sha256 = "1zgmqgh5dff914dw7i8s142znd849gv4xh86f8q8agx5r7almx14"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-mc"; + sha256 = "1kca6ha2glhv7lkamqx3sxp7dy05c7f6xxy3lr3v2bik8r50jss8"; + name = "ace-mc"; + }; + packageRequires = [ ace-jump-mode dash multiple-cursors ]; + meta = { + homepage = "https://melpa.org/#/ace-mc"; license = lib.licenses.free; }; }) {}; @@ -941,13 +983,13 @@ sha256 = "1zx94dysd817i4xgapzm6fb8fcqb90sqym212b57qlqimyi3f59m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-pinyin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-pinyin"; sha256 = "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc"; name = "ace-pinyin"; }; packageRequires = [ ace-jump-mode avy ]; meta = { - homepage = "http://melpa.org/#/ace-pinyin"; + homepage = "https://melpa.org/#/ace-pinyin"; license = lib.licenses.free; }; }) {}; @@ -962,34 +1004,34 @@ sha256 = "1qiiivkwa95bhyym8ly7fnwwglc9dcifkyr314bsq8m4rp1mgry4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-popup-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-popup-menu"; sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s"; name = "ace-popup-menu"; }; packageRequires = [ avy-menu emacs ]; meta = { - homepage = "http://melpa.org/#/ace-popup-menu"; + homepage = "https://melpa.org/#/ace-popup-menu"; license = lib.licenses.free; }; }) {}; ace-window = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-window"; - version = "20150803.1037"; + version = "20160225.1019"; src = fetchFromGitHub { owner = "abo-abo"; repo = "ace-window"; - rev = "f6653fb5d8bfe8d7bcad94fc72ca9561e28180f0"; - sha256 = "053074jyinr3a2zkr1jfgmizdbhk5s37vrvf490x2hwf19dzis4a"; + rev = "77cc05f7284577ed396f292de0e7bb8ec561ea81"; + sha256 = "1afc0f8ax334gv644zdrrp55754gxa353iijvmfzxmlr67v23j96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-window"; sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa"; name = "ace-window"; }; packageRequires = [ avy ]; meta = { - homepage = "http://melpa.org/#/ace-window"; + homepage = "https://melpa.org/#/ace-window"; license = lib.licenses.free; }; }) {}; @@ -1003,13 +1045,13 @@ sha256 = "0zjncby2884cv8nz2ss7i0p17l15lsk88zwvb7b0gr3apbfpcpa3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/achievements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/achievements"; sha256 = "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr"; name = "achievements"; }; packageRequires = [ keyfreq ]; meta = { - homepage = "http://melpa.org/#/achievements"; + homepage = "https://melpa.org/#/achievements"; license = lib.licenses.free; }; }) {}; @@ -1024,13 +1066,13 @@ sha256 = "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ack-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ack-menu"; sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9"; name = "ack-menu"; }; packageRequires = [ mag-menu ]; meta = { - homepage = "http://melpa.org/#/ack-menu"; + homepage = "https://melpa.org/#/ack-menu"; license = lib.licenses.free; }; }) {}; @@ -1045,55 +1087,55 @@ sha256 = "1rxx2j7kkzjdsk06zgisiydg8dc18vqll4wl6q9mfhrg2y12lq94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/actionscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/actionscript-mode"; sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq"; name = "actionscript-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/actionscript-mode"; + homepage = "https://melpa.org/#/actionscript-mode"; license = lib.licenses.free; }; }) {}; addressbook-bookmark = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "addressbook-bookmark"; - version = "20160205.133"; + version = "20160317.103"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "addressbook-bookmark"; - rev = "4bac9327e8ccfbe48d0928c2167c4392d14e7019"; - sha256 = "044piw8jrg6j313cijry38x9mrwvl4b2a46ak2949xqrljh766k6"; + rev = "f58b944d11f8522ab85bbaf52a9591518e296545"; + sha256 = "0dk7hyp7cs0ws4w7i32g7di5aqkkxlxkvmrllg43bi5ivlji7pvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/addressbook-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/addressbook-bookmark"; sha256 = "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r"; name = "addressbook-bookmark"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/addressbook-bookmark"; + homepage = "https://melpa.org/#/addressbook-bookmark"; license = lib.licenses.free; }; }) {}; adoc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, markup-faces, melpaBuild }: melpaBuild { pname = "adoc-mode"; - version = "20151119.1114"; + version = "20160314.1630"; src = fetchFromGitHub { owner = "sensorflo"; repo = "adoc-mode"; - rev = "168ffa3f8efc3a635cc8f9422b7117a3a99af804"; - sha256 = "01fn73vyhdcy84s60r2jjy9a0xm3zwagpzi6b4qlankbvswypask"; + rev = "745884359a1b8826ede2c4cfd2f0b5478953ac40"; + sha256 = "199da15f6p84809z33w3m35lrk9bgx8qpgnxsxgisli373mpzvd8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/adoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/adoc-mode"; sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15"; name = "adoc-mode"; }; packageRequires = [ markup-faces ]; meta = { - homepage = "http://melpa.org/#/adoc-mode"; + homepage = "https://melpa.org/#/adoc-mode"; license = lib.licenses.free; }; }) {}; @@ -1108,13 +1150,13 @@ sha256 = "1p90yv2xl1hhpjm0mmhdjyf1jagf79610hkzhw8nycy2p1y4gvl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aes"; sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v"; name = "aes"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/aes"; + homepage = "https://melpa.org/#/aes"; license = lib.licenses.free; }; }) {}; @@ -1129,116 +1171,116 @@ sha256 = "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/afternoon-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/afternoon-theme"; sha256 = "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj"; name = "afternoon-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/afternoon-theme"; + homepage = "https://melpa.org/#/afternoon-theme"; license = lib.licenses.free; }; }) {}; ag = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ag"; - version = "20160126.1335"; + version = "20160321.1806"; src = fetchFromGitHub { owner = "Wilfred"; repo = "ag.el"; - rev = "b4b0e39b7fb706fc3208e238c2a7e517ebdb999c"; - sha256 = "1ra5nrc4nvp41rcdc4nkjs9lk7131zd54v63c6lyi3zkg3dyl7im"; + rev = "29d40fdaa4f605e9a6bf689050f0767f3ba22307"; + sha256 = "1hwjd1ln99595xwakynhgr3azs4h8rziy75kfz8k5b7i3hns7z08"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ag"; sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g"; name = "ag"; }; packageRequires = [ cl-lib dash s ]; meta = { - homepage = "http://melpa.org/#/ag"; + homepage = "https://melpa.org/#/ag"; license = lib.licenses.free; }; }) {}; aggressive-fill-paragraph = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aggressive-fill-paragraph"; - version = "20151112.141"; + version = "20160301.1614"; src = fetchFromGitHub { owner = "davidshepherd7"; repo = "aggressive-fill-paragraph-mode"; - rev = "9af6a31b7c47306fb524bcc8582e0a3738701f25"; - sha256 = "18zlxgwcvqhlw9y7zn6fywmy04f7rs71fd5ihcx28j4rx9ay929c"; + rev = "0a0f8ff42b0964751889b9ce2477bab82acee3fe"; + sha256 = "05lci7hpla4f0z124zr58aj282pgmabqkzgcqadf0hbnqbz2jwcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aggressive-fill-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aggressive-fill-paragraph"; sha256 = "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja"; name = "aggressive-fill-paragraph"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/aggressive-fill-paragraph"; + homepage = "https://melpa.org/#/aggressive-fill-paragraph"; license = lib.licenses.free; }; }) {}; aggressive-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aggressive-indent"; - version = "20160209.1156"; + version = "20160416.1130"; src = fetchFromGitHub { owner = "Malabarba"; repo = "aggressive-indent-mode"; - rev = "1b831d21ac9688e3f31703f0b492202f6d24a75b"; - sha256 = "0g8mhfab55a4jvb00kcv9f8cyx4l4d5qyfvp7sf7z12qnkik7b6w"; + rev = "97eaa5778ce0cd596a0807ef2e676d2681aabf84"; + sha256 = "0lr6n680ys7c6g6ah9xrid31640yjjkrqavb4164lwydfj5yy1xa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aggressive-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aggressive-indent"; sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2"; name = "aggressive-indent"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/aggressive-indent"; + homepage = "https://melpa.org/#/aggressive-indent"; license = lib.licenses.free; }; }) {}; ahg = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ahg"; - version = "20151223.501"; + version = "20160323.525"; src = fetchhg { url = "https://bitbucket.com/agriggio/ahg"; - rev = "e8eda2f41471"; - sha256 = "0fnn52b2prai8dlsj4759mbcgbbbvhr2lbqs3f0k5d2q8vvqrch1"; + rev = "5cfc31e14578"; + sha256 = "10l3m322kh41yzal0wvbbdk8mk2yp8q9wx7asq3v1w5m2cwiylwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ahg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ahg"; sha256 = "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4"; name = "ahg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ahg"; + homepage = "https://melpa.org/#/ahg"; license = lib.licenses.free; }; }) {}; - ahk-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + ahk-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ahk-mode"; - version = "20160214.1922"; + version = "20160320.1721"; src = fetchFromGitHub { owner = "ralesi"; repo = "ahk-mode"; - rev = "d437ed0b3d3d38d0d0eec794ded019459b32f42a"; - sha256 = "1ff0am1j619ypvjkmihrc8zxvv45grllj6wyka0r6mb3z189xyjl"; + rev = "9cfc4840507f6cc8016fdede84ad90df53285359"; + sha256 = "07qpwa990bgs9028rqqk344c3z4hnr1jkfzcx9fi4z5k756zmw3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ahk-mode"; sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni"; name = "ahk-mode"; }; - packageRequires = [ cl-lib emacs ]; + packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ahk-mode"; + homepage = "https://melpa.org/#/ahk-mode"; license = lib.licenses.free; }; }) {}; @@ -1253,13 +1295,13 @@ sha256 = "1436i7vdzaqykimfrm2y1s3dw2q398dzv1hyr9mr5z4kxa5f0rjj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ahungry-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ahungry-theme"; sha256 = "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy"; name = "ahungry-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ahungry-theme"; + homepage = "https://melpa.org/#/ahungry-theme"; license = lib.licenses.free; }; }) {}; @@ -1274,13 +1316,13 @@ sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/airline-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/airline-themes"; sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih"; name = "airline-themes"; }; packageRequires = [ powerline ]; meta = { - homepage = "http://melpa.org/#/airline-themes"; + homepage = "https://melpa.org/#/airline-themes"; license = lib.licenses.free; }; }) {}; @@ -1295,76 +1337,76 @@ sha256 = "1lxpfswp1bjrz192px79f155dycf2kazpr7dfrcr1gyshlgxkpf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/airplay"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/airplay"; sha256 = "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f"; name = "airplay"; }; packageRequires = [ deferred request simple-httpd ]; meta = { - homepage = "http://melpa.org/#/airplay"; + homepage = "https://melpa.org/#/airplay"; license = lib.licenses.free; }; }) {}; alchemist = callPackage ({ company, dash, elixir-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "alchemist"; - version = "20160215.144"; + version = "20160426.7"; src = fetchFromGitHub { owner = "tonini"; repo = "alchemist.el"; - rev = "091a6f3b5e2785dcac3ae1a514eb73b0e8dbf469"; - sha256 = "0vc1nadbj16wv75xfl4l662ifmhgsankldj6c580v4clj3ck482b"; + rev = "6cb2b967c3461b440d64d729381b14e87a53ee2c"; + sha256 = "03hm0jdhy9yh4lslckbpkzsy9fs5019c03i0q3f167y33hjpi4g0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alchemist"; sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369"; name = "alchemist"; }; packageRequires = [ company dash elixir-mode emacs pkg-info ]; meta = { - homepage = "http://melpa.org/#/alchemist"; + homepage = "https://melpa.org/#/alchemist"; license = lib.licenses.free; }; }) {}; alda-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "alda-mode"; - version = "20160220.923"; + version = "20160322.200"; src = fetchFromGitHub { owner = "jgkamat"; repo = "alda-mode"; - rev = "a77e835d117375eb31c975f4eda61f6513d07142"; - sha256 = "0pyfilaqwcnvllwmy575ldi8ac5is2dj4qhxaw19300iqa1hpfkj"; + rev = "6b74648e9e78f3e8e01d0c4eb9894d67581ba4fe"; + sha256 = "1bzw713rvih6p2h7c6vw6iyjyiqrrgwr46p5r0l57zklj279m37r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alda-mode"; sha256 = "0vpxiw3k0qxp6s19n93qkkyrr44rbw38ygriqdrfpp84pa09wprh"; name = "alda-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/alda-mode"; + homepage = "https://melpa.org/#/alda-mode"; license = lib.licenses.free; }; }) {}; alect-themes = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "alect-themes"; - version = "20150920.1324"; + version = "20160414.314"; src = fetchFromGitHub { owner = "alezost"; repo = "alect-themes"; - rev = "05d7515d936bbf48ad3fa961220f076d2e5d2312"; - sha256 = "0hvf7ydd2p3dfk5hqjqcbaajhgihkyvlwvqcr97a8jknznk7hfzp"; + rev = "6fd786c0ccd5a07e8968942d0a868753503ab4c4"; + sha256 = "1g9fai2i8izswiih4ba0l2wamhfl6pvmkq7is8x0wr45waldcga9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alect-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alect-themes"; sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8"; name = "alect-themes"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/alect-themes"; + homepage = "https://melpa.org/#/alect-themes"; license = lib.licenses.free; }; }) {}; @@ -1379,13 +1421,13 @@ sha256 = "0z7yfjg14bzndpm9ski1a1mdixvrykg7d08cd86dc82bghb3px2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alert"; sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118"; name = "alert"; }; packageRequires = [ gntp log4e ]; meta = { - homepage = "http://melpa.org/#/alert"; + homepage = "https://melpa.org/#/alert"; license = lib.licenses.free; }; }) {}; @@ -1400,13 +1442,13 @@ sha256 = "0l2rgs0rd4nmv4v7m10zhf2znzfvdifv1vlhpa3zbppg0fj8zph1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/align-cljlet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/align-cljlet"; sha256 = "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih"; name = "align-cljlet"; }; packageRequires = [ clojure-mode ]; meta = { - homepage = "http://melpa.org/#/align-cljlet"; + homepage = "https://melpa.org/#/align-cljlet"; license = lib.licenses.free; }; }) {}; @@ -1414,32 +1456,32 @@ pname = "all-ext"; version = "20130824.706"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/all-ext.el"; + url = "https://www.emacswiki.org/emacs/download/all-ext.el"; sha256 = "10j70bwa28xpmqwigvls76jg6vz0iky88lmkq4pk35bg3rz09r4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/all-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/all-ext"; sha256 = "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv"; name = "all-ext"; }; packageRequires = [ all ]; meta = { - homepage = "http://melpa.org/#/all-ext"; + homepage = "https://melpa.org/#/all-ext"; license = lib.licenses.free; }; }) {}; amd-mode = callPackage ({ ag, dash, f, fetchFromGitHub, fetchurl, js2-mode, js2-refactor, lib, makey, melpaBuild, projectile, s }: melpaBuild { pname = "amd-mode"; - version = "20160210.732"; + version = "20160320.431"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "amd-mode.el"; - rev = "e3dc1a3d02734a2b6194aa80e7c0ec1c82e68c6f"; - sha256 = "09vzcy842lzi67lbx5kkhn868nsxvbahkp13697p6dhb58b71rlk"; + rev = "fd94a88ac92e2f5b45bb87212bf44dc22d3e0ccd"; + sha256 = "090qmjg3jf7m0cvx5pi5fmrkjfanwg60wiimcli7kq4gxpjvzwp9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/amd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/amd-mode"; sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06"; name = "amd-mode"; }; @@ -1454,7 +1496,7 @@ s ]; meta = { - homepage = "http://melpa.org/#/amd-mode"; + homepage = "https://melpa.org/#/amd-mode"; license = lib.licenses.free; }; }) {}; @@ -1469,13 +1511,13 @@ sha256 = "18cicz11i19cpabrq6khnl9ks1khn6gw5a4ckaq4y65r40x0cr6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ample-regexps"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ample-regexps"; sha256 = "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2"; name = "ample-regexps"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ample-regexps"; + homepage = "https://melpa.org/#/ample-regexps"; license = lib.licenses.free; }; }) {}; @@ -1490,13 +1532,13 @@ sha256 = "0x72czw5rmz89w5fa27z54bz8qirrr882g0r37pb8li04j1hk7kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ample-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ample-theme"; sha256 = "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry"; name = "ample-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ample-theme"; + homepage = "https://melpa.org/#/ample-theme"; license = lib.licenses.free; }; }) {}; @@ -1511,34 +1553,34 @@ sha256 = "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ample-zen-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ample-zen-theme"; sha256 = "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3"; name = "ample-zen-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ample-zen-theme"; + homepage = "https://melpa.org/#/ample-zen-theme"; license = lib.licenses.free; }; }) {}; anaconda-mode = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic, s }: melpaBuild { pname = "anaconda-mode"; - version = "20160221.1323"; + version = "20160411.850"; src = fetchFromGitHub { owner = "proofit404"; repo = "anaconda-mode"; - rev = "395b111de79cc204a976be5d37133a08d794b54c"; - sha256 = "0ripdiyr93c6cdb42inni18p1p39gl9pjjgbzkp1b072y8dgrv10"; + rev = "6a8c20683dc818cf0e9faba3f511131e37708c3e"; + sha256 = "0p51c8vvm8j11bzf8a64xvmpvbajs0r72m34x80zgcfkg4wij8b6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anaconda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anaconda-mode"; sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r"; name = "anaconda-mode"; }; packageRequires = [ dash emacs f pythonic s ]; meta = { - homepage = "http://melpa.org/#/anaconda-mode"; + homepage = "https://melpa.org/#/anaconda-mode"; license = lib.licenses.free; }; }) {}; @@ -1553,13 +1595,13 @@ sha256 = "1ym43y0wqifkzpkm7ayf8cq2wz8pc2wgg9zvdyi0cn9lr9mwpbav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anaphora"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anaphora"; sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2"; name = "anaphora"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/anaphora"; + homepage = "https://melpa.org/#/anaphora"; license = lib.licenses.free; }; }) {}; @@ -1568,38 +1610,38 @@ pname = "anchored-transpose"; version = "20080905.54"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/anchored-transpose.el"; + url = "https://www.emacswiki.org/emacs/download/anchored-transpose.el"; sha256 = "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anchored-transpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anchored-transpose"; sha256 = "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w"; name = "anchored-transpose"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/anchored-transpose"; + homepage = "https://melpa.org/#/anchored-transpose"; license = lib.licenses.free; }; }) {}; android-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "android-mode"; - version = "20150106.744"; + version = "20160408.723"; src = fetchFromGitHub { owner = "remvee"; repo = "android-mode"; - rev = "80629ff38e4c2f72ba1dbebd4a0abadb94d8a231"; - sha256 = "1ms338qq17nwivpq8c1xsnld5k532rfhgvfxx1zg3l8wrjh235d2"; + rev = "35d51c5f09f62c3d744037582d72c18ba803bd89"; + sha256 = "1gr2rlk4w842m98ii1swxd7n65qjiy5169cfj31fs1zx0zj4n59y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/android-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/android-mode"; sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc"; name = "android-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/android-mode"; + homepage = "https://melpa.org/#/android-mode"; license = lib.licenses.free; }; }) {}; @@ -1608,19 +1650,19 @@ pname = "angry-police-captain"; version = "20120829.752"; src = fetchFromGitHub { - owner = "rolando2424"; + owner = "rolpereira"; repo = "angry-police-captain-el"; rev = "d11931c5cb63368dcc4a48797962428cca6d3e9d"; sha256 = "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/angry-police-captain"; - sha256 = "1cshhd4bkgbkg0n6m8gz53z47z4nq0hcriz2qh3v7m4cqgkw1m9r"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/angry-police-captain"; + sha256 = "00r3dx33h0wjxj0687ln8nbl1ff2badm3mk3r3bplfrd61z2qzld"; name = "angry-police-captain"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/angry-police-captain"; + homepage = "https://melpa.org/#/angry-police-captain"; license = lib.licenses.free; }; }) {}; @@ -1635,13 +1677,13 @@ sha256 = "04kg2x0lif91knmkkh05mj42xw3dkzsnysjda6ian95v57wfg377"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/angular-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/angular-mode"; sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i"; name = "angular-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/angular-mode"; + homepage = "https://melpa.org/#/angular-mode"; license = lib.licenses.free; }; }) {}; @@ -1656,13 +1698,13 @@ sha256 = "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/angular-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/angular-snippets"; sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c"; name = "angular-snippets"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/angular-snippets"; + homepage = "https://melpa.org/#/angular-snippets"; license = lib.licenses.free; }; }) {}; @@ -1677,13 +1719,13 @@ sha256 = "08gs96r9mbdg0s5l504yp6i5nmi9qr4nwxq3xprsbx9bdzv5l2dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/annotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/annotate"; sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy"; name = "annotate"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/annotate"; + homepage = "https://melpa.org/#/annotate"; license = lib.licenses.free; }; }) {}; @@ -1698,13 +1740,13 @@ sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/annoying-arrows-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/annoying-arrows-mode"; sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7"; name = "annoying-arrows-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/annoying-arrows-mode"; + homepage = "https://melpa.org/#/annoying-arrows-mode"; license = lib.licenses.free; }; }) {}; @@ -1714,39 +1756,39 @@ version = "20150703.326"; src = fetchFromGitHub { owner = "rejeep"; - repo = "ansi"; + repo = "ansi.el"; rev = "12b4c5d91b3da1902838f421e5af6d40e2cd57dd"; sha256 = "19k71dj83kvc8mks6zhl45vsrsb61via53dqxjv9bny1ybh2av85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansi"; - sha256 = "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansi"; + sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89"; name = "ansi"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/ansi"; + homepage = "https://melpa.org/#/ansi"; license = lib.licenses.free; }; }) {}; ansible = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ansible"; - version = "20151123.1953"; + version = "20160326.1031"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-ansible"; - rev = "e9b9431738de4808d8ef70871069f68885cc0d98"; - sha256 = "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2"; + rev = "950e24319940526aa14ac33e2b67f7567dd5dc17"; + sha256 = "0k927pwhmn1cfl6jqs7ww1g6f64nq5i8f6a732d4q2rbl3aqzbdi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansible"; sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g"; name = "ansible"; }; packageRequires = [ f s ]; meta = { - homepage = "http://melpa.org/#/ansible"; + homepage = "https://melpa.org/#/ansible"; license = lib.licenses.free; }; }) {}; @@ -1761,13 +1803,13 @@ sha256 = "1h3rqrjrl8wx7xvvd631jkbbczq3srd4mgz7y9wh3cvz1njdpy62"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansible-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansible-doc"; sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w"; name = "ansible-doc"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ansible-doc"; + homepage = "https://melpa.org/#/ansible-doc"; license = lib.licenses.free; }; }) {}; @@ -1776,40 +1818,40 @@ pname = "ant"; version = "20160211.943"; src = fetchFromGitHub { - owner = "apgwoz"; + owner = "apg"; repo = "ant-el"; rev = "510b5a3f57ee4b2855422d88d359a28922c1ab70"; sha256 = "0jb5vl3cq5m3r23fjhcxgxl4g011zkjkkyn5mqqxx22a1sydsvab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ant"; - sha256 = "03rxn2dh0xj89kl24jd19q7kmrn1hnr2cdl3519bpng298kxwni6"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ant"; + sha256 = "06028xjic14yv3rfqyc3k6jyjgm6fqfrf1mv8lvbh2sri2d5ifqa"; name = "ant"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ant"; + homepage = "https://melpa.org/#/ant"; license = lib.licenses.free; }; }) {}; anti-zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anti-zenburn-theme"; - version = "20160205.2009"; + version = "20160416.1806"; src = fetchFromGitHub { owner = "m00natic"; repo = "anti-zenburn-theme"; - rev = "bbb3517dcba4ea3b03bb6e0469b8e71c8b9a76e1"; - sha256 = "02m991awps2b0h31ybrwxznbz88f10a241fmy34r671lrni2ymgi"; + rev = "53591a18aee564c6d08a5be69b4060a299903255"; + sha256 = "06cn81sksvl88l1g3cfgp1kf8xzfv00b31j2rf58f45zlbl5ckv9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anti-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anti-zenburn-theme"; sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk"; name = "anti-zenburn-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/anti-zenburn-theme"; + homepage = "https://melpa.org/#/anti-zenburn-theme"; license = lib.licenses.free; }; }) {}; @@ -1824,13 +1866,13 @@ sha256 = "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anx-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anx-api"; sha256 = "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r"; name = "anx-api"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/anx-api"; + homepage = "https://melpa.org/#/anx-api"; license = lib.licenses.free; }; }) {}; @@ -1845,13 +1887,13 @@ sha256 = "0qy5q4rq68nb21k7w3xpil8k8k5awcpjrjlxjwnhcklwb83w3dhf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anybar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anybar"; sha256 = "0prnr8wjhishpf2zmn4b7054vfahk10w05nzsg2p6whaxywcachm"; name = "anybar"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/anybar"; + homepage = "https://melpa.org/#/anybar"; license = lib.licenses.free; }; }) {}; @@ -1866,13 +1908,13 @@ sha256 = "05lq0bllgn44zs85mgnfdcyjasm6j8m70jdcxksf798i0qdqnk7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anyins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anyins"; sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c"; name = "anyins"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/anyins"; + homepage = "https://melpa.org/#/anyins"; license = lib.licenses.free; }; }) {}; @@ -1883,16 +1925,16 @@ src = fetchgit { url = "http://repo.or.cz/r/anything-config.git"; rev = "2d7e0450e13ab04b20f4dff08f32936e78677e58"; - sha256 = "e90ded84609e59a4cef22bfd9d9a543ec6b677b78ab44fb4eb6cbae9eb248669"; + sha256 = "0sc64kmykfkcxfs4zd4anxvvdiiyajd9vz9byb7a8ncyc22fs3g9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything"; sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj"; name = "anything"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/anything"; + homepage = "https://melpa.org/#/anything"; license = lib.licenses.free; }; }) {}; @@ -1907,13 +1949,13 @@ sha256 = "0dbf510gcd0m191samih0r4lx6d7sgk0ls0sx2jrdkyacy82ridy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-exuberant-ctags"; sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk"; name = "anything-exuberant-ctags"; }; packageRequires = [ anything ]; meta = { - homepage = "http://melpa.org/#/anything-exuberant-ctags"; + homepage = "https://melpa.org/#/anything-exuberant-ctags"; license = lib.licenses.free; }; }) {}; @@ -1928,13 +1970,13 @@ sha256 = "0gj0p7420wx5c186kdccjb9icn656sg5b0zwnwy3fjvhsbbvrb2r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-git-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-git-files"; sha256 = "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw"; name = "anything-git-files"; }; packageRequires = [ anything ]; meta = { - homepage = "http://melpa.org/#/anything-git-files"; + homepage = "https://melpa.org/#/anything-git-files"; license = lib.licenses.free; }; }) {}; @@ -1949,13 +1991,13 @@ sha256 = "06fyvk7cjz1aag6fj52qraqmr23b0fqwml41yyid8gjxl4ygmkpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-git-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-git-grep"; sha256 = "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl"; name = "anything-git-grep"; }; packageRequires = [ anything ]; meta = { - homepage = "http://melpa.org/#/anything-git-grep"; + homepage = "https://melpa.org/#/anything-git-grep"; license = lib.licenses.free; }; }) {}; @@ -1970,13 +2012,13 @@ sha256 = "1jw6gqwcl3fx1m7w0a15w2pnzzlqyr1fbg0m81ay358s4w3jn6v7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-milkode"; sha256 = "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan"; name = "anything-milkode"; }; packageRequires = [ anything milkode ]; meta = { - homepage = "http://melpa.org/#/anything-milkode"; + homepage = "https://melpa.org/#/anything-milkode"; license = lib.licenses.free; }; }) {}; @@ -1991,13 +2033,13 @@ sha256 = "16a7i01q8qqkgph1s3jnwdr2arjq3cm3jpv5bk5sqs29c003q0pp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-project"; sha256 = "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr"; name = "anything-project"; }; packageRequires = [ anything imakado ]; meta = { - homepage = "http://melpa.org/#/anything-project"; + homepage = "https://melpa.org/#/anything-project"; license = lib.licenses.free; }; }) {}; @@ -2012,13 +2054,13 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-prosjekt"; sha256 = "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8"; name = "anything-prosjekt"; }; packageRequires = [ anything prosjekt ]; meta = { - homepage = "http://melpa.org/#/anything-prosjekt"; + homepage = "https://melpa.org/#/anything-prosjekt"; license = lib.licenses.free; }; }) {}; @@ -2033,13 +2075,13 @@ sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-replace-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-replace-string"; sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71"; name = "anything-replace-string"; }; packageRequires = [ anything ]; meta = { - homepage = "http://melpa.org/#/anything-replace-string"; + homepage = "https://melpa.org/#/anything-replace-string"; license = lib.licenses.free; }; }) {}; @@ -2054,34 +2096,34 @@ sha256 = "08xr6fkk1r4r5jqh349d4dfal9nbs2a8y2fp8zn3zlrj2cd0g80k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-sage"; sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3"; name = "anything-sage"; }; packageRequires = [ anything cl-lib sage-shell-mode ]; meta = { - homepage = "http://melpa.org/#/anything-sage"; + homepage = "https://melpa.org/#/anything-sage"; license = lib.licenses.free; }; }) {}; anzu = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anzu"; - version = "20160130.2055"; + version = "20160405.18"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-anzu"; - rev = "dde4d83cfa4887db7deaf74232c9e051afb33050"; - sha256 = "1dxaf68przg0hh0p1zhxsq2dysp3ln178yxhbqalxw67bjy8ikny"; + rev = "174b940c7e53e9e8180abc718d61dd200f7748be"; + sha256 = "1l0frc62i542avx8mmirdbwp6x3iy2ysdpwycpradmx4hsriin2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anzu"; sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i"; name = "anzu"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/anzu"; + homepage = "https://melpa.org/#/anzu"; license = lib.licenses.free; }; }) {}; @@ -2089,17 +2131,17 @@ pname = "aok"; version = "20130824.627"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/aok.el"; + url = "https://www.emacswiki.org/emacs/download/aok.el"; sha256 = "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aok"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aok"; sha256 = "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46"; name = "aok"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/aok"; + homepage = "https://melpa.org/#/aok"; license = lib.licenses.free; }; }) {}; @@ -2114,13 +2156,13 @@ sha256 = "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aozora-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aozora-view"; sha256 = "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w"; name = "aozora-view"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/aozora-view"; + homepage = "https://melpa.org/#/aozora-view"; license = lib.licenses.free; }; }) {}; @@ -2128,17 +2170,17 @@ pname = "apache-mode"; version = "20150828.914"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/apache-mode.el"; + url = "https://www.emacswiki.org/emacs/download/apache-mode.el"; sha256 = "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apache-mode"; sha256 = "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44"; name = "apache-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/apache-mode"; + homepage = "https://melpa.org/#/apache-mode"; license = lib.licenses.free; }; }) {}; @@ -2153,13 +2195,13 @@ sha256 = "0sdxnf4b8rqs1cbjxh23wvxmj7ll3zddv8yfdgif6zmgyy8xhc9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apel"; sha256 = "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y"; name = "apel"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/apel"; + homepage = "https://melpa.org/#/apel"; license = lib.licenses.free; }; }) {}; @@ -2174,13 +2216,13 @@ sha256 = "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apples-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apples-mode"; sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s"; name = "apples-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/apples-mode"; + homepage = "https://melpa.org/#/apples-mode"; license = lib.licenses.free; }; }) {}; @@ -2194,13 +2236,13 @@ sha256 = "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/applescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/applescript-mode"; sha256 = "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611"; name = "applescript-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/applescript-mode"; + homepage = "https://melpa.org/#/applescript-mode"; license = lib.licenses.free; }; }) {}; @@ -2215,13 +2257,13 @@ sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aproject"; sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2"; name = "aproject"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/aproject"; + homepage = "https://melpa.org/#/aproject"; license = lib.licenses.free; }; }) {}; @@ -2230,17 +2272,17 @@ pname = "apropos-fn-plus-var"; version = "20151231.1405"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/apropos-fn+var.el"; + url = "https://www.emacswiki.org/emacs/download/apropos-fn+var.el"; sha256 = "0wc9zg30a48cj2ssfj9wc7ga0ip9igcxcdbn1wr0qmndzxxa7x5k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apropos-fn+var"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apropos-fn+var"; sha256 = "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x"; name = "apropos-fn-plus-var"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/apropos-fn+var"; + homepage = "https://melpa.org/#/apropos-fn+var"; license = lib.licenses.free; }; }) {}; @@ -2255,13 +2297,13 @@ sha256 = "0j0k5ak5pzh3n2grf7b6b7ajxsp4ssv2l5gmg08kmbdwscavzc4r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apropospriate-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apropospriate-theme"; sha256 = "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9"; name = "apropospriate-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/apropospriate-theme"; + homepage = "https://melpa.org/#/apropospriate-theme"; license = lib.licenses.free; }; }) {}; @@ -2269,17 +2311,17 @@ pname = "apu"; version = "20151231.1408"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/apu.el"; + url = "https://www.emacswiki.org/emacs/download/apu.el"; sha256 = "1xbvky0mspmbi8ghqhqhgbjn70acipwf0qwn6s5zdarwch10nljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apu"; sha256 = "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2"; name = "apu"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/apu"; + homepage = "https://melpa.org/#/apu"; license = lib.licenses.free; }; }) {}; @@ -2287,17 +2329,17 @@ pname = "archive-region"; version = "20140201.1745"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/archive-region.el"; + url = "https://www.emacswiki.org/emacs/download/archive-region.el"; sha256 = "1mhj6x0n2ya3xd7gykmkcf70ji5g8qd8xawz764ykdlcribpsq52"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/archive-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/archive-region"; sha256 = "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd"; name = "archive-region"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/archive-region"; + homepage = "https://melpa.org/#/archive-region"; license = lib.licenses.free; }; }) {}; @@ -2312,13 +2354,13 @@ sha256 = "1yvaqjc9hadbnnay5fprnh890xsp53kidad1zpb4a5z4a5z61n3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/arduino-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/arduino-mode"; sha256 = "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx"; name = "arduino-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/arduino-mode"; + homepage = "https://melpa.org/#/arduino-mode"; license = lib.licenses.free; }; }) {}; @@ -2329,16 +2371,16 @@ src = fetchgit { url = "https://bitbucket.org/ukaszg/aria2.git"; rev = "3c54254e424c6c8b4eb0d8e7c4907b094c27a3f0"; - sha256 = "2713755e56b03e28a5a6e10c85865c1ace0247e71caeb8b89ec65d5618addafc"; + sha256 = "1z6smlc5cpf6kswbibhwwx3h5khsbj38a371lsjjhgmharg7a4r7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aria2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aria2"; sha256 = "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc"; name = "aria2"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/aria2"; + homepage = "https://melpa.org/#/aria2"; license = lib.licenses.free; }; }) {}; @@ -2353,34 +2395,34 @@ sha256 = "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ariadne"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ariadne"; sha256 = "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p"; name = "ariadne"; }; packageRequires = [ bert ]; meta = { - homepage = "http://melpa.org/#/ariadne"; + homepage = "https://melpa.org/#/ariadne"; license = lib.licenses.free; }; }) {}; arjen-grey-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "arjen-grey-theme"; - version = "20150731.845"; + version = "20160403.1415"; src = fetchFromGitHub { owner = "credmp"; repo = "arjen-grey-theme"; - rev = "d67a1da021269cb1aeb25ff1aa56249d67371266"; - sha256 = "1i6y3kv2vii6f8gpd845vv6h832hqx0vxb3fmb1x80kwx3gda682"; + rev = "b795dcb5760a5ccc3597733c5933b91252542135"; + sha256 = "0p8k6sxmvmf535sawis6rn6lfyl5ph263i1phf2d5wl3dzs0xj5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/arjen-grey-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/arjen-grey-theme"; sha256 = "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7"; name = "arjen-grey-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/arjen-grey-theme"; + homepage = "https://melpa.org/#/arjen-grey-theme"; license = lib.licenses.free; }; }) {}; @@ -2395,13 +2437,34 @@ sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/artbollocks-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/artbollocks-mode"; sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp"; name = "artbollocks-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/artbollocks-mode"; + homepage = "https://melpa.org/#/artbollocks-mode"; + license = lib.licenses.free; + }; + }) {}; + arview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "arview"; + version = "20160419.1609"; + src = fetchFromGitHub { + owner = "afainer"; + repo = "arview"; + rev = "5437b4221b64b238c273a651d4792c577dba6d45"; + sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/arview"; + sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y"; + name = "arview"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/arview"; license = lib.licenses.free; }; }) {}; @@ -2409,17 +2472,17 @@ pname = "ascii"; version = "20130824.700"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/ascii.el"; + url = "https://www.emacswiki.org/emacs/download/ascii.el"; sha256 = "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ascii"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ascii"; sha256 = "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r"; name = "ascii"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ascii"; + homepage = "https://melpa.org/#/ascii"; license = lib.licenses.free; }; }) {}; @@ -2434,13 +2497,13 @@ sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/asilea"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/asilea"; sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j"; name = "asilea"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/asilea"; + homepage = "https://melpa.org/#/asilea"; license = lib.licenses.free; }; }) {}; @@ -2455,34 +2518,55 @@ sha256 = "0h18x9nh152dnyqjv5b1zjksl8wb75s8zmx3v8vvmwqyy6ql8gcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/asn1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/asn1-mode"; sha256 = "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy"; name = "asn1-mode"; }; packageRequires = [ emacs s ]; meta = { - homepage = "http://melpa.org/#/asn1-mode"; + homepage = "https://melpa.org/#/asn1-mode"; + license = lib.licenses.free; + }; + }) {}; + assess = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild }: + melpaBuild { + pname = "assess"; + version = "20160405.306"; + src = fetchFromGitHub { + owner = "phillord"; + repo = "assess"; + rev = "4bf702a08adb4b99f590716cb4c721c273ccaae8"; + sha256 = "0sk361w6pciqjfpa9ic1npwwyhan5si22qjsmxcnfyp9i94d8nbg"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/assess"; + sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr"; + name = "assess"; + }; + packageRequires = [ dash emacs m-buffer ]; + meta = { + homepage = "https://melpa.org/#/assess"; license = lib.licenses.free; }; }) {}; async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "async"; - version = "20160108.1449"; + version = "20160425.751"; src = fetchFromGitHub { owner = "jwiegley"; repo = "emacs-async"; - rev = "22de0f5792c9140f1da7c7459f30da0863b07e78"; - sha256 = "074wdciq62jfc41f829590p4y52dnkn3nxicj9lcabgxwz7cahjp"; + rev = "1763517b556646f81ad14e166d19f4352beb03bd"; + sha256 = "0yb6qj1m0chzswndkf486y8kxf2yk7xs0v46f140yydkqkxihfyh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/async"; sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f"; name = "async"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/async"; + homepage = "https://melpa.org/#/async"; license = lib.licenses.free; }; }) {}; @@ -2497,13 +2581,13 @@ sha256 = "0rnnvr8x1czphbinby2z2dga7ikwgd13d7zhgmp3ggamzyaz6nf1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/@"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/@"; sha256 = "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz"; name = "at"; }; packageRequires = [ emacs queue ]; meta = { - homepage = "http://melpa.org/#/@"; + homepage = "https://melpa.org/#/@"; license = lib.licenses.free; }; }) {}; @@ -2518,13 +2602,13 @@ sha256 = "0jfpzv8dmvl4nr6kvq5aii830s5h632bq2q3jbnfc4zdql7id464"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/atom-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/atom-dark-theme"; sha256 = "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f"; name = "atom-dark-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/atom-dark-theme"; + homepage = "https://melpa.org/#/atom-dark-theme"; license = lib.licenses.free; }; }) {}; @@ -2539,34 +2623,34 @@ sha256 = "027j027w2nbplg1gi28hg9iyiirigydj5n4npf7y9a6g626snxz0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/atom-one-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/atom-one-dark-theme"; sha256 = "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw"; name = "atom-one-dark-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/atom-one-dark-theme"; + homepage = "https://melpa.org/#/atom-one-dark-theme"; license = lib.licenses.free; }; }) {}; auctex-latexmk = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auctex-latexmk"; - version = "20151217.757"; + version = "20160307.552"; src = fetchFromGitHub { owner = "tom-tan"; repo = "auctex-latexmk"; - rev = "b7d36658c8a9102055a720e9102e1d3514089659"; - sha256 = "1h0044zfzklc9sy0a02vcdr75ly6wlhjx3n5bvq7yiicqd012316"; + rev = "fa1953f72c9f4d5cb6c2de6ca471523dd9d11aac"; + sha256 = "0fa39mzgw8sc7rn31jsfg9pwr05hyk8jjrkk6qa6r91r02ksac8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auctex-latexmk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auctex-latexmk"; sha256 = "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327"; name = "auctex-latexmk"; }; packageRequires = [ auctex ]; meta = { - homepage = "http://melpa.org/#/auctex-latexmk"; + homepage = "https://melpa.org/#/auctex-latexmk"; license = lib.licenses.free; }; }) {}; @@ -2581,13 +2665,13 @@ sha256 = "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auctex-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auctex-lua"; sha256 = "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf"; name = "auctex-lua"; }; packageRequires = [ auctex lua-mode ]; meta = { - homepage = "http://melpa.org/#/auctex-lua"; + homepage = "https://melpa.org/#/auctex-lua"; license = lib.licenses.free; }; }) {}; @@ -2602,34 +2686,34 @@ sha256 = "0q79kblcbz5vlzj0f49vpc1902767ydmvkmwwjs60x3w2f3aq3cm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/audio-notes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/audio-notes-mode"; sha256 = "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h"; name = "audio-notes-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/audio-notes-mode"; + homepage = "https://melpa.org/#/audio-notes-mode"; license = lib.licenses.free; }; }) {}; aurel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aurel"; - version = "20151219.2340"; + version = "20160309.236"; src = fetchFromGitHub { owner = "alezost"; repo = "aurel"; - rev = "bcabf49c1410b89d592d8aa78f896428c492879a"; - sha256 = "0z0wq79ks8251fflk2iwrhd885h5qbki2m19f0jy4a8c00ydmxyz"; + rev = "2b462d08c0e21f7fee0039457a02fa766fc6181c"; + sha256 = "0dqr1yrzf7a8655dsbcch4622rc75j9yjbn9zhkyikqjicddnlda"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aurel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aurel"; sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl"; name = "aurel"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/aurel"; + homepage = "https://melpa.org/#/aurel"; license = lib.licenses.free; }; }) {}; @@ -2639,18 +2723,18 @@ version = "20140520.403"; src = fetchFromGitHub { owner = "bdd"; - repo = "aurora-config.el"; + repo = "aurora-config-mode.el"; rev = "0a7ca7987c3a0824e25470389c7d25c337a81593"; sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aurora-config-mode"; - sha256 = "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aurora-config-mode"; + sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c"; name = "aurora-config-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/aurora-config-mode"; + homepage = "https://melpa.org/#/aurora-config-mode"; license = lib.licenses.free; }; }) {}; @@ -2665,34 +2749,34 @@ sha256 = "1z2n6gd63mgj2wj45n6g1gmfrk0iwzlrzb6g1rdd9r9a03c03qi6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aurora-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aurora-theme"; sha256 = "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5"; name = "aurora-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/aurora-theme"; + homepage = "https://melpa.org/#/aurora-theme"; license = lib.licenses.free; }; }) {}; auth-password-store = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store, seq }: melpaBuild { pname = "auth-password-store"; - version = "20151112.1547"; + version = "20160228.823"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "auth-password-store"; - rev = "d7fc1f026c3f43190cacedfa6eff8da916e607f5"; - sha256 = "0gi65n1np63zi2ylc4y1licwvk97jl92s1v98fv5y61kppi1d8sq"; + rev = "209663c772105ae87d244cce9247695823914a00"; + sha256 = "1b6g7qvrxv6gkl4izq1y7k0x0l7izyfnpki10di5vdv3jp6xg9b2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auth-password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auth-password-store"; sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5"; name = "auth-password-store"; }; packageRequires = [ cl-lib emacs password-store seq ]; meta = { - homepage = "http://melpa.org/#/auth-password-store"; + homepage = "https://melpa.org/#/auth-password-store"; license = lib.licenses.free; }; }) {}; @@ -2701,17 +2785,17 @@ pname = "auto-async-byte-compile"; version = "20151029.916"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/auto-async-byte-compile.el"; + url = "https://www.emacswiki.org/emacs/download/auto-async-byte-compile.el"; sha256 = "1c8nm4sz9a67q8w0b1jahg5ldy185zws7nilj9yv3miklg07zq17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-async-byte-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-async-byte-compile"; sha256 = "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj"; name = "auto-async-byte-compile"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-async-byte-compile"; + homepage = "https://melpa.org/#/auto-async-byte-compile"; license = lib.licenses.free; }; }) {}; @@ -2726,73 +2810,73 @@ sha256 = "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-auto-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-auto-indent"; sha256 = "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7"; name = "auto-auto-indent"; }; packageRequires = [ cl-lib es-lib ]; meta = { - homepage = "http://melpa.org/#/auto-auto-indent"; + homepage = "https://melpa.org/#/auto-auto-indent"; license = lib.licenses.free; }; }) {}; auto-capitalize = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-capitalize"; - version = "20131014.5"; + version = "20160415.1603"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/auto-capitalize.el"; - sha256 = "1lk9zwng7wkjvb8hprlgyrab1s56n8a61xjva931h0bgypwl1dfi"; + url = "https://www.emacswiki.org/emacs/download/auto-capitalize.el"; + sha256 = "0xywyfpsi64g9lihm5ncmjrj06iq9s6pp9fmsgj1hdf9y0z65lg0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-capitalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-capitalize"; sha256 = "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0"; name = "auto-capitalize"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-capitalize"; + homepage = "https://melpa.org/#/auto-capitalize"; license = lib.licenses.free; }; }) {}; auto-compile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, packed }: melpaBuild { pname = "auto-compile"; - version = "20151107.1608"; + version = "20160424.618"; src = fetchFromGitHub { owner = "tarsius"; repo = "auto-compile"; - rev = "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29"; - sha256 = "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg"; + rev = "61c6bec0ab4e44fe68628a5ee0c8b3b7f50c001f"; + sha256 = "05crb8cm7s1nggrqq0xcs2xiabjw3vh44fnkdiilq1c5cnajdcrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-compile"; sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks"; name = "auto-compile"; }; packageRequires = [ dash emacs packed ]; meta = { - homepage = "http://melpa.org/#/auto-compile"; + homepage = "https://melpa.org/#/auto-compile"; license = lib.licenses.free; }; }) {}; auto-complete = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "auto-complete"; - version = "20160107.208"; + version = "20160416.804"; src = fetchFromGitHub { owner = "auto-complete"; repo = "auto-complete"; - rev = "ab01ce9fe07fb30f156276dcb2ce795fdc54e241"; - sha256 = "07ib2pd3apm97v7kalavpc6fyk00cjky8kfwahn37zmw2j2fdhpf"; + rev = "08af29236e686c876ac7a45670562f3487ff02e0"; + sha256 = "19sdjwnjryzaq1rpjkvr3mjz9mg7cqzrrx5mqzic3aklgg71d53j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete"; sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3"; name = "auto-complete"; }; packageRequires = [ cl-lib popup ]; meta = { - homepage = "http://melpa.org/#/auto-complete"; + homepage = "https://melpa.org/#/auto-complete"; license = lib.licenses.free; }; }) {}; @@ -2807,13 +2891,13 @@ sha256 = "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-auctex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-auctex"; sha256 = "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh"; name = "auto-complete-auctex"; }; packageRequires = [ auto-complete yasnippet ]; meta = { - homepage = "http://melpa.org/#/auto-complete-auctex"; + homepage = "https://melpa.org/#/auto-complete-auctex"; license = lib.licenses.free; }; }) {}; @@ -2828,13 +2912,13 @@ sha256 = "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-c-headers"; sha256 = "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7"; name = "auto-complete-c-headers"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/auto-complete-c-headers"; + homepage = "https://melpa.org/#/auto-complete-c-headers"; license = lib.licenses.free; }; }) {}; @@ -2849,13 +2933,13 @@ sha256 = "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-chunk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-chunk"; sha256 = "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3"; name = "auto-complete-chunk"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/auto-complete-chunk"; + homepage = "https://melpa.org/#/auto-complete-chunk"; license = lib.licenses.free; }; }) {}; @@ -2870,13 +2954,13 @@ sha256 = "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-clang"; sha256 = "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva"; name = "auto-complete-clang"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/auto-complete-clang"; + homepage = "https://melpa.org/#/auto-complete-clang"; license = lib.licenses.free; }; }) {}; @@ -2891,13 +2975,13 @@ sha256 = "1sw0wxrjcjqk0w1llfj376g6axa5bnk2lq2vv66746bkz14h0s8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-clang-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-clang-async"; sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh"; name = "auto-complete-clang-async"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-complete-clang-async"; + homepage = "https://melpa.org/#/auto-complete-clang-async"; license = lib.licenses.free; }; }) {}; @@ -2912,13 +2996,13 @@ sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-exuberant-ctags"; sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd"; name = "auto-complete-exuberant-ctags"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/auto-complete-exuberant-ctags"; + homepage = "https://melpa.org/#/auto-complete-exuberant-ctags"; license = lib.licenses.free; }; }) {}; @@ -2933,13 +3017,13 @@ sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-nxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-nxml"; sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a"; name = "auto-complete-nxml"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/auto-complete-nxml"; + homepage = "https://melpa.org/#/auto-complete-nxml"; license = lib.licenses.free; }; }) {}; @@ -2954,13 +3038,13 @@ sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-pcmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-pcmp"; sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna"; name = "auto-complete-pcmp"; }; packageRequires = [ auto-complete log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/auto-complete-pcmp"; + homepage = "https://melpa.org/#/auto-complete-pcmp"; license = lib.licenses.free; }; }) {}; @@ -2975,13 +3059,13 @@ sha256 = "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-rst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-rst"; sha256 = "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6"; name = "auto-complete-rst"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/auto-complete-rst"; + homepage = "https://melpa.org/#/auto-complete-rst"; license = lib.licenses.free; }; }) {}; @@ -2996,13 +3080,13 @@ sha256 = "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-sage"; sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1"; name = "auto-complete-sage"; }; packageRequires = [ auto-complete sage-shell-mode ]; meta = { - homepage = "http://melpa.org/#/auto-complete-sage"; + homepage = "https://melpa.org/#/auto-complete-sage"; license = lib.licenses.free; }; }) {}; @@ -3017,13 +3101,13 @@ sha256 = "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-dictionary"; sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16"; name = "auto-dictionary"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-dictionary"; + homepage = "https://melpa.org/#/auto-dictionary"; license = lib.licenses.free; }; }) {}; @@ -3038,13 +3122,13 @@ sha256 = "0lqfnv8wqnbb5ddwmh9svphc3bgmwdpwx40qw9sgqdzpj3xh7v8g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-dim-other-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-dim-other-buffers"; sha256 = "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh"; name = "auto-dim-other-buffers"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-dim-other-buffers"; + homepage = "https://melpa.org/#/auto-dim-other-buffers"; license = lib.licenses.free; }; }) {}; @@ -3059,34 +3143,34 @@ sha256 = "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-highlight-symbol"; sha256 = "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66"; name = "auto-highlight-symbol"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-highlight-symbol"; + homepage = "https://melpa.org/#/auto-highlight-symbol"; license = lib.licenses.free; }; }) {}; auto-indent-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-indent-mode"; - version = "20140505.855"; + version = "20160422.930"; src = fetchFromGitHub { owner = "mattfidler"; repo = "auto-indent-mode.el"; - rev = "1a12448ce3a030ed905226450dfb01bba37f127c"; - sha256 = "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y"; + rev = "b887b866b23f0d773df464c68b9b12f9b30cc991"; + sha256 = "1jr4g6a40bp8p0hcgb2bganm8bxjsn26mylc3qd15ys955rm8pnk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-indent-mode"; sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz"; name = "auto-indent-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-indent-mode"; + homepage = "https://melpa.org/#/auto-indent-mode"; license = lib.licenses.free; }; }) {}; @@ -3094,17 +3178,17 @@ pname = "auto-install"; version = "20150418.1902"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/auto-install.el"; + url = "https://www.emacswiki.org/emacs/download/auto-install.el"; sha256 = "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-install"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-install"; sha256 = "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk"; name = "auto-install"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-install"; + homepage = "https://melpa.org/#/auto-install"; license = lib.licenses.free; }; }) {}; @@ -3119,13 +3203,34 @@ sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-package-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-package-update"; sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k"; name = "auto-package-update"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/auto-package-update"; + homepage = "https://melpa.org/#/auto-package-update"; + license = lib.licenses.free; + }; + }) {}; + auto-pause = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "auto-pause"; + version = "20160426.716"; + src = fetchFromGitHub { + owner = "lujun9972"; + repo = "auto-pause"; + rev = "a4d778de774ca3895542cb559a953e0d98657338"; + sha256 = "1pxhqwvg059pslin6z87jd8d0q44ljwvdn6y23ffrz9kfpn3m5m2"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-pause"; + sha256 = "0cdak2kicxylj5f161kia0bzzqad426y8cj4zf04gcl0nndijyrc"; + name = "auto-pause"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/auto-pause"; license = lib.licenses.free; }; }) {}; @@ -3140,13 +3245,13 @@ sha256 = "10aw3bpvawkqj1l8brvzq057wx3mkzpxs4zc3yhppkhq2cpvx7i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-save-buffers-enhanced"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-save-buffers-enhanced"; sha256 = "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb"; name = "auto-save-buffers-enhanced"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-save-buffers-enhanced"; + homepage = "https://melpa.org/#/auto-save-buffers-enhanced"; license = lib.licenses.free; }; }) {}; @@ -3161,13 +3266,13 @@ sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-shell-command"; sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j"; name = "auto-shell-command"; }; packageRequires = [ deferred popwin ]; meta = { - homepage = "http://melpa.org/#/auto-shell-command"; + homepage = "https://melpa.org/#/auto-shell-command"; license = lib.licenses.free; }; }) {}; @@ -3182,55 +3287,55 @@ sha256 = "1ya5rn55sclh2w5bjy4b2b75gd6bgavfqmhdisz6afp8w4l4a2bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-virtualenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-virtualenv"; sha256 = "0xv51g74l5pxa3s185867dpc98m6y26xbj5wgz7f9177qchvdbhk"; name = "auto-virtualenv"; }; packageRequires = [ cl-lib pyvenv s ]; meta = { - homepage = "http://melpa.org/#/auto-virtualenv"; + homepage = "https://melpa.org/#/auto-virtualenv"; license = lib.licenses.free; }; }) {}; auto-yasnippet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "auto-yasnippet"; - version = "20151218.1031"; + version = "20160223.508"; src = fetchFromGitHub { owner = "abo-abo"; repo = "auto-yasnippet"; - rev = "9e126461d4473fb734f7e33dc2019cd71856dc42"; - sha256 = "14qr8c4i4644vwqvlh5d3xhw1dzmqz3v74hqlp7g8991yaka72va"; + rev = "e7576721b165f191257dfc23e412634fad6619a4"; + sha256 = "13g0vc0wsq7yn4qgxy3g64pdm30dafi75z6bsxnf3iq77zkqai0p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-yasnippet"; sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa"; name = "auto-yasnippet"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/auto-yasnippet"; + homepage = "https://melpa.org/#/auto-yasnippet"; license = lib.licenses.free; }; }) {}; autobookmarks = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autobookmarks"; - version = "20151120.1645"; + version = "20160413.528"; src = fetchFromGitHub { owner = "Fuco1"; repo = "autobookmarks"; - rev = "cec3a2ac60a382ee61996c17bd962bc5a2e45c4b"; - sha256 = "01q3k8i8vrs7pcr507kh48np0bc6smanh0ald1hv9h4dylkq89k7"; + rev = "6090bb0f24396d35de39c8d522f40b29885c867e"; + sha256 = "1b9bzfnvkzn6r79r5rm9w9affy8hknqqzcphifrm4g6sm9c3f9jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autobookmarks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autobookmarks"; sha256 = "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp"; name = "autobookmarks"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/autobookmarks"; + homepage = "https://melpa.org/#/autobookmarks"; license = lib.licenses.free; }; }) {}; @@ -3245,13 +3350,13 @@ sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autodisass-java-bytecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autodisass-java-bytecode"; sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc"; name = "autodisass-java-bytecode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/autodisass-java-bytecode"; + homepage = "https://melpa.org/#/autodisass-java-bytecode"; license = lib.licenses.free; }; }) {}; @@ -3266,13 +3371,13 @@ sha256 = "1fq4h5fmamyh7z8nq6pigx74p5v8k3qfm64k66vwsm8bl5jdkw17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autodisass-llvm-bitcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autodisass-llvm-bitcode"; sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01"; name = "autodisass-llvm-bitcode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/autodisass-llvm-bitcode"; + homepage = "https://melpa.org/#/autodisass-llvm-bitcode"; license = lib.licenses.free; }; }) {}; @@ -3281,17 +3386,17 @@ pname = "autofit-frame"; version = "20151231.1409"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/autofit-frame.el"; + url = "https://www.emacswiki.org/emacs/download/autofit-frame.el"; sha256 = "1af45z1w69dkdk4mzjphwn420m9rrkc3djv5kpp6lzbxxnmswbqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autofit-frame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autofit-frame"; sha256 = "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw"; name = "autofit-frame"; }; packageRequires = [ fit-frame ]; meta = { - homepage = "http://melpa.org/#/autofit-frame"; + homepage = "https://melpa.org/#/autofit-frame"; license = lib.licenses.free; }; }) {}; @@ -3306,34 +3411,34 @@ sha256 = "02nnyncfh6g0xizy7wa8721ahpnwk451kngd6n0y0249f50p3962"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/automargin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/automargin"; sha256 = "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8"; name = "automargin"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/automargin"; + homepage = "https://melpa.org/#/automargin"; license = lib.licenses.free; }; }) {}; autopair = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autopair"; - version = "20140825.627"; + version = "20160304.637"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "autopair"; - rev = "4f4bd30b341e7fb15a452b59f3e5c34cbd5c97d8"; - sha256 = "1z3hd2jkibwz2ijvyh066ki5g30pdqgh2vj2r35prpp12bqabw4a"; + rev = "2b6d72bccb0ebba6e7e711528872b898b0c65b0a"; + sha256 = "09p56vi5zgm2djglimwyhv4n4gyydjndzn46vg9qzzlxvvmw66i1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autopair"; sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28"; name = "autopair"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/autopair"; + homepage = "https://melpa.org/#/autopair"; license = lib.licenses.free; }; }) {}; @@ -3344,17 +3449,17 @@ src = fetchFromGitHub { owner = "zenspider"; repo = "elisp"; - rev = "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36"; - sha256 = "109il2s5ynfam510yli4xmi5zgw7xhr5gv096li24idqdp0gpf9n"; + rev = "df58c83a5f1e0b9889858407eae0e383bd759473"; + sha256 = "184ghdi2m4hagddi71c1pmc408fad1cmw0q2n4k737w6j8537hph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autotest"; sha256 = "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy"; name = "autotest"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/autotest"; + homepage = "https://melpa.org/#/autotest"; license = lib.licenses.free; }; }) {}; @@ -3369,13 +3474,13 @@ sha256 = "162zay36mmkkpbfvp0lagv2js4cr1z75dc1z5l2505814m5sx3az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autotetris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autotetris-mode"; sha256 = "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb"; name = "autotetris-mode"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/autotetris-mode"; + homepage = "https://melpa.org/#/autotetris-mode"; license = lib.licenses.free; }; }) {}; @@ -3390,34 +3495,34 @@ sha256 = "1lip7282g41ghn64dvx2ab437s83cj9l8ps1rd8rbhqyz4bx5wb9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autumn-light-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autumn-light-theme"; sha256 = "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a"; name = "autumn-light-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/autumn-light-theme"; + homepage = "https://melpa.org/#/autumn-light-theme"; license = lib.licenses.free; }; }) {}; avy = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "avy"; - version = "20160203.157"; + version = "20160421.324"; src = fetchFromGitHub { owner = "abo-abo"; repo = "avy"; - rev = "730581ae8720c255dd000ca6f0d44e1845de3f45"; - sha256 = "0awxmd2lf5rzkw9zdlsxm614asqrl324x2qv9lgakc1f663q72sl"; + rev = "53706d2ebf8ea5d02e3d0229656f8e5369b9440a"; + sha256 = "0jr8m2bhklwfq0rav4ai918ywr7837q849awmfv7j2vvf4jqkja1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy"; sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag"; name = "avy"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/avy"; + homepage = "https://melpa.org/#/avy"; license = lib.licenses.free; }; }) {}; @@ -3432,55 +3537,55 @@ sha256 = "1a6h44a6id4ash8kp0a59f34658p7czcl2d3i1880k8hckhy445j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-menu"; sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw"; name = "avy-menu"; }; packageRequires = [ avy emacs ]; meta = { - homepage = "http://melpa.org/#/avy-menu"; + homepage = "https://melpa.org/#/avy-menu"; license = lib.licenses.free; }; }) {}; avy-migemo = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, migemo }: melpaBuild { pname = "avy-migemo"; - version = "20160210.1114"; + version = "20160426.950"; src = fetchFromGitHub { owner = "momomo5717"; repo = "avy-migemo"; - rev = "d95d0485f2fc580a918c4769f669d273c7a6c334"; - sha256 = "0n1c5xvr782zgvby38w6wxrqac1lx35n0m7rl4ki325c6dchkgsx"; + rev = "4ce85afd01bfcdbd5c06b46bccb1c9ac63f79863"; + sha256 = "06fjkz8y2w0d3giyiacvbj8n8i3lx3ffd78bcgzgwpylibxm3saw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-migemo"; sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296"; name = "avy-migemo"; }; packageRequires = [ avy emacs migemo ]; meta = { - homepage = "http://melpa.org/#/avy-migemo"; + homepage = "https://melpa.org/#/avy-migemo"; license = lib.licenses.free; }; }) {}; avy-zap = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "avy-zap"; - version = "20151211.1348"; + version = "20160330.1330"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "avy-zap"; - rev = "ee3a2ad9911384e21537bc641a2f794dd192bbe8"; - sha256 = "0s7lhls6gs055kw0893nkb9myv7m2q2p251lq9wh2r3bmia9d6pg"; + rev = "173dbb6339e683ff8ed0114cdd5a6490ab6b28f0"; + sha256 = "0nv6y9jwy2z4rlnd6qklhqww367kaqjc5id7yr4hsmxmxw2jj43p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-zap"; sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx"; name = "avy-zap"; }; packageRequires = [ avy ]; meta = { - homepage = "http://melpa.org/#/avy-zap"; + homepage = "https://melpa.org/#/avy-zap"; license = lib.licenses.free; }; }) {}; @@ -3488,37 +3593,37 @@ pname = "awk-it"; version = "20130917.1348"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/awk-it.el"; + url = "https://www.emacswiki.org/emacs/download/awk-it.el"; sha256 = "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/awk-it"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/awk-it"; sha256 = "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw"; name = "awk-it"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/awk-it"; + homepage = "https://melpa.org/#/awk-it"; license = lib.licenses.free; }; }) {}; axiom-environment = callPackage ({ emacs, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "axiom-environment"; - version = "20160123.1226"; + version = "20160325.1715"; src = fetchhg { url = "https://bitbucket.com/pdo/axiom-environment"; - rev = "f7b3a13f54ea"; - sha256 = "1qq0b92mf73fnx2viwzlsxr6672wkskf0vjimymyhv9aq3gw165w"; + rev = "bc294e47f51c"; + sha256 = "0z15n7cpprbhiamq26240g5bqsiw5mgyzdisi7j6hpybyk2zyl9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/axiom-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/axiom-environment"; sha256 = "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66"; name = "axiom-environment"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/axiom-environment"; + homepage = "https://melpa.org/#/axiom-environment"; license = lib.licenses.free; }; }) {}; @@ -3533,13 +3638,13 @@ sha256 = "140lbpqq4qz45ykycdn8nvcn8pv0xqfwpapgprvyg8z5fjkyc4sg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/babel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/babel"; sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c"; name = "babel"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/babel"; + homepage = "https://melpa.org/#/babel"; license = lib.licenses.free; }; }) {}; @@ -3554,13 +3659,13 @@ sha256 = "1wfssdv6ag36ww6v7al2x04mbpaajlx92wfm8rbq8rp8887724s5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/babel-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/babel-repl"; sha256 = "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x"; name = "babel-repl"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/babel-repl"; + homepage = "https://melpa.org/#/babel-repl"; license = lib.licenses.free; }; }) {}; @@ -3575,7 +3680,7 @@ sha256 = "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/back-button"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/back-button"; sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85"; name = "back-button"; }; @@ -3588,7 +3693,7 @@ ucs-utils ]; meta = { - homepage = "http://melpa.org/#/back-button"; + homepage = "https://melpa.org/#/back-button"; license = lib.licenses.free; }; }) {}; @@ -3596,17 +3701,17 @@ pname = "backup-each-save"; version = "20130704.932"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/backup-each-save.el"; + url = "https://www.emacswiki.org/emacs/download/backup-each-save.el"; sha256 = "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/backup-each-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/backup-each-save"; sha256 = "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337"; name = "backup-each-save"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/backup-each-save"; + homepage = "https://melpa.org/#/backup-each-save"; license = lib.licenses.free; }; }) {}; @@ -3621,13 +3726,13 @@ sha256 = "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/backup-walker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/backup-walker"; sha256 = "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd"; name = "backup-walker"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/backup-walker"; + homepage = "https://melpa.org/#/backup-walker"; license = lib.licenses.free; }; }) {}; @@ -3642,55 +3747,55 @@ sha256 = "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/badger-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/badger-theme"; sha256 = "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf"; name = "badger-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/badger-theme"; + homepage = "https://melpa.org/#/badger-theme"; license = lib.licenses.free; }; }) {}; badwolf-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "badwolf-theme"; - version = "20160218.1631"; + version = "20160413.1605"; src = fetchFromGitHub { owner = "bkruczyk"; repo = "badwolf-emacs"; - rev = "1e3a9c50b884578d6add6149bf5fcab6f7d1e55c"; - sha256 = "0rymxwxp6gi9ir8crvnv1mz4pns72xdhd9pnpzdqxvawwc76h4cc"; + rev = "92afd11dacad4f9df92028f2606f622472d4d21e"; + sha256 = "1kk50gxrr95w4qadnnn6ai4szhjqpmkj4l4fmjvpzgjwb24n6yxq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/badwolf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/badwolf-theme"; sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41"; name = "badwolf-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/badwolf-theme"; + homepage = "https://melpa.org/#/badwolf-theme"; license = lib.licenses.free; }; }) {}; baidu-life = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "baidu-life"; - version = "20151210.615"; + version = "20160426.719"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-baidu-life"; - rev = "4cb251d44e97da54306af9d99444d9b8525f043e"; - sha256 = "00skx1aywzvnqqsm41n2mwry5i6ifib8kzq5klymbrc7qfnbb55f"; + rev = "5c4b3dbc016a2656cc2febaa2ac2268c05725b5c"; + sha256 = "024gpdjr1lbqjg6md526g4wz2shpgfpdrrd2m1bn4fissbzj70i1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/baidu-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/baidu-life"; sha256 = "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19"; name = "baidu-life"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/baidu-life"; + homepage = "https://melpa.org/#/baidu-life"; license = lib.licenses.free; }; }) {}; @@ -3705,13 +3810,13 @@ sha256 = "16240dj0hvxkljas9973wjdgkbx213sqws77j167yr5xf761dlsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/base16-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/base16-theme"; sha256 = "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs"; name = "base16-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/base16-theme"; + homepage = "https://melpa.org/#/base16-theme"; license = lib.licenses.free; }; }) {}; @@ -3726,13 +3831,13 @@ sha256 = "06c42531dy5ngscwfvg8rksg6jcsakfn7104hmlg1jp4kvfiy1kg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bash-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bash-completion"; sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj"; name = "bash-completion"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bash-completion"; + homepage = "https://melpa.org/#/bash-completion"; license = lib.licenses.free; }; }) {}; @@ -3747,13 +3852,13 @@ sha256 = "1pbnw6ccphxynbhnc4g687jfcg33p1sa7a0mfxc2ai0i3z59gn78"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/basic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/basic-theme"; sha256 = "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27"; name = "basic-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/basic-theme"; + homepage = "https://melpa.org/#/basic-theme"; license = lib.licenses.free; }; }) {}; @@ -3761,17 +3866,17 @@ pname = "batch-mode"; version = "20140807.1550"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/batch-mode.el"; + url = "https://www.emacswiki.org/emacs/download/batch-mode.el"; sha256 = "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/batch-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/batch-mode"; sha256 = "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x"; name = "batch-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/batch-mode"; + homepage = "https://melpa.org/#/batch-mode"; license = lib.licenses.free; }; }) {}; @@ -3786,13 +3891,13 @@ sha256 = "1fy9qnwsxvb8qnyk13bnjjbnlhdads5qf1byg5agg6lq5np3w5jf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bats-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bats-mode"; sha256 = "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w"; name = "bats-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bats-mode"; + homepage = "https://melpa.org/#/bats-mode"; license = lib.licenses.free; }; }) {}; @@ -3807,13 +3912,13 @@ sha256 = "17ip24fk13aj9zldn2qsr4naa8anqhm484m1an5l5i9m9awfiyn7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbcode-mode"; sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89"; name = "bbcode-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bbcode-mode"; + homepage = "https://melpa.org/#/bbcode-mode"; license = lib.licenses.free; }; }) {}; @@ -3823,16 +3928,16 @@ src = fetchgit { url = "git://git.savannah.nongnu.org/bbdb.git"; rev = "8fce6df3ab09250d545a2ed373ae64e68d12ff4c"; - sha256 = "e20dfe8085782948c1411685d45bad0cb7ff088bc2d1d2c1654c276356382b26"; + sha256 = "09ib71b669sccp0x5lf2ic4gzdqcmmdx918n870lhabqhn0gw3g2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb"; sha256 = "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j"; name = "bbdb"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bbdb"; + homepage = "https://melpa.org/#/bbdb"; license = lib.licenses.free; }; }) {}; @@ -3847,13 +3952,13 @@ sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-"; sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf"; name = "bbdb-"; }; packageRequires = [ bbdb log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/bbdb-"; + homepage = "https://melpa.org/#/bbdb-"; license = lib.licenses.free; }; }) {}; @@ -3868,13 +3973,13 @@ sha256 = "0m80k87dahzdpfa4snbl4p9zm5d5anc8s91535mwzsnfbr98qmhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-android"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-android"; sha256 = "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3"; name = "bbdb-android"; }; packageRequires = [ bbdb-vcard ]; meta = { - homepage = "http://melpa.org/#/bbdb-android"; + homepage = "https://melpa.org/#/bbdb-android"; license = lib.licenses.free; }; }) {}; @@ -3889,13 +3994,13 @@ sha256 = "07plwm5nh58qya03l8z0iaqh8bmyhywx7qiffkf803n8wwjb3kdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-china"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-china"; sha256 = "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b"; name = "bbdb-china"; }; packageRequires = [ bbdb-vcard chinese-pyim ]; meta = { - homepage = "http://melpa.org/#/bbdb-china"; + homepage = "https://melpa.org/#/bbdb-china"; license = lib.licenses.free; }; }) {}; @@ -3910,13 +4015,13 @@ sha256 = "1h9vi9wb3dzzjrw5zfypk60afzzshxa3qmnbc24ypby5dr7qy91l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-csv-import"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-csv-import"; sha256 = "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm"; name = "bbdb-csv-import"; }; packageRequires = [ bbdb dash pcsv ]; meta = { - homepage = "http://melpa.org/#/bbdb-csv-import"; + homepage = "https://melpa.org/#/bbdb-csv-import"; license = lib.licenses.free; }; }) {}; @@ -3931,13 +4036,13 @@ sha256 = "1ydf89mmp3zjfqdymnrwg18wclyf7psarz9f2k82pl58h0khh71g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-ext"; sha256 = "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li"; name = "bbdb-ext"; }; packageRequires = [ bbdb ]; meta = { - homepage = "http://melpa.org/#/bbdb-ext"; + homepage = "https://melpa.org/#/bbdb-ext"; license = lib.licenses.free; }; }) {}; @@ -3952,13 +4057,13 @@ sha256 = "04yxky7qxh0s4y4addry85qd1074l97frhp0hw77xd1bc7n5zzg0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-handy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-handy"; sha256 = "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z"; name = "bbdb-handy"; }; packageRequires = [ bbdb ]; meta = { - homepage = "http://melpa.org/#/bbdb-handy"; + homepage = "https://melpa.org/#/bbdb-handy"; license = lib.licenses.free; }; }) {}; @@ -3973,13 +4078,13 @@ sha256 = "1zlf9xhpirln72xr7v6kgndkg5wyz5ipsl4gpq9lbmp92jlgbwlj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-vcard"; sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj"; name = "bbdb-vcard"; }; packageRequires = [ bbdb ]; meta = { - homepage = "http://melpa.org/#/bbdb-vcard"; + homepage = "https://melpa.org/#/bbdb-vcard"; license = lib.licenses.free; }; }) {}; @@ -3994,13 +4099,13 @@ sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb2erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb2erc"; sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd"; name = "bbdb2erc"; }; packageRequires = [ bbdb ]; meta = { - homepage = "http://melpa.org/#/bbdb2erc"; + homepage = "https://melpa.org/#/bbdb2erc"; license = lib.licenses.free; }; }) {}; @@ -4015,13 +4120,13 @@ sha256 = "1cdm4d6fjf3m495phynq0dzvv0wc0gfsw6fdq4d47iyxs0p4q2dl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbyac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbyac"; sha256 = "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170"; name = "bbyac"; }; packageRequires = [ browse-kill-ring cl-lib ]; meta = { - homepage = "http://melpa.org/#/bbyac"; + homepage = "https://melpa.org/#/bbyac"; license = lib.licenses.free; }; }) {}; @@ -4036,34 +4141,34 @@ sha256 = "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bdo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bdo"; sha256 = "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl"; name = "bdo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bdo"; + homepage = "https://melpa.org/#/bdo"; license = lib.licenses.free; }; }) {}; beacon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "beacon"; - version = "20160206.1117"; + version = "20160404.808"; src = fetchFromGitHub { owner = "Malabarba"; repo = "beacon"; - rev = "9e55c293a80c6173db756200742e74cb06468ab0"; - sha256 = "04gnbil12ixkvgmmdw5fx90b9hbz2jf0hzic1v96fnzq9280ccjf"; + rev = "d666642d7ad905997d0ac5ecd4b27353506ce79e"; + sha256 = "0v1lpn4jrhr3b4681lc3b17mzr6jd1p1xiy51m6n7pdivnzrrxi2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/beacon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/beacon"; sha256 = "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq"; name = "beacon"; }; packageRequires = [ seq ]; meta = { - homepage = "http://melpa.org/#/beacon"; + homepage = "https://melpa.org/#/beacon"; license = lib.licenses.free; }; }) {}; @@ -4072,19 +4177,19 @@ pname = "beeminder"; version = "20160209.2103"; src = fetchFromGitHub { - owner = "sodaware"; + owner = "Sodaware"; repo = "beeminder.el"; rev = "a4e159250bac89bc25ced8523a5eac2a951cd5b6"; sha256 = "0ki9q3ylssjabh15dr49k7dxv88snpj4564g0myp3c61qzyy82lk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/beeminder"; - sha256 = "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/beeminder"; + sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww"; name = "beeminder"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/beeminder"; + homepage = "https://melpa.org/#/beeminder"; license = lib.licenses.free; }; }) {}; @@ -4099,13 +4204,13 @@ sha256 = "1hyiz7iwnzbg1616q0w7fndllbnx4m98kakgxn04bsqib5fqk78p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/beginend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/beginend"; sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq"; name = "beginend"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/beginend"; + homepage = "https://melpa.org/#/beginend"; license = lib.licenses.free; }; }) {}; @@ -4120,13 +4225,13 @@ sha256 = "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/benchmark-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/benchmark-init"; sha256 = "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal"; name = "benchmark-init"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/benchmark-init"; + homepage = "https://melpa.org/#/benchmark-init"; license = lib.licenses.free; }; }) {}; @@ -4141,13 +4246,13 @@ sha256 = "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bert"; sha256 = "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7"; name = "bert"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bert"; + homepage = "https://melpa.org/#/bert"; license = lib.licenses.free; }; }) {}; @@ -4162,13 +4267,13 @@ sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/better-defaults"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/better-defaults"; sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm"; name = "better-defaults"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/better-defaults"; + homepage = "https://melpa.org/#/better-defaults"; license = lib.licenses.free; }; }) {}; @@ -4176,17 +4281,17 @@ pname = "better-registers"; version = "20140813.319"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/better-registers.el"; + url = "https://www.emacswiki.org/emacs/download/better-registers.el"; sha256 = "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/better-registers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/better-registers"; sha256 = "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx"; name = "better-registers"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/better-registers"; + homepage = "https://melpa.org/#/better-registers"; license = lib.licenses.free; }; }) {}; @@ -4201,13 +4306,13 @@ sha256 = "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bf-mode"; sha256 = "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9"; name = "bf-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bf-mode"; + homepage = "https://melpa.org/#/bf-mode"; license = lib.licenses.free; }; }) {}; @@ -4222,13 +4327,55 @@ sha256 = "1y9fxs1nbf0xsn8mw45m9ghmji3h64wdbfnyr1npmf5fb27rmd17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bfbuilder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bfbuilder"; sha256 = "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7"; name = "bfbuilder"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/bfbuilder"; + homepage = "https://melpa.org/#/bfbuilder"; + license = lib.licenses.free; + }; + }) {}; + biblio = callPackage ({ biblio-core, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "biblio"; + version = "20160407.427"; + src = fetchFromGitHub { + owner = "cpitclaudel"; + repo = "biblio.el"; + rev = "1d37beac6024bb0e354966f20cd860fc8260bdc6"; + sha256 = "0mlbpmf6l9hvdw2pdx1qbad6q54r8zjb514d89znd461vs9ipjya"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/biblio"; + sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g"; + name = "biblio"; + }; + packageRequires = [ biblio-core emacs ]; + meta = { + homepage = "https://melpa.org/#/biblio"; + license = lib.licenses.free; + }; + }) {}; + biblio-core = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, seq }: + melpaBuild { + pname = "biblio-core"; + version = "20160407.426"; + src = fetchFromGitHub { + owner = "cpitclaudel"; + repo = "biblio.el"; + rev = "1d37beac6024bb0e354966f20cd860fc8260bdc6"; + sha256 = "0mlbpmf6l9hvdw2pdx1qbad6q54r8zjb514d89znd461vs9ipjya"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/biblio-core"; + sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97"; + name = "biblio-core"; + }; + packageRequires = [ dash emacs let-alist seq ]; + meta = { + homepage = "https://melpa.org/#/biblio-core"; license = lib.licenses.free; }; }) {}; @@ -4243,13 +4390,13 @@ sha256 = "0rwy4k06nd9a31hpyqs0fxp45dpddbvbhwcw1gzx4f73qmgawq9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bibretrieve"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bibretrieve"; sha256 = "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii"; name = "bibretrieve"; }; packageRequires = [ auctex emacs ]; meta = { - homepage = "http://melpa.org/#/bibretrieve"; + homepage = "https://melpa.org/#/bibretrieve"; license = lib.licenses.free; }; }) {}; @@ -4264,13 +4411,13 @@ sha256 = "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bibslurp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bibslurp"; sha256 = "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp"; name = "bibslurp"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/bibslurp"; + homepage = "https://melpa.org/#/bibslurp"; license = lib.licenses.free; }; }) {}; @@ -4285,13 +4432,13 @@ sha256 = "1qf45s53vcbd90v2d2brynv3xmp8sy9w9jp611cf0dzfl1k7x8p8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bibtex-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bibtex-utils"; sha256 = "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l"; name = "bibtex-utils"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bibtex-utils"; + homepage = "https://melpa.org/#/bibtex-utils"; license = lib.licenses.free; }; }) {}; @@ -4302,59 +4449,59 @@ src = fetchFromGitHub { owner = "waymondo"; repo = "use-package-chords"; - rev = "cbf623c867f911732077b026692f9312401791ad"; - sha256 = "05lhxbrgwbyz0nkb19yln9a46jh91ic685943hd58cn91lxsw3al"; + rev = "b7de6b2a1270d37a1aca3bd8f29f67ec578527d7"; + sha256 = "06jsa0scvf12kznm0ngv76y726rzh93prc7ymw3fvknvg0xivb8v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bind-chord"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bind-chord"; sha256 = "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb"; name = "bind-chord"; }; packageRequires = [ bind-key key-chord ]; meta = { - homepage = "http://melpa.org/#/bind-chord"; + homepage = "https://melpa.org/#/bind-chord"; license = lib.licenses.free; }; }) {}; bind-key = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bind-key"; - version = "20160206.1456"; + version = "20160227.248"; src = fetchFromGitHub { owner = "jwiegley"; repo = "use-package"; - rev = "6b1956813f0f0e553a7eb6923ff846f9c3556146"; - sha256 = "13yzxlxkykv3qkaaifn3pf0y94dgqysxz5p7vh71jpqxi6d7jmgr"; + rev = "22c63c8f98fc318c357b51a658cee62d64601e16"; + sha256 = "19vc1hblbqlns2c28aqwjpmj8k35ih7akqi04wrqv1b6pljfy3jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bind-key"; sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm"; name = "bind-key"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bind-key"; + homepage = "https://melpa.org/#/bind-key"; license = lib.licenses.free; }; }) {}; bind-map = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bind-map"; - version = "20160211.1121"; + version = "20160309.725"; src = fetchFromGitHub { owner = "justbur"; repo = "emacs-bind-map"; - rev = "f4fad049d0bb6ebdc729bc6d356288f2dd96e2f3"; - sha256 = "023rck51m264qx38270ai5ib8wipa8q952bagi1dqi6xp5k6lsjs"; + rev = "6f84c0254f9ef7580ee32fb66190cc694cc05629"; + sha256 = "047qzylycx3r06dd0q9q9f37pvfigmlv59gi3wqvlg6k3gcmdvy0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bind-map"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bind-map"; sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358"; name = "bind-map"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/bind-map"; + homepage = "https://melpa.org/#/bind-map"; license = lib.licenses.free; }; }) {}; @@ -4369,13 +4516,13 @@ sha256 = "0pmpg54faq0l886f2cmnmwm28d2yfg8adk7gp7623gx0ifggn332"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bing-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bing-dict"; sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1"; name = "bing-dict"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bing-dict"; + homepage = "https://melpa.org/#/bing-dict"; license = lib.licenses.free; }; }) {}; @@ -4390,13 +4537,13 @@ sha256 = "1n5icy29ks5rxrxp7v4sf0523z7wxn0fh9lx4y6jb7ppdjnff12s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/birds-of-paradise-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/birds-of-paradise-plus-theme"; sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m"; name = "birds-of-paradise-plus-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/birds-of-paradise-plus-theme"; + homepage = "https://melpa.org/#/birds-of-paradise-plus-theme"; license = lib.licenses.free; }; }) {}; @@ -4411,13 +4558,13 @@ sha256 = "0iccafawm9ah62f7qq1k77kjpafhcpjcaiqh5xjig1wxnpc43ck7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bison-mode"; sha256 = "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66"; name = "bison-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bison-mode"; + homepage = "https://melpa.org/#/bison-mode"; license = lib.licenses.free; }; }) {}; @@ -4432,34 +4579,34 @@ sha256 = "14dsjbw4ss3i6ydynm121v5j3idvy85sk1vqbr5r871d32179xan"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bitbake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bitbake"; sha256 = "1k2n1i8g0jc78sp1icm64rlhi1q0vqar2a889nldp134a1l7bfah"; name = "bitbake"; }; packageRequires = [ dash emacs mmm-mode s ]; meta = { - homepage = "http://melpa.org/#/bitbake"; + homepage = "https://melpa.org/#/bitbake"; license = lib.licenses.free; }; }) {}; bitlbee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bitlbee"; - version = "20130328.1218"; + version = "20151202.1800"; src = fetchFromGitHub { owner = "pjones"; - repo = "elisp"; - rev = "5eafcd3ff0725b5826d1e01bfe4c7ed01563b75e"; - sha256 = "1cnx5kr0hah4h4b6arp7hb2i556vpx1dwmziny2csil39hkcjgbs"; + repo = "bitlbee-el"; + rev = "3a92a4119e0c007df2c7dcf1b1c3a5f23ee40e05"; + sha256 = "0mccvpf8f87i7rqga3s4slrqz80rp3kyj071rrimhzpx8pnsrxx9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bitlbee"; - sha256 = "15xb0vjamnfwi25yqd37zwfm6xb6p71if88hk2ymxikza4i47x0f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bitlbee"; + sha256 = "1lmbmlshr8b645qsb88rswmbbcbbawzl04xdjlygq4dnpkxc8w0f"; name = "bitlbee"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bitlbee"; + homepage = "https://melpa.org/#/bitlbee"; license = lib.licenses.free; }; }) {}; @@ -4474,13 +4621,13 @@ sha256 = "09blh9cbcbqr3pdaiwm9fmh5kzqm1v9mffy623z3jn87g5wadrmb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bitly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bitly"; sha256 = "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247"; name = "bitly"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bitly"; + homepage = "https://melpa.org/#/bitly"; license = lib.licenses.free; }; }) {}; @@ -4488,17 +4635,17 @@ pname = "blank-mode"; version = "20130824.659"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/blank-mode.el"; + url = "https://www.emacswiki.org/emacs/download/blank-mode.el"; sha256 = "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/blank-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/blank-mode"; sha256 = "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87"; name = "blank-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/blank-mode"; + homepage = "https://melpa.org/#/blank-mode"; license = lib.licenses.free; }; }) {}; @@ -4513,13 +4660,13 @@ sha256 = "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/blgrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/blgrep"; sha256 = "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm"; name = "blgrep"; }; packageRequires = [ clmemo ]; meta = { - homepage = "http://melpa.org/#/blgrep"; + homepage = "https://melpa.org/#/blgrep"; license = lib.licenses.free; }; }) {}; @@ -4534,34 +4681,55 @@ sha256 = "0dn0i3nxrqd82b9d17p1v0ddlpxnlfclkc8sqzrwq6cf19wcrmdr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bliss-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bliss-theme"; sha256 = "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh"; name = "bliss-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/bliss-theme"; + homepage = "https://melpa.org/#/bliss-theme"; + license = lib.licenses.free; + }; + }) {}; + blockdiag-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "blockdiag-mode"; + version = "20160406.1301"; + src = fetchFromGitHub { + owner = "xcezx"; + repo = "blockdiag-mode"; + rev = "1637338e962c054336d964e2667b0631bea03eee"; + sha256 = "0gzfn775ipx1wmqi4l5yyb45a7w1hqdbdqyy06j44a2lfwq6grqw"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/blockdiag-mode"; + sha256 = "0v48w4slzx8baxrf10jrzcpqmcv9d3z2pz0xqn8czlzm2f6id3ya"; + name = "blockdiag-mode"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/blockdiag-mode"; license = lib.licenses.free; }; }) {}; blog-admin = callPackage ({ ctable, f, fetchFromGitHub, fetchurl, lib, melpaBuild, names, org, s }: melpaBuild { pname = "blog-admin"; - version = "20160202.803"; + version = "20160425.2149"; src = fetchFromGitHub { - owner = "codefalling"; + owner = "CodeFalling"; repo = "blog-admin"; - rev = "0935b0c5e7ed6c7a26a7ff16cd38a168a8fb93a3"; - sha256 = "0zhcjg68nzqdrlnbm7akzgn4px3prrqjjym2qzfirmdbq6dxifgg"; + rev = "3ac6c3715dbeef80c5aabdad66ac8575d1d9046a"; + sha256 = "1fx8y1xy1azyi8cnldiqq4354mhbywbljc45ilvlx13kj0fr439j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/blog-admin"; - sha256 = "0l2si3fyi7kz4px3m8m0i71xvlsrx0y81247j1kcl7iax53zkl8c"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/blog-admin"; + sha256 = "03wnci5903c6jikkvlzc2vfma9h9qk673cc3wm756rx94jxinmyk"; name = "blog-admin"; }; packageRequires = [ ctable f names org s ]; meta = { - homepage = "http://melpa.org/#/blog-admin"; + homepage = "https://melpa.org/#/blog-admin"; license = lib.licenses.free; }; }) {}; @@ -4576,55 +4744,55 @@ sha256 = "1ggqg0lgvxg2adq91damvh55m36qsa23n3z6zyf5z6855ilzaa4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bm"; sha256 = "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g"; name = "bm"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bm"; + homepage = "https://melpa.org/#/bm"; license = lib.licenses.free; }; }) {}; bog = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bog"; - version = "20160124.1737"; + version = "20160306.2305"; src = fetchFromGitHub { owner = "kyleam"; repo = "bog"; - rev = "0ba8df3f2d31d24f86deadc4369b7330efbac8c3"; - sha256 = "0fy2jwpgvqlff5bn0l971xxb76krm3idjqjl61qgim6a45kip057"; + rev = "18e2da1e27c4366cf0969225984f4c8cef7db006"; + sha256 = "04x0gw83x3y0xq2g2vkn27qmvqia04dvwq6yhjif0zz9jr2s7a10"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bog"; sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl"; name = "bog"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/bog"; + homepage = "https://melpa.org/#/bog"; license = lib.licenses.free; }; }) {}; - bongo = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + bongo = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bongo"; - version = "20151205.1009"; + version = "20160313.917"; src = fetchFromGitHub { owner = "dbrock"; repo = "bongo"; - rev = "4cdacc10a530d4edbfdf6c95891f3cf229518e9d"; - sha256 = "0ghjfrwc2i04rxg3nqc5fg2kgfyjlhk8n2qcz53p9i7ncc3zgpha"; + rev = "029e02b782e25b7bfbc946956d9e99aef277cdcc"; + sha256 = "109r51flzhva8npch6ykqkcd2j5jpffhw6ziq3rmlqb7yc04wghb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bongo"; sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv"; name = "bongo"; }; - packageRequires = [ cl-lib ]; + packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/bongo"; + homepage = "https://melpa.org/#/bongo"; license = lib.licenses.free; }; }) {}; @@ -4639,73 +4807,73 @@ sha256 = "06cpbjbv8ysz81szwgglgy5r1aay8rrzw5k86wyqg9jdzwpmilpn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bonjourmadame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bonjourmadame"; sha256 = "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn"; name = "bonjourmadame"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bonjourmadame"; + homepage = "https://melpa.org/#/bonjourmadame"; license = lib.licenses.free; }; }) {}; boogie-friends = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, yasnippet }: melpaBuild { pname = "boogie-friends"; - version = "20151121.1549"; + version = "20160423.1103"; src = fetchFromGitHub { owner = "boogie-org"; repo = "boogie-friends"; - rev = "d7b67730e9d4ac2ad5dc886bdc27e9b441497b96"; - sha256 = "11m0w8i2nq0nqrpg6m7vnn9sd3v1ln5b3rka7m9fnasadf77nmpv"; + rev = "06a58186106e4dd5446daa8ed401a7caacb19ac2"; + sha256 = "1vf05zdn9ync6p0pfg570z040lvlb5f6zm7wx2l356pvl129d67a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boogie-friends"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boogie-friends"; sha256 = "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7"; name = "boogie-friends"; }; packageRequires = [ cl-lib company dash flycheck yasnippet ]; meta = { - homepage = "http://melpa.org/#/boogie-friends"; + homepage = "https://melpa.org/#/boogie-friends"; license = lib.licenses.free; }; }) {}; bookmark-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "bookmark-plus"; - version = "20151231.1419"; + version = "20160423.1727"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/bookmark+.el"; + url = "https://www.emacswiki.org/emacs/download/bookmark+.el"; sha256 = "06621js3bvslfmzmkphzzcrd8hbixin2nx30ammcqaa6572y14ad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bookmark+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bookmark+"; sha256 = "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni"; name = "bookmark-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bookmark+"; + homepage = "https://melpa.org/#/bookmark+"; license = lib.licenses.free; }; }) {}; boon = callPackage ({ emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: melpaBuild { pname = "boon"; - version = "20160208.1544"; + version = "20160228.1635"; src = fetchFromGitHub { owner = "jyp"; repo = "boon"; - rev = "61ba05750964a765c4cff89ecd13092bcf420549"; - sha256 = "061alzr4w0xxyc71ri8ramafmzj5c4iwvd3zcq6i0p67qyic4nsx"; + rev = "4eb0305c7130a3b36af69b5ec6a30162138d2180"; + sha256 = "0ab9wmm1i5ws77dfa6y21ds39gh28i2xw0xbqrf4mc147bsgfz4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boon"; sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb"; name = "boon"; }; packageRequires = [ emacs expand-region multiple-cursors ]; meta = { - homepage = "http://melpa.org/#/boon"; + homepage = "https://melpa.org/#/boon"; license = lib.licenses.free; }; }) {}; @@ -4720,13 +4888,13 @@ sha256 = "0yzfxxv2bw4x320268bixfc7yf97851804bz3829vbdhnr4kp6y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/borland-blue-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/borland-blue-theme"; sha256 = "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx"; name = "borland-blue-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/borland-blue-theme"; + homepage = "https://melpa.org/#/borland-blue-theme"; license = lib.licenses.free; }; }) {}; @@ -4741,13 +4909,13 @@ sha256 = "1gys5ri56s2s525wdji3m72sxzswmb8cmhmw5iha84v7hlqkrahb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boron-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boron-theme"; sha256 = "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81"; name = "boron-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/boron-theme"; + homepage = "https://melpa.org/#/boron-theme"; license = lib.licenses.free; }; }) {}; @@ -4762,13 +4930,13 @@ sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boxquote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boxquote"; sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s"; name = "boxquote"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/boxquote"; + homepage = "https://melpa.org/#/boxquote"; license = lib.licenses.free; }; }) {}; @@ -4783,13 +4951,13 @@ sha256 = "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bpe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bpe"; sha256 = "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm"; name = "bpe"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/bpe"; + homepage = "https://melpa.org/#/bpe"; license = lib.licenses.free; }; }) {}; @@ -4804,34 +4972,34 @@ sha256 = "05x9fmxlybas3gcv3qf1vcfh5k265hjwh73232fyg2v562if748z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bpr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bpr"; sha256 = "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2"; name = "bpr"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/bpr"; + homepage = "https://melpa.org/#/bpr"; license = lib.licenses.free; }; }) {}; bracketed-paste = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bracketed-paste"; - version = "20140222.2001"; + version = "20160407.1848"; src = fetchFromGitHub { owner = "hchbaw"; repo = "bracketed-paste.el"; - rev = "6c2aee346e2f5cdb4ed1386c3e3c853cecd72eff"; - sha256 = "00463z740xrkr4yz46g9zxz23zy878jgvba81pnwvg4l6hd3kc8s"; + rev = "843ce3bbb63d560face889e13a57a2f7543957d5"; + sha256 = "1l6j2zs12psc15cfhqq6hm1bg012jr49zd2i36cmappbsiax1l8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bracketed-paste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bracketed-paste"; sha256 = "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j"; name = "bracketed-paste"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/bracketed-paste"; + homepage = "https://melpa.org/#/bracketed-paste"; license = lib.licenses.free; }; }) {}; @@ -4846,13 +5014,13 @@ sha256 = "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/brainfuck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/brainfuck-mode"; sha256 = "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd"; name = "brainfuck-mode"; }; packageRequires = [ langdoc ]; meta = { - homepage = "http://melpa.org/#/brainfuck-mode"; + homepage = "https://melpa.org/#/brainfuck-mode"; license = lib.licenses.free; }; }) {}; @@ -4867,34 +5035,34 @@ sha256 = "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/broadcast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/broadcast"; sha256 = "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib"; name = "broadcast"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/broadcast"; + homepage = "https://melpa.org/#/broadcast"; license = lib.licenses.free; }; }) {}; browse-at-remote = callPackage ({ cl-lib ? null, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "browse-at-remote"; - version = "20151226.1628"; + version = "20160413.1921"; src = fetchFromGitHub { owner = "rmuslimov"; repo = "browse-at-remote"; - rev = "d7e155e9ea7acfc9dadd334fe41ac57e93f38674"; - sha256 = "0q71ah62q6acivhxzsw9j1ky54i9hhlnj97sjn8bxrxx7nw01gf7"; + rev = "8134dffac11d750cdeb5eec1fe169c11a94aac49"; + sha256 = "12m24n9yif9km4b2sw6am1bdfhxg05wdrq2jnp56jy1i7cgjrm1c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-at-remote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-at-remote"; sha256 = "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w"; name = "browse-at-remote"; }; packageRequires = [ cl-lib f s ]; meta = { - homepage = "http://melpa.org/#/browse-at-remote"; + homepage = "https://melpa.org/#/browse-at-remote"; license = lib.licenses.free; }; }) {}; @@ -4909,13 +5077,13 @@ sha256 = "0sndzhza9k4vcf70fzxsyzrfryaz92lm1y7bbb0dx10m65qljpbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-kill-ring"; sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4"; name = "browse-kill-ring"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/browse-kill-ring"; + homepage = "https://melpa.org/#/browse-kill-ring"; license = lib.licenses.free; }; }) {}; @@ -4924,17 +5092,17 @@ pname = "browse-kill-ring-plus"; version = "20151231.1421"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/browse-kill-ring+.el"; + url = "https://www.emacswiki.org/emacs/download/browse-kill-ring+.el"; sha256 = "1z6pix1ml3s97jh34fwjj008ihlrz4hkipdh5yzcvc6nhrimjw2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-kill-ring+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-kill-ring+"; sha256 = "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w"; name = "browse-kill-ring-plus"; }; packageRequires = [ browse-kill-ring ]; meta = { - homepage = "http://melpa.org/#/browse-kill-ring+"; + homepage = "https://melpa.org/#/browse-kill-ring+"; license = lib.licenses.free; }; }) {}; @@ -4949,13 +5117,13 @@ sha256 = "1rcihwdxrzhgcz573rh1yp3770ihkwqjqvd39yhic1d3sgwxz2hy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-url-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-url-dwim"; sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf"; name = "browse-url-dwim"; }; packageRequires = [ string-utils ]; meta = { - homepage = "http://melpa.org/#/browse-url-dwim"; + homepage = "https://melpa.org/#/browse-url-dwim"; license = lib.licenses.free; }; }) {}; @@ -4963,17 +5131,17 @@ pname = "bs-ext"; version = "20130824.659"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/bs-ext.el"; + url = "https://www.emacswiki.org/emacs/download/bs-ext.el"; sha256 = "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bs-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bs-ext"; sha256 = "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6"; name = "bs-ext"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bs-ext"; + homepage = "https://melpa.org/#/bs-ext"; license = lib.licenses.free; }; }) {}; @@ -4988,13 +5156,13 @@ sha256 = "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/btc-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/btc-ticker"; sha256 = "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1"; name = "btc-ticker"; }; packageRequires = [ json request ]; meta = { - homepage = "http://melpa.org/#/btc-ticker"; + homepage = "https://melpa.org/#/btc-ticker"; license = lib.licenses.free; }; }) {}; @@ -5009,13 +5177,13 @@ sha256 = "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bts"; sha256 = "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3"; name = "bts"; }; packageRequires = [ dash log4e pos-tip s widget-mvc yaxception ]; meta = { - homepage = "http://melpa.org/#/bts"; + homepage = "https://melpa.org/#/bts"; license = lib.licenses.free; }; }) {}; @@ -5030,13 +5198,13 @@ sha256 = "1sfr3j11jz4k9jnfa9i05bp4v5vkil38iyrgsp3kxf15797b9dg9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bts-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bts-github"; sha256 = "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln"; name = "bts-github"; }; packageRequires = [ bts gh ]; meta = { - homepage = "http://melpa.org/#/bts-github"; + homepage = "https://melpa.org/#/bts-github"; license = lib.licenses.free; }; }) {}; @@ -5051,13 +5219,13 @@ sha256 = "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bubbleberry-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bubbleberry-theme"; sha256 = "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3"; name = "bubbleberry-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/bubbleberry-theme"; + homepage = "https://melpa.org/#/bubbleberry-theme"; license = lib.licenses.free; }; }) {}; @@ -5072,13 +5240,13 @@ sha256 = "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-buttons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-buttons"; sha256 = "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6"; name = "buffer-buttons"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/buffer-buttons"; + homepage = "https://melpa.org/#/buffer-buttons"; license = lib.licenses.free; }; }) {}; @@ -5093,13 +5261,13 @@ sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-flip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-flip"; sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098"; name = "buffer-flip"; }; packageRequires = [ key-chord ]; meta = { - homepage = "http://melpa.org/#/buffer-flip"; + homepage = "https://melpa.org/#/buffer-flip"; license = lib.licenses.free; }; }) {}; @@ -5114,13 +5282,13 @@ sha256 = "1yzga2zs9flbarsh704hh7k4l3w09g4li9a7r3fsvl4kll80x393"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-move"; sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg"; name = "buffer-move"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/buffer-move"; + homepage = "https://melpa.org/#/buffer-move"; license = lib.licenses.free; }; }) {}; @@ -5128,17 +5296,17 @@ pname = "buffer-stack"; version = "20101223.420"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/buffer-stack.el"; + url = "https://www.emacswiki.org/emacs/download/buffer-stack.el"; sha256 = "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-stack"; sha256 = "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn"; name = "buffer-stack"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/buffer-stack"; + homepage = "https://melpa.org/#/buffer-stack"; license = lib.licenses.free; }; }) {}; @@ -5153,13 +5321,13 @@ sha256 = "1mnf0dgr6g58k0jyia7985jsinrla04vm5sjl2iajwphbhadjk8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-utils"; sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2"; name = "buffer-utils"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/buffer-utils"; + homepage = "https://melpa.org/#/buffer-utils"; license = lib.licenses.free; }; }) {}; @@ -5174,13 +5342,13 @@ sha256 = "1plh77xzpbhgmjdagm5rhqx6nkhc0g39ir0b6s5yh003wmx6r1hh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bufshow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bufshow"; sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h"; name = "bufshow"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/bufshow"; + homepage = "https://melpa.org/#/bufshow"; license = lib.licenses.free; }; }) {}; @@ -5195,13 +5363,13 @@ sha256 = "0zr1raf0q5wi3vr66kglxcfxswlm8g2l501adm8c27clvqizpnrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bug-reference-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bug-reference-github"; sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6"; name = "bug-reference-github"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bug-reference-github"; + homepage = "https://melpa.org/#/bug-reference-github"; license = lib.licenses.free; }; }) {}; @@ -5216,13 +5384,13 @@ sha256 = "0gr4v6fmg0im17f6i3pw6h8l401n5l5lzxz0hgi8lrisvx73iqa5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bundler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bundler"; sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4"; name = "bundler"; }; packageRequires = [ cl-lib inf-ruby ]; meta = { - homepage = "http://melpa.org/#/bundler"; + homepage = "https://melpa.org/#/bundler"; license = lib.licenses.free; }; }) {}; @@ -5233,17 +5401,17 @@ src = fetchFromGitHub { owner = "EricCrosson"; repo = "bury-successful-compilation"; - rev = "0c05c006ab5d0a7262701d003aed5cf5fc9dd621"; - sha256 = "1bzilpjibyyj97z5j7zz89jx0kfqr842lrjlnq1qki8r5kj18p4j"; + rev = "565a6f9cad7f7d5ef161eb9c7f2305bae9971c02"; + sha256 = "0mirb3yvs4aq6n53lx690k06zllyzr29ms0888v5svjirxjazvh8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bury-successful-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bury-successful-compilation"; sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3"; name = "bury-successful-compilation"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bury-successful-compilation"; + homepage = "https://melpa.org/#/bury-successful-compilation"; license = lib.licenses.free; }; }) {}; @@ -5258,13 +5426,13 @@ sha256 = "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buster-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buster-mode"; sha256 = "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7"; name = "buster-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/buster-mode"; + homepage = "https://melpa.org/#/buster-mode"; license = lib.licenses.free; }; }) {}; @@ -5279,13 +5447,13 @@ sha256 = "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buster-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buster-snippets"; sha256 = "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x"; name = "buster-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/buster-snippets"; + homepage = "https://melpa.org/#/buster-snippets"; license = lib.licenses.free; }; }) {}; @@ -5300,13 +5468,13 @@ sha256 = "11z987frzswnsym8g3l0s9wwdly1zn5inl2l558m6kcvfy7g59cx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/busybee-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/busybee-theme"; sha256 = "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10"; name = "busybee-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/busybee-theme"; + homepage = "https://melpa.org/#/busybee-theme"; license = lib.licenses.free; }; }) {}; @@ -5321,34 +5489,34 @@ sha256 = "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/butler"; sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq"; name = "butler"; }; packageRequires = [ deferred emacs json ]; meta = { - homepage = "http://melpa.org/#/butler"; + homepage = "https://melpa.org/#/butler"; license = lib.licenses.free; }; }) {}; buttercup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buttercup"; - version = "20160217.1542"; + version = "20160410.658"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "emacs-buttercup"; - rev = "2aa840cb0e99251d299507859e98eb7341758fc9"; - sha256 = "0lskdb1bxgnpamxvg5c5kdqafp0k770zy3ic38945nb6bnd1bimv"; + rev = "06c9699d6a1af54c08a4a164b40b87ba4a873f31"; + sha256 = "06zpygv1dgb4bijv7ybgmc2wb2mclh3sszvsi7j7z9rf5hyd8hi2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buttercup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buttercup"; sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb"; name = "buttercup"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/buttercup"; + homepage = "https://melpa.org/#/buttercup"; license = lib.licenses.free; }; }) {}; @@ -5363,13 +5531,13 @@ sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/button-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/button-lock"; sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp"; name = "button-lock"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/button-lock"; + homepage = "https://melpa.org/#/button-lock"; license = lib.licenses.free; }; }) {}; @@ -5384,13 +5552,13 @@ sha256 = "040mcq2cwzbrf96f9mghb4314cd8xwp7ki2ix9fxpmbwiy323ld5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/c-c-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/c-c-combo"; sha256 = "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn"; name = "c-c-combo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/c-c-combo"; + homepage = "https://melpa.org/#/c-c-combo"; license = lib.licenses.free; }; }) {}; @@ -5405,13 +5573,13 @@ sha256 = "0mlm5f66541namqn04vx6csf14mxhsiknbm36yqdnp1lxb7knv7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/c-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/c-eldoc"; sha256 = "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm"; name = "c-eldoc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/c-eldoc"; + homepage = "https://melpa.org/#/c-eldoc"; license = lib.licenses.free; }; }) {}; @@ -5426,13 +5594,13 @@ sha256 = "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/c0-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/c0-mode"; sha256 = "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4"; name = "c0-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/c0-mode"; + homepage = "https://melpa.org/#/c0-mode"; license = lib.licenses.free; }; }) {}; @@ -5447,13 +5615,13 @@ sha256 = "1h395hvia7r76zlgr10qdr9q2159qyrs89znhkp2czikwm8kjiqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cabledolphin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cabledolphin"; sha256 = "04slrx0vkcm66q59158limn0cpxn18ghlqyx7z8nrn7frrc03z03"; name = "cabledolphin"; }; packageRequires = [ emacs seq ]; meta = { - homepage = "http://melpa.org/#/cabledolphin"; + homepage = "https://melpa.org/#/cabledolphin"; license = lib.licenses.free; }; }) {}; @@ -5468,13 +5636,13 @@ sha256 = "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cache"; sha256 = "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3"; name = "cache"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cache"; + homepage = "https://melpa.org/#/cache"; license = lib.licenses.free; }; }) {}; @@ -5489,13 +5657,13 @@ sha256 = "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cacoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cacoo"; sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z"; name = "cacoo"; }; packageRequires = [ concurrent ]; meta = { - homepage = "http://melpa.org/#/cacoo"; + homepage = "https://melpa.org/#/cacoo"; license = lib.licenses.free; }; }) {}; @@ -5510,13 +5678,13 @@ sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake"; sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr"; name = "cake"; }; packageRequires = [ anything cake-inflector historyf ]; meta = { - homepage = "http://melpa.org/#/cake"; + homepage = "https://melpa.org/#/cake"; license = lib.licenses.free; }; }) {}; @@ -5531,13 +5699,13 @@ sha256 = "0xq10jkbk3crdhbh4lab39xhfw6vvcqz3if5q3yy4gzhx7zp94i4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake-inflector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake-inflector"; sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf"; name = "cake-inflector"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/cake-inflector"; + homepage = "https://melpa.org/#/cake-inflector"; license = lib.licenses.free; }; }) {}; @@ -5552,13 +5720,13 @@ sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake2"; sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x"; name = "cake2"; }; packageRequires = [ anything cake-inflector dash f historyf ht json s ]; meta = { - homepage = "http://melpa.org/#/cake2"; + homepage = "https://melpa.org/#/cake2"; license = lib.licenses.free; }; }) {}; @@ -5573,34 +5741,34 @@ sha256 = "03hi0ggq81nm1kd0mcf8fwnya4axzd80vfdjdbhgpxbkvnxldzpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cal-china-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cal-china-x"; sha256 = "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka"; name = "cal-china-x"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/cal-china-x"; + homepage = "https://melpa.org/#/cal-china-x"; license = lib.licenses.free; }; }) {}; calfw = callPackage ({ fetchFromGitHub, fetchurl, google-maps, lib, melpaBuild }: melpaBuild { pname = "calfw"; - version = "20150923.2149"; + version = "20160302.2058"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-calfw"; - rev = "50e0e0261568f84f31fe7f87c9f863e21d30132f"; - sha256 = "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n"; + rev = "e03ae470788778e7714b73520014eadc03a88abd"; + sha256 = "0rhasr818qijd2pcgifi0j3q4fkbiw2ck1nivajk7m810p53bxbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/calfw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/calfw"; sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8"; name = "calfw"; }; packageRequires = [ google-maps ]; meta = { - homepage = "http://melpa.org/#/calfw"; + homepage = "https://melpa.org/#/calfw"; license = lib.licenses.free; }; }) {}; @@ -5615,13 +5783,13 @@ sha256 = "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/calfw-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/calfw-gcal"; sha256 = "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8"; name = "calfw-gcal"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/calfw-gcal"; + homepage = "https://melpa.org/#/calfw-gcal"; license = lib.licenses.free; }; }) {}; @@ -5636,34 +5804,34 @@ sha256 = "0n6y4z3qg04qnlsrjysf8ldxl2f2bk7n8crijydwabyy672qxd9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/calmer-forest-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/calmer-forest-theme"; sha256 = "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p"; name = "calmer-forest-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/calmer-forest-theme"; + homepage = "https://melpa.org/#/calmer-forest-theme"; license = lib.licenses.free; }; }) {}; camcorder = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "camcorder"; - version = "20151208.1012"; + version = "20160404.2334"; src = fetchFromGitHub { owner = "Malabarba"; repo = "camcorder.el"; - rev = "bfef46deae617825089fb06591e5c25c82a2d4be"; - sha256 = "1fxmk9ykvxkd0ldmldqnwdn5grzzzigla7zsw1yqqmlfwd48ggf8"; + rev = "c96b3392c99b9f83c968bffa330ec4356c41518e"; + sha256 = "0am8asrzjs3iwak9c86fxb4zwgx5smbb9ywp0zn4y7j37blygswj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/camcorder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/camcorder"; sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi"; name = "camcorder"; }; packageRequires = [ cl-lib emacs names ]; meta = { - homepage = "http://melpa.org/#/camcorder"; + homepage = "https://melpa.org/#/camcorder"; license = lib.licenses.free; }; }) {}; @@ -5676,13 +5844,13 @@ sha256 = "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caml"; sha256 = "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698"; name = "caml"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/caml"; + homepage = "https://melpa.org/#/caml"; license = lib.licenses.free; }; }) {}; @@ -5697,55 +5865,55 @@ sha256 = "08cp45snhyir5w8gyp6xws1q7c54pz06q099l0m3zmwn9277g68z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/capture"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/capture"; sha256 = "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2"; name = "capture"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/capture"; + homepage = "https://melpa.org/#/capture"; license = lib.licenses.free; }; }) {}; cargo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode }: melpaBuild { pname = "cargo"; - version = "20160126.1538"; + version = "20160426.309"; src = fetchFromGitHub { owner = "kwrooijen"; repo = "cargo.el"; - rev = "dafbecb43e540d6dcd5e410becaedcf6eaf61a5d"; - sha256 = "07szswvfzvyd9sx1r4x8hyyc3984k4qqj8m24ybnjgmiax57hgkm"; + rev = "8540ed61bc5c8ee4b4247ee6e7f4e6884376e97a"; + sha256 = "15arbbksq4y0h4ns8blygk512ngyxp1nfh6bq2nvhhymzg58pwpb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cargo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cargo"; sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx"; name = "cargo"; }; packageRequires = [ emacs rust-mode ]; meta = { - homepage = "http://melpa.org/#/cargo"; + homepage = "https://melpa.org/#/cargo"; license = lib.licenses.free; }; }) {}; caroline-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "caroline-theme"; - version = "20151030.1804"; + version = "20160318.20"; src = fetchFromGitHub { owner = "xjackk"; repo = "caroline-theme"; - rev = "742bf4ac4521ff9905294812919051cec768b1a0"; - sha256 = "14ijcb9qp1gv8ianqm7cdvwjkgpwdaw3lz34j29c3rmg5ir26bjb"; + rev = "222fd483db304509f9e422dc82883d808e023ceb"; + sha256 = "055w1spba0q9rqqg4rjds0iakr9d8xg66959xahxq8268mq5446n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caroline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caroline-theme"; sha256 = "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32"; name = "caroline-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/caroline-theme"; + homepage = "https://melpa.org/#/caroline-theme"; license = lib.licenses.free; }; }) {}; @@ -5756,17 +5924,17 @@ src = fetchFromGitHub { owner = "HKey"; repo = "caseformat"; - rev = "1cff5ee7a6938a0493a2b335628c7661c71e983d"; - sha256 = "1nibzay3nb1n7z36w55m6kjqsj5yqj89way81f647jgbjggr6bih"; + rev = "92a31f6a7cae0b4e2af106cd6f2b0abe6c2d8921"; + sha256 = "1cp9i69npvyn72fqv0w8q1hlkcawkhbah4jblc341ycxwxb48mkl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caseformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caseformat"; sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk"; name = "caseformat"; }; packageRequires = [ cl-lib dash emacs s ]; meta = { - homepage = "http://melpa.org/#/caseformat"; + homepage = "https://melpa.org/#/caseformat"; license = lib.licenses.free; }; }) {}; @@ -5777,17 +5945,38 @@ src = fetchFromGitHub { owner = "cask"; repo = "cask"; - rev = "acd19283ff2da1c37c30015bcd83b012b33cf3c5"; - sha256 = "0zky8d9kdrcfh4vh8v6wbzs80nixr1xnnyjgg1zdingyklrxl79y"; + rev = "de7814799a43640f814e8a04834e43cad8c7ba9c"; + sha256 = "0i57pn5vdqzpsg7gqn1jsbn8hvk4dm4jqjkyd85j4gcziwpxh5kj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask"; sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5"; name = "cask"; }; packageRequires = [ cl-lib dash epl f package-build s shut-up ]; meta = { - homepage = "http://melpa.org/#/cask"; + homepage = "https://melpa.org/#/cask"; + license = lib.licenses.free; + }; + }) {}; + cask-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "cask-mode"; + version = "20160410.949"; + src = fetchFromGitHub { + owner = "Wilfred"; + repo = "cask-mode"; + rev = "c97755267b7215f02df7b0c16b4210c04aee6566"; + sha256 = "162vvyycvv9pd93hsb8blbjqf22d40xinm5340b3vnsqgg33l4jl"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask-mode"; + sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6"; + name = "cask-mode"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/cask-mode"; license = lib.licenses.free; }; }) {}; @@ -5802,13 +5991,13 @@ sha256 = "1m40s9q00l06fz525m3zrvwd6s60lggdqls5k5njkn671aa3h71s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cask-package-toolset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask-package-toolset"; sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g"; name = "cask-package-toolset"; }; packageRequires = [ ansi cl-lib commander dash emacs f s shut-up ]; meta = { - homepage = "http://melpa.org/#/cask-package-toolset"; + homepage = "https://melpa.org/#/cask-package-toolset"; license = lib.licenses.free; }; }) {}; @@ -5823,13 +6012,13 @@ sha256 = "15sq5vrkhb7c5j6ny6wy4bkyl5pggch4l7zw46an29rzni3pffr3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caskxy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caskxy"; sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s"; name = "caskxy"; }; packageRequires = [ log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/caskxy"; + homepage = "https://melpa.org/#/caskxy"; license = lib.licenses.free; }; }) {}; @@ -5844,13 +6033,13 @@ sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cbm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cbm"; sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn"; name = "cbm"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/cbm"; + homepage = "https://melpa.org/#/cbm"; license = lib.licenses.free; }; }) {}; @@ -5861,17 +6050,17 @@ src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; - rev = "4cb5da1418f447423cb81ca99539f77a6067ad77"; - sha256 = "145n50vspxaslvhf3ahlp435h5slz24csa2h62zly18xprw1ai1h"; + rev = "444991051df5d8bd2babd4249d2311dc39890e37"; + sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ccc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ccc"; sha256 = "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq"; name = "ccc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ccc"; + homepage = "https://melpa.org/#/ccc"; license = lib.licenses.free; }; }) {}; @@ -5886,13 +6075,13 @@ sha256 = "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cd-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cd-compile"; sha256 = "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv"; name = "cd-compile"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cd-compile"; + homepage = "https://melpa.org/#/cd-compile"; license = lib.licenses.free; }; }) {}; @@ -5903,17 +6092,17 @@ src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; - rev = "4cb5da1418f447423cb81ca99539f77a6067ad77"; - sha256 = "145n50vspxaslvhf3ahlp435h5slz24csa2h62zly18xprw1ai1h"; + rev = "444991051df5d8bd2babd4249d2311dc39890e37"; + sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cdb"; sha256 = "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf"; name = "cdb"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cdb"; + homepage = "https://melpa.org/#/cdb"; license = lib.licenses.free; }; }) {}; @@ -5928,13 +6117,13 @@ sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cdlatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cdlatex"; sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64"; name = "cdlatex"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cdlatex"; + homepage = "https://melpa.org/#/cdlatex"; license = lib.licenses.free; }; }) {}; @@ -5949,13 +6138,13 @@ sha256 = "0aspci0zg8waa3l234l0f8fjfzm67z2gydfdwwpxksz49sm2s1jk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cdnjs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cdnjs"; sha256 = "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7"; name = "cdnjs"; }; packageRequires = [ cl-lib dash deferred f pkg-info ]; meta = { - homepage = "http://melpa.org/#/cdnjs"; + homepage = "https://melpa.org/#/cdnjs"; license = lib.licenses.free; }; }) {}; @@ -5970,13 +6159,13 @@ sha256 = "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cedit"; sha256 = "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m"; name = "cedit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cedit"; + homepage = "https://melpa.org/#/cedit"; license = lib.licenses.free; }; }) {}; @@ -5991,13 +6180,13 @@ sha256 = "0974bxy85rcxia6dkfryas2g46nanjdf8fv90adbc7kyj07xsf7c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/celery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/celery"; sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h"; name = "celery"; }; packageRequires = [ dash-functional deferred emacs s ]; meta = { - homepage = "http://melpa.org/#/celery"; + homepage = "https://melpa.org/#/celery"; license = lib.licenses.free; }; }) {}; @@ -6006,17 +6195,17 @@ pname = "centered-cursor-mode"; version = "20151001.834"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/centered-cursor-mode.el"; + url = "https://www.emacswiki.org/emacs/download/centered-cursor-mode.el"; sha256 = "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/centered-cursor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/centered-cursor-mode"; sha256 = "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl"; name = "centered-cursor-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/centered-cursor-mode"; + homepage = "https://melpa.org/#/centered-cursor-mode"; license = lib.licenses.free; }; }) {}; @@ -6025,19 +6214,19 @@ pname = "centered-window-mode"; version = "20160210.447"; src = fetchFromGitHub { - owner = "ikame"; + owner = "anler"; repo = "centered-window-mode"; rev = "ff2350f5258249bbc9e07ac60c76028f4ae07190"; sha256 = "1i5ipll7jlrxqb0kcwq0rlrpfaxsyp663bwjdnhj84c50wlv052f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/centered-window-mode"; - sha256 = "0f5qwv4f8gn5nxsqn57bbb3y0w5whjvhv3pls88d5n68lkd1k4si"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/centered-window-mode"; + sha256 = "08pmk3rqgbk5fzhxx1kd8rp2k5r5vd2jc9k2phrqg75pf89h3zf4"; name = "centered-window-mode"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/centered-window-mode"; + homepage = "https://melpa.org/#/centered-window-mode"; license = lib.licenses.free; }; }) {}; @@ -6052,13 +6241,13 @@ sha256 = "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/centimacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/centimacro"; sha256 = "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6"; name = "centimacro"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/centimacro"; + homepage = "https://melpa.org/#/centimacro"; license = lib.licenses.free; }; }) {}; @@ -6073,13 +6262,13 @@ sha256 = "17jg5d5afh9zpnjx8wkys8bjllxq99j0yhz8j3fvkskisvhkz1im"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cerbere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cerbere"; sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06"; name = "cerbere"; }; packageRequires = [ f pkg-info s ]; meta = { - homepage = "http://melpa.org/#/cerbere"; + homepage = "https://melpa.org/#/cerbere"; license = lib.licenses.free; }; }) {}; @@ -6090,17 +6279,17 @@ src = fetchFromGitHub { owner = "cfengine"; repo = "core"; - rev = "5f96d077e8eec87b0e718ee200d29ea50f404936"; - sha256 = "1yl5j5zshgwidvvpdqqjnzndvpw11b30q340db57ywh6vlgkgl88"; + rev = "e2d729f9861671b3e143e27bc90b88593a4e7556"; + sha256 = "10yrq2f1qs72b1qmlyhl32hd4f36r9nhfih5bwjkrf6w481yq9q3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cfengine-code-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cfengine-code-style"; sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a"; name = "cfengine-code-style"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cfengine-code-style"; + homepage = "https://melpa.org/#/cfengine-code-style"; license = lib.licenses.free; }; }) {}; @@ -6115,32 +6304,32 @@ sha256 = "019vqjmq6hb2f5lddqy0ya5q0fd47xix29cashlchz0r034rc32r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cff"; sha256 = "04b2ck1jkhsrka6dbyn6rpsmmc2bn13kpyhzibd781hj73d93jgc"; name = "cff"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/cff"; + homepage = "https://melpa.org/#/cff"; license = lib.licenses.free; }; }) {}; cg = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cg"; - version = "20150819.604"; + version = "20160414.909"; src = fetchsvn { url = "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs"; - rev = "11350"; - sha256 = "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1"; + rev = "11487"; + sha256 = "1ninfjra12s9agrzb115wrcphkb38flacnjgw1czw6sdqjjxcnp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cg"; sha256 = "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh"; name = "cg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cg"; + homepage = "https://melpa.org/#/cg"; license = lib.licenses.free; }; }) {}; @@ -6155,13 +6344,13 @@ sha256 = "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/change-inner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/change-inner"; sha256 = "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj"; name = "change-inner"; }; packageRequires = [ expand-region ]; meta = { - homepage = "http://melpa.org/#/change-inner"; + homepage = "https://melpa.org/#/change-inner"; license = lib.licenses.free; }; }) {}; @@ -6176,13 +6365,13 @@ sha256 = "0d2zac02zqf3al4x412cnz3hr57j3xpc34i30z1q6g429v4krkam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chapel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chapel-mode"; sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz"; name = "chapel-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/chapel-mode"; + homepage = "https://melpa.org/#/chapel-mode"; license = lib.licenses.free; }; }) {}; @@ -6197,53 +6386,53 @@ sha256 = "0jq5xicf0y7z1v68cgsg9vniw6pa793izz350a4wgdq8f5fcm24f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/char-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/char-menu"; sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l"; name = "char-menu"; }; packageRequires = [ avy-menu emacs ]; meta = { - homepage = "http://melpa.org/#/char-menu"; + homepage = "https://melpa.org/#/char-menu"; license = lib.licenses.free; }; }) {}; character-fold-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "character-fold-plus"; - version = "20151231.1429"; + version = "20160227.1703"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/character-fold+.el"; - sha256 = "00b0jv58wkvhahfnqwbfawz1z3nbm6d8s8cq0nn631w4m509kgq0"; + url = "https://www.emacswiki.org/emacs/download/character-fold+.el"; + sha256 = "0xvgxjyl6s6hds7m9brzly6vxj06m47hxkw5h2riscq6l4nwc9vz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/character-fold+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/character-fold+"; sha256 = "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3"; name = "character-fold-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/character-fold+"; + homepage = "https://melpa.org/#/character-fold+"; license = lib.licenses.free; }; }) {}; charmap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "charmap"; - version = "20160124.722"; + version = "20160309.346"; src = fetchFromGitHub { owner = "lateau"; repo = "charmap"; - rev = "3302ee8a94a04fa9b14dbe7163b0d62f31de69a2"; - sha256 = "0zf9i7ajjm639hw34iqwjvni6gn0smzi79582d5l36jvr0z4gnkq"; + rev = "e0477f08c56c93c420e01452bba64b0da732f309"; + sha256 = "05k19q7iihvhi0gflmkpsg5q3ydkdlvf0xh7kjk4lx9yvi0am7m2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/charmap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/charmap"; sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84"; name = "charmap"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/charmap"; + homepage = "https://melpa.org/#/charmap"; license = lib.licenses.free; }; }) {}; @@ -6258,13 +6447,13 @@ sha256 = "1r2s3fszblk5wa6v3hnbzsri550gi5qsmp2w1spvmf1726n900cb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chatwork"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chatwork"; sha256 = "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p"; name = "chatwork"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/chatwork"; + homepage = "https://melpa.org/#/chatwork"; license = lib.licenses.free; }; }) {}; @@ -6279,13 +6468,13 @@ sha256 = "15kam5hf2f4nwp29nvxqm5bs8nyhqf5m44fdb21qljgbmjdlh38y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cheatsheet"; sha256 = "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq"; name = "cheatsheet"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/cheatsheet"; + homepage = "https://melpa.org/#/cheatsheet"; license = lib.licenses.free; }; }) {}; @@ -6300,34 +6489,55 @@ sha256 = "0660ix17ksxy5a5v8yqy7adr9d4bs6p1mnkc6lpyw96k4pn62h45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/checkbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/checkbox"; sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa"; name = "checkbox"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/checkbox"; + homepage = "https://melpa.org/#/checkbox"; + license = lib.licenses.free; + }; + }) {}; + chee = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: + melpaBuild { + pname = "chee"; + version = "20160411.811"; + src = fetchFromGitHub { + owner = "eikek"; + repo = "chee"; + rev = "29e598d2742d11f4c27a274a09e063ec7aa78f52"; + sha256 = "1p709rds9b6pdv4nhl0i2gggp093sbk5hjbfjl0yp7b896ss9553"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chee"; + sha256 = "1njldlp9bnwq7izmdlz5a97kfgxxnycv43djrvx4b01j4v2yz4zv"; + name = "chee"; + }; + packageRequires = [ dash s ]; + meta = { + homepage = "https://melpa.org/#/chee"; license = lib.licenses.free; }; }) {}; cheerilee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xelb }: melpaBuild { pname = "cheerilee"; - version = "20160219.1743"; + version = "20160313.1335"; src = fetchFromGitHub { owner = "Vannil"; repo = "cheerilee.el"; - rev = "6c1a31a03a29871df1cef43ca3a3529b8db5142e"; - sha256 = "08jna2rpads54fp8mi47np046ap3yzgzqp0v632n8r8mcrdg02rn"; + rev = "41bd81b5b0bb657241ceda5be6af5e07254d7376"; + sha256 = "1jdlp5cnsiza55vx4kxacqgk7yqg9fvd9swhwdxkczadb2d5l9p1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cheerilee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cheerilee"; sha256 = "15igjlnq35cg9nslyqa63i1inqipx3y8g7zg4r26m69k25simqrv"; name = "cheerilee"; }; packageRequires = [ xelb ]; meta = { - homepage = "http://melpa.org/#/cheerilee"; + homepage = "https://melpa.org/#/cheerilee"; license = lib.licenses.free; }; }) {}; @@ -6342,13 +6552,13 @@ sha256 = "1mnskri5r1lyzzcag60x7amn00613jyl7by7hd4sqm2a7zd4r5aa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chef-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chef-mode"; sha256 = "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr"; name = "chef-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/chef-mode"; + homepage = "https://melpa.org/#/chef-mode"; license = lib.licenses.free; }; }) {}; @@ -6363,13 +6573,13 @@ sha256 = "0m97xr6lddy2jdmd4bl4kbp2568p4n110yfa9k7fqc20ihq8jkyd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cherry-blossom-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cherry-blossom-theme"; sha256 = "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w"; name = "cherry-blossom-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/cherry-blossom-theme"; + homepage = "https://melpa.org/#/cherry-blossom-theme"; license = lib.licenses.free; }; }) {}; @@ -6384,13 +6594,13 @@ sha256 = "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chicken-scheme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chicken-scheme"; sha256 = "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr"; name = "chicken-scheme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/chicken-scheme"; + homepage = "https://melpa.org/#/chicken-scheme"; license = lib.licenses.free; }; }) {}; @@ -6401,59 +6611,59 @@ src = fetchFromGitHub { owner = "gucong"; repo = "emacs-chinese-conv"; - rev = "07417e2e01e77d6f0eac69d54f7dcb41729e39c8"; - sha256 = "1b1zarbjiz5w1aw49a153d8s2hk0jgissl39s9smknmay0hynwyk"; + rev = "2e5ba28b24c32d8d1da81cf9877c79abbf2e9bbb"; + sha256 = "1vfyb8gfrvfrvaaw0p7c6xji2kz6cqm6km2cmjixw0qjikxxlkv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-conv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-conv"; sha256 = "1lqpq7pg0nqqqj29f8is6c724vl75wscmm1v08j480pfks3l8cnr"; name = "chinese-conv"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/chinese-conv"; + homepage = "https://melpa.org/#/chinese-conv"; license = lib.licenses.free; }; }) {}; chinese-fonts-setup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-fonts-setup"; - version = "20160102.553"; + version = "20160419.2359"; src = fetchFromGitHub { owner = "tumashu"; repo = "chinese-fonts-setup"; - rev = "4deafe82b792b28fb640c2bd3388ece8852cad73"; - sha256 = "08ln66kx73019klzw0rsvlz3cs4ch8wxjfljmkyswjjd179h882c"; + rev = "eeb0bb29539f7f65f886a7aefafb75acd4492f33"; + sha256 = "0j0a1aqpayyxlay0mfj5gv1h27pqa3lj4z4x790y5lkgnlmwzsc0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-fonts-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-fonts-setup"; sha256 = "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5"; name = "chinese-fonts-setup"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/chinese-fonts-setup"; + homepage = "https://melpa.org/#/chinese-fonts-setup"; license = lib.licenses.free; }; }) {}; chinese-pyim = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }: melpaBuild { pname = "chinese-pyim"; - version = "20160214.2358"; + version = "20160425.427"; src = fetchFromGitHub { owner = "tumashu"; repo = "chinese-pyim"; - rev = "213222ce67d1a30ef53d22b632c0a35cf44b5d49"; - sha256 = "0k7na7wlpq5fagr10f8ryn2vwf0d1ymakhyfal4gbrhrbwz595zk"; + rev = "3ace78589370536f526d944437dbaa5c7f101587"; + sha256 = "1s9gcfxsbbwdck42gc9syscnrc8mjsx159pgfxcw7bpcbhknclkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-pyim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-pyim"; sha256 = "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l"; name = "chinese-pyim"; }; packageRequires = [ cl-lib popup pos-tip ]; meta = { - homepage = "http://melpa.org/#/chinese-pyim"; + homepage = "https://melpa.org/#/chinese-pyim"; license = lib.licenses.free; }; }) {}; @@ -6468,13 +6678,13 @@ sha256 = "06k13wk659qw40aczq3i9gj0nyz6vb9z1nwsz7c1bgjbl2lh6hcv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-remote-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-remote-input"; sha256 = "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag"; name = "chinese-remote-input"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/chinese-remote-input"; + homepage = "https://melpa.org/#/chinese-remote-input"; license = lib.licenses.free; }; }) {}; @@ -6489,13 +6699,13 @@ sha256 = "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-wbim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-wbim"; sha256 = "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb"; name = "chinese-wbim"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/chinese-wbim"; + homepage = "https://melpa.org/#/chinese-wbim"; license = lib.licenses.free; }; }) {}; @@ -6510,13 +6720,13 @@ sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-word-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-word-at-point"; sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4"; name = "chinese-word-at-point"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/chinese-word-at-point"; + homepage = "https://melpa.org/#/chinese-word-at-point"; license = lib.licenses.free; }; }) {}; @@ -6531,13 +6741,13 @@ sha256 = "14yzmyzkf846yjrwnqrbzmvyhfav39qa5fr8jnb7lyz8rm7y9pnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-yasdcv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-yasdcv"; sha256 = "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm"; name = "chinese-yasdcv"; }; packageRequires = [ chinese-pyim cl-lib ]; meta = { - homepage = "http://melpa.org/#/chinese-yasdcv"; + homepage = "https://melpa.org/#/chinese-yasdcv"; license = lib.licenses.free; }; }) {}; @@ -6545,17 +6755,17 @@ pname = "chm-view"; version = "20110616.1219"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/chm-view.el"; + url = "https://www.emacswiki.org/emacs/download/chm-view.el"; sha256 = "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chm-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chm-view"; sha256 = "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz"; name = "chm-view"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/chm-view"; + homepage = "https://melpa.org/#/chm-view"; license = lib.licenses.free; }; }) {}; @@ -6570,13 +6780,13 @@ sha256 = "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chronos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chronos"; sha256 = "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d"; name = "chronos"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/chronos"; + homepage = "https://melpa.org/#/chronos"; license = lib.licenses.free; }; }) {}; @@ -6591,34 +6801,34 @@ sha256 = "0gx0bd7j71rlniq64vw8k59yzl070mdia05ry18br8kpsbk3bhrl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chruby"; sha256 = "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk"; name = "chruby"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/chruby"; + homepage = "https://melpa.org/#/chruby"; license = lib.licenses.free; }; }) {}; cider = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, queue, seq, spinner }: melpaBuild { pname = "cider"; - version = "20160218.447"; + version = "20160426.28"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "cider"; - rev = "212023a86fbb76f37202a8b62acacc98edddceaf"; - sha256 = "137h2s1nl10h60j8papm6rairs1yxln3ihbfvwyh9xf27mnndmzg"; + rev = "8068a65138e0f0851f58a5f78a5409d45f3dcc94"; + sha256 = "1zm12c5qsmlhmhjhv4fmv6h0l7d3av53gl6kjj1qnwkhgsym2548"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider"; sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx"; name = "cider"; }; packageRequires = [ clojure-mode emacs pkg-info queue seq spinner ]; meta = { - homepage = "http://melpa.org/#/cider"; + homepage = "https://melpa.org/#/cider"; license = lib.licenses.free; }; }) {}; @@ -6633,34 +6843,34 @@ sha256 = "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider-decompile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider-decompile"; sha256 = "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4"; name = "cider-decompile"; }; packageRequires = [ cider javap-mode ]; meta = { - homepage = "http://melpa.org/#/cider-decompile"; + homepage = "https://melpa.org/#/cider-decompile"; license = lib.licenses.free; }; }) {}; cider-eval-sexp-fu = callPackage ({ emacs, eval-sexp-fu, fetchFromGitHub, fetchurl, highlight, lib, melpaBuild }: melpaBuild { pname = "cider-eval-sexp-fu"; - version = "20150320.2215"; + version = "20160412.128"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "cider-eval-sexp-fu"; - rev = "7c54327e6ff8914c7dbc9f8de289e1b255d01fbc"; - sha256 = "1gpklkrw6iishfb3yilnqysh6zij67l1sl3ixq1bi3f6r237v1pg"; + rev = "63b849b8f996032f662364c451c8e950ce94c8d9"; + sha256 = "0g8yzfpaz1glxd0dxrd19bvk469pdjkr4b11xifcvamxa2slryij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider-eval-sexp-fu"; sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq"; name = "cider-eval-sexp-fu"; }; packageRequires = [ emacs eval-sexp-fu highlight ]; meta = { - homepage = "http://melpa.org/#/cider-eval-sexp-fu"; + homepage = "https://melpa.org/#/cider-eval-sexp-fu"; license = lib.licenses.free; }; }) {}; @@ -6675,34 +6885,34 @@ sha256 = "0lgq4p7rs4prqfqd83v1l36xxacrd65jsfzbp7q62b2pjqikpgk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider-profile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider-profile"; sha256 = "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs"; name = "cider-profile"; }; packageRequires = [ cider ]; meta = { - homepage = "http://melpa.org/#/cider-profile"; + homepage = "https://melpa.org/#/cider-profile"; license = lib.licenses.free; }; }) {}; - cider-spy = callPackage ({ cider, cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: + cider-spy = callPackage ({ cider, cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, noflet }: melpaBuild { pname = "cider-spy"; - version = "20160219.401"; + version = "20160313.940"; src = fetchFromGitHub { owner = "jonpither"; repo = "cider-spy"; - rev = "db4372880e65b1ab1cfe61f0e1b960a8c954c8d0"; - sha256 = "1jk180l1n3w2k32v9mw7iwr9q7xs3cc65420g1jlks5m7yzb5z55"; + rev = "0224608d240e9900e588b6df049c2a87c24fc936"; + sha256 = "1x96f5wc916dcwb75a34b6x1mas20gdgy34c7rg59n91ydn1mfaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider-spy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider-spy"; sha256 = "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh"; name = "cider-spy"; }; - packageRequires = [ cider cl-lib dash ]; + packageRequires = [ cider cl-lib dash emacs noflet ]; meta = { - homepage = "http://melpa.org/#/cider-spy"; + homepage = "https://melpa.org/#/cider-spy"; license = lib.licenses.free; }; }) {}; @@ -6717,13 +6927,13 @@ sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cil-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cil-mode"; sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y"; name = "cil-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cil-mode"; + homepage = "https://melpa.org/#/cil-mode"; license = lib.licenses.free; }; }) {}; @@ -6738,34 +6948,55 @@ sha256 = "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cinspect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cinspect"; sha256 = "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj"; name = "cinspect"; }; packageRequires = [ cl-lib deferred emacs python-environment ]; meta = { - homepage = "http://melpa.org/#/cinspect"; + homepage = "https://melpa.org/#/cinspect"; license = lib.licenses.free; }; }) {}; circe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "circe"; - version = "20160207.435"; + version = "20160422.1336"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "ca3e957f41e47afa05f73962c1ad72f401666384"; - sha256 = "0gwkm8c9g501g80rvqlzmn24q4ylkb94bklsf173yiinqmz1jhkc"; + rev = "fed52c2b4b49f75aec3e3238ceacf44ef0c75b5c"; + sha256 = "1wh3kwya2hpmaaj0c18g2las7jq0vkkik4n0q6whpch3r7ak6k8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/circe"; sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07"; name = "circe"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/circe"; + homepage = "https://melpa.org/#/circe"; + license = lib.licenses.free; + }; + }) {}; + cl-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "cl-format"; + version = "20160412.1945"; + src = fetchFromGitHub { + owner = "alvinfrancis"; + repo = "cl-format"; + rev = "4380cb8009c47cc6d9098b383082b93b1aefa460"; + sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cl-format"; + sha256 = "1259ykj6z6m6gaqhkmj5f3q9vyk7idpvlvlma5likpknxj5f444v"; + name = "cl-format"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/cl-format"; license = lib.licenses.free; }; }) {}; @@ -6780,13 +7011,13 @@ sha256 = "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cl-lib-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cl-lib-highlight"; sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8"; name = "cl-lib-highlight"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/cl-lib-highlight"; + homepage = "https://melpa.org/#/cl-lib-highlight"; license = lib.licenses.free; }; }) {}; @@ -6796,17 +7027,17 @@ version = "20151116.638"; src = fetchsvn { url = "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format"; - rev = "261504"; - sha256 = "180s33f8ngcc432x7639vxwchgvd5nwy4irby8ldzckdf5a4gd4h"; + rev = "267566"; + sha256 = "1miz9ycxk0vvvnfi0hn0jl3sipvsyibc7j4cf59l4drz34zi8y5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clang-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clang-format"; sha256 = "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah"; name = "clang-format"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/clang-format"; + homepage = "https://melpa.org/#/clang-format"; license = lib.licenses.free; }; }) {}; @@ -6821,34 +7052,55 @@ sha256 = "1h6k6kzim1zb87y1kzpqjzk3ip9bmfxyg54kdh2sfp4xy0g5h3p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clean-aindent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clean-aindent-mode"; sha256 = "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4"; name = "clean-aindent-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/clean-aindent-mode"; + homepage = "https://melpa.org/#/clean-aindent-mode"; license = lib.licenses.free; }; }) {}; clean-buffers = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clean-buffers"; - version = "20151226.922"; + version = "20160426.718"; src = fetchFromGitHub { owner = "lujun9972"; repo = "clean-buffers"; - rev = "f9fdc31746e0b31661af53b63f68d436d0c6bec4"; - sha256 = "03dbxg51zs4wbfwjv1qxlm5w06j89mvniisnyyahjkvpiqrp96yd"; + rev = "fa1abbd49ee4c2b126cd7e2a7520633b34376db6"; + sha256 = "1gkxmsjabnr9g36srxihs1d5n7p8ckqcmzcgpgsbp6s1990gzcig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clean-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clean-buffers"; sha256 = "025sxrqxm24yg1wpfncrjw1nm91h0h7jy2xd5g20xqlinqqvdihj"; name = "clean-buffers"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/clean-buffers"; + homepage = "https://melpa.org/#/clean-buffers"; + license = lib.licenses.free; + }; + }) {}; + clear-text = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "clear-text"; + version = "20160406.1543"; + src = fetchFromGitHub { + owner = "xuchunyang"; + repo = "clear-text.el"; + rev = "b50669b6077d6948f72cb3c649281d206e0c2f2b"; + sha256 = "0y5z2pfhzpv67w2lnw1q06mflww90sfcilj89kqx2jhhrnrnn2ka"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clear-text"; + sha256 = "1cx2lbcbhd024pq9njan7xrlvj3k4c3wdsvgbz5qyna0k06ix8dv"; + name = "clear-text"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/clear-text"; license = lib.licenses.free; }; }) {}; @@ -6863,34 +7115,34 @@ sha256 = "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clevercss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clevercss"; sha256 = "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0"; name = "clevercss"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/clevercss"; + homepage = "https://melpa.org/#/clevercss"; license = lib.licenses.free; }; }) {}; click-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "click-mode"; - version = "20160219.2013"; + version = "20160331.1648"; src = fetchFromGitHub { owner = "bmalehorn"; repo = "click-mode"; - rev = "4e39ef28e65124671f53fb5eaef8c7b87c4deab8"; - sha256 = "1n8114h0azjyavq4bzny2nasl4wsz8k7li002gqjvi0snw16yypn"; + rev = "10b129740907155fd8290f24efe0f374358a02f3"; + sha256 = "0hbdk1xdh753g59dgyqjj6wgjkf3crsd6pzaq7p5ifbfhrph0qjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/click-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/click-mode"; sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r"; name = "click-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/click-mode"; + homepage = "https://melpa.org/#/click-mode"; license = lib.licenses.free; }; }) {}; @@ -6905,13 +7157,13 @@ sha256 = "07q8naxhag2q0m5cb9c2n5js6j5qdrjyyiqbcpxmq598b8mw8kzd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cliphist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cliphist"; sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29"; name = "cliphist"; }; packageRequires = [ popup ]; meta = { - homepage = "http://melpa.org/#/cliphist"; + homepage = "https://melpa.org/#/cliphist"; license = lib.licenses.free; }; }) {}; @@ -6926,13 +7178,13 @@ sha256 = "07a55q97j2vsqpha0akri2kq90v1l97mc1mgr97pq39gc1bbc5d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clipmon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clipmon"; sha256 = "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i"; name = "clipmon"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/clipmon"; + homepage = "https://melpa.org/#/clipmon"; license = lib.licenses.free; }; }) {}; @@ -6947,13 +7199,13 @@ sha256 = "0msmigzip7hpjxwkz0khhlc2lj9wgb2919i4k0kv8ppi9j2f9hjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clippy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clippy"; sha256 = "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg"; name = "clippy"; }; packageRequires = [ pos-tip ]; meta = { - homepage = "http://melpa.org/#/clippy"; + homepage = "https://melpa.org/#/clippy"; license = lib.licenses.free; }; }) {}; @@ -6968,28 +7220,28 @@ sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clips-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clips-mode"; sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf"; name = "clips-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/clips-mode"; + homepage = "https://melpa.org/#/clips-mode"; license = lib.licenses.free; }; }) {}; clj-refactor = callPackage ({ cider, dash, edn, emacs, fetchFromGitHub, fetchurl, hydra, inflections, lib, melpaBuild, multiple-cursors, paredit, s, yasnippet }: melpaBuild { pname = "clj-refactor"; - version = "20160221.914"; + version = "20160425.311"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clj-refactor.el"; - rev = "39e4cea6de61be0a062875c4de67245212c5ff66"; - sha256 = "1ra00h3zksgifyfy7h5pijzfcqx1y7fsdq6dz3jylfh6ikria9gy"; + rev = "f1fde528055f6877a5df9a40192dc401096826e6"; + sha256 = "0i8sxr27w6l6jacmshmmf9lvp1da6hxx641xbdd3hj2vv12p2kwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clj-refactor"; sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz"; name = "clj-refactor"; }; @@ -7006,7 +7258,7 @@ yasnippet ]; meta = { - homepage = "http://melpa.org/#/clj-refactor"; + homepage = "https://melpa.org/#/clj-refactor"; license = lib.licenses.free; }; }) {}; @@ -7021,55 +7273,55 @@ sha256 = "0ydv2prnw1j3m5nk23fqn4iv202kjswr8z0ip4zacdm8bl0q25ln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cljr-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cljr-helm"; sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc"; name = "cljr-helm"; }; packageRequires = [ clj-refactor helm ]; meta = { - homepage = "http://melpa.org/#/cljr-helm"; + homepage = "https://melpa.org/#/cljr-helm"; license = lib.licenses.free; }; }) {}; cljsbuild-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cljsbuild-mode"; - version = "20140619.326"; + version = "20160402.1200"; src = fetchFromGitHub { owner = "kototama"; repo = "cljsbuild-mode"; - rev = "7edfc199b5daf972f6b2110d13a96e0bd974cd65"; - sha256 = "1cdim8fancrsrm9avzv4m2v384i7n4632nibyfnxkhq03bj00j1z"; + rev = "fa2315660cb3ce944b5e16c679dcf5afd6a97f4c"; + sha256 = "0flnfivz6w3pkham3g08m3xzy3jg1rzvxfa00vkr7ll8iyv4ypqc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cljsbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cljsbuild-mode"; sha256 = "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214"; name = "cljsbuild-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cljsbuild-mode"; + homepage = "https://melpa.org/#/cljsbuild-mode"; license = lib.licenses.free; }; }) {}; clmemo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clmemo"; - version = "20150220.747"; + version = "20160326.1123"; src = fetchFromGitHub { owner = "ataka"; repo = "clmemo"; - rev = "553d62f80b6c3e0f281e09d377d490795bdcaabf"; - sha256 = "0za8j7pwcmvjm2ls62z9f8sjryzzsmms4slikzixc0rxyiqnqyd1"; + rev = "846a81b984d71edf8278a4d9f9b886e44d5b8365"; + sha256 = "152qf7i5bf7xvr35gyawl8abkh7v5dsz957zxslrbbnc8bb1k6bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clmemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clmemo"; sha256 = "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs"; name = "clmemo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/clmemo"; + homepage = "https://melpa.org/#/clmemo"; license = lib.licenses.free; }; }) {}; @@ -7084,13 +7336,13 @@ sha256 = "1rflc00yrbb7xzfh8c54ajf4qnhsp3mq07gkr257gjyrwsdw762v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cloc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cloc"; sha256 = "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a"; name = "cloc"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/cloc"; + homepage = "https://melpa.org/#/cloc"; license = lib.licenses.free; }; }) {}; @@ -7105,13 +7357,13 @@ sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clocker"; sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k"; name = "clocker"; }; packageRequires = [ dash projectile ]; meta = { - homepage = "http://melpa.org/#/clocker"; + homepage = "https://melpa.org/#/clocker"; license = lib.licenses.free; }; }) {}; @@ -7126,76 +7378,76 @@ sha256 = "1r189c0xm6vh05k0y715i5ldj1pxzvwkxqbq0n85m489mjnf2wv6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojars"; sha256 = "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1"; name = "clojars"; }; packageRequires = [ cl-lib request ]; meta = { - homepage = "http://melpa.org/#/clojars"; + homepage = "https://melpa.org/#/clojars"; license = lib.licenses.free; }; }) {}; clojure-cheatsheet = callPackage ({ cider, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "clojure-cheatsheet"; - version = "20151112.717"; + version = "20160320.515"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-cheatsheet"; - rev = "7f1ee3facf131609ac1b987439b9b14daa4d7402"; - sha256 = "1ljb0g4yvrqgjqgmz8qz0c0swbx1m6gldmcdqnmxd72bs3w9p0k8"; + rev = "d277b4eea6bb91886f10f57a46d1c7e950a547b0"; + sha256 = "0943fh8309mvg73paf97i2mfkrnl04x11gy8iz73c9622bkkmpcb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-cheatsheet"; sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv"; name = "clojure-cheatsheet"; }; packageRequires = [ cider helm ]; meta = { - homepage = "http://melpa.org/#/clojure-cheatsheet"; + homepage = "https://melpa.org/#/clojure-cheatsheet"; license = lib.licenses.free; }; }) {}; clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clojure-mode"; - version = "20160213.1637"; + version = "20160414.745"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-mode"; - rev = "affd573660b2112e5b4629e6634fd8a5abcbdaa4"; - sha256 = "0pn1a1w6x5678ssy0p5f5bc4d5qsgnr2d1qyrd7pxz47w78c3hlz"; + rev = "1f82425e3f87394b27432b4dfb6f4f504232bf84"; + sha256 = "0y7fgbcgnpdrclkbqrrdlydv55m37czmhfn4s1hmb203kb5a1mlr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-mode"; sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np"; name = "clojure-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/clojure-mode"; + homepage = "https://melpa.org/#/clojure-mode"; license = lib.licenses.free; }; }) {}; clojure-mode-extra-font-locking = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clojure-mode-extra-font-locking"; - version = "20160116.521"; + version = "20160307.614"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-mode"; - rev = "affd573660b2112e5b4629e6634fd8a5abcbdaa4"; - sha256 = "0pn1a1w6x5678ssy0p5f5bc4d5qsgnr2d1qyrd7pxz47w78c3hlz"; + rev = "1f82425e3f87394b27432b4dfb6f4f504232bf84"; + sha256 = "0y7fgbcgnpdrclkbqrrdlydv55m37czmhfn4s1hmb203kb5a1mlr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-mode-extra-font-locking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-mode-extra-font-locking"; sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n"; name = "clojure-mode-extra-font-locking"; }; packageRequires = [ clojure-mode ]; meta = { - homepage = "http://melpa.org/#/clojure-mode-extra-font-locking"; + homepage = "https://melpa.org/#/clojure-mode-extra-font-locking"; license = lib.licenses.free; }; }) {}; @@ -7210,34 +7462,76 @@ sha256 = "1vgahik2q2sn6vqm9wg5b9jc74mkbc1md8pl69apz4cg397kjkzr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-quick-repls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-quick-repls"; sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0"; name = "clojure-quick-repls"; }; packageRequires = [ cider dash ]; meta = { - homepage = "http://melpa.org/#/clojure-quick-repls"; + homepage = "https://melpa.org/#/clojure-quick-repls"; license = lib.licenses.free; }; }) {}; clojure-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "clojure-snippets"; - version = "20160217.242"; + version = "20160305.802"; src = fetchFromGitHub { owner = "mpenet"; repo = "clojure-snippets"; - rev = "21b17dd388db62e8713289478623c72a2c7180d0"; - sha256 = "0wlzhj2mfxxkffsx14n1c0r89l3pszn71brx4l3dfyzmb806xrig"; + rev = "7c80ba4bb91777a10784f042c137b9245ab23573"; + sha256 = "08sswxmrb94an95cjxxcppn3f8gvy99jdr4cbwlwk2yswdrxdlg0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-snippets"; sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij"; name = "clojure-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/clojure-snippets"; + homepage = "https://melpa.org/#/clojure-snippets"; + license = lib.licenses.free; + }; + }) {}; + clomacs = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "clomacs"; + version = "20160419.458"; + src = fetchFromGitHub { + owner = "clojure-emacs"; + repo = "clomacs"; + rev = "4b55c5befa80cbd0dce8d4a11ba8800283c7a6df"; + sha256 = "13wm02s36yl24v6nr1s7l00mgi7nqg01jz404mnflgbzhd35rbfl"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clomacs"; + sha256 = "1vfjzrzp58ap75i0dh5bwnlkb8qbpfmrd3fg9n6aaibvvd2m3hyh"; + name = "clomacs"; + }; + packageRequires = [ cider emacs ]; + meta = { + homepage = "https://melpa.org/#/clomacs"; + license = lib.licenses.free; + }; + }) {}; + closql = callPackage ({ emacs, emacsql-sqlite, fetchFromGitLab, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "closql"; + version = "20160415.2116"; + src = fetchFromGitLab { + owner = "tarsius"; + repo = "closql"; + rev = "a8b6b2beaa10528b2fd5ed9759136e3959529266"; + sha256 = "1p251vyh8fc6xzaf0v7yvf4wkrvcfjdb3qr88ll4xcb61gj3vi3a"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/closql"; + sha256 = "0a8fqw8n03x9mygvzb95m8mmfqp3j8hynwafvryjsl0np0695b6l"; + name = "closql"; + }; + packageRequires = [ emacs emacsql-sqlite ]; + meta = { + homepage = "https://melpa.org/#/closql"; license = lib.licenses.free; }; }) {}; @@ -7252,13 +7546,13 @@ sha256 = "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/closure-lint-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/closure-lint-mode"; sha256 = "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy"; name = "closure-lint-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/closure-lint-mode"; + homepage = "https://melpa.org/#/closure-lint-mode"; license = lib.licenses.free; }; }) {}; @@ -7273,13 +7567,13 @@ sha256 = "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cloud-to-butt-erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cloud-to-butt-erc"; sha256 = "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f"; name = "cloud-to-butt-erc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cloud-to-butt-erc"; + homepage = "https://melpa.org/#/cloud-to-butt-erc"; license = lib.licenses.free; }; }) {}; @@ -7294,34 +7588,34 @@ sha256 = "0fnl3b62clg9llcs2l511sxp4yishan4pqk45sqp8ih4rdzvy7ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clues-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clues-theme"; sha256 = "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy"; name = "clues-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/clues-theme"; + homepage = "https://melpa.org/#/clues-theme"; license = lib.licenses.free; }; }) {}; - cm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + cm-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cm-mode"; - version = "20160113.523"; + version = "20160310.1029"; src = fetchFromGitHub { owner = "joostkremers"; repo = "criticmarkup-emacs"; - rev = "c38624070235ce25129516203f3bf6ac6f509846"; - sha256 = "0m94692gkq299sf56m4c637j5xp78dvgv0ad1hv4ys1hzp1qw1l5"; + rev = "1ac0d64842eb303323f2ebea61b4b6ba9f72969c"; + sha256 = "1rwln3ms71fys3rdv3sx8w706aqn874im3kqcfrkxz86wiazm2d5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cm-mode"; sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x"; name = "cm-mode"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/cm-mode"; + homepage = "https://melpa.org/#/cm-mode"; license = lib.licenses.free; }; }) {}; @@ -7336,55 +7630,55 @@ sha256 = "030kg3m546gcm6cf1k928ld51znsfrzhlpm005dvqap3gkcrg4sf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-font-lock"; sha256 = "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0"; name = "cmake-font-lock"; }; packageRequires = [ cmake-mode ]; meta = { - homepage = "http://melpa.org/#/cmake-font-lock"; + homepage = "https://melpa.org/#/cmake-font-lock"; license = lib.licenses.free; }; }) {}; cmake-ide = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, levenshtein, lib, melpaBuild, seq }: melpaBuild { pname = "cmake-ide"; - version = "20160211.750"; + version = "20160421.327"; src = fetchFromGitHub { owner = "atilaneves"; repo = "cmake-ide"; - rev = "816ac6c19d664f584e21c3449d5fe12e50332e09"; - sha256 = "1hagmcg7303ckbfdbz30s84vavg3a89m7mq71gf044jdx6nyci97"; + rev = "1ab2511319f34f0e37e6e041c1ee813428636b0f"; + sha256 = "1p1c742i3nzw24z276ypcicf5zpm7gdbbl2map6prjn34aiivglv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-ide"; sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg"; name = "cmake-ide"; }; packageRequires = [ cl-lib emacs levenshtein seq ]; meta = { - homepage = "http://melpa.org/#/cmake-ide"; + homepage = "https://melpa.org/#/cmake-ide"; license = lib.licenses.free; }; }) {}; cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmake-mode"; - version = "20151012.926"; + version = "20160317.841"; src = fetchFromGitHub { owner = "Kitware"; repo = "CMake"; - rev = "7e32bd945a9f32144ac63fdcd085197658229f9c"; - sha256 = "012pzl5258f14xdpjmmfgz6mn76902s153ps4yrvhhj5mmcs2knm"; + rev = "b8a8dfec3688f1dc44f95528a65135fc76511c7b"; + sha256 = "1cp79rqhqlgj6x3zlnhbc33yzj7xrifkvw2sm334bacjsgan8p4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-mode"; sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7"; name = "cmake-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cmake-mode"; + homepage = "https://melpa.org/#/cmake-mode"; license = lib.licenses.free; }; }) {}; @@ -7399,13 +7693,13 @@ sha256 = "0fyzi8xac80wnhnwwm1j6yxpvpg1n4diq2lcl3qkj8klvk5gpxr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-project"; sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3"; name = "cmake-project"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cmake-project"; + homepage = "https://melpa.org/#/cmake-project"; license = lib.licenses.free; }; }) {}; @@ -7413,17 +7707,17 @@ pname = "cmds-menu"; version = "20151231.1430"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/cmds-menu.el"; + url = "https://www.emacswiki.org/emacs/download/cmds-menu.el"; sha256 = "13r8pjxknsfd6ywzlgcy4bm7fvr768ba34k6b7y365y3c1asz6y3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmds-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmds-menu"; sha256 = "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks"; name = "cmds-menu"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cmds-menu"; + homepage = "https://melpa.org/#/cmds-menu"; license = lib.licenses.free; }; }) {}; @@ -7438,13 +7732,13 @@ sha256 = "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmm-mode"; sha256 = "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h"; name = "cmm-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cmm-mode"; + homepage = "https://melpa.org/#/cmm-mode"; license = lib.licenses.free; }; }) {}; @@ -7459,13 +7753,13 @@ sha256 = "1635k51ppivq6v2702fihq8dvi33445smds9zhqm0drnpv9rv5cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cn-outline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cn-outline"; sha256 = "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz"; name = "cn-outline"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cn-outline"; + homepage = "https://melpa.org/#/cn-outline"; license = lib.licenses.free; }; }) {}; @@ -7480,34 +7774,34 @@ sha256 = "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cobra-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cobra-mode"; sha256 = "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89"; name = "cobra-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cobra-mode"; + homepage = "https://melpa.org/#/cobra-mode"; license = lib.licenses.free; }; }) {}; code-library = callPackage ({ fetchFromGitHub, fetchurl, gist, lib, melpaBuild }: melpaBuild { pname = "code-library"; - version = "20151216.1011"; + version = "20160426.718"; src = fetchFromGitHub { owner = "lujun9972"; repo = "code-library"; - rev = "6004c12b199f0a78bc6c11adaa5091a90bc6926b"; - sha256 = "0mcf0xyh4p6pk2hf1f554vy4amd0qcimspgnncff2a0qc2bsg5sy"; + rev = "3c79338eae5c892bfb4e4882298422d9fd65d2d7"; + sha256 = "0gc56pdyzcnv3q1a82c79i8w58q9r6ccfix9s1s6msjxzxkznap5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/code-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/code-library"; sha256 = "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj"; name = "code-library"; }; packageRequires = [ gist ]; meta = { - homepage = "http://melpa.org/#/code-library"; + homepage = "https://melpa.org/#/code-library"; license = lib.licenses.free; }; }) {}; @@ -7522,13 +7816,13 @@ sha256 = "11v671c4338bsizbmm7ypp4x9s5hiwyddsg2ig6h157gfv2597pp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/codebug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/codebug"; sha256 = "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj"; name = "codebug"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/codebug"; + homepage = "https://melpa.org/#/codebug"; license = lib.licenses.free; }; }) {}; @@ -7543,13 +7837,13 @@ sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/codesearch"; sha256 = "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx"; name = "codesearch"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/codesearch"; + homepage = "https://melpa.org/#/codesearch"; license = lib.licenses.free; }; }) {}; @@ -7564,13 +7858,13 @@ sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/codic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/codic"; sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn"; name = "codic"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/codic"; + homepage = "https://melpa.org/#/codic"; license = lib.licenses.free; }; }) {}; @@ -7585,34 +7879,34 @@ sha256 = "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/coffee-fof"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/coffee-fof"; sha256 = "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc"; name = "coffee-fof"; }; packageRequires = [ coffee-mode ]; meta = { - homepage = "http://melpa.org/#/coffee-fof"; + homepage = "https://melpa.org/#/coffee-fof"; license = lib.licenses.free; }; }) {}; coffee-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "coffee-mode"; - version = "20160208.2102"; + version = "20160419.2147"; src = fetchFromGitHub { owner = "defunkt"; repo = "coffee-mode"; - rev = "cb1e997c0195a8a51bfa77d6bdec919e68a88904"; - sha256 = "0f7v6zjmsgsip17jazbhn6667gn5ialfv4nl58bhjhkrb21j9zbk"; + rev = "e1331a2b1f29fe54a0d8b4facfa02ab2e115b7b2"; + sha256 = "0fh04pg114ngx7c6gcasl3dqaw41mggn6cnilj43nl1mpk0hdm4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/coffee-mode"; sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1"; name = "coffee-mode"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/coffee-mode"; + homepage = "https://melpa.org/#/coffee-mode"; license = lib.licenses.free; }; }) {}; @@ -7621,17 +7915,17 @@ pname = "col-highlight"; version = "20151231.1433"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/col-highlight.el"; + url = "https://www.emacswiki.org/emacs/download/col-highlight.el"; sha256 = "1fpkymmgv58b734d2rr7cfj2j2if1qkwgrpk3yp2ibw2n2567y0s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/col-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/col-highlight"; sha256 = "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i"; name = "col-highlight"; }; packageRequires = [ vline ]; meta = { - homepage = "http://melpa.org/#/col-highlight"; + homepage = "https://melpa.org/#/col-highlight"; license = lib.licenses.free; }; }) {}; @@ -7646,13 +7940,13 @@ sha256 = "0jjj1miwc7hw2fbb1fnmfnydim81djswla8iy4waam9014yraqci"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/colemak-evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/colemak-evil"; sha256 = "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z"; name = "colemak-evil"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/colemak-evil"; + homepage = "https://melpa.org/#/colemak-evil"; license = lib.licenses.free; }; }) {}; @@ -7667,13 +7961,13 @@ sha256 = "1k3sd07ffgpfhzg7d9mb1gc3n02zsvilxc30bgiycbjrbjgqq0i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/colonoscopy-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/colonoscopy-theme"; sha256 = "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q"; name = "colonoscopy-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/colonoscopy-theme"; + homepage = "https://melpa.org/#/colonoscopy-theme"; license = lib.licenses.free; }; }) {}; @@ -7688,13 +7982,13 @@ sha256 = "0m98i8w513zdzkskw9a96dd73lnfbfwvr947b0djsrazn8grh6hv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-identifiers-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-identifiers-mode"; sha256 = "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq"; name = "color-identifiers-mode"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/color-identifiers-mode"; + homepage = "https://melpa.org/#/color-identifiers-mode"; license = lib.licenses.free; }; }) {}; @@ -7709,13 +8003,13 @@ sha256 = "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-moccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-moccur"; sha256 = "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq"; name = "color-moccur"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/color-moccur"; + homepage = "https://melpa.org/#/color-moccur"; license = lib.licenses.free; }; }) {}; @@ -7729,13 +8023,13 @@ sha256 = "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme"; sha256 = "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79"; name = "color-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/color-theme"; + homepage = "https://melpa.org/#/color-theme"; license = lib.licenses.free; }; }) {}; @@ -7750,13 +8044,13 @@ sha256 = "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-approximate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-approximate"; sha256 = "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1"; name = "color-theme-approximate"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/color-theme-approximate"; + homepage = "https://melpa.org/#/color-theme-approximate"; license = lib.licenses.free; }; }) {}; @@ -7771,76 +8065,76 @@ sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-buffer-local"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-buffer-local"; sha256 = "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0"; name = "color-theme-buffer-local"; }; packageRequires = [ color-theme ]; meta = { - homepage = "http://melpa.org/#/color-theme-buffer-local"; + homepage = "https://melpa.org/#/color-theme-buffer-local"; license = lib.licenses.free; }; }) {}; color-theme-modern = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-modern"; - version = "20151109.2106"; + version = "20160411.2046"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "replace-colorthemes"; - rev = "0a804c611da57b2d7c02c95f26eb8a7fc305f159"; - sha256 = "0q9ss11i31iiv0vn8238922fkic7j6d02f9ykbip04sm46p5k6kj"; + rev = "7107540d22e8ff045e0707de84c8b179fd829302"; + sha256 = "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-modern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-modern"; sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm"; name = "color-theme-modern"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/color-theme-modern"; + homepage = "https://melpa.org/#/color-theme-modern"; license = lib.licenses.free; }; }) {}; color-theme-sanityinc-solarized = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-sanityinc-solarized"; - version = "20150803.1620"; + version = "20160228.1928"; src = fetchFromGitHub { owner = "purcell"; repo = "color-theme-sanityinc-solarized"; - rev = "14beb86aeb5b17451980f192bad72d7edb17321c"; - sha256 = "07703v8xyia1vx9s636aaql99i29a4r5v9z0lvaypixgsidshx10"; + rev = "58016a2177440ace10357b42bc121e99ee9ed2de"; + sha256 = "11axrf7ns3gj1b0109z8zl63pv3jfpad83rnn5vfg3cp61qivia5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-sanityinc-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-sanityinc-solarized"; sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf"; name = "color-theme-sanityinc-solarized"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/color-theme-sanityinc-solarized"; + homepage = "https://melpa.org/#/color-theme-sanityinc-solarized"; license = lib.licenses.free; }; }) {}; color-theme-sanityinc-tomorrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-sanityinc-tomorrow"; - version = "20160205.2000"; + version = "20160413.350"; src = fetchFromGitHub { owner = "purcell"; repo = "color-theme-sanityinc-tomorrow"; - rev = "9a8f304477500baa2a782f9c9cafd76c6030ccdf"; - sha256 = "0la3xwk0s5qx9n2s4lv4n8ilkj82spxk46mjih7zch8xpydfl15w"; + rev = "c814d1263837cd68ec4d1aac3b529cef678556d1"; + sha256 = "1k91d8cwavrs52vhgrdjip0irvi4yhhj7b8nq2hl3wz94giy9448"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-sanityinc-tomorrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-sanityinc-tomorrow"; sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd"; name = "color-theme-sanityinc-tomorrow"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/color-theme-sanityinc-tomorrow"; + homepage = "https://melpa.org/#/color-theme-sanityinc-tomorrow"; license = lib.licenses.free; }; }) {}; @@ -7855,13 +8149,13 @@ sha256 = "1yn0wacicf218212d9qgn67pf16i7x6bih67zdfcplq4i9lqbpg3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-solarized"; sha256 = "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf"; name = "color-theme-solarized"; }; packageRequires = [ color-theme ]; meta = { - homepage = "http://melpa.org/#/color-theme-solarized"; + homepage = "https://melpa.org/#/color-theme-solarized"; license = lib.licenses.free; }; }) {}; @@ -7876,13 +8170,13 @@ sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/colorsarenice-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/colorsarenice-theme"; sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi"; name = "colorsarenice-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/colorsarenice-theme"; + homepage = "https://melpa.org/#/colorsarenice-theme"; license = lib.licenses.free; }; }) {}; @@ -7897,13 +8191,13 @@ sha256 = "0ay4wrnyrdp4v3vjxr99hy8fpq6zsyh246c0gbp7bh63l5fx8nwr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/column-enforce-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/column-enforce-mode"; sha256 = "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg"; name = "column-enforce-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/column-enforce-mode"; + homepage = "https://melpa.org/#/column-enforce-mode"; license = lib.licenses.free; }; }) {}; @@ -7911,38 +8205,59 @@ pname = "column-marker"; version = "20121128.243"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/column-marker.el"; + url = "https://www.emacswiki.org/emacs/download/column-marker.el"; sha256 = "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/column-marker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/column-marker"; sha256 = "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq"; name = "column-marker"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/column-marker"; + homepage = "https://melpa.org/#/column-marker"; license = lib.licenses.free; }; }) {}; command-log-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "command-log-mode"; - version = "20150615.916"; + version = "20160412.2347"; src = fetchFromGitHub { owner = "lewang"; repo = "command-log-mode"; - rev = "7408c0cb96709b8449f25a58a2203ed90bb5b850"; - sha256 = "0fnyksbynlmmvl39f4is0xjp6b13yshfazigbksv012hxp0whslm"; + rev = "af600e6b4129c8115f464af576505ea8e789db27"; + sha256 = "06hll2frlx4sg9fj13a7ipq9y24isbjkjm6034xswhak40m7g1ii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/command-log-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/command-log-mode"; sha256 = "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj"; name = "command-log-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/command-log-mode"; + homepage = "https://melpa.org/#/command-log-mode"; + license = lib.licenses.free; + }; + }) {}; + command-queue = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "command-queue"; + version = "20160328.1225"; + src = fetchFromGitHub { + owner = "Yuki-Inoue"; + repo = "command-queue"; + rev = "f327c6f852592229a755ec6de0c62c6aeafd6659"; + sha256 = "0216hzdl4h1jssw5g2y95z4yx7abqsaxpk1s78r35w5cnx7kplrc"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/command-queue"; + sha256 = "1jaywdg8vcf1v6ayy1zd5mjs0x3s96845ig9ssb08397lfqasx1k"; + name = "command-queue"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/command-queue"; license = lib.licenses.free; }; }) {}; @@ -7957,13 +8272,13 @@ sha256 = "06y7ika4781gkh94ygdaz7a760s7ahrma6af6n7cqhgjyikz7lg1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/commander"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/commander"; sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393"; name = "commander"; }; packageRequires = [ cl-lib dash f s ]; meta = { - homepage = "http://melpa.org/#/commander"; + homepage = "https://melpa.org/#/commander"; license = lib.licenses.free; }; }) {}; @@ -7978,13 +8293,13 @@ sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/comment-dwim-2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/comment-dwim-2"; sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj"; name = "comment-dwim-2"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/comment-dwim-2"; + homepage = "https://melpa.org/#/comment-dwim-2"; license = lib.licenses.free; }; }) {}; @@ -7999,13 +8314,13 @@ sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/commenter"; sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3"; name = "commenter"; }; packageRequires = [ emacs let-alist ]; meta = { - homepage = "http://melpa.org/#/commenter"; + homepage = "https://melpa.org/#/commenter"; license = lib.licenses.free; }; }) {}; @@ -8020,13 +8335,13 @@ sha256 = "04bma9sdn7h8fjz62wlcwayzhr7lvzhidh48wc5rk195zlbgagwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/commify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/commify"; sha256 = "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m"; name = "commify"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/commify"; + homepage = "https://melpa.org/#/commify"; license = lib.licenses.free; }; }) {}; @@ -8037,59 +8352,59 @@ src = fetchFromGitHub { owner = "mrkkrp"; repo = "common-lisp-snippets"; - rev = "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284"; - sha256 = "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad"; + rev = "7dc8da55ee7182c95ff3e4dfb59b8e7aef6fdd6d"; + sha256 = "14giiif043yvdaykq700v3n12j295a2pw1aygrl6gr42a3srbnpl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/common-lisp-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/common-lisp-snippets"; sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl"; name = "common-lisp-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/common-lisp-snippets"; + homepage = "https://melpa.org/#/common-lisp-snippets"; license = lib.licenses.free; }; }) {}; company = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company"; - version = "20160211.720"; + version = "20160424.1721"; src = fetchFromGitHub { owner = "company-mode"; repo = "company-mode"; - rev = "e251568e99de9e684b21cc74306fa1c3678444b5"; - sha256 = "15zkaq3vc74f8vbdjrxd1ha4mh7p0hn7x5nyg4dh0i3qchinlkjn"; + rev = "e0d2bf0ae6df94eca9d2d8afca6d1de4db0d4796"; + sha256 = "19vg9l786izw27ly6j55s5sg7kscl5d2hvzww6cfa7ckwnn81xhv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company"; sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4"; name = "company"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/company"; + homepage = "https://melpa.org/#/company"; license = lib.licenses.free; }; }) {}; company-anaconda = callPackage ({ anaconda-mode, cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "company-anaconda"; - version = "20160221.1323"; + version = "20160418.849"; src = fetchFromGitHub { owner = "proofit404"; repo = "company-anaconda"; - rev = "23a21e17e24f1f673d86bc8a0ace80df516636ce"; - sha256 = "0hfhkpy8qpai6qspqcf1pnxygnnyn7ncmhp5bmg2p4b6qm328yxi"; + rev = "360275039dab6286995a0113229063ea3a087205"; + sha256 = "1wyhpihsf4pyzbim7nf9fwndjg568k49g1q6lzs8n3azw00d6fi9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-anaconda"; sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl"; name = "company-anaconda"; }; packageRequires = [ anaconda-mode cl-lib company dash s ]; meta = { - homepage = "http://melpa.org/#/company-anaconda"; + homepage = "https://melpa.org/#/company-anaconda"; license = lib.licenses.free; }; }) {}; @@ -8104,28 +8419,28 @@ sha256 = "06gh33qzglv40r62dsapzhxwparw8ciblv80g7h6y6ilyazwcidn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ansible"; sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d"; name = "company-ansible"; }; packageRequires = [ company emacs ]; meta = { - homepage = "http://melpa.org/#/company-ansible"; + homepage = "https://melpa.org/#/company-ansible"; license = lib.licenses.free; }; }) {}; company-arduino = callPackage ({ arduino-mode, cl-lib ? null, company, company-c-headers, company-irony, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }: melpaBuild { pname = "company-arduino"; - version = "20150614.326"; + version = "20160306.1139"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "company-arduino"; - rev = "fd31103ab73acd6c77e4361db86e472619903f80"; - sha256 = "067xb4mwfnmbqjyfv4717417fg7ysvz9flnx1nrk6iv96gnf4vfx"; + rev = "5958b917cc5cc729dc64d74d947da5ee91c48980"; + sha256 = "08766m35s0r2fyv32y0h3sns9d5jykbgg24d2z8czklnc8hay7jc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-arduino"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-arduino"; sha256 = "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws"; name = "company-arduino"; }; @@ -8139,7 +8454,7 @@ irony ]; meta = { - homepage = "http://melpa.org/#/company-arduino"; + homepage = "https://melpa.org/#/company-arduino"; license = lib.licenses.free; }; }) {}; @@ -8154,13 +8469,13 @@ sha256 = "0mkyg9y1rhl6hdzhr51psnvy2q0zw4y29m9p0ivb7s643k3fjjp5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-auctex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-auctex"; sha256 = "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4"; name = "company-auctex"; }; packageRequires = [ auctex company yasnippet ]; meta = { - homepage = "http://melpa.org/#/company-auctex"; + homepage = "https://melpa.org/#/company-auctex"; license = lib.licenses.free; }; }) {}; @@ -8171,17 +8486,17 @@ src = fetchFromGitHub { owner = "randomphrase"; repo = "company-c-headers"; - rev = "0b8c63cdc7864c3e3939c4b8cda314d05ae0a352"; - sha256 = "16cva7ccc0hrc6yf659kpsznlk1bkgv525lqr4nj8a12q0avjdxf"; + rev = "0450f429bd5745e91e984651c932264481953142"; + sha256 = "0jh2j260x1smlm4362dvgfpfpba7kg6hqvszjirc6mpm74zdcnp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-c-headers"; sha256 = "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a"; name = "company-c-headers"; }; packageRequires = [ company emacs ]; meta = { - homepage = "http://melpa.org/#/company-c-headers"; + homepage = "https://melpa.org/#/company-c-headers"; license = lib.licenses.free; }; }) {}; @@ -8196,49 +8511,49 @@ sha256 = "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-cabal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-cabal"; sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra"; name = "company-cabal"; }; packageRequires = [ cl-lib company emacs ]; meta = { - homepage = "http://melpa.org/#/company-cabal"; + homepage = "https://melpa.org/#/company-cabal"; license = lib.licenses.free; }; }) {}; company-coq = callPackage ({ cl-lib ? null, company, company-math, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "company-coq"; - version = "20160212.808"; + version = "20160316.1314"; src = fetchFromGitHub { owner = "cpitclaudel"; repo = "company-coq"; - rev = "f99c17b693c29d0d385c28c3c0409e083aeba440"; - sha256 = "003fbj21a8sb8fv33svbwyhdjywqrmh2y08d1hwmmp0vhd38333i"; + rev = "43d96b0148661e52b982728765b99bbcbda6974b"; + sha256 = "0lnb3qf1xhb0nbqy6ry0bkz2xrzfgkvavb7a3cbllawyz5idhfg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-coq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-coq"; sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa"; name = "company-coq"; }; packageRequires = [ cl-lib company company-math dash yasnippet ]; meta = { - homepage = "http://melpa.org/#/company-coq"; + homepage = "https://melpa.org/#/company-coq"; license = lib.licenses.free; }; }) {}; company-dcd = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, flycheck-dmd-dub, helm, lib, melpaBuild, popwin, yasnippet }: melpaBuild { pname = "company-dcd"; - version = "20150901.604"; + version = "20160406.2248"; src = fetchFromGitHub { owner = "tsukimizake"; repo = "company-dcd"; - rev = "1d121dc42906fc58fa3a7febff8dabd29fba34f2"; - sha256 = "0qbis9jqcrgj71cf8i9yfxsm7yj6d546gxw6linqd7slqn97l8rl"; + rev = "8448d1871bcd799d31b6db0cafdfb0a157980195"; + sha256 = "0jkshkh44cgahpz2d7lrwfyl4kmhinivlbp08yn4zz6hpcvz87x9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-dcd"; sha256 = "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd"; name = "company-dcd"; }; @@ -8251,7 +8566,28 @@ yasnippet ]; meta = { - homepage = "http://melpa.org/#/company-dcd"; + homepage = "https://melpa.org/#/company-dcd"; + license = lib.licenses.free; + }; + }) {}; + company-dict = callPackage ({ company, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "company-dict"; + version = "20160222.940"; + src = fetchFromGitHub { + owner = "hlissner"; + repo = "emacs-company-dict"; + rev = "94e648cb9fd0f98829d3fd1395fcf5f3d72b4402"; + sha256 = "1i1b0v2qwb8bmjs8xjahnizf68m1qf2kll39l84ska47vn7csc3c"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-dict"; + sha256 = "1377b40f1j4rmw7lnhy1zsm6r234ds5zsn02v1ajm3bzrpkkmin0"; + name = "company-dict"; + }; + packageRequires = [ company ]; + meta = { + homepage = "https://melpa.org/#/company-dict"; license = lib.licenses.free; }; }) {}; @@ -8266,118 +8602,118 @@ sha256 = "0n2hvrfbybsp57w6m9mm7ywjq30fwwx9bzc2rllfr06d2ms7naai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-edbi"; sha256 = "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm"; name = "company-edbi"; }; packageRequires = [ cl-lib company edbi s ]; meta = { - homepage = "http://melpa.org/#/company-edbi"; + homepage = "https://melpa.org/#/company-edbi"; license = lib.licenses.free; }; }) {}; company-emoji = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-emoji"; - version = "20151108.20"; + version = "20160331.1841"; src = fetchFromGitHub { owner = "dunn"; repo = "company-emoji"; - rev = "c3665bf150c43a1c9830e817cf6de950be8c0fde"; - sha256 = "1lm26av6z18p70gxz23h87l25airawljr5lm7hw6krg706cp3aq6"; + rev = "00ff8210cf80b4bc4ec0fe8f42b8a00315241f32"; + sha256 = "1ipknikwyd6h2w72s5sn32mfql4p2cmgv868n13r3wg42c619blq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-emoji"; sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3"; name = "company-emoji"; }; packageRequires = [ cl-lib company ]; meta = { - homepage = "http://melpa.org/#/company-emoji"; + homepage = "https://melpa.org/#/company-emoji"; license = lib.licenses.free; }; }) {}; company-flx = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flx, lib, melpaBuild }: melpaBuild { pname = "company-flx"; - version = "20160110.1904"; + version = "20160423.1913"; src = fetchFromGitHub { owner = "PythonNut"; repo = "company-flx"; - rev = "411f6b8cc6dd6bfd37b04684b6aade643706a1a1"; - sha256 = "1rg6jynzp37qnaq4lj48sfrhmv7mgcd2rzkixbpb3hgsy10dj9j0"; + rev = "bd2035390c285769c39a2bd2fdd0f24da0cd7ec9"; + sha256 = "1di3nndif2gkzwvs8bvqg994z422ql308lh47hbjdjnqm182mwy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-flx"; sha256 = "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn"; name = "company-flx"; }; packageRequires = [ company emacs flx ]; meta = { - homepage = "http://melpa.org/#/company-flx"; + homepage = "https://melpa.org/#/company-flx"; license = lib.licenses.free; }; }) {}; company-ghc = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, ghc, lib, melpaBuild }: melpaBuild { pname = "company-ghc"; - version = "20151217.859"; + version = "20160315.910"; src = fetchFromGitHub { owner = "iquiw"; repo = "company-ghc"; - rev = "96c78650da0030a55daee11668b04e313468294e"; - sha256 = "0iydcp02x8mqbvxzihzzd1mnq065s19dpi0pq33a2v4nnlddlj1q"; + rev = "4d1f1e3c9529b1a833fa58e835226cebf0e415b7"; + sha256 = "1mc7y4j772x54n2wc2dskb5wjc46r7sg2jwyvmnj44cyaasxqmck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ghc"; sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn"; name = "company-ghc"; }; packageRequires = [ cl-lib company emacs ghc ]; meta = { - homepage = "http://melpa.org/#/company-ghc"; + homepage = "https://melpa.org/#/company-ghc"; license = lib.licenses.free; }; }) {}; company-ghci = callPackage ({ company, fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "company-ghci"; - version = "20160118.924"; + version = "20160310.2000"; src = fetchFromGitHub { owner = "juiko"; repo = "company-ghci"; - rev = "3ba0dd5607dc4b90e4ad32a4e23176882405d3b7"; - sha256 = "0jsnf60nz37s4csk8pnyr45fjdsac1ls64fvsh5gzi6hipxz5y6z"; + rev = "c2d74a41166e76de2e78c87f582ba3a1179b2aa6"; + sha256 = "02gq083lpbszy8pf7s5j61bjlm0hacv4md4g17n0q6448rix9yny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ghci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ghci"; sha256 = "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq"; name = "company-ghci"; }; packageRequires = [ company haskell-mode ]; meta = { - homepage = "http://melpa.org/#/company-ghci"; + homepage = "https://melpa.org/#/company-ghci"; license = lib.licenses.free; }; }) {}; company-go = callPackage ({ company, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "company-go"; - version = "20151211.1224"; + version = "20160306.1555"; src = fetchFromGitHub { owner = "nsf"; repo = "gocode"; - rev = "659c0a429af764118d27692d02b77c544a32cfe3"; - sha256 = "1gfad94acp7qxm6yg0prjfkx370caq309zc8dy20ssi4x19j4n0x"; + rev = "3b7488f4e4c234abbea9c5ff313a3a7139fc56e8"; + sha256 = "0sw12mzgxq5nh7yzkzzpca3y4chd2i81amzynlaz46ci16wa6gpb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-go"; sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29"; name = "company-go"; }; packageRequires = [ company go-mode ]; meta = { - homepage = "http://melpa.org/#/company-go"; + homepage = "https://melpa.org/#/company-go"; license = lib.licenses.free; }; }) {}; @@ -8392,34 +8728,34 @@ sha256 = "0fnv4rvvs9rqzrs86g23jcrpg0rcgk25299hm6jm08ia0kjjby1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-inf-ruby"; sha256 = "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm"; name = "company-inf-ruby"; }; packageRequires = [ company emacs inf-ruby ]; meta = { - homepage = "http://melpa.org/#/company-inf-ruby"; + homepage = "https://melpa.org/#/company-inf-ruby"; license = lib.licenses.free; }; }) {}; company-irony = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }: melpaBuild { pname = "company-irony"; - version = "20150810.439"; + version = "20160321.1603"; src = fetchFromGitHub { owner = "Sarcasm"; repo = "company-irony"; - rev = "09f16eade551201548455285a2d977a0889761da"; - sha256 = "0y1a9wxk9w2jk4177hkqzgqzknswikxc1dc60hzj4samyp2jhvfl"; + rev = "c51b3997f0a847d971917a4401277bf283250021"; + sha256 = "15xv59c6pwdysr9hqvaj7jgsa9pnicy7cnn9dq53zngjh3f5mf83"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-irony"; sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km"; name = "company-irony"; }; packageRequires = [ cl-lib company emacs irony ]; meta = { - homepage = "http://melpa.org/#/company-irony"; + homepage = "https://melpa.org/#/company-irony"; license = lib.licenses.free; }; }) {}; @@ -8434,13 +8770,13 @@ sha256 = "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-irony-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-irony-c-headers"; sha256 = "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8"; name = "company-irony-c-headers"; }; packageRequires = [ cl-lib company irony ]; meta = { - homepage = "http://melpa.org/#/company-irony-c-headers"; + homepage = "https://melpa.org/#/company-irony-c-headers"; license = lib.licenses.free; }; }) {}; @@ -8451,38 +8787,59 @@ src = fetchFromGitHub { owner = "syohex"; repo = "emacs-company-jedi"; - rev = "ad49407451c7f28fe137f9c8f3a7fc89e8693a1b"; - sha256 = "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1"; + rev = "2f54e791e10f5dc0ff164bfe97f1878359fab6f6"; + sha256 = "0bpqswcc6a65wms0pdk9rsad9jiigmx2l1jaqr8bz4va945qdlhg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-jedi"; sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj"; name = "company-jedi"; }; packageRequires = [ cl-lib company emacs jedi-core ]; meta = { - homepage = "http://melpa.org/#/company-jedi"; + homepage = "https://melpa.org/#/company-jedi"; + license = lib.licenses.free; + }; + }) {}; + company-lua = callPackage ({ company, f, fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild, s }: + melpaBuild { + pname = "company-lua"; + version = "20160330.513"; + src = fetchFromGitHub { + owner = "ptrv"; + repo = "company-lua"; + rev = "d1384d7c709ed157bc7dcd8f2cfdf6212299b2bf"; + sha256 = "151hpai8dagvgyg5fxiydp5x42sqksvp2y5znssclw7654f08fgn"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-lua"; + sha256 = "13sm7ya2ndqxwdjarhxbmg7fvr3413c7p3n6yf1i4rabbliqsf2c"; + name = "company-lua"; + }; + packageRequires = [ company f lua-mode s ]; + meta = { + homepage = "https://melpa.org/#/company-lua"; license = lib.licenses.free; }; }) {}; company-math = callPackage ({ company, fetchFromGitHub, fetchurl, lib, math-symbol-lists, melpaBuild }: melpaBuild { pname = "company-math"; - version = "20160119.748"; + version = "20160229.932"; src = fetchFromGitHub { owner = "vspinu"; repo = "company-math"; - rev = "21ac1c7a4077a20746bff00a85150f82f6c3130a"; - sha256 = "114z2p5ivdsfhkir9yzrm4zw34c8jlilwqyyd4y5ing8awc9jhv2"; + rev = "9407824d2b29d427ed5732aa01cb0a8530a8259f"; + sha256 = "1xsk02ymgj0gfblz2f6pzwh96crgx4m524ia6m95kcxrd7y63004"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-math"; sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87"; name = "company-math"; }; packageRequires = [ company math-symbol-lists ]; meta = { - homepage = "http://melpa.org/#/company-math"; + homepage = "https://melpa.org/#/company-math"; license = lib.licenses.free; }; }) {}; @@ -8497,13 +8854,34 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-nand2tetris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-nand2tetris"; sha256 = "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886"; name = "company-nand2tetris"; }; packageRequires = [ cl-lib company names nand2tetris ]; meta = { - homepage = "http://melpa.org/#/company-nand2tetris"; + homepage = "https://melpa.org/#/company-nand2tetris"; + license = lib.licenses.free; + }; + }) {}; + company-ngram = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "company-ngram"; + version = "20160330.1626"; + src = fetchFromGitHub { + owner = "kshramt"; + repo = "company-ngram"; + rev = "6c9315933984e7741b9d044f06a8cecc5ddaf788"; + sha256 = "0yxnylpbjrwmqx6px0q3pff4dh00fmfzb09gp4xvn9w9hrxdsx7g"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ngram"; + sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx"; + name = "company-ngram"; + }; + packageRequires = [ cl-lib company ]; + meta = { + homepage = "https://melpa.org/#/company-ngram"; license = lib.licenses.free; }; }) {}; @@ -8514,17 +8892,17 @@ src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; - rev = "63061d379460c53abbe88ec695a61e22feae438f"; - sha256 = "100vjppa6nipn227v871nkmjmqln2l1lv1v8in1lcjhsz4rxrhs9"; + rev = "9e84e7f93307b72a1c0decfc2eff9d4943631de3"; + sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-nixos-options"; sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0"; name = "company-nixos-options"; }; packageRequires = [ cl-lib company nixos-options ]; meta = { - homepage = "http://melpa.org/#/company-nixos-options"; + homepage = "https://melpa.org/#/company-nixos-options"; license = lib.licenses.free; }; }) {}; @@ -8539,13 +8917,13 @@ sha256 = "0sl59b9wwnpz6p2kxsc87b3q28vvfxg7pwk67c51q8qyrl0c1klv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-qml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-qml"; sha256 = "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx"; name = "company-qml"; }; packageRequires = [ company qml-mode ]; meta = { - homepage = "http://melpa.org/#/company-qml"; + homepage = "https://melpa.org/#/company-qml"; license = lib.licenses.free; }; }) {}; @@ -8560,13 +8938,13 @@ sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-quickhelp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-quickhelp"; sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g"; name = "company-quickhelp"; }; packageRequires = [ company emacs pos-tip ]; meta = { - homepage = "http://melpa.org/#/company-quickhelp"; + homepage = "https://melpa.org/#/company-quickhelp"; license = lib.licenses.free; }; }) {}; @@ -8581,13 +8959,13 @@ sha256 = "1lk3fqsgbi6mg4hrpc9gy4hbfp9snyj4yvc0zh8iqqw5nx12dab4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-racer"; sha256 = "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4"; name = "company-racer"; }; packageRequires = [ cl-lib company deferred emacs ]; meta = { - homepage = "http://melpa.org/#/company-racer"; + homepage = "https://melpa.org/#/company-racer"; license = lib.licenses.free; }; }) {}; @@ -8602,7 +8980,7 @@ sha256 = "04829y7510zxjww9pq8afvnzwyyv30c0b3a71mxwf6ympfxb9rx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-restclient"; sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb"; name = "company-restclient"; }; @@ -8614,7 +8992,7 @@ restclient ]; meta = { - homepage = "http://melpa.org/#/company-restclient"; + homepage = "https://melpa.org/#/company-restclient"; license = lib.licenses.free; }; }) {}; @@ -8629,34 +9007,34 @@ sha256 = "097v261fp0j7sjg6fkxwywpqf1vg1i2gq3i7m34vxzvs9l7ahagl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-shell"; sha256 = "0my9jghf3s4idkgrpki8mj1lm5ichfvznb09lfwf07fjhg0q1apz"; name = "company-shell"; }; packageRequires = [ cl-lib company dash ]; meta = { - homepage = "http://melpa.org/#/company-shell"; + homepage = "https://melpa.org/#/company-shell"; license = lib.licenses.free; }; }) {}; company-sourcekit = callPackage ({ company, dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sourcekit }: melpaBuild { pname = "company-sourcekit"; - version = "20151209.714"; + version = "20160323.2009"; src = fetchFromGitHub { owner = "nathankot"; repo = "company-sourcekit"; - rev = "5e1adf8d201fd94a942b40983415db1b28b6eef1"; - sha256 = "1xzwalchl9lnq9848dlvhhbzyh1wkwbciz20d1iw0fsigj5g156c"; + rev = "c9694cd8e84f4c7deffa6111297cb80eb7cb02a6"; + sha256 = "04nm015408gzybfka0sc3czkf5y61x76h3sx3vlijf67i54bz7pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-sourcekit"; sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs"; name = "company-sourcekit"; }; packageRequires = [ company dash dash-functional emacs sourcekit ]; meta = { - homepage = "http://melpa.org/#/company-sourcekit"; + homepage = "https://melpa.org/#/company-sourcekit"; license = lib.licenses.free; }; }) {}; @@ -8671,13 +9049,13 @@ sha256 = "0zjgw8v93z4dyj9g1dny6digqkh9v8m9x44zkx5magq8dbv69qsc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-tern"; sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh"; name = "company-tern"; }; packageRequires = [ cl-lib company dash dash-functional s tern ]; meta = { - homepage = "http://melpa.org/#/company-tern"; + homepage = "https://melpa.org/#/company-tern"; license = lib.licenses.free; }; }) {}; @@ -8688,17 +9066,17 @@ src = fetchFromGitHub { owner = "Wilfred"; repo = "company-try-hard"; - rev = "0401e8afa6bd4d3e9d2cf18e58955b83aef93005"; - sha256 = "18hy60fm3b3dmp29cmzbs6grlihkwifjbzv30gprwj5f6x7m8knf"; + rev = "70b94cfc40c576af404e743133979048e1bd2610"; + sha256 = "1isnk2i64kppsr23nr6qm5kwxxwcp4xazjwvm2chyzl4vbvp03p2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-try-hard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-try-hard"; sha256 = "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj"; name = "company-try-hard"; }; packageRequires = [ company dash emacs ]; meta = { - homepage = "http://melpa.org/#/company-try-hard"; + homepage = "https://melpa.org/#/company-try-hard"; license = lib.licenses.free; }; }) {}; @@ -8713,13 +9091,13 @@ sha256 = "1a9qx041w7i1ahg6rmi82hv161k57z4aljzm8wpa9wrfj8a6df2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-web"; sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy"; name = "company-web"; }; packageRequires = [ cl-lib company dash web-completion-data ]; meta = { - homepage = "http://melpa.org/#/company-web"; + homepage = "https://melpa.org/#/company-web"; license = lib.licenses.free; }; }) {}; @@ -8734,34 +9112,55 @@ sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ycm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ycm"; sha256 = "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina"; name = "company-ycm"; }; packageRequires = [ ycm ]; meta = { - homepage = "http://melpa.org/#/company-ycm"; + homepage = "https://melpa.org/#/company-ycm"; license = lib.licenses.free; }; }) {}; - company-ycmd = callPackage ({ company, dash, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, s, ycmd }: + company-ycmd = callPackage ({ company, dash, deferred, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s, ycmd }: melpaBuild { pname = "company-ycmd"; - version = "20160215.629"; + version = "20160417.1713"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "61601543ca9b70f6a92a87fb9057af6143ba5ed1"; - sha256 = "10j8zv5m36400wwkwbncqnsm616v59ww0bbkhrxcf6mn56iq8162"; + rev = "1984e49b7894b77438f2257d8058900ab82109e3"; + sha256 = "0dwii83m6cngsnyhzhnmv53p588d4pkkybmcmsj6gsar157l4azi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ycmd"; sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk"; name = "company-ycmd"; }; - packageRequires = [ company dash deferred s ycmd ]; + packageRequires = [ company dash deferred let-alist s ycmd ]; meta = { - homepage = "http://melpa.org/#/company-ycmd"; + homepage = "https://melpa.org/#/company-ycmd"; + license = lib.licenses.free; + }; + }) {}; + composable = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "composable"; + version = "20160424.1317"; + src = fetchFromGitHub { + owner = "paldepind"; + repo = "composable.el"; + rev = "be01ee5c2ee25bd25cfc6ac525d00223e66d9446"; + sha256 = "15gmp49zjmwn72q9w5vxydv8lhzih9sclinm4h1fy4rr5m1j5f8l"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/composable"; + sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy"; + name = "composable"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/composable"; license = lib.licenses.free; }; }) {}; @@ -8776,34 +9175,34 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/concurrent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/concurrent"; sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf"; name = "concurrent"; }; packageRequires = [ deferred ]; meta = { - homepage = "http://melpa.org/#/concurrent"; + homepage = "https://melpa.org/#/concurrent"; license = lib.licenses.free; }; }) {}; config-parser = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "config-parser"; - version = "20160112.544"; + version = "20160426.719"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-config-parser"; - rev = "3e42c2a61902b9de268e491efd0fe3b1a68fd4f9"; - sha256 = "0zz1k4h16pjdwiqavfbfbrbvi83ww93kgf838ap4f3n034hqfx20"; + rev = "85d559e7889d8f5b98b8794b79426ae25ec3caa5"; + sha256 = "09vq7hcsw4027whn3xrnfz9hkgkakva619hyz0zfgpvppqah9n1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/config-parser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/config-parser"; sha256 = "0wncg1v4wccb9j16rcmwz8fcmrscj7knfisq0r4qqx3skrmpccah"; name = "config-parser"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/config-parser"; + homepage = "https://melpa.org/#/config-parser"; license = lib.licenses.free; }; }) {}; @@ -8817,13 +9216,13 @@ sha256 = "1l6970ng046hw2izzb15cbbbf83l6m8c9mvic8fzjixfi3g1dl55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/confluence"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/confluence"; sha256 = "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf"; name = "confluence"; }; packageRequires = [ xml-rpc ]; meta = { - homepage = "http://melpa.org/#/confluence"; + homepage = "https://melpa.org/#/confluence"; license = lib.licenses.free; }; }) {}; @@ -8838,13 +9237,13 @@ sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/conkeror-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/conkeror-minor-mode"; sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933"; name = "conkeror-minor-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/conkeror-minor-mode"; + homepage = "https://melpa.org/#/conkeror-minor-mode"; license = lib.licenses.free; }; }) {}; @@ -8859,13 +9258,13 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/connection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/connection"; sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q"; name = "connection"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/connection"; + homepage = "https://melpa.org/#/connection"; license = lib.licenses.free; }; }) {}; @@ -8880,13 +9279,13 @@ sha256 = "0ykc3lzdypf543dgm7jpi70z08kz9hwhn2gvp06ylb22id8b3fai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/contextual"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/contextual"; sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx"; name = "contextual"; }; packageRequires = [ cl-lib dash emacs ]; meta = { - homepage = "http://melpa.org/#/contextual"; + homepage = "https://melpa.org/#/contextual"; license = lib.licenses.free; }; }) {}; @@ -8901,13 +9300,13 @@ sha256 = "1qsq543rb0z2fq716a2khs8zqyh13npzmbj58f00s8b3w3andpbh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/control-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/control-mode"; sha256 = "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6"; name = "control-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/control-mode"; + homepage = "https://melpa.org/#/control-mode"; license = lib.licenses.free; }; }) {}; @@ -8922,55 +9321,76 @@ sha256 = "1x87rra9pxvcs8jxnzhg2jr9wq0l3kp3qqqsw77bc4jsizdndss1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/corral"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/corral"; sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da"; name = "corral"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/corral"; + homepage = "https://melpa.org/#/corral"; license = lib.licenses.free; }; }) {}; counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "counsel"; - version = "20160221.1109"; + version = "20160425.507"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "4af5c2e4e83f51da91675b0de7301b09c4b24b2c"; - sha256 = "0ra5sa0dfrh1bv1q3r81r92i6xzazvw3lzz5n5qfbxcpnf8lygzk"; + rev = "c24a3728538dd7d11de9f141b3ad1d8e0996c330"; + sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/counsel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/counsel"; sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6"; name = "counsel"; }; packageRequires = [ emacs swiper ]; meta = { - homepage = "http://melpa.org/#/counsel"; + homepage = "https://melpa.org/#/counsel"; + license = lib.licenses.free; + }; + }) {}; + counsel-projectile = callPackage ({ counsel, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: + melpaBuild { + pname = "counsel-projectile"; + version = "20160414.531"; + src = fetchFromGitHub { + owner = "ericdanan"; + repo = "counsel-projectile"; + rev = "a724fc0941d22620b0a783be449ff619d240d38e"; + sha256 = "12mzbnby865r011ai678wnp88c538zchz2n6mqdvmpg4fph5kxq2"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/counsel-projectile"; + sha256 = "1gshphxaa902kq878rnizn3k1zycakwqkciz92z3xxb3bdyy0hnl"; + name = "counsel-projectile"; + }; + packageRequires = [ counsel projectile ]; + meta = { + homepage = "https://melpa.org/#/counsel-projectile"; license = lib.licenses.free; }; }) {}; coverage = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ov }: melpaBuild { pname = "coverage"; - version = "20160219.1753"; + version = "20160222.314"; src = fetchFromGitHub { owner = "trezona-lecomte"; repo = "coverage"; - rev = "57476dc0523a702e9772ebf2d500b1e1b56920b2"; - sha256 = "0ss00jqwvgb9xk2fjx7z023lqfsfz6axw7ylfp5ji60lp5wbi0qs"; + rev = "d68e5d20108e280b11a802a671bd009c7dcfff89"; + sha256 = "0glnvr10lwi17g44653qqswn9vnyh5r2nmpaa0y6lvfb952zn0k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/coverage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/coverage"; sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm"; name = "coverage"; }; packageRequires = [ cl-lib ov ]; meta = { - homepage = "http://melpa.org/#/coverage"; + homepage = "https://melpa.org/#/coverage"; license = lib.licenses.free; }; }) {}; @@ -8985,34 +9405,55 @@ sha256 = "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cp5022x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cp5022x"; sha256 = "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl"; name = "cp5022x"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cp5022x"; + homepage = "https://melpa.org/#/cp5022x"; license = lib.licenses.free; }; }) {}; cpputils-cmake = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cpputils-cmake"; - version = "20160216.2240"; + version = "20160313.1858"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "cpputils-cmake"; - rev = "f18c96750b1b2f4e1537fac7df2818524ccda665"; - sha256 = "0ky59gz5pvi4m5b9rh13ywfmclrmiwalynpqw652rmc6yfzv0fnz"; + rev = "6821b63b82caed769bd679a5753b721225bafa91"; + sha256 = "0wrg84szxnqy95piyxyd7w6jiwsfimnjfaprl1g9szdyi3w99kmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cpputils-cmake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cpputils-cmake"; sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60"; name = "cpputils-cmake"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cpputils-cmake"; + homepage = "https://melpa.org/#/cpputils-cmake"; + license = lib.licenses.free; + }; + }) {}; + cql-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "cql-mode"; + version = "20160413.1943"; + src = fetchFromGitHub { + owner = "Yuki-Inoue"; + repo = "cql-mode"; + rev = "060610c5570a26838b1502fd7576777ff713ea25"; + sha256 = "18nxsd1axd3m70p7cw4ifcj33z9v5w25v6g09q38maixymlad962"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cql-mode"; + sha256 = "0wdal8w0i73xjak2g0wazs54z957f4lj4n8qdmzpcylzpl1lqd88"; + name = "cql-mode"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/cql-mode"; license = lib.licenses.free; }; }) {}; @@ -9027,13 +9468,13 @@ sha256 = "0y37fx4ghx8a74cp7ci6p5yfpji8g42hlah2xcwfnyw0qlpqfbnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crab"; sha256 = "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj"; name = "crab"; }; packageRequires = [ json websocket ]; meta = { - homepage = "http://melpa.org/#/crab"; + homepage = "https://melpa.org/#/crab"; license = lib.licenses.free; }; }) {}; @@ -9048,13 +9489,13 @@ sha256 = "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crappy-jsp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crappy-jsp-mode"; sha256 = "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii"; name = "crappy-jsp-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/crappy-jsp-mode"; + homepage = "https://melpa.org/#/crappy-jsp-mode"; license = lib.licenses.free; }; }) {}; @@ -9069,13 +9510,13 @@ sha256 = "0l4bvk3m355b25d7pdnhczn3fckbq0rg2l4r0a0d94004ksvylqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/creds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/creds"; sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk"; name = "creds"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/creds"; + homepage = "https://melpa.org/#/creds"; license = lib.licenses.free; }; }) {}; @@ -9090,13 +9531,13 @@ sha256 = "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/creole"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/creole"; sha256 = "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5"; name = "creole"; }; packageRequires = [ kv noflet ]; meta = { - homepage = "http://melpa.org/#/creole"; + homepage = "https://melpa.org/#/creole"; license = lib.licenses.free; }; }) {}; @@ -9111,13 +9552,13 @@ sha256 = "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/creole-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/creole-mode"; sha256 = "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s"; name = "creole-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/creole-mode"; + homepage = "https://melpa.org/#/creole-mode"; license = lib.licenses.free; }; }) {}; @@ -9132,13 +9573,13 @@ sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crm-custom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crm-custom"; sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c"; name = "crm-custom"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/crm-custom"; + homepage = "https://melpa.org/#/crm-custom"; license = lib.licenses.free; }; }) {}; @@ -9153,13 +9594,13 @@ sha256 = "1r9dhk8h8lq18vi0hjai8y4z42yjxg18786mcr2qs5m3q1ampf9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crontab-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crontab-mode"; sha256 = "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci"; name = "crontab-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/crontab-mode"; + homepage = "https://melpa.org/#/crontab-mode"; license = lib.licenses.free; }; }) {}; @@ -9168,38 +9609,38 @@ pname = "crosshairs"; version = "20151231.1438"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/crosshairs.el"; + url = "https://www.emacswiki.org/emacs/download/crosshairs.el"; sha256 = "120hxk82i0r4qan4hfk9ldmw5a8bzv7p683lrnlcx9gyxgkia3am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crosshairs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crosshairs"; sha256 = "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp"; name = "crosshairs"; }; packageRequires = [ col-highlight hl-line-plus vline ]; meta = { - homepage = "http://melpa.org/#/crosshairs"; + homepage = "https://melpa.org/#/crosshairs"; license = lib.licenses.free; }; }) {}; crux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "crux"; - version = "20160214.437"; + version = "20160405.4"; src = fetchFromGitHub { owner = "bbatsov"; repo = "crux"; - rev = "ca62859c495732b720faebf9a08e40fd5db0d947"; - sha256 = "0skwj8cp8x2v8443jp03safrfx9adabdgsp01x95jhlc5hf2hfdc"; + rev = "6d11d2e6b56e237bb871af7e21ba6ef30e0a10da"; + sha256 = "0yxs0bqb2z2zpvbysbmlsiyij49cxfjkb1a46vms6s2gpbj940h7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crux"; sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c"; name = "crux"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/crux"; + homepage = "https://melpa.org/#/crux"; license = lib.licenses.free; }; }) {}; @@ -9214,13 +9655,13 @@ sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cryptol-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cryptol-mode"; sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2"; name = "cryptol-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cryptol-mode"; + homepage = "https://melpa.org/#/cryptol-mode"; license = lib.licenses.free; }; }) {}; @@ -9229,61 +9670,61 @@ pname = "cryptsy-public-api"; version = "20141008.728"; src = fetchFromGitHub { - owner = "sodaware"; + owner = "Sodaware"; repo = "cryptsy-public-api.el"; rev = "59bdf2425dccc27cc1598868a1a810885508cff5"; sha256 = "0ry0087g1br3397js7a9iy6k2x6p0dgqlggxx9gaqhms7pmpq14b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cryptsy-public-api"; - sha256 = "1v78rm44af3vgsml5f6kpwvnb4ks6n49br2fhjgh6nc7g3jmz97n"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cryptsy-public-api"; + sha256 = "1331nrx57136k09a7p6imv0k9g6w8ibpwn5xmv33dxc22hsmc41j"; name = "cryptsy-public-api"; }; packageRequires = [ json ]; meta = { - homepage = "http://melpa.org/#/cryptsy-public-api"; + homepage = "https://melpa.org/#/cryptsy-public-api"; license = lib.licenses.free; }; }) {}; csharp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "csharp-mode"; - version = "20160217.1411"; + version = "20160414.422"; src = fetchFromGitHub { owner = "josteink"; repo = "csharp-mode"; - rev = "57b23533673b39da9cd6d76f69a52ac4a2a607cb"; - sha256 = "1q5kpzxgv14dj1q2dmlpxw2yj01gv3mjl2shhr1n89z8zpf6figl"; + rev = "a631944161af0de659695dcfad19940f65716175"; + sha256 = "00gccc5sl6ng2g9hayckjp6ib93v5azhmhiksmxxddkqwhgw0qg3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/csharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/csharp-mode"; sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0"; name = "csharp-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/csharp-mode"; + homepage = "https://melpa.org/#/csharp-mode"; license = lib.licenses.free; }; }) {}; css-comb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "css-comb"; - version = "20150502.1528"; + version = "20160416.59"; src = fetchFromGitHub { owner = "channikhabra"; repo = "css-comb.el"; - rev = "980251dc5d3ce0e607498f8a793f6d67a77d9cda"; - sha256 = "0ljhar80kk7k54jz1xiq4r0w6s1wkacl7qz9wkvvbzhjb0z049hq"; + rev = "6fa45e5af8a8bd3af6c1154cde3540e32c4206ee"; + sha256 = "0nvl6y90p9crk12j7aw0cqdjhli7xbrx3hqckxsnvrnxy4zax7nk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/css-comb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/css-comb"; sha256 = "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf"; name = "css-comb"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/css-comb"; + homepage = "https://melpa.org/#/css-comb"; license = lib.licenses.free; }; }) {}; @@ -9298,13 +9739,13 @@ sha256 = "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/css-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/css-eldoc"; sha256 = "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf"; name = "css-eldoc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/css-eldoc"; + homepage = "https://melpa.org/#/css-eldoc"; license = lib.licenses.free; }; }) {}; @@ -9319,13 +9760,13 @@ sha256 = "0hyf4im7b8zka065daw7yxrb3670dpp8q92vd2gcsva1jla92h9y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cssfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cssfmt"; sha256 = "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8"; name = "cssfmt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cssfmt"; + homepage = "https://melpa.org/#/cssfmt"; license = lib.licenses.free; }; }) {}; @@ -9340,13 +9781,13 @@ sha256 = "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cssh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cssh"; sha256 = "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk"; name = "cssh"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cssh"; + homepage = "https://melpa.org/#/cssh"; license = lib.licenses.free; }; }) {}; @@ -9354,17 +9795,17 @@ pname = "csv-nav"; version = "20130407.1320"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/csv-nav.el"; + url = "https://www.emacswiki.org/emacs/download/csv-nav.el"; sha256 = "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/csv-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/csv-nav"; sha256 = "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj"; name = "csv-nav"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/csv-nav"; + homepage = "https://melpa.org/#/csv-nav"; license = lib.licenses.free; }; }) {}; @@ -9379,13 +9820,13 @@ sha256 = "07vasdlai49qs0nsmq2cz1kcq1adqyarv8199imgwwcbh4vn7dqb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctable"; sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1"; name = "ctable"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ctable"; + homepage = "https://melpa.org/#/ctable"; license = lib.licenses.free; }; }) {}; @@ -9398,13 +9839,13 @@ sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctags"; sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y"; name = "ctags"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ctags"; + homepage = "https://melpa.org/#/ctags"; license = lib.licenses.free; }; }) {}; @@ -9419,13 +9860,13 @@ sha256 = "1va394nls4yi77rgm0kz5r00xiidj6lwcabhqxisz08m3h8gfkh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctags-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctags-update"; sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf"; name = "ctags-update"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ctags-update"; + homepage = "https://melpa.org/#/ctags-update"; license = lib.licenses.free; }; }) {}; @@ -9440,13 +9881,13 @@ sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctl-mode"; sha256 = "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj"; name = "ctl-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ctl-mode"; + homepage = "https://melpa.org/#/ctl-mode"; license = lib.licenses.free; }; }) {}; @@ -9461,13 +9902,13 @@ sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctxmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctxmenu"; sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp"; name = "ctxmenu"; }; packageRequires = [ log4e popup yaxception ]; meta = { - homepage = "http://melpa.org/#/ctxmenu"; + homepage = "https://melpa.org/#/ctxmenu"; license = lib.licenses.free; }; }) {}; @@ -9482,13 +9923,13 @@ sha256 = "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cucumber-goto-step"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cucumber-goto-step"; sha256 = "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8"; name = "cucumber-goto-step"; }; packageRequires = [ pcre2el ]; meta = { - homepage = "http://melpa.org/#/cucumber-goto-step"; + homepage = "https://melpa.org/#/cucumber-goto-step"; license = lib.licenses.free; }; }) {}; @@ -9503,13 +9944,13 @@ sha256 = "1ms0z5zplcbdwwdbgsjsbm32i57z9i2i8j9y3wm0pwzyz4zr36zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cuda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cuda-mode"; sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300"; name = "cuda-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cuda-mode"; + homepage = "https://melpa.org/#/cuda-mode"; license = lib.licenses.free; }; }) {}; @@ -9517,17 +9958,17 @@ pname = "cursor-chg"; version = "20151231.1440"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/cursor-chg.el"; + url = "https://www.emacswiki.org/emacs/download/cursor-chg.el"; sha256 = "1w0msh4mfhwglkwgb8ksqfdzbd1bvspllydnjzhc0yl3s7qrifbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cursor-chg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cursor-chg"; sha256 = "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk"; name = "cursor-chg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cursor-chg"; + homepage = "https://melpa.org/#/cursor-chg"; license = lib.licenses.free; }; }) {}; @@ -9542,13 +9983,13 @@ sha256 = "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cursor-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cursor-test"; sha256 = "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1"; name = "cursor-test"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/cursor-test"; + homepage = "https://melpa.org/#/cursor-test"; license = lib.licenses.free; }; }) {}; @@ -9556,17 +9997,17 @@ pname = "cus-edit-plus"; version = "20151231.1441"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/cus-edit+.el"; + url = "https://www.emacswiki.org/emacs/download/cus-edit+.el"; sha256 = "1p0kacbw5zfrd7zplhlh7j1890spvn8p0bryvqqmyf8w5873pcmh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cus-edit+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cus-edit+"; sha256 = "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz"; name = "cus-edit-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cus-edit+"; + homepage = "https://melpa.org/#/cus-edit+"; license = lib.licenses.free; }; }) {}; @@ -9581,13 +10022,13 @@ sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cyberpunk-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cyberpunk-theme"; sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9"; name = "cyberpunk-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cyberpunk-theme"; + homepage = "https://melpa.org/#/cyberpunk-theme"; license = lib.licenses.free; }; }) {}; @@ -9602,13 +10043,13 @@ sha256 = "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cycbuf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cycbuf"; sha256 = "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw"; name = "cycbuf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cycbuf"; + homepage = "https://melpa.org/#/cycbuf"; license = lib.licenses.free; }; }) {}; @@ -9623,13 +10064,13 @@ sha256 = "0hf3r89n9zn7wkay71drxadsnd9zm6p6kvg5mvwzdy3x3z4cfyi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cycle-resize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cycle-resize"; sha256 = "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi"; name = "cycle-resize"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cycle-resize"; + homepage = "https://melpa.org/#/cycle-resize"; license = lib.licenses.free; }; }) {}; @@ -9644,13 +10085,13 @@ sha256 = "125s6vwbb9zpx6h3vrxnn7nr8pb45vhxd70ba2r3f87dlxah93am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cycle-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cycle-themes"; sha256 = "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc"; name = "cycle-themes"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/cycle-themes"; + homepage = "https://melpa.org/#/cycle-themes"; license = lib.licenses.free; }; }) {}; @@ -9658,17 +10099,17 @@ pname = "cygwin-mount"; version = "20131111.1546"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/cygwin-mount.el"; + url = "https://www.emacswiki.org/emacs/download/cygwin-mount.el"; sha256 = "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cygwin-mount"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cygwin-mount"; sha256 = "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb"; name = "cygwin-mount"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cygwin-mount"; + homepage = "https://melpa.org/#/cygwin-mount"; license = lib.licenses.free; }; }) {}; @@ -9683,13 +10124,13 @@ sha256 = "1xcd8j5chh5j3fibi8bg2il6r09vza5xlb5fqm9j8sg3vkab26z8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cyphejor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cyphejor"; sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g"; name = "cyphejor"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/cyphejor"; + homepage = "https://melpa.org/#/cyphejor"; license = lib.licenses.free; }; }) {}; @@ -9704,13 +10145,13 @@ sha256 = "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cypher-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cypher-mode"; sha256 = "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0"; name = "cypher-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cypher-mode"; + homepage = "https://melpa.org/#/cypher-mode"; license = lib.licenses.free; }; }) {}; @@ -9721,17 +10162,17 @@ src = fetchFromGitHub { owner = "cython"; repo = "cython"; - rev = "eca0803d7ce59597cdaf35fd54ce7cda193f262b"; - sha256 = "1r9mky9qm8y49pwr3qqbgydvvjnxkd1c0wfj6h0izrmpwjz35r0r"; + rev = "d591d500d9b0505ffd01021c0cebc35b872efa15"; + sha256 = "1923rizwm73vy9pkr4lznywq1d2rfswy387k3l6wp00c9fxp9yqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cython-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cython-mode"; sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i"; name = "cython-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cython-mode"; + homepage = "https://melpa.org/#/cython-mode"; license = lib.licenses.free; }; }) {}; @@ -9746,34 +10187,34 @@ sha256 = "1ck1a61m0kjynqwzbw9hnc7y2a6gd6l1430wm7mw3qqsq959qwm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/czech-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/czech-holidays"; sha256 = "10c0zscbn7pr9xqdqksy4kh0cxjg9bhw8p4qzlk18fd4c8rhqn84"; name = "czech-holidays"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/czech-holidays"; + homepage = "https://melpa.org/#/czech-holidays"; license = lib.licenses.free; }; }) {}; d-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "d-mode"; - version = "20151206.154"; + version = "20160416.1138"; src = fetchFromGitHub { owner = "Emacs-D-Mode-Maintainers"; repo = "Emacs-D-Mode"; - rev = "5501b77a1e212e27dd78e8c0e86424064b439cbb"; - sha256 = "0fqirypxhbvnhz86rznwdx553ppg0z0hxh1h04qg7y58g01vpsdq"; + rev = "600c70be3b9d925caa63d8396a166dd8173f30f5"; + sha256 = "1zp73jy6wpjvd2xsclqazxqih1zp27gm43aiw9v35xsjh92w79z1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/d-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/d-mode"; sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2"; name = "d-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/d-mode"; + homepage = "https://melpa.org/#/d-mode"; license = lib.licenses.free; }; }) {}; @@ -9788,13 +10229,13 @@ sha256 = "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dactyl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dactyl-mode"; sha256 = "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm"; name = "dactyl-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dactyl-mode"; + homepage = "https://melpa.org/#/dactyl-mode"; license = lib.licenses.free; }; }) {}; @@ -9809,34 +10250,55 @@ sha256 = "0fd0h07m42q2h1ggsjra20kzv209rpb4apjv408h2dxqm8sy0jiy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dakrone-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dakrone-theme"; sha256 = "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814"; name = "dakrone-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dakrone-theme"; + homepage = "https://melpa.org/#/dakrone-theme"; + license = lib.licenses.free; + }; + }) {}; + danneskjold-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "danneskjold-theme"; + version = "20160409.1217"; + src = fetchFromGitHub { + owner = "rails-to-cosmos"; + repo = "danneskjold-theme"; + rev = "fb851230b9c0b87216a0974d038328cd44ab6d33"; + sha256 = "1shysnf34qxd5rabad14a26m5id88g4wl4y4mwap53l2p3mcxq38"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/danneskjold-theme"; + sha256 = "0cwab7qp293g92n9mjjz2vpg1pz2q3d40hfszf29rci89wsf3yxl"; + name = "danneskjold-theme"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/danneskjold-theme"; license = lib.licenses.free; }; }) {}; darcula-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darcula-theme"; - version = "20160123.1627"; + version = "20160305.421"; src = fetchFromGitHub { owner = "fommil"; repo = "darcula-theme-emacs"; - rev = "05c98433e23f2018e2e065dcdc534d73dac8e88e"; - sha256 = "1abwx7fqbr395z3l3dshh242lxqpwr1mszmj1pxj420qi1qria6n"; + rev = "eb799be242a9420a8e6730d659939d4703d44b43"; + sha256 = "128a9iv1vrassmk4sy4cs4nj6lggr5v4rhjj04v1xssj5nn5flxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darcula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darcula-theme"; sha256 = "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg"; name = "darcula-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/darcula-theme"; + homepage = "https://melpa.org/#/darcula-theme"; license = lib.licenses.free; }; }) {}; @@ -9851,34 +10313,34 @@ sha256 = "07w5aycgaps904q8lk52d0g28wxq41c82xgl5mw2q56n3s5iixfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dark-krystal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dark-krystal-theme"; sha256 = "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j"; name = "dark-krystal-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/dark-krystal-theme"; + homepage = "https://melpa.org/#/dark-krystal-theme"; license = lib.licenses.free; }; }) {}; dark-mint-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dark-mint-theme"; - version = "20160217.1502"; + version = "20160302.42"; src = fetchFromGitHub { owner = "shaunvxc"; repo = "dark-mint-theme"; - rev = "1a6d7e49982832c0a282128e011512161c8f2b21"; - sha256 = "0xsbmhpyis0c0hfk6qzx298pw042ns44qmm80qf8hwhhqp38mfyx"; + rev = "95c30a26de31549cd341184ba9ab2be8fdc67eba"; + sha256 = "052k8mqxx8lkadxyz6rwa7l741rwbd1blk2ggpsj2s1g6p9l68a1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dark-mint-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dark-mint-theme"; sha256 = "0rljpwycarbn8rnac9vz7n23j69wmx35gn5dx77v0f0ws8ni4k9m"; name = "dark-mint-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dark-mint-theme"; + homepage = "https://melpa.org/#/dark-mint-theme"; license = lib.licenses.free; }; }) {}; @@ -9893,13 +10355,13 @@ sha256 = "1w0y2j0j9n107dbk7ksr9bipshjfs9dk08qbs9m6h5aqh4hmwa4r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dark-souls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dark-souls"; sha256 = "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc"; name = "dark-souls"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dark-souls"; + homepage = "https://melpa.org/#/dark-souls"; license = lib.licenses.free; }; }) {}; @@ -9914,55 +10376,55 @@ sha256 = "19vrxfzhi0sqf7frzjx5z02d65r2jp1w2nhhf0527g7baid5hqvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darkburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darkburn-theme"; sha256 = "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w"; name = "darkburn-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/darkburn-theme"; + homepage = "https://melpa.org/#/darkburn-theme"; license = lib.licenses.free; }; }) {}; darkmine-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darkmine-theme"; - version = "20151216.832"; + version = "20160406.124"; src = fetchFromGitHub { owner = "pierre-lecocq"; repo = "darkmine-theme"; - rev = "8cd5ff16bede4c8e1d063bc46fc1089a36a05bd3"; - sha256 = "0ajxlrnz1228w8ldgraw6a4s605isbr67p8s382jvia2zf821fmp"; + rev = "7f7e82ca03bcad52911fa41fb3e204e32d6ee63e"; + sha256 = "0d2g4iyp8gyfrcc1gkvl40p1shlw1sadswzhry0m1lgbyxiiklrz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darkmine-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darkmine-theme"; sha256 = "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5"; name = "darkmine-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/darkmine-theme"; + homepage = "https://melpa.org/#/darkmine-theme"; license = lib.licenses.free; }; }) {}; darktooth-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darktooth-theme"; - version = "20151121.1922"; + version = "20160406.1024"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-theme-darktooth"; - rev = "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3"; - sha256 = "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9"; + rev = "b9c8bd4d513b422412be92bb807782905001b101"; + sha256 = "0qqak05w8y5734d78wc22l82y9riz12mxsg0b4zrjbd2l16bxf1c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darktooth-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darktooth-theme"; sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs"; name = "darktooth-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/darktooth-theme"; + homepage = "https://melpa.org/#/darktooth-theme"; license = lib.licenses.free; }; }) {}; @@ -9977,34 +10439,34 @@ sha256 = "0ylzgaf4g0fh16rc061iaw3jrl2sjiwpr4x1ndk2bp0j14n7hqid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dart-mode"; sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff"; name = "dart-mode"; }; packageRequires = [ cl-lib dash flycheck ]; meta = { - homepage = "http://melpa.org/#/dart-mode"; + homepage = "https://melpa.org/#/dart-mode"; license = lib.licenses.free; }; }) {}; dash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dash"; - version = "20151216.1515"; + version = "20160306.1422"; src = fetchFromGitHub { owner = "magnars"; repo = "dash.el"; - rev = "8a46d3c7c126d3e979f7f9b36867a413694cd8df"; - sha256 = "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb"; + rev = "a9f90d7834337dadee1a69f2089e39fd81b22ba7"; + sha256 = "04fdhxns5vn5iljni1sc8sw0mj53rlgyzafikddj7c7x7bpdc0iz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dash"; sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz"; name = "dash"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dash"; + homepage = "https://melpa.org/#/dash"; license = lib.licenses.free; }; }) {}; @@ -10019,13 +10481,13 @@ sha256 = "0zd50sr51mmvndjb9qfc3sn502nhc939rhd454jbkmlrzqsxvphj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dash-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dash-at-point"; sha256 = "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m"; name = "dash-at-point"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dash-at-point"; + homepage = "https://melpa.org/#/dash-at-point"; license = lib.licenses.free; }; }) {}; @@ -10036,17 +10498,17 @@ src = fetchFromGitHub { owner = "magnars"; repo = "dash.el"; - rev = "8a46d3c7c126d3e979f7f9b36867a413694cd8df"; - sha256 = "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb"; + rev = "a9f90d7834337dadee1a69f2089e39fd81b22ba7"; + sha256 = "04fdhxns5vn5iljni1sc8sw0mj53rlgyzafikddj7c7x7bpdc0iz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dash-functional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dash-functional"; sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p"; name = "dash-functional"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/dash-functional"; + homepage = "https://melpa.org/#/dash-functional"; license = lib.licenses.free; }; }) {}; @@ -10061,13 +10523,13 @@ sha256 = "0l4z9rjla4xvm2hmp07xil69q1cg0v8iff0ya41svaqr944qf7hf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/date-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/date-at-point"; sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0"; name = "date-at-point"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/date-at-point"; + homepage = "https://melpa.org/#/date-at-point"; license = lib.licenses.free; }; }) {}; @@ -10082,13 +10544,13 @@ sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/date-field"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/date-field"; sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk"; name = "date-field"; }; packageRequires = [ dash log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/date-field"; + homepage = "https://melpa.org/#/date-field"; license = lib.licenses.free; }; }) {}; @@ -10103,13 +10565,13 @@ sha256 = "0ry7magy9x63xv2apjbpgszp0slch92g23gqwl4rd564qafajmf0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/datomic-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/datomic-snippets"; sha256 = "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r"; name = "datomic-snippets"; }; packageRequires = [ dash s yasnippet ]; meta = { - homepage = "http://melpa.org/#/datomic-snippets"; + homepage = "https://melpa.org/#/datomic-snippets"; license = lib.licenses.free; }; }) {}; @@ -10124,13 +10586,13 @@ sha256 = "1j0mk8vyr6sniliq0ix77jldx8vzl73nd5yhh82klzgyymal58ms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dayone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dayone"; sha256 = "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l"; name = "dayone"; }; packageRequires = [ ht mustache uuid ]; meta = { - homepage = "http://melpa.org/#/dayone"; + homepage = "https://melpa.org/#/dayone"; license = lib.licenses.free; }; }) {}; @@ -10145,13 +10607,13 @@ sha256 = "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/db"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/db"; sha256 = "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n"; name = "db"; }; packageRequires = [ kv ]; meta = { - homepage = "http://melpa.org/#/db"; + homepage = "https://melpa.org/#/db"; license = lib.licenses.free; }; }) {}; @@ -10166,34 +10628,34 @@ sha256 = "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/db-pg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/db-pg"; sha256 = "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg"; name = "db-pg"; }; packageRequires = [ db pg ]; meta = { - homepage = "http://melpa.org/#/db-pg"; + homepage = "https://melpa.org/#/db-pg"; license = lib.licenses.free; }; }) {}; ddskk = callPackage ({ ccc, cdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ddskk"; - version = "20160130.2300"; + version = "20160315.908"; src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; - rev = "4cb5da1418f447423cb81ca99539f77a6067ad77"; - sha256 = "145n50vspxaslvhf3ahlp435h5slz24csa2h62zly18xprw1ai1h"; + rev = "444991051df5d8bd2babd4249d2311dc39890e37"; + sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ddskk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ddskk"; sha256 = "01pb00p126q7swsl12yjrhghln2wgaj65jhjr0k7dkk64x4psyc9"; name = "ddskk"; }; packageRequires = [ ccc cdb ]; meta = { - homepage = "http://melpa.org/#/ddskk"; + homepage = "https://melpa.org/#/ddskk"; license = lib.licenses.free; }; }) {}; @@ -10208,13 +10670,13 @@ sha256 = "1darxggvyv100cfb7imyzvgif8a09pnky62pf3bl2612hhvaijfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/debpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/debpaste"; sha256 = "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw"; name = "debpaste"; }; packageRequires = [ xml-rpc ]; meta = { - homepage = "http://melpa.org/#/debpaste"; + homepage = "https://melpa.org/#/debpaste"; license = lib.licenses.free; }; }) {}; @@ -10229,13 +10691,34 @@ sha256 = "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/debug-print"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/debug-print"; sha256 = "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm"; name = "debug-print"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/debug-print"; + homepage = "https://melpa.org/#/debug-print"; + license = lib.licenses.free; + }; + }) {}; + decide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "decide"; + version = "20160314.1448"; + src = fetchFromGitHub { + owner = "lifelike"; + repo = "decide-mode"; + rev = "f243afc7cff11d9696552695e2dfc0ca91e1c5b6"; + sha256 = "05n57djagbkm8im4168d5d2fr2ibfnckya7qzrca1f9rmm0ah15j"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/decide"; + sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc"; + name = "decide"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/decide"; license = lib.licenses.free; }; }) {}; @@ -10250,13 +10733,13 @@ sha256 = "01bafkc99g9vi45y95mi3sqin2lsfw885z63f7llpqvnfav86n4y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/decl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/decl"; sha256 = "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k"; name = "decl"; }; packageRequires = [ cl-lib dash emacs ]; meta = { - homepage = "http://melpa.org/#/decl"; + homepage = "https://melpa.org/#/decl"; license = lib.licenses.free; }; }) {}; @@ -10271,34 +10754,34 @@ sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dedicated"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dedicated"; sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9"; name = "dedicated"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dedicated"; + homepage = "https://melpa.org/#/dedicated"; license = lib.licenses.free; }; }) {}; dedukti-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dedukti-mode"; - version = "20150820.908"; + version = "20160329.1202"; src = fetchFromGitHub { owner = "rafoo"; repo = "dedukti-mode"; - rev = "7d9f459c87c84f1067eb87542da4549de5e38650"; - sha256 = "1haixiy94r50rfza64dypb7fi256231pf06g6p2il9kyscqg0zz2"; + rev = "dab509952b6c64d0bb12b5f60dd93e3b38b01d62"; + sha256 = "1lnvr1rxgf1i0dh1gqlkghz6r4lm1llpv3vhky313220ibxrpsvm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dedukti-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dedukti-mode"; sha256 = "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9"; name = "dedukti-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dedukti-mode"; + homepage = "https://melpa.org/#/dedukti-mode"; license = lib.licenses.free; }; }) {}; @@ -10313,13 +10796,13 @@ sha256 = "1ysv1q7n7k2l4x8x7hlzmxmawyxl5lx627sbdv3phkvjh5zccsm8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/default-text-scale"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/default-text-scale"; sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi"; name = "default-text-scale"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/default-text-scale"; + homepage = "https://melpa.org/#/default-text-scale"; license = lib.licenses.free; }; }) {}; @@ -10334,13 +10817,13 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/deferred"; sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr"; name = "deferred"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/deferred"; + homepage = "https://melpa.org/#/deferred"; license = lib.licenses.free; }; }) {}; @@ -10355,13 +10838,13 @@ sha256 = "02i621yq2ih0zp7mna8iykj41prv77hvcadz7rx8c942zyvjzxqd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/define-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/define-word"; sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a"; name = "define-word"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/define-word"; + homepage = "https://melpa.org/#/define-word"; license = lib.licenses.free; }; }) {}; @@ -10376,50 +10859,50 @@ sha256 = "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/defproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/defproject"; sha256 = "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm"; name = "defproject"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/defproject"; + homepage = "https://melpa.org/#/defproject"; license = lib.licenses.free; }; }) {}; deft = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "deft"; - version = "20151222.725"; + version = "20160422.1251"; src = fetchgit { url = "git://jblevins.org/git/deft.git"; - rev = "2dd64ddc798a009e62289d65abfa621735461b7a"; - sha256 = "15c3ec6fcfae63201652394205fee951f3c1db8d3c6fc5f48c306b9b775c8e63"; + rev = "5f8b46c984edf935cf130f761bf7a5b21ee25f33"; + sha256 = "158krhblmjz87zyx308c66v5hncw8s2wvy3qsk8qv7rg9d7xg13g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/deft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/deft"; sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p"; name = "deft"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/deft"; + homepage = "https://melpa.org/#/deft"; license = lib.licenses.free; }; }) {}; delight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "delight"; - version = "20141128.837"; + version = "20160305.1751"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/delight.el"; - sha256 = "1gap2icsqi7cryfvcffh41zqg2ghl4y7kg9pngzdfjrc3m7sf635"; + url = "https://www.emacswiki.org/emacs/download/delight.el"; + sha256 = "0lqg23mpzcbcfkn84wm8i1bma73wpyh3m5f0zjrrzbwpgsmw8fqd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/delight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/delight"; sha256 = "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj"; name = "delight"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/delight"; + homepage = "https://melpa.org/#/delight"; license = lib.licenses.free; }; }) {}; @@ -10434,13 +10917,13 @@ sha256 = "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/delim-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/delim-kill"; sha256 = "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig"; name = "delim-kill"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/delim-kill"; + homepage = "https://melpa.org/#/delim-kill"; license = lib.licenses.free; }; }) {}; @@ -10455,34 +10938,34 @@ sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/demangle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/demangle-mode"; sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk"; name = "demangle-mode"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/demangle-mode"; + homepage = "https://melpa.org/#/demangle-mode"; license = lib.licenses.free; }; }) {}; demo-it = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "demo-it"; - version = "20160116.2141"; + version = "20160413.1431"; src = fetchFromGitHub { owner = "howardabrams"; repo = "demo-it"; - rev = "ca0e5b93d104d31152da13ee4c8d4d48c910a29f"; - sha256 = "1hdnjwsmwbwn0ziyw805jjpaj3zpm374g9y4yn5ip4l9x4vq73xv"; + rev = "85b6dcdbb0d257afc0ee4455340432d190aa6114"; + sha256 = "0bilf8q2y28vymvi796qs20whw12wi2n2apyxwgcghwmlddzz29c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/demo-it"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/demo-it"; sha256 = "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7"; name = "demo-it"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/demo-it"; + homepage = "https://melpa.org/#/demo-it"; license = lib.licenses.free; }; }) {}; @@ -10497,54 +10980,76 @@ sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/describe-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/describe-number"; sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji"; name = "describe-number"; }; packageRequires = [ yabin ]; meta = { - homepage = "http://melpa.org/#/describe-number"; + homepage = "https://melpa.org/#/describe-number"; license = lib.licenses.free; }; }) {}; desktop-plus = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "desktop-plus"; - version = "20151004.1440"; + version = "20160330.812"; src = fetchFromGitHub { owner = "ffevotte"; repo = "desktop-plus"; - rev = "8ef242d0aa6f715ff4c5abbc4ee6be66a90ffedd"; - sha256 = "18k5898r4n96h93xsvjrpm90hz3rd0ir6x3axjzqwwrgs2ik7pj2"; + rev = "a9cb8dd0af5071d9f148211b408c54306239381c"; + sha256 = "10f5dkrwfd6a1ab98j2kywkh1h01pnanvj2i7fv9a9vxnmiywrcf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/desktop+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/desktop+"; sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8"; name = "desktop-plus"; }; packageRequires = [ dash emacs f ]; meta = { - homepage = "http://melpa.org/#/desktop+"; + homepage = "https://melpa.org/#/desktop+"; license = lib.licenses.free; }; }) {}; - desktop-registry = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: + desktop-registry = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "desktop-registry"; version = "20140119.1543"; - src = fetchgit { - url = "git://ryuslash.org/desktop-registry.git"; + src = fetchFromGitHub { + owner = "ryuslash"; + repo = "desktop-registry"; rev = "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd"; - sha256 = "7c7727dd1d63be98e428700bfe340f2c4e7ff713fcc9b2b743a3366d786ae02d"; + sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/desktop-registry"; - sha256 = "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/desktop-registry"; + sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v"; name = "desktop-registry"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/desktop-registry"; + homepage = "https://melpa.org/#/desktop-registry"; + license = lib.licenses.free; + }; + }) {}; + devdocs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "devdocs"; + version = "20160412.1408"; + src = fetchFromGitHub { + owner = "xuchunyang"; + repo = "devdocs.el"; + rev = "502ccc623b58c75ebefc10e41b8c635fc5d0baf9"; + sha256 = "0m4gw6jsdj8pq6wxvvczwvp8pcjnz57ybnb9zib4bq1cajny42zg"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/devdocs"; + sha256 = "04a1yspk3dwx0lzyg03lrbvig4g6sqmavzwicshdyr7q1bny7ikn"; + name = "devdocs"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/devdocs"; license = lib.licenses.free; }; }) {}; @@ -10553,18 +11058,18 @@ pname = "dic-lookup-w3m"; version = "20140513.1941"; src = fetchsvn { - url = "http://svn.sourceforge.jp/svnroot/dic-lookup-w3m/"; - rev = "79"; - sha256 = "0lg6i9vw6xsnaamfjczz0cr41vlv1bs03h8c8y2jxpdkgaab31nc"; + url = "http://svn.osdn.jp/svnroot/dic-lookup-w3m/"; + rev = "82"; + sha256 = "0h1648yk5fx3d4i9ik4ij7r4xb3ddv083dj8irf49ndd51hcwdxc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dic-lookup-w3m"; - sha256 = "0myv7sns9ajyr7fzn6kd8a64pfapjdksgby5ilh9mr99imm8dcfv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dic-lookup-w3m"; + sha256 = "0zc0phym431bjqg0r8n5xsa98m52xnbhpqlh0jcvcy02nbmdc584"; name = "dic-lookup-w3m"; }; packageRequires = [ stem w3m ]; meta = { - homepage = "http://melpa.org/#/dic-lookup-w3m"; + homepage = "https://melpa.org/#/dic-lookup-w3m"; license = lib.licenses.free; }; }) {}; @@ -10579,13 +11084,13 @@ sha256 = "0b8yg03h5arfl5rlzlg2a6q7nhx452mdyngizjzxlvkmrqnlra4v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dictcc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dictcc"; sha256 = "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm"; name = "dictcc"; }; packageRequires = [ cl-lib dash emacs helm s ]; meta = { - homepage = "http://melpa.org/#/dictcc"; + homepage = "https://melpa.org/#/dictcc"; license = lib.licenses.free; }; }) {}; @@ -10600,13 +11105,13 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dictionary"; sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w"; name = "dictionary"; }; packageRequires = [ connection link ]; meta = { - homepage = "http://melpa.org/#/dictionary"; + homepage = "https://melpa.org/#/dictionary"; license = lib.licenses.free; }; }) {}; @@ -10621,13 +11126,13 @@ sha256 = "0sjwpvzd4x9c1b9iv66b33llvp96ryyzyp8pn1rnhvxfvjv43cnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diff-hl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diff-hl"; sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6"; name = "diff-hl"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/diff-hl"; + homepage = "https://melpa.org/#/diff-hl"; license = lib.licenses.free; }; }) {}; @@ -10642,13 +11147,13 @@ sha256 = "14ccak3cmv36pd085188lypal9gd3flyikcrxn0wi6hn60w2dgvr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diffscuss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diffscuss-mode"; sha256 = "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh"; name = "diffscuss-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/diffscuss-mode"; + homepage = "https://melpa.org/#/diffscuss-mode"; license = lib.licenses.free; }; }) {}; @@ -10663,13 +11168,13 @@ sha256 = "0diw887x4q7kbgdvxbbnxdw51z33kqwxw3v9m45fczxbywyi4cxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diffview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diffview"; sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k"; name = "diffview"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/diffview"; + homepage = "https://melpa.org/#/diffview"; license = lib.licenses.free; }; }) {}; @@ -10684,13 +11189,13 @@ sha256 = "0qxdfv1p0140fqcxh677hhxwpx1fihvwhvh76pysn4q4pcfr6ldr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/digistar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/digistar-mode"; sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s"; name = "digistar-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/digistar-mode"; + homepage = "https://melpa.org/#/digistar-mode"; license = lib.licenses.free; }; }) {}; @@ -10705,13 +11210,13 @@ sha256 = "17jfmgyras32w9xr8fldqj924bijgng4bjg9fy6ckwb3mgihyil8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dim"; sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52"; name = "dim"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/dim"; + homepage = "https://melpa.org/#/dim"; license = lib.licenses.free; }; }) {}; @@ -10726,13 +11231,13 @@ sha256 = "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dim-autoload"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dim-autoload"; sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9"; name = "dim-autoload"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dim-autoload"; + homepage = "https://melpa.org/#/dim-autoload"; license = lib.licenses.free; }; }) {}; @@ -10747,13 +11252,13 @@ sha256 = "04vfc5zgcjp0pax5zk1x98ivx5g349c5g3748lb9pgsijqaprgg4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diminish"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diminish"; sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43"; name = "diminish"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/diminish"; + homepage = "https://melpa.org/#/diminish"; license = lib.licenses.free; }; }) {}; @@ -10768,13 +11273,13 @@ sha256 = "1ldqxdwy6r0fd2vh0ckkhgpincvybghavi8c7vvyd24j91i57y2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dionysos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dionysos"; sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz"; name = "dionysos"; }; packageRequires = [ alert cl-lib dash libmpdee pkg-info s ]; meta = { - homepage = "http://melpa.org/#/dionysos"; + homepage = "https://melpa.org/#/dionysos"; license = lib.licenses.free; }; }) {}; @@ -10789,13 +11294,13 @@ sha256 = "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dircmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dircmp"; sha256 = "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c"; name = "dircmp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dircmp"; + homepage = "https://melpa.org/#/dircmp"; license = lib.licenses.free; }; }) {}; @@ -10810,13 +11315,13 @@ sha256 = "06m2p5sf47ykhkl958x4k0j0rxzrq0wfwf86mvnarlgc1215dbaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-atool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-atool"; sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w"; name = "dired-atool"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/dired-atool"; + homepage = "https://melpa.org/#/dired-atool"; license = lib.licenses.free; }; }) {}; @@ -10831,13 +11336,13 @@ sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-avfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-avfs"; sha256 = "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm"; name = "dired-avfs"; }; packageRequires = [ dash dired-hacks-utils ]; meta = { - homepage = "http://melpa.org/#/dired-avfs"; + homepage = "https://melpa.org/#/dired-avfs"; license = lib.licenses.free; }; }) {}; @@ -10845,17 +11350,17 @@ pname = "dired-details"; version = "20130824.658"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/dired-details.el"; + url = "https://www.emacswiki.org/emacs/download/dired-details.el"; sha256 = "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-details"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-details"; sha256 = "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck"; name = "dired-details"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-details"; + homepage = "https://melpa.org/#/dired-details"; license = lib.licenses.free; }; }) {}; @@ -10864,17 +11369,17 @@ pname = "dired-details-plus"; version = "20151231.1450"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/dired-details+.el"; + url = "https://www.emacswiki.org/emacs/download/dired-details+.el"; sha256 = "07z4h5l8763ks6b6m8dcmq78jiyq4xvan1mb0z8fbasmi1bsrya4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-details+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-details+"; sha256 = "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx"; name = "dired-details-plus"; }; packageRequires = [ dired-details ]; meta = { - homepage = "http://melpa.org/#/dired-details+"; + homepage = "https://melpa.org/#/dired-details+"; license = lib.licenses.free; }; }) {}; @@ -10889,13 +11394,13 @@ sha256 = "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-dups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-dups"; sha256 = "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71"; name = "dired-dups"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-dups"; + homepage = "https://melpa.org/#/dired-dups"; license = lib.licenses.free; }; }) {}; @@ -10910,13 +11415,13 @@ sha256 = "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-efap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-efap"; sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00"; name = "dired-efap"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-efap"; + homepage = "https://melpa.org/#/dired-efap"; license = lib.licenses.free; }; }) {}; @@ -10931,13 +11436,13 @@ sha256 = "1lnqjkbzryv655n16xj1c5bxck2jb5ccy8yckz1wp5yikkr06ba8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-fdclone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-fdclone"; sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9"; name = "dired-fdclone"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-fdclone"; + homepage = "https://melpa.org/#/dired-fdclone"; license = lib.licenses.free; }; }) {}; @@ -10952,13 +11457,13 @@ sha256 = "06hxcxgivxds42qilraqa6q1mlrhkn21w2adb1dg70p8qyrjqfk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-filetype-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-filetype-face"; sha256 = "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6"; name = "dired-filetype-face"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-filetype-face"; + homepage = "https://melpa.org/#/dired-filetype-face"; license = lib.licenses.free; }; }) {}; @@ -10973,13 +11478,13 @@ sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-filter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-filter"; sha256 = "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p"; name = "dired-filter"; }; packageRequires = [ cl-lib dash dired-hacks-utils f ]; meta = { - homepage = "http://melpa.org/#/dired-filter"; + homepage = "https://melpa.org/#/dired-filter"; license = lib.licenses.free; }; }) {}; @@ -10994,13 +11499,13 @@ sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-hacks-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-hacks-utils"; sha256 = "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi"; name = "dired-hacks-utils"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/dired-hacks-utils"; + homepage = "https://melpa.org/#/dired-hacks-utils"; license = lib.licenses.free; }; }) {}; @@ -11015,34 +11520,34 @@ sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-imenu"; sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1"; name = "dired-imenu"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-imenu"; + homepage = "https://melpa.org/#/dired-imenu"; license = lib.licenses.free; }; }) {}; dired-k = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-k"; - version = "20151107.2036"; + version = "20160330.2113"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-dired-k"; - rev = "4c5ae87f0198eaa4789a1fe85e9ef7cf5a8633e7"; - sha256 = "13xpbbdd190lklz8jmj8nw8qm414kpkij9wrd7a9ws9j1jzj8x6s"; + rev = "b12ea34303862d3fd05a9cedbc436f5a533437d0"; + sha256 = "1bg7msz672rp2l490l3wm99i18b30r6033yfkrq6ia742nagn040"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-k"; sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; name = "dired-k"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/dired-k"; + homepage = "https://melpa.org/#/dired-k"; license = lib.licenses.free; }; }) {}; @@ -11057,13 +11562,13 @@ sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-narrow"; sha256 = "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d"; name = "dired-narrow"; }; packageRequires = [ dash dired-hacks-utils ]; meta = { - homepage = "http://melpa.org/#/dired-narrow"; + homepage = "https://melpa.org/#/dired-narrow"; license = lib.licenses.free; }; }) {}; @@ -11078,13 +11583,13 @@ sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-open"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-open"; sha256 = "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx"; name = "dired-open"; }; packageRequires = [ dash dired-hacks-utils ]; meta = { - homepage = "http://melpa.org/#/dired-open"; + homepage = "https://melpa.org/#/dired-open"; license = lib.licenses.free; }; }) {}; @@ -11092,17 +11597,17 @@ pname = "dired-plus"; version = "20160124.2107"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/dired+.el"; + url = "https://www.emacswiki.org/emacs/download/dired+.el"; sha256 = "0fhag6jhb97jg50rb32s93mml0adncsd58z9grs7l95zva439pc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired+"; sha256 = "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5"; name = "dired-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired+"; + homepage = "https://melpa.org/#/dired+"; license = lib.licenses.free; }; }) {}; @@ -11117,13 +11622,13 @@ sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-rainbow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-rainbow"; sha256 = "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882"; name = "dired-rainbow"; }; packageRequires = [ dash dired-hacks-utils ]; meta = { - homepage = "http://melpa.org/#/dired-rainbow"; + homepage = "https://melpa.org/#/dired-rainbow"; license = lib.licenses.free; }; }) {}; @@ -11138,13 +11643,13 @@ sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-ranger"; sha256 = "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h"; name = "dired-ranger"; }; packageRequires = [ dash dired-hacks-utils ]; meta = { - homepage = "http://melpa.org/#/dired-ranger"; + homepage = "https://melpa.org/#/dired-ranger"; license = lib.licenses.free; }; }) {}; @@ -11159,13 +11664,13 @@ sha256 = "01xvaqckyr31ywsn1fp9sz9wq4h4dd1hgghfqypc9s4akrxmgnf2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-single"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-single"; sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf"; name = "dired-single"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-single"; + homepage = "https://melpa.org/#/dired-single"; license = lib.licenses.free; }; }) {}; @@ -11173,17 +11678,17 @@ pname = "dired-sort"; version = "20090208.2238"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/dired-sort.el"; + url = "https://www.emacswiki.org/emacs/download/dired-sort.el"; sha256 = "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-sort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-sort"; sha256 = "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x"; name = "dired-sort"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-sort"; + homepage = "https://melpa.org/#/dired-sort"; license = lib.licenses.free; }; }) {}; @@ -11191,17 +11696,17 @@ pname = "dired-sort-menu"; version = "20130824.707"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/dired-sort-menu.el"; + url = "https://www.emacswiki.org/emacs/download/dired-sort-menu.el"; sha256 = "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-sort-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-sort-menu"; sha256 = "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb"; name = "dired-sort-menu"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-sort-menu"; + homepage = "https://melpa.org/#/dired-sort-menu"; license = lib.licenses.free; }; }) {}; @@ -11210,17 +11715,17 @@ pname = "dired-sort-menu-plus"; version = "20151231.1451"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/dired-sort-menu+.el"; + url = "https://www.emacswiki.org/emacs/download/dired-sort-menu+.el"; sha256 = "1hjci4zfzig04ji1jravxg9n67rdr4wyhmxmahbrzq9kjnql510i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-sort-menu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-sort-menu+"; sha256 = "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq"; name = "dired-sort-menu-plus"; }; packageRequires = [ dired-sort-menu ]; meta = { - homepage = "http://melpa.org/#/dired-sort-menu+"; + homepage = "https://melpa.org/#/dired-sort-menu+"; license = lib.licenses.free; }; }) {}; @@ -11235,13 +11740,13 @@ sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-subtree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-subtree"; sha256 = "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk"; name = "dired-subtree"; }; packageRequires = [ dash dired-hacks-utils ]; meta = { - homepage = "http://melpa.org/#/dired-subtree"; + homepage = "https://melpa.org/#/dired-subtree"; license = lib.licenses.free; }; }) {}; @@ -11256,13 +11761,13 @@ sha256 = "1yx20h16hc1b04knsqhrxni0j8qgwnq7i5b0dlggq3dakcvqfxma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-toggle"; sha256 = "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5"; name = "dired-toggle"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-toggle"; + homepage = "https://melpa.org/#/dired-toggle"; license = lib.licenses.free; }; }) {}; @@ -11277,13 +11782,13 @@ sha256 = "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-toggle-sudo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-toggle-sudo"; sha256 = "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va"; name = "dired-toggle-sudo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-toggle-sudo"; + homepage = "https://melpa.org/#/dired-toggle-sudo"; license = lib.licenses.free; }; }) {}; @@ -11298,13 +11803,13 @@ sha256 = "1rx7vq6yl83fbmb76sczbb1bv972s4cyg160sm2yap1i6nzhd10p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diredful"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diredful"; sha256 = "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x"; name = "diredful"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/diredful"; + homepage = "https://melpa.org/#/diredful"; license = lib.licenses.free; }; }) {}; @@ -11319,13 +11824,13 @@ sha256 = "0mis3m6lg3vlvp8qm8iajprgx3pm3gcbhdszsm9mvrcgkahdjqnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/direx"; sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm"; name = "direx"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/direx"; + homepage = "https://melpa.org/#/direx"; license = lib.licenses.free; }; }) {}; @@ -11340,13 +11845,13 @@ sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/direx-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/direx-grep"; sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2"; name = "direx-grep"; }; packageRequires = [ direx ]; meta = { - homepage = "http://melpa.org/#/direx-grep"; + homepage = "https://melpa.org/#/direx-grep"; license = lib.licenses.free; }; }) {}; @@ -11355,17 +11860,17 @@ pname = "dirtree"; version = "20140129.232"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/dirtree.el"; + url = "https://www.emacswiki.org/emacs/download/dirtree.el"; sha256 = "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dirtree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dirtree"; sha256 = "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29"; name = "dirtree"; }; packageRequires = [ tree-mode windata ]; meta = { - homepage = "http://melpa.org/#/dirtree"; + homepage = "https://melpa.org/#/dirtree"; license = lib.licenses.free; }; }) {}; @@ -11380,13 +11885,13 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dirtree-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dirtree-prosjekt"; sha256 = "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk"; name = "dirtree-prosjekt"; }; packageRequires = [ dirtree prosjekt ]; meta = { - homepage = "http://melpa.org/#/dirtree-prosjekt"; + homepage = "https://melpa.org/#/dirtree-prosjekt"; license = lib.licenses.free; }; }) {}; @@ -11401,13 +11906,13 @@ sha256 = "1srlz63pncxndh1kmb6dl5sxaanspxa444wg998dld3dkdflwavq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/disaster"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/disaster"; sha256 = "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn"; name = "disaster"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/disaster"; + homepage = "https://melpa.org/#/disaster"; license = lib.licenses.free; }; }) {}; @@ -11422,13 +11927,13 @@ sha256 = "0f7h2rhh37lrs6xclj182li6s1fawv5m8w3hgy6qgm06dam45lka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover"; sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga"; name = "discover"; }; packageRequires = [ makey ]; meta = { - homepage = "http://melpa.org/#/discover"; + homepage = "https://melpa.org/#/discover"; license = lib.licenses.free; }; }) {}; @@ -11443,13 +11948,13 @@ sha256 = "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover-clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover-clj-refactor"; sha256 = "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r"; name = "discover-clj-refactor"; }; packageRequires = [ clj-refactor discover ]; meta = { - homepage = "http://melpa.org/#/discover-clj-refactor"; + homepage = "https://melpa.org/#/discover-clj-refactor"; license = lib.licenses.free; }; }) {}; @@ -11464,13 +11969,13 @@ sha256 = "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover-js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover-js2-refactor"; sha256 = "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki"; name = "discover-js2-refactor"; }; packageRequires = [ discover js2-refactor ]; meta = { - homepage = "http://melpa.org/#/discover-js2-refactor"; + homepage = "https://melpa.org/#/discover-js2-refactor"; license = lib.licenses.free; }; }) {}; @@ -11485,13 +11990,13 @@ sha256 = "0b73nc4jkf9bggnlp0l34jfcgx91vxbpavz6bpnf5rjvm0v1bil9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover-my-major"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover-my-major"; sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg"; name = "discover-my-major"; }; packageRequires = [ makey ]; meta = { - homepage = "http://melpa.org/#/discover-my-major"; + homepage = "https://melpa.org/#/discover-my-major"; license = lib.licenses.free; }; }) {}; @@ -11499,17 +12004,17 @@ pname = "disk"; version = "20081128.906"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/disk.el"; + url = "https://www.emacswiki.org/emacs/download/disk.el"; sha256 = "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/disk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/disk"; sha256 = "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n"; name = "disk"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/disk"; + homepage = "https://melpa.org/#/disk"; license = lib.licenses.free; }; }) {}; @@ -11524,13 +12029,13 @@ sha256 = "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dispass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dispass"; sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z"; name = "dispass"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/dispass"; + homepage = "https://melpa.org/#/dispass"; license = lib.licenses.free; }; }) {}; @@ -11545,13 +12050,13 @@ sha256 = "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/display-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/display-theme"; sha256 = "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa"; name = "display-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/display-theme"; + homepage = "https://melpa.org/#/display-theme"; license = lib.licenses.free; }; }) {}; @@ -11566,13 +12071,34 @@ sha256 = "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/distinguished-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/distinguished-theme"; sha256 = "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4"; name = "distinguished-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/distinguished-theme"; + homepage = "https://melpa.org/#/distinguished-theme"; + license = lib.licenses.free; + }; + }) {}; + dix = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "dix"; + version = "20160426.900"; + src = fetchFromGitHub { + owner = "unhammer"; + repo = "dix"; + rev = "10b45f078437761ee1739e6e817c3583b7199cce"; + sha256 = "1czwsbm547bdzsr7h3gyj7w3s1j2n3pz2xblslam8rkn7v72z7qr"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dix"; + sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq"; + name = "dix"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/dix"; license = lib.licenses.free; }; }) {}; @@ -11587,13 +12113,13 @@ sha256 = "120zgp38nz4ssid6bv0zy5rnf2claa5s880incgljqyl0vmj9nq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dizzee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dizzee"; sha256 = "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs"; name = "dizzee"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dizzee"; + homepage = "https://melpa.org/#/dizzee"; license = lib.licenses.free; }; }) {}; @@ -11608,13 +12134,13 @@ sha256 = "15i25zh54b2fqji0qmkg502051ymccih6pgqnzq02c43dpnsqhqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/django-manage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/django-manage"; sha256 = "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh"; name = "django-manage"; }; packageRequires = [ hydra ]; meta = { - homepage = "http://melpa.org/#/django-manage"; + homepage = "https://melpa.org/#/django-manage"; license = lib.licenses.free; }; }) {}; @@ -11629,13 +12155,13 @@ sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/django-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/django-mode"; sha256 = "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara"; name = "django-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/django-mode"; + homepage = "https://melpa.org/#/django-mode"; license = lib.licenses.free; }; }) {}; @@ -11650,13 +12176,13 @@ sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/django-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/django-snippets"; sha256 = "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw"; name = "django-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/django-snippets"; + homepage = "https://melpa.org/#/django-snippets"; license = lib.licenses.free; }; }) {}; @@ -11671,13 +12197,13 @@ sha256 = "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/django-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/django-theme"; sha256 = "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf"; name = "django-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/django-theme"; + homepage = "https://melpa.org/#/django-theme"; license = lib.licenses.free; }; }) {}; @@ -11692,13 +12218,13 @@ sha256 = "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dkdo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dkdo"; sha256 = "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300"; name = "dkdo"; }; packageRequires = [ dkmisc emacs ]; meta = { - homepage = "http://melpa.org/#/dkdo"; + homepage = "https://melpa.org/#/dkdo"; license = lib.licenses.free; }; }) {}; @@ -11713,13 +12239,13 @@ sha256 = "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dklrt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dklrt"; sha256 = "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561"; name = "dklrt"; }; packageRequires = [ dkmisc emacs ledger-mode ]; meta = { - homepage = "http://melpa.org/#/dklrt"; + homepage = "https://melpa.org/#/dklrt"; license = lib.licenses.free; }; }) {}; @@ -11734,34 +12260,34 @@ sha256 = "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dkmisc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dkmisc"; sha256 = "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z"; name = "dkmisc"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/dkmisc"; + homepage = "https://melpa.org/#/dkmisc"; license = lib.licenses.free; }; }) {}; dmenu = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dmenu"; - version = "20151220.702"; + version = "20160228.827"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-dmenu"; - rev = "b9be62dc33b59fdd34b449699801c1772af84284"; - sha256 = "0spj80vq6m2kqbdy6y1vh9fzwqyqkij30457d2n39kjn2gzbyar8"; + rev = "8dffd614e37d3971f989cbce5849d04d84ee8c76"; + sha256 = "1xx4ccr3mfxay2j3wgd93qw5dpjasaq9mkmmjww3ibpf86ahf7l3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dmenu"; sha256 = "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0"; name = "dmenu"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/dmenu"; + homepage = "https://melpa.org/#/dmenu"; license = lib.licenses.free; }; }) {}; @@ -11776,13 +12302,13 @@ sha256 = "0z28j7x7wgkc1cg1q1kz1lhdx1v1n6s88ixgkm8hn458h9bfnr3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dna-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dna-mode"; sha256 = "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9"; name = "dna-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dna-mode"; + homepage = "https://melpa.org/#/dna-mode"; license = lib.licenses.free; }; }) {}; @@ -11797,13 +12323,13 @@ sha256 = "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/docbook-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docbook-snippets"; sha256 = "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq"; name = "docbook-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/docbook-snippets"; + homepage = "https://melpa.org/#/docbook-snippets"; license = lib.licenses.free; }; }) {}; @@ -11818,34 +12344,55 @@ sha256 = "055kr0qknjgnjs7dn6gdmahrdbs8piwldbz7vg1hgq3b046x8lky"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/docean"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docean"; sha256 = "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9"; name = "docean"; }; packageRequires = [ cl-lib emacs request ]; meta = { - homepage = "http://melpa.org/#/docean"; + homepage = "https://melpa.org/#/docean"; license = lib.licenses.free; }; }) {}; - docker = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s }: + docker = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s, tablist }: melpaBuild { pname = "docker"; - version = "20151126.413"; + version = "20160424.357"; src = fetchFromGitHub { owner = "Silex"; repo = "docker.el"; - rev = "c6abb2fceaaab92a722eade09306643dae3b5f1a"; - sha256 = "12n63z4kkgfzkc2xji1z0k924af0v633qhvrr0rm83db9hz9j318"; + rev = "7ac17efce5e7a80cef28f8d32d81bb4200e06401"; + sha256 = "0a5n8xb5qx82raf3nsrbs0rlg64wf0wdxb9mx384jwkcrwd32x2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docker"; sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk"; name = "docker"; }; - packageRequires = [ dash emacs magit-popup s ]; + packageRequires = [ dash emacs magit-popup s tablist ]; meta = { - homepage = "http://melpa.org/#/docker"; + homepage = "https://melpa.org/#/docker"; + license = lib.licenses.free; + }; + }) {}; + docker-api = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: + melpaBuild { + pname = "docker-api"; + version = "20160421.153"; + src = fetchFromGitHub { + owner = "Silex"; + repo = "docker-api.el"; + rev = "397286872d462a5bc00419f629380ef77e87edbe"; + sha256 = "0lamp8xkn84q14xswvzwcamp2rk2rvgm15zf8iki5yp6zz1dppb2"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docker-api"; + sha256 = "1giqiapm4hf4dhfm3x69qqpir3jg7qz3parhbx88xxqrd1z18my0"; + name = "docker-api"; + }; + packageRequires = [ dash s ]; + meta = { + homepage = "https://melpa.org/#/docker-api"; license = lib.licenses.free; }; }) {}; @@ -11860,13 +12407,13 @@ sha256 = "0bvnvs17cbisymiqp96q4y2w2jqy5hd0zyk6rv7mihr9p97ak9kv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/docker-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docker-tramp"; sha256 = "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w"; name = "docker-tramp"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/docker-tramp"; + homepage = "https://melpa.org/#/docker-tramp"; license = lib.licenses.free; }; }) {}; @@ -11881,13 +12428,13 @@ sha256 = "0vx7lv54v4bznn4mik4i6idb9dl7fpp3gw7nyhymbkr6hx884haw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dockerfile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dockerfile-mode"; sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa"; name = "dockerfile-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dockerfile-mode"; + homepage = "https://melpa.org/#/dockerfile-mode"; license = lib.licenses.free; }; }) {}; @@ -11896,19 +12443,19 @@ pname = "dokuwiki-mode"; version = "20160129.207"; src = fetchFromGitHub { - owner = "kbkbkbkb1"; + owner = "kai2nenobu"; repo = "emacs-dokuwiki-mode"; rev = "0e8f11572b6842b5b9d6e1a5123d988b26af04bf"; sha256 = "1qfmq8l4jqyrhfplsr1zd8bg9qqqwbh3mhipqzja0px0knjpqj85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dokuwiki-mode"; - sha256 = "0q5ybyj35dyh8k0nfvbglsq3ad2apc8cdijw4wqczc5180fckgy9"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dokuwiki-mode"; + sha256 = "1jc3sn61mipkhgr91wp74s673jk2w5991p54jlw05qqpf5gmxd7v"; name = "dokuwiki-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dokuwiki-mode"; + homepage = "https://melpa.org/#/dokuwiki-mode"; license = lib.licenses.free; }; }) {}; @@ -11923,13 +12470,13 @@ sha256 = "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dollaro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dollaro"; sha256 = "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h"; name = "dollaro"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/dollaro"; + homepage = "https://melpa.org/#/dollaro"; license = lib.licenses.free; }; }) {}; @@ -11944,13 +12491,13 @@ sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doom"; sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl"; name = "doom"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/doom"; + homepage = "https://melpa.org/#/doom"; license = lib.licenses.free; }; }) {}; @@ -11958,17 +12505,17 @@ pname = "doremi"; version = "20151231.1455"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/doremi.el"; + url = "https://www.emacswiki.org/emacs/download/doremi.el"; sha256 = "0201clwq9nbl8336lddcbwah8d6xipr7q8135yq79szfxq2bdg6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doremi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doremi"; sha256 = "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb"; name = "doremi"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/doremi"; + homepage = "https://melpa.org/#/doremi"; license = lib.licenses.free; }; }) {}; @@ -11977,17 +12524,17 @@ pname = "doremi-cmd"; version = "20151231.1452"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/doremi-cmd.el"; + url = "https://www.emacswiki.org/emacs/download/doremi-cmd.el"; sha256 = "1m7jn80apya6s9d8phd859rq1m13xf2wz9664pqpr1p65yz2pyvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doremi-cmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doremi-cmd"; sha256 = "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05"; name = "doremi-cmd"; }; packageRequires = [ doremi ]; meta = { - homepage = "http://melpa.org/#/doremi-cmd"; + homepage = "https://melpa.org/#/doremi-cmd"; license = lib.licenses.free; }; }) {}; @@ -11996,17 +12543,17 @@ pname = "doremi-frm"; version = "20151231.1453"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/doremi-frm.el"; + url = "https://www.emacswiki.org/emacs/download/doremi-frm.el"; sha256 = "0v7ycmddh1ds64m1y5yai5nh34bd32q3wcm5y2pdzhj6jk7nj5wz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doremi-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doremi-frm"; sha256 = "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz"; name = "doremi-frm"; }; packageRequires = [ doremi faces-plus frame-fns hexrgb ]; meta = { - homepage = "http://melpa.org/#/doremi-frm"; + homepage = "https://melpa.org/#/doremi-frm"; license = lib.licenses.free; }; }) {}; @@ -12014,17 +12561,17 @@ pname = "doremi-mac"; version = "20151231.1454"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/doremi-mac.el"; + url = "https://www.emacswiki.org/emacs/download/doremi-mac.el"; sha256 = "157kvlb4dqiyk1h7b4p0dhrr6crdakwnrxydyl6yh51w2hdnnigw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doremi-mac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doremi-mac"; sha256 = "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls"; name = "doremi-mac"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/doremi-mac"; + homepage = "https://melpa.org/#/doremi-mac"; license = lib.licenses.free; }; }) {}; @@ -12032,17 +12579,17 @@ pname = "dos"; version = "20140808.1635"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/dos.el"; + url = "https://www.emacswiki.org/emacs/download/dos.el"; sha256 = "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dos"; sha256 = "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc"; name = "dos"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dos"; + homepage = "https://melpa.org/#/dos"; license = lib.licenses.free; }; }) {}; @@ -12050,17 +12597,17 @@ pname = "dot-mode"; version = "20151029.855"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/dot-mode.el"; + url = "https://www.emacswiki.org/emacs/download/dot-mode.el"; sha256 = "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dot-mode"; sha256 = "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh"; name = "dot-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dot-mode"; + homepage = "https://melpa.org/#/dot-mode"; license = lib.licenses.free; }; }) {}; @@ -12075,13 +12622,13 @@ sha256 = "0gc7z5ribp5yvadclq07l731m65pja00wgch4bgxsihiy7wvwknr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/download-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/download-region"; sha256 = "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl"; name = "download-region"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/download-region"; + homepage = "https://melpa.org/#/download-region"; license = lib.licenses.free; }; }) {}; @@ -12096,34 +12643,34 @@ sha256 = "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/downplay-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/downplay-mode"; sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b"; name = "downplay-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/downplay-mode"; + homepage = "https://melpa.org/#/downplay-mode"; license = lib.licenses.free; }; }) {}; dpaste = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dpaste"; - version = "20150528.800"; + version = "20160303.1512"; src = fetchFromGitHub { owner = "gregnewman"; repo = "dpaste.el"; - rev = "d073030e6b7feae84f0e2118e5fc454833848629"; - sha256 = "11s4vxr6waswyx4lz3q70s8xdz0v7354sn0pfwj42mmww4pzkizs"; + rev = "5ebabb466a6ae70882549855b6b2194fc32189f8"; + sha256 = "03n3k6a40lw9m1ycf62g6vll4gr2kr2509vjp1dkfq722xwrw7zk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dpaste"; sha256 = "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz"; name = "dpaste"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dpaste"; + homepage = "https://melpa.org/#/dpaste"; license = lib.licenses.free; }; }) {}; @@ -12138,34 +12685,34 @@ sha256 = "1avpg0cgzk8d6g1q0ryx41lkcdgkm0mkzr5xr32xm28dzrfmgd4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dpaste_de"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dpaste_de"; sha256 = "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp"; name = "dpaste_de"; }; packageRequires = [ web ]; meta = { - homepage = "http://melpa.org/#/dpaste_de"; + homepage = "https://melpa.org/#/dpaste_de"; license = lib.licenses.free; }; }) {}; dracula-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dracula-theme"; - version = "20151109.1045"; + version = "20160228.2113"; src = fetchFromGitHub { owner = "zenorocha"; repo = "dracula-theme"; - rev = "a97d71234a9cb07b03caab684601b7b40d67c063"; - sha256 = "1ly5d5dbhbmgflcl3gvwkd1i4bikffmdc4c42rmxxf1xw6gp7s2c"; + rev = "d3abff6e5307227858d5323cf8aaf108c542ad2b"; + sha256 = "0678xbwsa8yg175yn1xllp0aaihx0ikfyc2jh6q338xfrfnd89bm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dracula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dracula-theme"; sha256 = "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r"; name = "dracula-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/dracula-theme"; + homepage = "https://melpa.org/#/dracula-theme"; license = lib.licenses.free; }; }) {}; @@ -12180,13 +12727,13 @@ sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/draft-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/draft-mode"; sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh"; name = "draft-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/draft-mode"; + homepage = "https://melpa.org/#/draft-mode"; license = lib.licenses.free; }; }) {}; @@ -12196,39 +12743,39 @@ version = "20150717.732"; src = fetchFromGitHub { owner = "rejeep"; - repo = "drag-stuff"; - rev = "0d7e28bf234037380dbcb24b9175b96ae34ef8fb"; - sha256 = "08kkiqhfy1i6j9156gbl85jvyj592vd08qy24ng2dj0prjvap8w1"; + repo = "drag-stuff.el"; + rev = "83405a36ddb289eb62c765b6d2ec31026cc969df"; + sha256 = "162bwywgzyjzv48rzfpsd4nzn63yrrqlzs73n50kmpx2dkrn1sjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drag-stuff"; - sha256 = "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drag-stuff"; + sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4"; name = "drag-stuff"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/drag-stuff"; + homepage = "https://melpa.org/#/drag-stuff"; license = lib.licenses.free; }; }) {}; drawille = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "drawille"; - version = "20160114.607"; + version = "20160418.1338"; src = fetchFromGitHub { owner = "sshbio"; repo = "drawille"; - rev = "79ba6bf4f7e4a98063afbac47034a3248535e1d6"; - sha256 = "1yvg3w9gm5vs26qhw3xb72v9fgdhqq9w5pksiz2gj5m19l81irar"; + rev = "d582b455c01432bc80933650c52a1f586bd1b5ad"; + sha256 = "1z3akh0ywzihr0ghk6f8x9z38mwqy3zg29p0q69h4i6yzhxpdmxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drawille"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drawille"; sha256 = "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil"; name = "drawille"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/drawille"; + homepage = "https://melpa.org/#/drawille"; license = lib.licenses.free; }; }) {}; @@ -12243,13 +12790,13 @@ sha256 = "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drill-instructor-AZIK-force"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drill-instructor-AZIK-force"; sha256 = "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f"; name = "drill-instructor-AZIK-force"; }; packageRequires = [ popup ]; meta = { - homepage = "http://melpa.org/#/drill-instructor-AZIK-force"; + homepage = "https://melpa.org/#/drill-instructor-AZIK-force"; license = lib.licenses.free; }; }) {}; @@ -12264,13 +12811,13 @@ sha256 = "1s4cz5s0mw733ak9ps62fs150y3psqmb6v5s6s88jjfsi0r03c0s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dropbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dropbox"; sha256 = "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f"; name = "dropbox"; }; packageRequires = [ json oauth ]; meta = { - homepage = "http://melpa.org/#/dropbox"; + homepage = "https://melpa.org/#/dropbox"; license = lib.licenses.free; }; }) {}; @@ -12278,38 +12825,38 @@ pname = "dropdown-list"; version = "20120329.1136"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/dropdown-list.el"; + url = "https://www.emacswiki.org/emacs/download/dropdown-list.el"; sha256 = "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dropdown-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dropdown-list"; sha256 = "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z"; name = "dropdown-list"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dropdown-list"; + homepage = "https://melpa.org/#/dropdown-list"; license = lib.licenses.free; }; }) {}; drupal-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode }: melpaBuild { pname = "drupal-mode"; - version = "20150830.1427"; + version = "20160420.1458"; src = fetchFromGitHub { owner = "arnested"; repo = "drupal-mode"; - rev = "b4a66092bddc471884b2746d69fd7e8853b4b79f"; - sha256 = "0am3n25qcfjkqfp4wjj1d2zigrmi8hg7p5sy2h91zg3blypqmpsr"; + rev = "2ed0a8139812f4215c733913c1891d4fdab40550"; + sha256 = "1hbm3zdmd28fjl8fky0kq4gs2bxsrn2zxk9rd1wa2wky43ycnd35"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drupal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drupal-mode"; sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn"; name = "drupal-mode"; }; packageRequires = [ php-mode ]; meta = { - homepage = "http://melpa.org/#/drupal-mode"; + homepage = "https://melpa.org/#/drupal-mode"; license = lib.licenses.free; }; }) {}; @@ -12324,13 +12871,13 @@ sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drupal-spell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drupal-spell"; sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3"; name = "drupal-spell"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/drupal-spell"; + homepage = "https://melpa.org/#/drupal-spell"; license = lib.licenses.free; }; }) {}; @@ -12339,17 +12886,17 @@ version = "20130120.1457"; src = fetchsvn { url = "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/"; - rev = "1731575"; + rev = "1741054"; sha256 = "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dsvn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dsvn"; sha256 = "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6"; name = "dsvn"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dsvn"; + homepage = "https://melpa.org/#/dsvn"; license = lib.licenses.free; }; }) {}; @@ -12364,34 +12911,34 @@ sha256 = "1blfx3r2xd3idbfjrx44ma3x1d83xp67il2s2bmdwa8qz92z99lf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dtrace-script-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dtrace-script-mode"; sha256 = "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4"; name = "dtrace-script-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dtrace-script-mode"; + homepage = "https://melpa.org/#/dtrace-script-mode"; license = lib.licenses.free; }; }) {}; dtrt-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dtrt-indent"; - version = "20151013.414"; + version = "20160329.543"; src = fetchFromGitHub { owner = "jscheid"; repo = "dtrt-indent"; - rev = "7f212888fbacc262080ab2740eda673b376c6b7b"; - sha256 = "0x8c3h3jvyn2462r0sagz63vv9pr5ivfzkshr69603ibyfgqxxkp"; + rev = "a47fcfc43da794f38e17a0a6010fe932039dc3b7"; + sha256 = "1nqh4l1qdycpsmccf8pmwdwylcxxnikhrgj550ab8jx3yi7i24af"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dtrt-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dtrt-indent"; sha256 = "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5"; name = "dtrt-indent"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dtrt-indent"; + homepage = "https://melpa.org/#/dtrt-indent"; license = lib.licenses.free; }; }) {}; @@ -12406,13 +12953,13 @@ sha256 = "0cafvhbpfqd8ajqg2757fs64kryrl2ckvbp5abldb4y8fa14pb9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dts-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dts-mode"; sha256 = "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234"; name = "dts-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dts-mode"; + homepage = "https://melpa.org/#/dts-mode"; license = lib.licenses.free; }; }) {}; @@ -12427,52 +12974,55 @@ sha256 = "1ixb78dv66lmqlbv4zl5ysvv1xqafvqh1h5cfdv03jdkqlfk34jz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ducpel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ducpel"; sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc"; name = "ducpel"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/ducpel"; + homepage = "https://melpa.org/#/ducpel"; license = lib.licenses.free; }; }) {}; - dumb-jump = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: + dumb-jump = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: melpaBuild { pname = "dumb-jump"; - version = "20160220.2341"; + version = "20160426.56"; src = fetchFromGitHub { owner = "jacktasia"; repo = "dumb-jump"; - rev = "27c0826a6b078e7483e002aa8b3a9f03d2ec6da1"; - sha256 = "1saz5ysy99i2l97kzy5acxxzy7iy3v4zxszmpw2b9ppbbxrwanfk"; + rev = "5313ef651b58dd9b8b9fcb388856b8dcbf1b791b"; + sha256 = "1czw5z6w8pcc7ra5d82v06padyiy7c3ds00chw5xgyvq6s73gzn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dumb-jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dumb-jump"; sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc"; name = "dumb-jump"; }; - packageRequires = [ dash f s ]; + packageRequires = [ dash f popup s ]; meta = { - homepage = "http://melpa.org/#/dumb-jump"; + homepage = "https://melpa.org/#/dumb-jump"; license = lib.licenses.free; }; }) {}; - dummy-h-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + dummy-h-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "dummy-h-mode"; - version = "20140816.733"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/dummy-h-mode.el"; - sha256 = "0zq94x4br3sk6n4chrfnw7hpnsicxa02fcpk8hw1hfsaq3327n6v"; + version = "20160209.529"; + src = fetchFromGitHub { + owner = "yascentur"; + repo = "dummy-h-mode-el"; + rev = "f94779ea046d6dc1334a4c896c9aeafcf79c1b52"; + sha256 = "0qsjp1xh8cp5wl4xi9yg2nwy982jgxji41hpbg7rff5hcn7svii9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dummy-h-mode"; - sha256 = "1h2pm37y9kz62id0rm0zzgh1hpkhd9gvq95kjd29w0awsp9b6ca4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dummy-h-mode"; + sha256 = "10lzfzq7md6s28w2zzlhswn3d6765g4vqzyjn2q5ms8pd2i4b4in"; name = "dummy-h-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dummy-h-mode"; + homepage = "https://melpa.org/#/dummy-h-mode"; license = lib.licenses.free; }; }) {}; @@ -12487,13 +13037,13 @@ sha256 = "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dummyparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dummyparens"; sha256 = "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk"; name = "dummyparens"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dummyparens"; + homepage = "https://melpa.org/#/dummyparens"; license = lib.licenses.free; }; }) {}; @@ -12508,54 +13058,54 @@ sha256 = "1qaiwm8mf4656gc1pdj8ivgy4abkjsypr52pvf4nrdkkln9qzfli"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/duplicate-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/duplicate-thing"; sha256 = "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4"; name = "duplicate-thing"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/duplicate-thing"; + homepage = "https://melpa.org/#/duplicate-thing"; license = lib.licenses.free; }; }) {}; dyalog-mode = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dyalog-mode"; - version = "20151111.854"; + version = "20160315.1049"; src = fetchhg { url = "https://bitbucket.com/harsman/dyalog-mode"; - rev = "ce795beb8747"; - sha256 = "0ghxnzi2iy1g633fshl9wdpg2asrcl0v5rkk61gqd6axm7fjaxcj"; + rev = "4dac440334f0"; + sha256 = "19aid1rqpqj0fvln98db5imfk1griqld55xsr9plm6kwrr174syq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dyalog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dyalog-mode"; sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq"; name = "dyalog-mode"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/dyalog-mode"; + homepage = "https://melpa.org/#/dyalog-mode"; license = lib.licenses.free; }; }) {}; dylan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dylan-mode"; - version = "20140611.37"; + version = "20160405.1714"; src = fetchFromGitHub { owner = "dylan-lang"; repo = "dylan-mode"; - rev = "2a5b8a65a3e3e9543e935dceea1a121e69e78c8e"; - sha256 = "011423kvbfcd7jifg9425j89hlzmnw4j751s4mdz9wyr979k19ny"; + rev = "7e8ba16bf125f0066d3e1caeefaba94a6d32ac72"; + sha256 = "0fxdv594k6p4kv6nc598rw51sy4x10dvbyhzn3gni2linb3v1c5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dylan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dylan-mode"; sha256 = "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy"; name = "dylan-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dylan-mode"; + homepage = "https://melpa.org/#/dylan-mode"; license = lib.licenses.free; }; }) {}; @@ -12570,13 +13120,13 @@ sha256 = "150dj1g49q9x9zx9wkymq30l5gc8c4mhsq91fm6q0yj6ip7hlfxh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dynamic-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dynamic-fonts"; sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q"; name = "dynamic-fonts"; }; packageRequires = [ font-utils pcache persistent-soft ]; meta = { - homepage = "http://melpa.org/#/dynamic-fonts"; + homepage = "https://melpa.org/#/dynamic-fonts"; license = lib.licenses.free; }; }) {}; @@ -12591,13 +13141,13 @@ sha256 = "1jsjk4fkisgprn2w1d1385kbc9w1bd707biapd1y453k20q5c4h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dynamic-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dynamic-ruler"; sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc"; name = "dynamic-ruler"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dynamic-ruler"; + homepage = "https://melpa.org/#/dynamic-ruler"; license = lib.licenses.free; }; }) {}; @@ -12612,13 +13162,13 @@ sha256 = "0d18kdpw4zfbq4bkqh19cf42xlinxqa71lr2d994phaxqxqq195w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2ansi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2ansi"; sha256 = "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94"; name = "e2ansi"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/e2ansi"; + homepage = "https://melpa.org/#/e2ansi"; license = lib.licenses.free; }; }) {}; @@ -12633,13 +13183,13 @@ sha256 = "1lx0c7s810x6prf7x1lnx412gll8nn8gqpmi56n319n406cxhnhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm"; sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la"; name = "e2wm"; }; packageRequires = [ window-layout ]; meta = { - homepage = "http://melpa.org/#/e2wm"; + homepage = "https://melpa.org/#/e2wm"; license = lib.licenses.free; }; }) {}; @@ -12654,13 +13204,13 @@ sha256 = "1g77gf24abwcvf7z52vs762s6jp978pnvza8zmzwkwfvp1mkx233"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-R"; sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh"; name = "e2wm-R"; }; packageRequires = [ e2wm ess inlineR ]; meta = { - homepage = "http://melpa.org/#/e2wm-R"; + homepage = "https://melpa.org/#/e2wm-R"; license = lib.licenses.free; }; }) {}; @@ -12675,13 +13225,13 @@ sha256 = "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-bookmark"; sha256 = "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5"; name = "e2wm-bookmark"; }; packageRequires = [ e2wm ]; meta = { - homepage = "http://melpa.org/#/e2wm-bookmark"; + homepage = "https://melpa.org/#/e2wm-bookmark"; license = lib.licenses.free; }; }) {}; @@ -12696,13 +13246,13 @@ sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-direx"; sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg"; name = "e2wm-direx"; }; packageRequires = [ direx e2wm ]; meta = { - homepage = "http://melpa.org/#/e2wm-direx"; + homepage = "https://melpa.org/#/e2wm-direx"; license = lib.licenses.free; }; }) {}; @@ -12717,13 +13267,13 @@ sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-pkgex4pl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-pkgex4pl"; sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil"; name = "e2wm-pkgex4pl"; }; packageRequires = [ e2wm plsense-direx ]; meta = { - homepage = "http://melpa.org/#/e2wm-pkgex4pl"; + homepage = "https://melpa.org/#/e2wm-pkgex4pl"; license = lib.licenses.free; }; }) {}; @@ -12738,13 +13288,13 @@ sha256 = "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-svg-clock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-svg-clock"; sha256 = "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms"; name = "e2wm-svg-clock"; }; packageRequires = [ e2wm svg-clock ]; meta = { - homepage = "http://melpa.org/#/e2wm-svg-clock"; + homepage = "https://melpa.org/#/e2wm-svg-clock"; license = lib.licenses.free; }; }) {}; @@ -12759,13 +13309,13 @@ sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-sww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-sww"; sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8"; name = "e2wm-sww"; }; packageRequires = [ e2wm ]; meta = { - homepage = "http://melpa.org/#/e2wm-sww"; + homepage = "https://melpa.org/#/e2wm-sww"; license = lib.licenses.free; }; }) {}; @@ -12780,13 +13330,13 @@ sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-term"; sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g"; name = "e2wm-term"; }; packageRequires = [ e2wm log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/e2wm-term"; + homepage = "https://melpa.org/#/e2wm-term"; license = lib.licenses.free; }; }) {}; @@ -12801,13 +13351,13 @@ sha256 = "09ikwg5s42b50lfj0796pa2h32larkf5j6cy042dzh8c441vgih4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-after-load"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-after-load"; sha256 = "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys"; name = "easy-after-load"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/easy-after-load"; + homepage = "https://melpa.org/#/easy-after-load"; license = lib.licenses.free; }; }) {}; @@ -12822,13 +13372,13 @@ sha256 = "1qn0givyh07w41sv5xayfzlwbpbq7p39wbhmwsgffgfqzzz5r2ys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-escape"; sha256 = "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk"; name = "easy-escape"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/easy-escape"; + homepage = "https://melpa.org/#/easy-escape"; license = lib.licenses.free; }; }) {}; @@ -12843,34 +13393,34 @@ sha256 = "0i2plbvaalapx3svryn5lrc68m0qj1xm0z577xxzq7i9z91nanq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-kill"; sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i"; name = "easy-kill"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/easy-kill"; + homepage = "https://melpa.org/#/easy-kill"; license = lib.licenses.free; }; }) {}; easy-kill-extras = callPackage ({ easy-kill, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "easy-kill-extras"; - version = "20151209.2117"; + version = "20160418.2119"; src = fetchFromGitHub { owner = "knu"; repo = "easy-kill-extras.el"; - rev = "aff957b4fd699331d21648780b2f0f6ffc3cb70b"; - sha256 = "18fn9qnm0cwdy47nv6wafiy6cf7rnv4av4w8zmjwjj0n8ql4jl08"; + rev = "65fc4fdfb79c6dd679b4a1a57fa657b4b39919cc"; + sha256 = "0mmhqid0x56m0p3b18a757147fy8km3p4kmi0y94kjq04a4ysg3k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-kill-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-kill-extras"; sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy"; name = "easy-kill-extras"; }; packageRequires = [ easy-kill ]; meta = { - homepage = "http://melpa.org/#/easy-kill-extras"; + homepage = "https://melpa.org/#/easy-kill-extras"; license = lib.licenses.free; }; }) {}; @@ -12885,13 +13435,13 @@ sha256 = "0qpabig0qrkyhhiifjpq9a7qv7h3nlqmpz79xy8lk58xy6rj0zk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-lentic"; sha256 = "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg"; name = "easy-lentic"; }; packageRequires = [ cl-lib lentic ]; meta = { - homepage = "http://melpa.org/#/easy-lentic"; + homepage = "https://melpa.org/#/easy-lentic"; license = lib.licenses.free; }; }) {}; @@ -12906,13 +13456,13 @@ sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-repeat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-repeat"; sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06"; name = "easy-repeat"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/easy-repeat"; + homepage = "https://melpa.org/#/easy-repeat"; license = lib.licenses.free; }; }) {}; @@ -12927,13 +13477,13 @@ sha256 = "0ysym38xaqyx1wc7xd3fvjm62dmiq4727dnjvyxv7hs4czff1gcb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebal"; sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg"; name = "ebal"; }; packageRequires = [ emacs f ido-completing-read-plus ]; meta = { - homepage = "http://melpa.org/#/ebal"; + homepage = "https://melpa.org/#/ebal"; license = lib.licenses.free; }; }) {}; @@ -12944,38 +13494,38 @@ src = fetchFromGitHub { owner = "rexim"; repo = "ebf"; - rev = "b52dd2fa8c6a4a7acf4d93c16f54fbd9fbe087df"; - sha256 = "1yyx6z251bgvcfi3jzdq4cnmyd8vmz3gffbzii5bdga4ms288j5d"; + rev = "4cd9c26354d8be6571354b2954d21fba882e78a2"; + sha256 = "1pgn6fcg5cnbpk93hc2vw95sna07x0s1v2i6lq9bmij2msvar611"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebf"; sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb"; name = "ebf"; }; packageRequires = [ cl-lib dash dash-functional ]; meta = { - homepage = "http://melpa.org/#/ebf"; + homepage = "https://melpa.org/#/ebf"; license = lib.licenses.free; }; }) {}; ebib = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib }: melpaBuild { pname = "ebib"; - version = "20160219.408"; + version = "20160410.1944"; src = fetchFromGitHub { owner = "joostkremers"; repo = "ebib"; - rev = "09211cde0a56ac38781269fb1db24424c76d0ad9"; - sha256 = "1pzx6izs9zg9fivplzagjf3a8477f4cka1py7mq8na6cv5wijyam"; + rev = "069ecbe32a4d5f1273e2d749204750652fbb5d91"; + sha256 = "1kcmbr4a2jxd62s4nc8xshrksb36xwb17j6c0hjzvb75r544xy6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebib"; sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid"; name = "ebib"; }; packageRequires = [ dash emacs parsebib ]; meta = { - homepage = "http://melpa.org/#/ebib"; + homepage = "https://melpa.org/#/ebib"; license = lib.licenses.free; }; }) {}; @@ -12990,13 +13540,13 @@ sha256 = "1hs069m4m6vhb37ac2x6hzbp9mfmpd3zhp4m631lx8dlmx11rydz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ecb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ecb"; sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89"; name = "ecb"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ecb"; + homepage = "https://melpa.org/#/ecb"; license = lib.licenses.free; }; }) {}; @@ -13004,17 +13554,17 @@ pname = "echo-bell"; version = "20151231.1456"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/echo-bell.el"; + url = "https://www.emacswiki.org/emacs/download/echo-bell.el"; sha256 = "0jk7pb2sr4qbxwcn4ipcjc9phl9zjmgg8sf91qj113112xx7vvxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/echo-bell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/echo-bell"; sha256 = "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws"; name = "echo-bell"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/echo-bell"; + homepage = "https://melpa.org/#/echo-bell"; license = lib.licenses.free; }; }) {}; @@ -13029,13 +13579,13 @@ sha256 = "1vxa6d8kp4h1havr9cq7zqgqm1xsjxhbgbi4hvi842ma6xwh4m5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eclipse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eclipse-theme"; sha256 = "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx"; name = "eclipse-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eclipse-theme"; + homepage = "https://melpa.org/#/eclipse-theme"; license = lib.licenses.free; }; }) {}; @@ -13050,34 +13600,34 @@ sha256 = "0h6vh719ai0cxyja6wpfi6m76d42vskj56wg666j0h6j0qw6h3i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ecukes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ecukes"; sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0"; name = "ecukes"; }; packageRequires = [ ansi commander dash espuds f s ]; meta = { - homepage = "http://melpa.org/#/ecukes"; + homepage = "https://melpa.org/#/ecukes"; license = lib.licenses.free; }; }) {}; edbi = callPackage ({ concurrent, ctable, epc, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi"; - version = "20140920.235"; + version = "20160224.1941"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-edbi"; - rev = "3edb409245d8a3bca7a5b25c70c98954c0ab42b2"; - sha256 = "1x5y1d5crc48iddlsf6irkr017p32a9xjcmlm9wf3zggmr95fr3s"; + rev = "6f50aaf4bde75255221f2292c7a4ad3fa9d918c0"; + sha256 = "0x0igyvdcm4863n7zndvcv6wgzwgn7324cbfjja6xd7r0k936zdy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi"; sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr"; name = "edbi"; }; packageRequires = [ concurrent ctable epc ]; meta = { - homepage = "http://melpa.org/#/edbi"; + homepage = "https://melpa.org/#/edbi"; license = lib.licenses.free; }; }) {}; @@ -13092,13 +13642,13 @@ sha256 = "0f59s0a7zpa3dny1k7x6zrymrnzba184smq8v1vvz8hkc0ym1j1v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi-database-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi-database-url"; sha256 = "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn"; name = "edbi-database-url"; }; packageRequires = [ edbi emacs ]; meta = { - homepage = "http://melpa.org/#/edbi-database-url"; + homepage = "https://melpa.org/#/edbi-database-url"; license = lib.licenses.free; }; }) {}; @@ -13109,17 +13659,17 @@ src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-django"; - rev = "bdafb3f0a7b20aad4c1898d19d03f56e0554c850"; - sha256 = "16qpficprg1xw1paz0m2988bw436ykx1lr6bwffp1d7hjvccp9d5"; + rev = "01c44a330a8d6ff08932d63dec4d9512d582bcda"; + sha256 = "1029b7p1lnyqkg0jm9an6s1l7la0kb38gx42g7212wbj71s3krga"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi-django"; sha256 = "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1"; name = "edbi-django"; }; packageRequires = [ edbi emacs f ]; meta = { - homepage = "http://melpa.org/#/edbi-django"; + homepage = "https://melpa.org/#/edbi-django"; license = lib.licenses.free; }; }) {}; @@ -13134,13 +13684,13 @@ sha256 = "176954d4agk4by5w8a5ky65iwjky1dqxxvz8vdf8fxj82r5k9fhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi-minor-mode"; sha256 = "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi"; name = "edbi-minor-mode"; }; packageRequires = [ edbi ]; meta = { - homepage = "http://melpa.org/#/edbi-minor-mode"; + homepage = "https://melpa.org/#/edbi-minor-mode"; license = lib.licenses.free; }; }) {}; @@ -13155,13 +13705,13 @@ sha256 = "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi-sqlite"; sha256 = "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y"; name = "edbi-sqlite"; }; packageRequires = [ edbi emacs ]; meta = { - homepage = "http://melpa.org/#/edbi-sqlite"; + homepage = "https://melpa.org/#/edbi-sqlite"; license = lib.licenses.free; }; }) {}; @@ -13176,13 +13726,13 @@ sha256 = "1cfjw9b1lm29s5cbh0qqmkchbq2382s71w4rpb0gyf603s0yg13m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ede-compdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ede-compdb"; sha256 = "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7"; name = "ede-compdb"; }; packageRequires = [ cl-lib ede semantic ]; meta = { - homepage = "http://melpa.org/#/ede-compdb"; + homepage = "https://melpa.org/#/ede-compdb"; license = lib.licenses.free; }; }) {}; @@ -13197,13 +13747,13 @@ sha256 = "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edebug-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edebug-x"; sha256 = "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql"; name = "edebug-x"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/edebug-x"; + homepage = "https://melpa.org/#/edebug-x"; license = lib.licenses.free; }; }) {}; @@ -13218,13 +13768,13 @@ sha256 = "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-at-point"; sha256 = "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im"; name = "edit-at-point"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/edit-at-point"; + homepage = "https://melpa.org/#/edit-at-point"; license = lib.licenses.free; }; }) {}; @@ -13239,13 +13789,13 @@ sha256 = "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-color-stamp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-color-stamp"; sha256 = "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8"; name = "edit-color-stamp"; }; packageRequires = [ cl-lib es-lib ]; meta = { - homepage = "http://melpa.org/#/edit-color-stamp"; + homepage = "https://melpa.org/#/edit-color-stamp"; license = lib.licenses.free; }; }) {}; @@ -13260,13 +13810,13 @@ sha256 = "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-indirect"; sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439"; name = "edit-indirect"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/edit-indirect"; + homepage = "https://melpa.org/#/edit-indirect"; license = lib.licenses.free; }; }) {}; @@ -13281,13 +13831,13 @@ sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-list"; sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv"; name = "edit-list"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/edit-list"; + homepage = "https://melpa.org/#/edit-list"; license = lib.licenses.free; }; }) {}; @@ -13302,13 +13852,13 @@ sha256 = "0ssmhwg4wfh5cxgqv8bl55449204h4zi863m7jhvas4c9zq005kd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-server"; sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0"; name = "edit-server"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/edit-server"; + homepage = "https://melpa.org/#/edit-server"; license = lib.licenses.free; }; }) {}; @@ -13323,76 +13873,34 @@ sha256 = "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-server-htmlize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-server-htmlize"; sha256 = "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj"; name = "edit-server-htmlize"; }; packageRequires = [ edit-server ]; meta = { - homepage = "http://melpa.org/#/edit-server-htmlize"; + homepage = "https://melpa.org/#/edit-server-htmlize"; license = lib.licenses.free; }; }) {}; - editorconfig = callPackage ({ editorconfig-core, fetchFromGitHub, fetchurl, lib, melpaBuild }: + editorconfig = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "editorconfig"; - version = "20160217.2152"; + version = "20160422.1640"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-emacs"; - rev = "c8ab99b94929ab86a18128464b9c464f21e0d0b7"; - sha256 = "1qsmx1wamjfdbhzj45kmkiprakfvfivm9fgy51byqk0sh84r2pkk"; + rev = "9e5606f0fe7d202ecf4ceb4c01be271fd594fbdd"; + sha256 = "0drqa91h0n25ydd6mn5w2js7d0acavzhr04f69m1qn5cjg3dm7l8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig"; - sha256 = "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/editorconfig"; + sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc"; name = "editorconfig"; }; - packageRequires = [ editorconfig-core ]; - meta = { - homepage = "http://melpa.org/#/editorconfig"; - license = lib.licenses.free; - }; - }) {}; - editorconfig-core = callPackage ({ cl-lib ? null, editorconfig-fnmatch, fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "editorconfig-core"; - version = "20160212.306"; - src = fetchFromGitHub { - owner = "editorconfig"; - repo = "editorconfig-emacs"; - rev = "c8ab99b94929ab86a18128464b9c464f21e0d0b7"; - sha256 = "1qsmx1wamjfdbhzj45kmkiprakfvfivm9fgy51byqk0sh84r2pkk"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig-core"; - sha256 = "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r"; - name = "editorconfig-core"; - }; - packageRequires = [ cl-lib editorconfig-fnmatch ]; - meta = { - homepage = "http://melpa.org/#/editorconfig-core"; - license = lib.licenses.free; - }; - }) {}; - editorconfig-fnmatch = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "editorconfig-fnmatch"; - version = "20160212.306"; - src = fetchFromGitHub { - owner = "editorconfig"; - repo = "editorconfig-emacs"; - rev = "c8ab99b94929ab86a18128464b9c464f21e0d0b7"; - sha256 = "1qsmx1wamjfdbhzj45kmkiprakfvfivm9fgy51byqk0sh84r2pkk"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig-fnmatch"; - sha256 = "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv"; - name = "editorconfig-fnmatch"; - }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/editorconfig-fnmatch"; + homepage = "https://melpa.org/#/editorconfig"; license = lib.licenses.free; }; }) {}; @@ -13407,13 +13915,13 @@ sha256 = "1xp2hjhn52k6l1g6ypva6dsklpawni7gvjafbz6404f9dyxflh7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edn"; sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg"; name = "edn"; }; packageRequires = [ cl-lib emacs peg ]; meta = { - homepage = "http://melpa.org/#/edn"; + homepage = "https://melpa.org/#/edn"; license = lib.licenses.free; }; }) {}; @@ -13428,7 +13936,7 @@ sha256 = "0vsrcvrd02nx647gxp65r548qlxg50w73dy0rs1lxwy6mdgp0npv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edts"; sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr"; name = "edts"; }; @@ -13443,7 +13951,7 @@ s ]; meta = { - homepage = "http://melpa.org/#/edts"; + homepage = "https://melpa.org/#/edts"; license = lib.licenses.free; }; }) {}; @@ -13458,55 +13966,76 @@ sha256 = "1c2iyv392ap35nss4j901h33d3lx9lmq5v43flf2rid1766pam6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/efire"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/efire"; sha256 = "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w"; name = "efire"; }; packageRequires = [ circe ]; meta = { - homepage = "http://melpa.org/#/efire"; + homepage = "https://melpa.org/#/efire"; license = lib.licenses.free; }; }) {}; egg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "egg"; - version = "20160111.231"; + version = "20160330.2247"; src = fetchFromGitHub { owner = "byplayer"; repo = "egg"; - rev = "d0721515131f9a9bdfa55c22dae817dd6b1a4585"; - sha256 = "1l9p8nairqr3ym5ydy0rwczcmkx2jq9b2g9r0r96n0vnjpybk6q2"; + rev = "cadc5c7fd21142d7ea41732200ab52eac0b96d3f"; + sha256 = "1qrblglkafwzfds8x5wp4yrn1gq8iz823iilxcp9mwycbw57ajw8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/egg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/egg"; sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i"; name = "egg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/egg"; + homepage = "https://melpa.org/#/egg"; license = lib.licenses.free; }; }) {}; egison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "egison-mode"; - version = "20160217.1805"; + version = "20160415.327"; src = fetchFromGitHub { owner = "egisatoshi"; repo = "egison3"; - rev = "04b6a26e4e9abc9791bc5c4f230282628623d25a"; - sha256 = "0ykjddp8jc2a2b2dkbnp96sda4qb9c70f8vqzndykzvccfhl7kan"; + rev = "7b3902a8b08a6e6e74ef37983287bcf00bc1900f"; + sha256 = "09i7bczfqxsnqswa7dg2zslka2bj4yzhjks2vhmb97576dg6pwir"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/egison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/egison-mode"; sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi"; name = "egison-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/egison-mode"; + homepage = "https://melpa.org/#/egison-mode"; + license = lib.licenses.free; + }; + }) {}; + ego = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, ht, htmlize, lib, melpaBuild, mustache, org, simple-httpd }: + melpaBuild { + pname = "ego"; + version = "20160423.2001"; + src = fetchFromGitHub { + owner = "emacs-china"; + repo = "EGO"; + rev = "214817db1816710bdf13ddb07b01d1a1b7e00fa3"; + sha256 = "04sjq2gfnfapkwpk4l2jbpsivshps74yjwxddssbr85r6qq57bvw"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ego"; + sha256 = "02s840chz3v4gdyq01b5i5w2vxl94001jk9j1nsp5b8xm10w985j"; + name = "ego"; + }; + packageRequires = [ dash emacs ht htmlize mustache org simple-httpd ]; + meta = { + homepage = "https://melpa.org/#/ego"; license = lib.licenses.free; }; }) {}; @@ -13516,55 +14045,58 @@ src = fetchgit { url = "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git"; rev = "9d7fb8c50568ece04bb0382caca42d3ab68fbb01"; - sha256 = "200307116b3617feeb5b52fb7234ad1a13a2afd89830afbdc291c265fa762ae2"; + sha256 = "1qiafvx6bhliqaysyc4qv2ps44qsmls75ysjbgmzw5rndc8hf0r0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eide"; sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz"; name = "eide"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eide"; + homepage = "https://melpa.org/#/eide"; license = lib.licenses.free; }; }) {}; - eimp = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + eimp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "eimp"; - version = "20140630.947"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/eimp.el"; - sha256 = "024qyipwlj3g0fff06cgq357blkh3hyr14vpmkqsv15x6gb9snir"; + version = "20120826.1539"; + src = fetchFromGitHub { + owner = "nicferrier"; + repo = "eimp"; + rev = "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f"; + sha256 = "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eimp"; - sha256 = "11z23kx89yy03hzs1xlbcih70lsp2lplxs8nkc8jvfcpsjwypsl0"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eimp"; + sha256 = "00g77bg49m38cjfbh17ccnmksz05qx7yvgl6i4i4hysbr2d8pgxd"; name = "eimp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eimp"; + homepage = "https://melpa.org/#/eimp"; license = lib.licenses.free; }; }) {}; ein = callPackage ({ cl-generic, fetchFromGitHub, fetchurl, lib, melpaBuild, request, websocket }: melpaBuild { pname = "ein"; - version = "20160203.2226"; + version = "20160422.829"; src = fetchFromGitHub { owner = "millejoh"; repo = "emacs-ipython-notebook"; - rev = "261576f94bb6eddc566c9d7aa557bf7cd20a2c05"; - sha256 = "05nvfjslfwzr54m1h2xjq3icd29khxpy0mka5r05gmlj3xzhkldv"; + rev = "b26c972ec89842ac21d4076b9d5719d26e7d5745"; + sha256 = "1b20cz9grxyjpbmc91csfygkg6rnclj39cc6pnlxxy6ikcn5xywn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ein"; sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp"; name = "ein"; }; packageRequires = [ cl-generic request websocket ]; meta = { - homepage = "http://melpa.org/#/ein"; + homepage = "https://melpa.org/#/ein"; license = lib.licenses.free; }; }) {}; @@ -13579,34 +14111,34 @@ sha256 = "1w0b3giy9ca35pp2ni4afnqas64a2vriilab7jiw9anp3ryh6570"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ein-mumamo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ein-mumamo"; sha256 = "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w"; name = "ein-mumamo"; }; packageRequires = [ ein ]; meta = { - homepage = "http://melpa.org/#/ein-mumamo"; + homepage = "https://melpa.org/#/ein-mumamo"; license = lib.licenses.free; }; }) {}; eink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eink-theme"; - version = "20160221.702"; + version = "20160321.458"; src = fetchFromGitHub { owner = "maio"; repo = "eink-emacs"; - rev = "61f5ecbb165b2e18fc131c8056a2522e8bf8802a"; - sha256 = "0bbaxg8g7gs75ih6shc3hxy9mwq7ci3q9iyly2snssaa613hijyv"; + rev = "93d25c097b105594472c4f99d693f439b4b709f0"; + sha256 = "0m7qsk378c30fva2n2ag99rsdklx5nsqc395msg1ab11sbpxvis0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eink-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eink-theme"; sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn"; name = "eink-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eink-theme"; + homepage = "https://melpa.org/#/eink-theme"; license = lib.licenses.free; }; }) {}; @@ -13621,34 +14153,34 @@ sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-autoyas"; sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c"; name = "el-autoyas"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el-autoyas"; + homepage = "https://melpa.org/#/el-autoyas"; license = lib.licenses.free; }; }) {}; el-get = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-get"; - version = "20160206.140"; + version = "20160413.2057"; src = fetchFromGitHub { owner = "dimitri"; repo = "el-get"; - rev = "9126044d31ab5e266472d9921fcb61c62c47beb3"; - sha256 = "1c64ln6b6ddhac5wq66y51h693iiwwawgxhsjkw5kmimv2rkygrs"; + rev = "0e9000ce31521d7a2f1d9cab5359c46af73ac530"; + sha256 = "0jg4514vql9icsr34mdcq9hcnjfnh2nq424d2zg3kcbc3jmhymi7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-get"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-get"; sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz"; name = "el-get"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el-get"; + homepage = "https://melpa.org/#/el-get"; license = lib.licenses.free; }; }) {}; @@ -13663,13 +14195,13 @@ sha256 = "0qk5jk0n7ga2cxqnm69rsy5cjjn5b4l4yqgaafvmmrrp70p8drmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-init"; sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5"; name = "el-init"; }; packageRequires = [ anaphora cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/el-init"; + homepage = "https://melpa.org/#/el-init"; license = lib.licenses.free; }; }) {}; @@ -13684,13 +14216,13 @@ sha256 = "0flf0pa3xwrdhfkshyr6nqrm957sgx9jkganbasqavbq1dvlw6lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-init-viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-init-viewer"; sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m"; name = "el-init-viewer"; }; packageRequires = [ anaphora cl-lib ctable dash el-init emacs ]; meta = { - homepage = "http://melpa.org/#/el-init-viewer"; + homepage = "https://melpa.org/#/el-init-viewer"; license = lib.licenses.free; }; }) {}; @@ -13705,13 +14237,13 @@ sha256 = "1jiq2hpym3wpk80zsl4lffpv4kgkykc2zp08sb01wa7pl8d1knmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-mock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-mock"; sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l"; name = "el-mock"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el-mock"; + homepage = "https://melpa.org/#/el-mock"; license = lib.licenses.free; }; }) {}; @@ -13726,13 +14258,13 @@ sha256 = "1iykhicc1ic1r6h4vj3701rm0vfy41b16w3d98amf8jjypv54wv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-pocket"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-pocket"; sha256 = "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw"; name = "el-pocket"; }; packageRequires = [ emacs web ]; meta = { - homepage = "http://melpa.org/#/el-pocket"; + homepage = "https://melpa.org/#/el-pocket"; license = lib.licenses.free; }; }) {}; @@ -13747,13 +14279,13 @@ sha256 = "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-spec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-spec"; sha256 = "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh"; name = "el-spec"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el-spec"; + homepage = "https://melpa.org/#/el-spec"; license = lib.licenses.free; }; }) {}; @@ -13768,13 +14300,13 @@ sha256 = "1sba405h1sy5vxg4ki631p4979gyaqv8wnwbgca5jp2pm8l3viri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-spice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-spice"; sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg"; name = "el-spice"; }; packageRequires = [ thingatpt-plus ]; meta = { - homepage = "http://melpa.org/#/el-spice"; + homepage = "https://melpa.org/#/el-spice"; license = lib.licenses.free; }; }) {}; @@ -13789,13 +14321,13 @@ sha256 = "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-sprunge"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-sprunge"; sha256 = "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a"; name = "el-sprunge"; }; packageRequires = [ emacs htmlize web-server ]; meta = { - homepage = "http://melpa.org/#/el-sprunge"; + homepage = "https://melpa.org/#/el-sprunge"; license = lib.licenses.free; }; }) {}; @@ -13810,13 +14342,13 @@ sha256 = "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-spy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-spy"; sha256 = "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n"; name = "el-spy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el-spy"; + homepage = "https://melpa.org/#/el-spy"; license = lib.licenses.free; }; }) {}; @@ -13824,17 +14356,17 @@ pname = "el-swank-fuzzy"; version = "20130824.657"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/el-swank-fuzzy.el"; + url = "https://www.emacswiki.org/emacs/download/el-swank-fuzzy.el"; sha256 = "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-swank-fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-swank-fuzzy"; sha256 = "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1"; name = "el-swank-fuzzy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el-swank-fuzzy"; + homepage = "https://melpa.org/#/el-swank-fuzzy"; license = lib.licenses.free; }; }) {}; @@ -13849,13 +14381,13 @@ sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-x"; sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g"; name = "el-x"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el-x"; + homepage = "https://melpa.org/#/el-x"; license = lib.licenses.free; }; }) {}; @@ -13870,13 +14402,13 @@ sha256 = "03xlxx57z1id9mr7afkvf77m2f9rrknrm1380p51vka84v2hl3mh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el2markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el2markdown"; sha256 = "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g"; name = "el2markdown"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el2markdown"; + homepage = "https://melpa.org/#/el2markdown"; license = lib.licenses.free; }; }) {}; @@ -13891,13 +14423,13 @@ sha256 = "1wikmzl9gi72h6fxawj0h20828n4vypw9rrv35kqnl4gfrdmxzkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elang"; sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy"; name = "elang"; }; packageRequires = [ names ]; meta = { - homepage = "http://melpa.org/#/elang"; + homepage = "https://melpa.org/#/elang"; license = lib.licenses.free; }; }) {}; @@ -13912,13 +14444,13 @@ sha256 = "0vppa9xihn8777rphiw1aqp96xn16vgjwff1dwvp8z861silp8ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eldoc-eval"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eldoc-eval"; sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c"; name = "eldoc-eval"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eldoc-eval"; + homepage = "https://melpa.org/#/eldoc-eval"; license = lib.licenses.free; }; }) {}; @@ -13926,17 +14458,17 @@ pname = "eldoc-extension"; version = "20140306.845"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/eldoc-extension.el"; + url = "https://www.emacswiki.org/emacs/download/eldoc-extension.el"; sha256 = "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eldoc-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eldoc-extension"; sha256 = "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24"; name = "eldoc-extension"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eldoc-extension"; + homepage = "https://melpa.org/#/eldoc-extension"; license = lib.licenses.free; }; }) {}; @@ -13951,34 +14483,34 @@ sha256 = "0s4y1319sr4xc0k6h2zhzzxsx2kc3pc2m6saah18y4kip0hjyhr8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/electric-case"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/electric-case"; sha256 = "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd"; name = "electric-case"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/electric-case"; + homepage = "https://melpa.org/#/electric-case"; license = lib.licenses.free; }; }) {}; electric-operator = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "electric-operator"; - version = "20160207.643"; + version = "20160403.443"; src = fetchFromGitHub { owner = "davidshepherd7"; repo = "electric-operator"; - rev = "cc5da970863c0b8d241cc716cc5cfbcb34bf6c3d"; - sha256 = "1ihy7cmflp8wghm0708y6fsw7cxrjkdimk6ixm2in7q56qijx4d4"; + rev = "cac8c6de50eca75d4209027dc291b368792cea10"; + sha256 = "08ihnbcg2h078v3k4c1pgk4f8kc0k5wbxspax0q02gsqlf7n7mgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/electric-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/electric-operator"; sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2"; name = "electric-operator"; }; packageRequires = [ dash emacs names ]; meta = { - homepage = "http://melpa.org/#/electric-operator"; + homepage = "https://melpa.org/#/electric-operator"; license = lib.licenses.free; }; }) {}; @@ -13993,13 +14525,13 @@ sha256 = "0q1pb01h48wdbjgi04a6ck2jn7yfh92wpq1vka5pg54wv2k9b5fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/electric-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/electric-spacing"; sha256 = "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg"; name = "electric-spacing"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/electric-spacing"; + homepage = "https://melpa.org/#/electric-spacing"; license = lib.licenses.free; }; }) {}; @@ -14014,49 +14546,49 @@ sha256 = "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elein"; sha256 = "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg"; name = "elein"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/elein"; + homepage = "https://melpa.org/#/elein"; license = lib.licenses.free; }; }) {}; elfeed = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elfeed"; - version = "20160127.1930"; + version = "20160314.1444"; src = fetchFromGitHub { owner = "skeeto"; repo = "elfeed"; - rev = "75deddd0de79c66b2f50aa3d32a7b7a3a352966d"; - sha256 = "1c3xwjzln5grxp7cci2mmly73mzl02f8wjm4hbd9napx72wjcxiy"; + rev = "6213e60638b3bd780ccf6a655585e520fa292992"; + sha256 = "1w25xd1vnf6y1idq849rqbpx38zng05g4vvp6nk3s8ibj9hm2zfz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed"; sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9"; name = "elfeed"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/elfeed"; + homepage = "https://melpa.org/#/elfeed"; license = lib.licenses.free; }; }) {}; elfeed-goodies = callPackage ({ ace-jump-mode, cl-lib ? null, elfeed, fetchFromGitHub, fetchurl, lib, melpaBuild, noflet, popwin, powerline }: melpaBuild { pname = "elfeed-goodies"; - version = "20151224.358"; + version = "20160317.624"; src = fetchFromGitHub { owner = "algernon"; repo = "elfeed-goodies"; - rev = "5983e70a3ed5d62d218e1149cfe777b10c3168e5"; - sha256 = "1r2liqjww0yscxjpg13dsfhhv3yjahlbas0dabqlh4f9q0jdrgj4"; + rev = "4e0f45a4fa459e1acd1282a063190311ca2aaa81"; + sha256 = "10dbf292l1pd6a4jchdlvpp4yf2kxmf2j6zqigh4wlg125px1drk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed-goodies"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed-goodies"; sha256 = "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi"; name = "elfeed-goodies"; }; @@ -14069,7 +14601,7 @@ powerline ]; meta = { - homepage = "http://melpa.org/#/elfeed-goodies"; + homepage = "https://melpa.org/#/elfeed-goodies"; license = lib.licenses.free; }; }) {}; @@ -14084,13 +14616,13 @@ sha256 = "0cp8sbhym83db88ii7gyab6iqxppinjlrkzb9627gq7xgb5mqj5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed-org"; sha256 = "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik"; name = "elfeed-org"; }; packageRequires = [ dash elfeed org s ]; meta = { - homepage = "http://melpa.org/#/elfeed-org"; + homepage = "https://melpa.org/#/elfeed-org"; license = lib.licenses.free; }; }) {}; @@ -14101,17 +14633,17 @@ src = fetchFromGitHub { owner = "skeeto"; repo = "elfeed"; - rev = "75deddd0de79c66b2f50aa3d32a7b7a3a352966d"; - sha256 = "1c3xwjzln5grxp7cci2mmly73mzl02f8wjm4hbd9napx72wjcxiy"; + rev = "6213e60638b3bd780ccf6a655585e520fa292992"; + sha256 = "1w25xd1vnf6y1idq849rqbpx38zng05g4vvp6nk3s8ibj9hm2zfz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed-web"; sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n"; name = "elfeed-web"; }; packageRequires = [ elfeed emacs simple-httpd ]; meta = { - homepage = "http://melpa.org/#/elfeed-web"; + homepage = "https://melpa.org/#/elfeed-web"; license = lib.licenses.free; }; }) {}; @@ -14126,31 +14658,34 @@ sha256 = "0rdhnnyn0xsmnshnf289kxk974r57i6nx0vii1w36j6p6q0b7f9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elhome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elhome"; sha256 = "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh"; name = "elhome"; }; packageRequires = [ initsplit ]; meta = { - homepage = "http://melpa.org/#/elhome"; + homepage = "https://melpa.org/#/elhome"; license = lib.licenses.free; }; }) {}; - elisp-depend = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + elisp-depend = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "elisp-depend"; - version = "20120426.2023"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/elisp-depend.el"; - sha256 = "0khc3gacw27aw9pkfrnla9844lqbspgm0hrz7q0h5nr73d9pnc02"; + version = "20120428.1504"; + src = fetchFromGitHub { + owner = "tehom"; + repo = "elisp-depend"; + rev = "817ab94db56e3c23da6d7d4ae0422c48f260a7e3"; + sha256 = "1a73zdh4jkx8f74cq802b5j4bx8k1z7cbsp10lz40lmwwxbl3czq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elisp-depend"; - sha256 = "08zxzvj60v23b7d5q0hvgffm1jxq7lc5y9w22m6nv2fp29yadyiy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elisp-depend"; + sha256 = "1x3acgkpd9a8xxjg5zjw0d4nv4q9xx30ipr6v3544mn16sv4ab7c"; name = "elisp-depend"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/elisp-depend"; + homepage = "https://melpa.org/#/elisp-depend"; license = lib.licenses.free; }; }) {}; @@ -14165,13 +14700,13 @@ sha256 = "1ci6nyk1vvb3wgxzarbf6448i9rjb74zzrhcmls634gfxbryxdyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elisp-lint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elisp-lint"; sha256 = "102hrxdw72bm11a29i15g09lv7jlnd7vkv7292fm3mcxf5f4hkw9"; name = "elisp-lint"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/elisp-lint"; + homepage = "https://melpa.org/#/elisp-lint"; license = lib.licenses.free; }; }) {}; @@ -14186,13 +14721,13 @@ sha256 = "168ljhscqyvp24lw70ylv4a3c0y51sx4f66lfahbs7zpjvwf25x0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elisp-sandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elisp-sandbox"; sha256 = "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp"; name = "elisp-sandbox"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/elisp-sandbox"; + homepage = "https://melpa.org/#/elisp-sandbox"; license = lib.licenses.free; }; }) {}; @@ -14207,34 +14742,34 @@ sha256 = "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elisp-slime-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elisp-slime-nav"; sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c"; name = "elisp-slime-nav"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/elisp-slime-nav"; + homepage = "https://melpa.org/#/elisp-slime-nav"; license = lib.licenses.free; }; }) {}; elixir-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "elixir-mode"; - version = "20160103.254"; + version = "20160421.1512"; src = fetchFromGitHub { owner = "elixir-lang"; repo = "emacs-elixir"; - rev = "344d77dd0d23e17a4438171d3194184b209a0de6"; - sha256 = "18dhijvgnx2hr9vnprcc1fl0k49bb3lpnghrqbkf7fj599kcjl7b"; + rev = "bf2ddc0a693aba18a12468d7ba7ef27a08536450"; + sha256 = "0ln7ldfr4xha5x9v7cfxvfd53zxb6msx31bnf5vbx39w8fwxv2yy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elixir-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elixir-mode"; sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf"; name = "elixir-mode"; }; packageRequires = [ emacs pkg-info ]; meta = { - homepage = "http://melpa.org/#/elixir-mode"; + homepage = "https://melpa.org/#/elixir-mode"; license = lib.licenses.free; }; }) {}; @@ -14249,55 +14784,76 @@ sha256 = "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elixir-yasnippets"; - sha256 = "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elixir-yasnippets"; + sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579"; name = "elixir-yasnippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/elixir-yasnippets"; + homepage = "https://melpa.org/#/elixir-yasnippets"; license = lib.licenses.free; }; }) {}; elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: melpaBuild { pname = "elm-mode"; - version = "20160211.226"; + version = "20160426.136"; src = fetchFromGitHub { owner = "jcollard"; repo = "elm-mode"; - rev = "47ea2e8d06e9f39be4e1d5a79b6cc634f9d46e58"; - sha256 = "0qiwzcpwiwlkjy89pxvss3gvjvbp4d6qpaxnbm50va1gbn21n72v"; + rev = "4fb26ae8e10d7b88e05a9e3a5c1b2cf3c8c2d6c3"; + sha256 = "0ly8i5x9ii781681xf9iisj5g83sfj2wf786072clll36ym4a7c1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elm-mode"; sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1"; name = "elm-mode"; }; packageRequires = [ emacs f let-alist s ]; meta = { - homepage = "http://melpa.org/#/elm-mode"; + homepage = "https://melpa.org/#/elm-mode"; + license = lib.licenses.free; + }; + }) {}; + elm-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: + melpaBuild { + pname = "elm-yasnippets"; + version = "20160401.24"; + src = fetchFromGitHub { + owner = "abingham"; + repo = "elm-yasnippets"; + rev = "45a11a0cef0c36633fb3477d3dc4167e82779ba4"; + sha256 = "1zb5yra6znkr7yaq6wqlmlr054wkv9cy1dih8h4j2gp2wnfwg968"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elm-yasnippets"; + sha256 = "0nnr0sxkxviw2i7b5s8jgvsv7lgqxqvirmvmband84q9gxlz24zb"; + name = "elm-yasnippets"; + }; + packageRequires = [ yasnippet ]; + meta = { + homepage = "https://melpa.org/#/elm-yasnippets"; license = lib.licenses.free; }; }) {}; elmacro = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "elmacro"; - version = "20141109.1006"; + version = "20160224.1131"; src = fetchFromGitHub { owner = "Silex"; repo = "elmacro"; - rev = "ff5d8a0d7f5154707f1d0a2b22894c6c0b0b9f94"; - sha256 = "181hcyg5v62nxrgmb7pl9672rm9fy8crc4lqhdwvdvd7ngki1fiz"; + rev = "d4a54dc41bd15e2acb6edb12f9b4f8bdad784478"; + sha256 = "085ab50q3jdy3vh22lz2p5ivcjlhfki3zzfsp1n0939myw6vqcsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elmacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elmacro"; sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz"; name = "elmacro"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/elmacro"; + homepage = "https://melpa.org/#/elmacro"; license = lib.licenses.free; }; }) {}; @@ -14312,13 +14868,13 @@ sha256 = "1463y4zc6yabd30k6806yw0am18fjv0bkxm56p2siqrwn9pbsh8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elmine"; sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz"; name = "elmine"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/elmine"; + homepage = "https://melpa.org/#/elmine"; license = lib.licenses.free; }; }) {}; @@ -14333,34 +14889,34 @@ sha256 = "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elnode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elnode"; sha256 = "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6"; name = "elnode"; }; packageRequires = [ creole dash db fakir kv noflet s web ]; meta = { - homepage = "http://melpa.org/#/elnode"; + homepage = "https://melpa.org/#/elnode"; license = lib.licenses.free; }; }) {}; elog = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elog"; - version = "20151116.1937"; + version = "20160426.722"; src = fetchFromGitHub { owner = "lujun9972"; repo = "elog"; - rev = "03c275877301c72fbc61d5fdd72efe5fdc0b6e98"; - sha256 = "19yvhyg34w1idsh712cahmcy1pzbxcipw9j6xk567lvkqkinqg7s"; + rev = "f13aaf326ab01c95e089dda08ea3c488cd4831c5"; + sha256 = "0z3g7jddsjf4hmhwvi8mhd90255ylaix0ysljscqsixacknzcjm9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elog"; sha256 = "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd"; name = "elog"; }; packageRequires = [ eieio ]; meta = { - homepage = "http://melpa.org/#/elog"; + homepage = "https://melpa.org/#/elog"; license = lib.licenses.free; }; }) {}; @@ -14375,13 +14931,13 @@ sha256 = "1jcr8bxffvnfs0ym6zkgs79hd6a0m81r4x4jr3v5l9zwxw04sy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elogcat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elogcat"; sha256 = "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia"; name = "elogcat"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/elogcat"; + homepage = "https://melpa.org/#/elogcat"; license = lib.licenses.free; }; }) {}; @@ -14396,13 +14952,13 @@ sha256 = "1dadf24x6v1vk57bp6w0g2dysigy5cqjzwldc8dn129f4pfrhipy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpa-audit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpa-audit"; sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52"; name = "elpa-audit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/elpa-audit"; + homepage = "https://melpa.org/#/elpa-audit"; license = lib.licenses.free; }; }) {}; @@ -14417,13 +14973,13 @@ sha256 = "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpa-mirror"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpa-mirror"; sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8"; name = "elpa-mirror"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/elpa-mirror"; + homepage = "https://melpa.org/#/elpa-mirror"; license = lib.licenses.free; }; }) {}; @@ -14438,7 +14994,7 @@ sha256 = "1xjm9b32a9nfzvphj6vm0dqcr4i072zcx29kcgiyyni8zbgbwmwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpy"; sha256 = "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709"; name = "elpy"; }; @@ -14450,7 +15006,7 @@ yasnippet ]; meta = { - homepage = "http://melpa.org/#/elpy"; + homepage = "https://melpa.org/#/elpy"; license = lib.licenses.free; }; }) {}; @@ -14465,13 +15021,13 @@ sha256 = "055kam18k4ni1zw3310cpsvdnrp62d579r30lq67ig2lq3yxzc1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen"; sha256 = "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s"; name = "elscreen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/elscreen"; + homepage = "https://melpa.org/#/elscreen"; license = lib.licenses.free; }; }) {}; @@ -14486,13 +15042,13 @@ sha256 = "0bbashrqpyhs282w5i15rzravvj0fjnydbh9vfnfnfnk8a9sssxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-buffer-group"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-buffer-group"; sha256 = "1clmhpk9zp6hsgz6a4jpmbrr9fr6k8b324s0x61n5yi4yzgdmc0v"; name = "elscreen-buffer-group"; }; packageRequires = [ cl-lib elscreen emacs ]; meta = { - homepage = "http://melpa.org/#/elscreen-buffer-group"; + homepage = "https://melpa.org/#/elscreen-buffer-group"; license = lib.licenses.free; }; }) {}; @@ -14507,13 +15063,13 @@ sha256 = "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-mew"; sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4"; name = "elscreen-mew"; }; packageRequires = [ elscreen ]; meta = { - homepage = "http://melpa.org/#/elscreen-mew"; + homepage = "https://melpa.org/#/elscreen-mew"; license = lib.licenses.free; }; }) {}; @@ -14528,13 +15084,13 @@ sha256 = "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-multi-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-multi-term"; sha256 = "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n"; name = "elscreen-multi-term"; }; packageRequires = [ elscreen emacs multi-term ]; meta = { - homepage = "http://melpa.org/#/elscreen-multi-term"; + homepage = "https://melpa.org/#/elscreen-multi-term"; license = lib.licenses.free; }; }) {}; @@ -14549,13 +15105,13 @@ sha256 = "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-persist"; sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k"; name = "elscreen-persist"; }; packageRequires = [ elscreen revive ]; meta = { - homepage = "http://melpa.org/#/elscreen-persist"; + homepage = "https://melpa.org/#/elscreen-persist"; license = lib.licenses.free; }; }) {}; @@ -14570,13 +15126,13 @@ sha256 = "1w34nnl4zalxzmyfbc81qd82m7qp3zvz608dx6hfi44pjz0dp36f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-separate-buffer-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-separate-buffer-list"; sha256 = "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk"; name = "elscreen-separate-buffer-list"; }; packageRequires = [ elscreen emacs ]; meta = { - homepage = "http://melpa.org/#/elscreen-separate-buffer-list"; + homepage = "https://melpa.org/#/elscreen-separate-buffer-list"; license = lib.licenses.free; }; }) {}; @@ -14591,13 +15147,13 @@ sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elwm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elwm"; sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9"; name = "elwm"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/elwm"; + homepage = "https://melpa.org/#/elwm"; license = lib.licenses.free; }; }) {}; @@ -14612,34 +15168,34 @@ sha256 = "0n5y3xq5dmqpsd9hhg9ac1jkj5qi9y7lgvg5nir3ghd8ldmrg09s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elx"; sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x"; name = "elx"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/elx"; + homepage = "https://melpa.org/#/elx"; license = lib.licenses.free; }; }) {}; emacs-eclim = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, popup, s }: melpaBuild { pname = "emacs-eclim"; - version = "20151226.1815"; + version = "20160411.1117"; src = fetchFromGitHub { owner = "emacs-eclim"; repo = "emacs-eclim"; - rev = "968da3c06d674417a46b2f6db7d0e8277c35141d"; - sha256 = "171xgznpgvwl03kzqa9nbpvj3mfznnf050pl2wih390nk5djpg12"; + rev = "b6daef5acf3e8cece565f410853ec4eebb4f8925"; + sha256 = "1fj84r3r0kdprjy2sbzxgx7icfn6fbhvylbzfcv4wq5g7qbn45sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacs-eclim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacs-eclim"; sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv"; name = "emacs-eclim"; }; packageRequires = [ cl-lib dash json popup s ]; meta = { - homepage = "http://melpa.org/#/emacs-eclim"; + homepage = "https://melpa.org/#/emacs-eclim"; license = lib.licenses.free; }; }) {}; @@ -14654,13 +15210,13 @@ sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacs-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacs-setup"; sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh"; name = "emacs-setup"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emacs-setup"; + homepage = "https://melpa.org/#/emacs-setup"; license = lib.licenses.free; }; }) {}; @@ -14675,13 +15231,13 @@ sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsagist"; sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64"; name = "emacsagist"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/emacsagist"; + homepage = "https://melpa.org/#/emacsagist"; license = lib.licenses.free; }; }) {}; @@ -14696,55 +15252,55 @@ sha256 = "1rqr08gj07hw37mqd0flmq4a10wn16vy7wg0msqq0ab2smwjhns7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsc"; sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk"; name = "emacsc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emacsc"; + homepage = "https://melpa.org/#/emacsc"; license = lib.licenses.free; }; }) {}; emacsist-view = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsist-view"; - version = "20160217.2240"; + version = "20160426.723"; src = fetchFromGitHub { owner = "lujun9972"; repo = "emacsist-view"; - rev = "4bfda87db63825bd40a2a3aad5c5a7760e2d4f38"; - sha256 = "0wrv2pkp8hf56lk5snxvypizydwyjpki7f4q6la4vbbf43zr1z2s"; + rev = "f67761259ed779a9bc95c9a4e0474522990c5c6b"; + sha256 = "1vhs9725fyl2j65lk014qz76iv4hsvyim06361h4lai634hp7ck6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsist-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsist-view"; sha256 = "0lf280ppi3zksqvx81y8mm9479j26kd5wywfghhwk36kz410hk99"; name = "emacsist-view"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emacsist-view"; + homepage = "https://melpa.org/#/emacsist-view"; license = lib.licenses.free; }; }) {}; emacsql = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, finalize, lib, melpaBuild }: melpaBuild { pname = "emacsql"; - version = "20151003.2131"; + version = "20160424.947"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; - rev = "74bd11bc0998d7019a05eecc0486fee09c84a93b"; - sha256 = "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad"; + rev = "3042597a723157f7a69765d833107b5e9efb3562"; + sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql"; sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax"; name = "emacsql"; }; packageRequires = [ cl-lib emacs finalize ]; meta = { - homepage = "http://melpa.org/#/emacsql"; + homepage = "https://melpa.org/#/emacsql"; license = lib.licenses.free; }; }) {}; @@ -14755,17 +15311,17 @@ src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; - rev = "74bd11bc0998d7019a05eecc0486fee09c84a93b"; - sha256 = "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad"; + rev = "3042597a723157f7a69765d833107b5e9efb3562"; + sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-mysql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-mysql"; sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy"; name = "emacsql-mysql"; }; packageRequires = [ cl-lib emacs emacsql ]; meta = { - homepage = "http://melpa.org/#/emacsql-mysql"; + homepage = "https://melpa.org/#/emacsql-mysql"; license = lib.licenses.free; }; }) {}; @@ -14776,59 +15332,59 @@ src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; - rev = "74bd11bc0998d7019a05eecc0486fee09c84a93b"; - sha256 = "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad"; + rev = "3042597a723157f7a69765d833107b5e9efb3562"; + sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-psql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-psql"; sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3"; name = "emacsql-psql"; }; packageRequires = [ cl-lib emacs emacsql pg ]; meta = { - homepage = "http://melpa.org/#/emacsql-psql"; + homepage = "https://melpa.org/#/emacsql-psql"; license = lib.licenses.free; }; }) {}; emacsql-sqlite = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsql-sqlite"; - version = "20151004.915"; + version = "20160311.1438"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; - rev = "74bd11bc0998d7019a05eecc0486fee09c84a93b"; - sha256 = "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad"; + rev = "3042597a723157f7a69765d833107b5e9efb3562"; + sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-sqlite"; sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i"; name = "emacsql-sqlite"; }; packageRequires = [ cl-lib emacs emacsql ]; meta = { - homepage = "http://melpa.org/#/emacsql-sqlite"; + homepage = "https://melpa.org/#/emacsql-sqlite"; license = lib.licenses.free; }; }) {}; emacsshot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsshot"; - version = "20150516.1633"; + version = "20160303.205"; src = fetchFromGitHub { owner = "marcowahl"; repo = "emacsshot"; - rev = "8615aa841a37c20f8cc0f0efdc89c8d79acbb84b"; - sha256 = "0jn4xj206idh5kgbklgcrngx6wvz9gwfm61wygar6pbfzqyx1y9b"; + rev = "50684e5d3d703f353333317d13dca5026f7affd0"; + sha256 = "0qx874j4bj2791vkas77vfsnw9m7br940p6n7238zjgn7bccj6dv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsshot"; sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j"; name = "emacsshot"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emacsshot"; + homepage = "https://melpa.org/#/emacsshot"; license = lib.licenses.free; }; }) {}; @@ -14843,34 +15399,34 @@ sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emagician-fix-spell-memory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emagician-fix-spell-memory"; sha256 = "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j"; name = "emagician-fix-spell-memory"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emagician-fix-spell-memory"; + homepage = "https://melpa.org/#/emagician-fix-spell-memory"; license = lib.licenses.free; }; }) {}; emamux = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emamux"; - version = "20160101.817"; + version = "20160426.517"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-emamux"; - rev = "92420150f7951dc867fd6e18c262d778e6456a4e"; - sha256 = "0j9vpiybpklf7kgmwpkdyywk29vpigzbn39d0m54z1kvy23xvx6x"; + rev = "3cdad568e4cb9a36c2f87b8ee57bdffb4d7ad2e0"; + sha256 = "0bpiwdzy40hw47zad5rxrzgjdx5isqil7vh5sg1qk8jzypy9shpm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emamux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emamux"; sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; name = "emamux"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/emamux"; + homepage = "https://melpa.org/#/emamux"; license = lib.licenses.free; }; }) {}; @@ -14885,13 +15441,13 @@ sha256 = "1idsvilsvlxh72waalhl8vrsmh0vfvz56qcv56fc2c0pb1i90icn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emamux-ruby-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emamux-ruby-test"; sha256 = "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm"; name = "emamux-ruby-test"; }; packageRequires = [ emamux projectile ]; meta = { - homepage = "http://melpa.org/#/emamux-ruby-test"; + homepage = "https://melpa.org/#/emamux-ruby-test"; license = lib.licenses.free; }; }) {}; @@ -14906,13 +15462,13 @@ sha256 = "0cv8y6hr719648yxr2fbgb1hyg36m60bsbd57f2vvvqvg87si4jz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ember-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ember-mode"; sha256 = "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx"; name = "ember-mode"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/ember-mode"; + homepage = "https://melpa.org/#/ember-mode"; license = lib.licenses.free; }; }) {}; @@ -14927,13 +15483,34 @@ sha256 = "1sj033acw1q80accdfkrxw4kzfl8p1ld16y188ikbizvq75lfkpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ember-yasnippets"; - sha256 = "1alqrv9yhc1f8dhvh2kjcv8qbn1hdgza5iasmchr1wggxds3s50i"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ember-yasnippets"; + sha256 = "1jwkzcqcpy7ykdjhsqmg8ds6qyl4jglyjbgg7v301x068dsxkja6"; name = "ember-yasnippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/ember-yasnippets"; + homepage = "https://melpa.org/#/ember-yasnippets"; + license = lib.licenses.free; + }; + }) {}; + embrace = callPackage ({ emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "embrace"; + version = "20160425.1538"; + src = fetchFromGitHub { + owner = "cute-jumper"; + repo = "embrace.el"; + rev = "c3a0b30811693cb0aa7d68caed5e5d9a7946a79e"; + sha256 = "0vwxq4qhzajb1nlijd97a0jjl178jpy6n42ny41sm43395q8xnb2"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/embrace"; + sha256 = "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc"; + name = "embrace"; + }; + packageRequires = [ emacs expand-region ]; + meta = { + homepage = "https://melpa.org/#/embrace"; license = lib.licenses.free; }; }) {}; @@ -14943,37 +15520,37 @@ version = "20151213.938"; src = fetchFromGitHub { owner = "smihica"; - repo = "emmet"; + repo = "emmet-mode"; rev = "3a29a1ae17271a3dfe3cd47db034ee4036b2b144"; sha256 = "0037nikvlcw6i228jym76pl1mgw4fn5dpz8hfr86b3m0zb012inj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emmet-mode"; - sha256 = "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emmet-mode"; + sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr"; name = "emmet-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emmet-mode"; + homepage = "https://melpa.org/#/emmet-mode"; license = lib.licenses.free; }; }) {}; emms = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms"; - version = "20160207.620"; + version = "20160304.1120"; src = fetchgit { url = "git://git.sv.gnu.org/emms.git"; - rev = "141ab95c2a0a2554b205f6eec991fa36d7d0531f"; - sha256 = "7a3dcd8e93e7c2261f1af64d5dc2381b4c94db927326a577895a68c4325ae4d0"; + rev = "ac15f46e19d259e5d49acdac877d0793be1c1ebe"; + sha256 = "1y6l74sr553vygwpyf7di8cdg98hqpzccz81n24vj11a8g9qly1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms"; sha256 = "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m"; name = "emms"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emms"; + homepage = "https://melpa.org/#/emms"; license = lib.licenses.free; }; }) {}; @@ -14988,13 +15565,13 @@ sha256 = "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-info-mediainfo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-info-mediainfo"; sha256 = "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w"; name = "emms-info-mediainfo"; }; packageRequires = [ emms ]; meta = { - homepage = "http://melpa.org/#/emms-info-mediainfo"; + homepage = "https://melpa.org/#/emms-info-mediainfo"; license = lib.licenses.free; }; }) {}; @@ -15009,13 +15586,13 @@ sha256 = "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-mark-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-mark-ext"; sha256 = "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081"; name = "emms-mark-ext"; }; packageRequires = [ emms ]; meta = { - homepage = "http://melpa.org/#/emms-mark-ext"; + homepage = "https://melpa.org/#/emms-mark-ext"; license = lib.licenses.free; }; }) {}; @@ -15030,55 +15607,55 @@ sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-mode-line-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-mode-line-cycle"; sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca"; name = "emms-mode-line-cycle"; }; packageRequires = [ emacs emms ]; meta = { - homepage = "http://melpa.org/#/emms-mode-line-cycle"; + homepage = "https://melpa.org/#/emms-mode-line-cycle"; license = lib.licenses.free; }; }) {}; emms-player-mpv = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-player-mpv"; - version = "20151208.102"; + version = "20160319.208"; src = fetchFromGitHub { owner = "dochang"; repo = "emms-player-mpv"; - rev = "a1be1d266530ede3780dd69a7243d898f1016127"; - sha256 = "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m"; + rev = "69ebe6d9539769d4c4daa484693ec0d6f67a3cca"; + sha256 = "104iw4bl6y33diqs5ayrvdljkhb6f9g2m5p5kh8klgy7z1yjhp4p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-player-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-player-mpv"; sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y"; name = "emms-player-mpv"; }; packageRequires = [ emms ]; meta = { - homepage = "http://melpa.org/#/emms-player-mpv"; + homepage = "https://melpa.org/#/emms-player-mpv"; license = lib.licenses.free; }; }) {}; emms-player-mpv-jp-radios = callPackage ({ cl-lib ? null, emacs, emms, emms-player-simple-mpv, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-player-mpv-jp-radios"; - version = "20160130.940"; + version = "20160408.611"; src = fetchFromGitHub { owner = "momomo5717"; repo = "emms-player-mpv-jp-radios"; - rev = "552779cd56d1aad54593dbf84db60ec50d3a42a1"; - sha256 = "05n7jcd3nsnchv0swakf068klhlvckfcb3xjmxf5nnjibffjz77r"; + rev = "cda5e90055fbb5e62dccc0a70395c540be694e0b"; + sha256 = "1m6p8vf98galhrzv83ys2srvmzb52bimv872ibl0iib9d4hrkps8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-player-mpv-jp-radios"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-player-mpv-jp-radios"; sha256 = "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv"; name = "emms-player-mpv-jp-radios"; }; packageRequires = [ cl-lib emacs emms emms-player-simple-mpv ]; meta = { - homepage = "http://melpa.org/#/emms-player-mpv-jp-radios"; + homepage = "https://melpa.org/#/emms-player-mpv-jp-radios"; license = lib.licenses.free; }; }) {}; @@ -15093,13 +15670,13 @@ sha256 = "0ajxyv7yx4ni8dizs7acpsxnmy3c9s0dx28vw9y1ym0bxkgfyzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-player-simple-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-player-simple-mpv"; sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1"; name = "emms-player-simple-mpv"; }; packageRequires = [ cl-lib emacs emms ]; meta = { - homepage = "http://melpa.org/#/emms-player-simple-mpv"; + homepage = "https://melpa.org/#/emms-player-simple-mpv"; license = lib.licenses.free; }; }) {}; @@ -15114,13 +15691,34 @@ sha256 = "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-soundcloud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-soundcloud"; sha256 = "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi"; name = "emms-soundcloud"; }; packageRequires = [ emms json ]; meta = { - homepage = "http://melpa.org/#/emms-soundcloud"; + homepage = "https://melpa.org/#/emms-soundcloud"; + license = lib.licenses.free; + }; + }) {}; + emms-status = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "emms-status"; + version = "20150314.735"; + src = fetchFromGitHub { + owner = "alezost"; + repo = "emms-status.el"; + rev = "770f23ff4f7e3b994325687302eac2c7131500b2"; + sha256 = "1vanlvszm05x8kyxqjmmywmzbi4bxnkc5jxfgg5b58z5ad7kmld8"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-status"; + sha256 = "1nfyhp8l22ylh60hpk8fvr4hgmww8k2xi3q7dzpn5m2ph06fkdqa"; + name = "emms-status"; + }; + packageRequires = [ emms ]; + meta = { + homepage = "https://melpa.org/#/emms-status"; license = lib.licenses.free; }; }) {}; @@ -15135,13 +15733,13 @@ sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emoji-cheat-sheet-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emoji-cheat-sheet-plus"; sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv"; name = "emoji-cheat-sheet-plus"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/emoji-cheat-sheet-plus"; + homepage = "https://melpa.org/#/emoji-cheat-sheet-plus"; license = lib.licenses.free; }; }) {}; @@ -15156,13 +15754,13 @@ sha256 = "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emoji-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emoji-display"; sha256 = "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9"; name = "emoji-display"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emoji-display"; + homepage = "https://melpa.org/#/emoji-display"; license = lib.licenses.free; }; }) {}; @@ -15177,34 +15775,34 @@ sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emoji-fontset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emoji-fontset"; sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d"; name = "emoji-fontset"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emoji-fontset"; + homepage = "https://melpa.org/#/emoji-fontset"; license = lib.licenses.free; }; }) {}; emojify = callPackage ({ emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, seq }: melpaBuild { pname = "emojify"; - version = "20151230.521"; + version = "20160316.1148"; src = fetchFromGitHub { owner = "iqbalansari"; repo = "emacs-emojify"; - rev = "0dfe1bb23c5035eca15a92ea7e9925f384ad9395"; - sha256 = "1fqhydv9anhw0z8zjbz17kbl01bdzif9ncd25vdaa5dzddd16rb1"; + rev = "6016e30bf5f76993506e0a95338686d2364cd555"; + sha256 = "1zz6q5jf22nwb9qlyxxrz56gz7x5gcxh6q6d0ybf4bapk35g3v0q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emojify"; - sha256 = "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emojify"; + sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp"; name = "emojify"; }; packageRequires = [ emacs ht seq ]; meta = { - homepage = "http://melpa.org/#/emojify"; + homepage = "https://melpa.org/#/emojify"; license = lib.licenses.free; }; }) {}; @@ -15219,13 +15817,13 @@ sha256 = "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/empos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/empos"; sha256 = "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4"; name = "empos"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/empos"; + homepage = "https://melpa.org/#/empos"; license = lib.licenses.free; }; }) {}; @@ -15240,7 +15838,7 @@ sha256 = "1frcn6694q74is8qbvrjkcsw0q1wz56z4gl35n4v3wakr9wvdvd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emr"; sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x"; name = "emr"; }; @@ -15258,7 +15856,7 @@ s ]; meta = { - homepage = "http://melpa.org/#/emr"; + homepage = "https://melpa.org/#/emr"; license = lib.licenses.free; }; }) {}; @@ -15268,18 +15866,18 @@ version = "20121008.1114"; src = fetchFromGitHub { owner = "rejeep"; - repo = "enclose"; + repo = "enclose.el"; rev = "2747653e84af39017f503064bc66ed1812a77259"; sha256 = "0dz5xm05d7irh1j8iy08jk521p19cjai1kw68z2nngnyf1az7cim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enclose"; - sha256 = "04gs468qqhdc9avx7lgibr0f1i444714i7rifad37dfmim8qk759"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enclose"; + sha256 = "1bkrv3cwhbiydgfjhmyjr96cvsgr9zi8n0ir1akgamccm2ln73d6"; name = "enclose"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/enclose"; + homepage = "https://melpa.org/#/enclose"; license = lib.licenses.free; }; }) {}; @@ -15294,13 +15892,13 @@ sha256 = "0k5ns40s5nskn0zialwq96qll1v5k50lfa5xh8hxbpcamsfym6h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/encourage-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/encourage-mode"; sha256 = "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63"; name = "encourage-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/encourage-mode"; + homepage = "https://melpa.org/#/encourage-mode"; license = lib.licenses.free; }; }) {}; @@ -15311,17 +15909,17 @@ src = fetchFromGitHub { owner = "hrs"; repo = "engine-mode"; - rev = "a1b3e4fb71155c01963a3451c3e45d3a08215ede"; - sha256 = "1hxvla26j6zm287cbn5mpwhrkbn4grgglh2rk9hrrzhm7xcb21mx"; + rev = "244610231f48af10e9cd0931827543e1fcdb3f32"; + sha256 = "066pxfv4rpxgi7jxdyc0a3g5z9m1j66sbi5gh2l7m4rwhzkqchn9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/engine-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/engine-mode"; sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c"; name = "engine-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/engine-mode"; + homepage = "https://melpa.org/#/engine-mode"; license = lib.licenses.free; }; }) {}; @@ -15336,13 +15934,13 @@ sha256 = "008wggl6xxk339njrgpj2fndbil7k9f3i2hg1mjwqk033j87nbz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enh-ruby-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enh-ruby-mode"; sha256 = "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns"; name = "enh-ruby-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/enh-ruby-mode"; + homepage = "https://melpa.org/#/enh-ruby-mode"; license = lib.licenses.free; }; }) {}; @@ -15357,13 +15955,13 @@ sha256 = "0vd7zy06nqb1ayjlnf2wl0bfv1cqv2qcb3cgy3zr9k9c4whcd8jh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enlive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enlive"; sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz"; name = "enlive"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/enlive"; + homepage = "https://melpa.org/#/enlive"; license = lib.licenses.free; }; }) {}; @@ -15378,13 +15976,13 @@ sha256 = "1qimqrvk0myqfi2l3viigkx1ld90qpjgi1gs6xhw2g51r8x4i3in"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eno"; sha256 = "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk"; name = "eno"; }; packageRequires = [ dash edit-at-point ]; meta = { - homepage = "http://melpa.org/#/eno"; + homepage = "https://melpa.org/#/eno"; license = lib.licenses.free; }; }) {}; @@ -15399,28 +15997,28 @@ sha256 = "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enotify"; sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi"; name = "enotify"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/enotify"; + homepage = "https://melpa.org/#/enotify"; license = lib.licenses.free; }; }) {}; ensime = callPackage ({ company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s, sbt-mode, scala-mode2, yasnippet }: melpaBuild { pname = "ensime"; - version = "20160219.1431"; + version = "20160416.337"; src = fetchFromGitHub { owner = "ensime"; repo = "ensime-emacs"; - rev = "6ce0d22ba4f4cc9a8420ae5a8902a1c8a4218c7e"; - sha256 = "1s3fpigsm988jp9jpcyk1zr7khby12m5cy71k1ag0cbgrv66l4za"; + rev = "989a1333d294bcaa6bb9671e42e77f6716c7f436"; + sha256 = "00fcy1f0p8ibymaza3mmysjlchc79yzjgd7pp31fiq3y3hkriq2j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ensime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ensime"; sha256 = "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby"; name = "ensime"; }; @@ -15434,7 +16032,7 @@ yasnippet ]; meta = { - homepage = "http://melpa.org/#/ensime"; + homepage = "https://melpa.org/#/ensime"; license = lib.licenses.free; }; }) {}; @@ -15449,13 +16047,13 @@ sha256 = "1jyhr9gv3d0rxv5iks2g9x6xbxqv1bvf1fnih96h4pgsfxz8wrp6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/envdir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/envdir"; sha256 = "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8"; name = "envdir"; }; packageRequires = [ dash emacs f ]; meta = { - homepage = "http://melpa.org/#/envdir"; + homepage = "https://melpa.org/#/envdir"; license = lib.licenses.free; }; }) {}; @@ -15470,13 +16068,13 @@ sha256 = "0pmawjfyihqygqz7y0nvyrs6jcvckqzkq9k6z6yanpvkd2x5g13x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eopengrok"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eopengrok"; sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av"; name = "eopengrok"; }; packageRequires = [ cl-lib dash magit s ]; meta = { - homepage = "http://melpa.org/#/eopengrok"; + homepage = "https://melpa.org/#/eopengrok"; license = lib.licenses.free; }; }) {}; @@ -15491,13 +16089,13 @@ sha256 = "11z08y61xd00rlw5mcyrix8nx41mqs127wighhjsxsyzbfqydxdr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epc"; sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx"; name = "epc"; }; packageRequires = [ concurrent ctable ]; meta = { - homepage = "http://melpa.org/#/epc"; + homepage = "https://melpa.org/#/epc"; license = lib.licenses.free; }; }) {}; @@ -15512,13 +16110,34 @@ sha256 = "18gfi1287skv5xvh12arkvxy2c4fism8bdk42wc5q3y21h8nsiim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epic"; sha256 = "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf"; name = "epic"; }; packageRequires = [ htmlize ]; meta = { - homepage = "http://melpa.org/#/epic"; + homepage = "https://melpa.org/#/epic"; + license = lib.licenses.free; + }; + }) {}; + epkg = callPackage ({ closql, dash, emacs, fetchFromGitLab, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "epkg"; + version = "20160415.2116"; + src = fetchFromGitLab { + owner = "tarsius"; + repo = "epkg"; + rev = "99df36a50fb39976c6b6086db2f5f640f5d917b7"; + sha256 = "0z60g9ln651cjfrjhwdm28x53kcpmap8zw26v0vjng288hlj8f9c"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epkg"; + sha256 = "0vc1g29rfmgd2ks4lbz4599rbgcax7rgdva53ahhvp6say8fy22q"; + name = "epkg"; + }; + packageRequires = [ closql dash emacs ]; + meta = { + homepage = "https://melpa.org/#/epkg"; license = lib.licenses.free; }; }) {}; @@ -15533,34 +16152,34 @@ sha256 = "0s4k2grikhibd075435giv3bmba1mx71ndxlr0k1i0q0xawpyyb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epl"; sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn"; name = "epl"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/epl"; + homepage = "https://melpa.org/#/epl"; license = lib.licenses.free; }; }) {}; - epresent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + epresent = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "epresent"; - version = "20150324.810"; + version = "20160410.2101"; src = fetchFromGitHub { - owner = "eschulte"; + owner = "dakrone"; repo = "epresent"; - rev = "c185826a464f780467dff240fd63ec385bd1d9c2"; - sha256 = "1a8gzf7abda0zgcllyl351m47avnf995i9lvwjf05nyx2jb31dnw"; + rev = "6c8abedcf46ff08091fa2bba52eb905c6290057d"; + sha256 = "1qa1nq63kax767gs53s75ihspirvh69l4xdm89mj57qvrbpz36z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epresent"; - sha256 = "1x16wqfjfrh7kaqar5px61bf3lnlibvcbr5xaf3mcgph37sgi6la"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epresent"; + sha256 = "176d1nwsafi6fb0dnv35bfskp0xczyzf2939gi4bz69zh0161jg8"; name = "epresent"; }; - packageRequires = []; + packageRequires = [ cl-lib org ]; meta = { - homepage = "http://melpa.org/#/epresent"; + homepage = "https://melpa.org/#/epresent"; license = lib.licenses.free; }; }) {}; @@ -15575,13 +16194,13 @@ sha256 = "1wwg46xdb488wxvglwvsy08vznrnmdmmbcvm9vb60dy3gqjmz7cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eprime-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eprime-mode"; sha256 = "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g"; name = "eprime-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eprime-mode"; + homepage = "https://melpa.org/#/eprime-mode"; license = lib.licenses.free; }; }) {}; @@ -15596,13 +16215,13 @@ sha256 = "13ds5z2nvanx8cvxrzi0da6ixx7kw222z6mrlbs8cldqcmzm7xh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eproject"; sha256 = "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4"; name = "eproject"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/eproject"; + homepage = "https://melpa.org/#/eproject"; license = lib.licenses.free; }; }) {}; @@ -15617,34 +16236,34 @@ sha256 = "18r66yl52xm1gjbn0dm8z80gv4p3794pi91qa8i2sri4grbsyi5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-colorize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-colorize"; sha256 = "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a"; name = "erc-colorize"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-colorize"; + homepage = "https://melpa.org/#/erc-colorize"; license = lib.licenses.free; }; }) {}; erc-crypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-crypt"; - version = "20160203.1824"; + version = "20160323.2039"; src = fetchFromGitHub { owner = "atomontage"; repo = "erc-crypt"; - rev = "08ff044c1c9ef042913623295e57590e72bd1270"; - sha256 = "0v2ly3q1r169lxwp6ml70plm6i0s96d0a1wy91ngvqgqpnpk4746"; + rev = "e0c9951aae52b54d766c666214b25a64ede116a4"; + sha256 = "0yiv16k0b2399asghc7qv9c9pj6ih0rwc863dskr2isnpl39amra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-crypt"; sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3"; name = "erc-crypt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-crypt"; + homepage = "https://melpa.org/#/erc-crypt"; license = lib.licenses.free; }; }) {}; @@ -15658,13 +16277,13 @@ sha256 = "0bk4vr26abhbiwkmpns4hdlg23pxa25lca78fhz1900jkv4imk0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-hipchatify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-hipchatify"; sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x"; name = "erc-hipchatify"; }; packageRequires = [ alert emacs request s ]; meta = { - homepage = "http://melpa.org/#/erc-hipchatify"; + homepage = "https://melpa.org/#/erc-hipchatify"; license = lib.licenses.free; }; }) {}; @@ -15679,13 +16298,13 @@ sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-hl-nicks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-hl-nicks"; sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja"; name = "erc-hl-nicks"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-hl-nicks"; + homepage = "https://melpa.org/#/erc-hl-nicks"; license = lib.licenses.free; }; }) {}; @@ -15700,13 +16319,13 @@ sha256 = "03r13x2hxy4hk0n0ri5wld8rp8frx4j3mig6mn2v25k0cr52689f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-image"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-image"; sha256 = "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf"; name = "erc-image"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-image"; + homepage = "https://melpa.org/#/erc-image"; license = lib.licenses.free; }; }) {}; @@ -15721,13 +16340,13 @@ sha256 = "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-social-graph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-social-graph"; sha256 = "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h"; name = "erc-social-graph"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-social-graph"; + homepage = "https://melpa.org/#/erc-social-graph"; license = lib.licenses.free; }; }) {}; @@ -15742,13 +16361,13 @@ sha256 = "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-terminal-notifier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-terminal-notifier"; sha256 = "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c"; name = "erc-terminal-notifier"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-terminal-notifier"; + homepage = "https://melpa.org/#/erc-terminal-notifier"; license = lib.licenses.free; }; }) {}; @@ -15763,13 +16382,13 @@ sha256 = "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-track-score"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-track-score"; sha256 = "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx"; name = "erc-track-score"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-track-score"; + homepage = "https://melpa.org/#/erc-track-score"; license = lib.licenses.free; }; }) {}; @@ -15784,13 +16403,34 @@ sha256 = "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-tweet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-tweet"; sha256 = "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b"; name = "erc-tweet"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-tweet"; + homepage = "https://melpa.org/#/erc-tweet"; + license = lib.licenses.free; + }; + }) {}; + erc-twitch = callPackage ({ erc ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: + melpaBuild { + pname = "erc-twitch"; + version = "20160421.2330"; + src = fetchFromGitHub { + owner = "vibhavp"; + repo = "erc-twitch"; + rev = "6938191c787d66fef4c13674e0a98a9d64eff364"; + sha256 = "1xsxykmhz34gmyj4jb26qfai7j95kzlc7vfydrajc6is7xlrwhfk"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-twitch"; + sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia"; + name = "erc-twitch"; + }; + packageRequires = [ erc json ]; + meta = { + homepage = "https://melpa.org/#/erc-twitch"; license = lib.licenses.free; }; }) {}; @@ -15805,13 +16445,13 @@ sha256 = "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-view-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-view-log"; sha256 = "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf"; name = "erc-view-log"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-view-log"; + homepage = "https://melpa.org/#/erc-view-log"; license = lib.licenses.free; }; }) {}; @@ -15826,13 +16466,13 @@ sha256 = "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-youtube"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-youtube"; sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx"; name = "erc-youtube"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-youtube"; + homepage = "https://melpa.org/#/erc-youtube"; license = lib.licenses.free; }; }) {}; @@ -15847,13 +16487,13 @@ sha256 = "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-yt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-yt"; sha256 = "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc"; name = "erc-yt"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/erc-yt"; + homepage = "https://melpa.org/#/erc-yt"; license = lib.licenses.free; }; }) {}; @@ -15868,32 +16508,34 @@ sha256 = "0xw3d9fz4kmn1myrsy44ki4bgg0aclv41wldl6r9nhvkrnri41cv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ercn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ercn"; sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp"; name = "ercn"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ercn"; + homepage = "https://melpa.org/#/ercn"; license = lib.licenses.free; }; }) {}; - eredis = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { + eredis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "eredis"; version = "20120808.2207"; - src = fetchsvn { - url = "http://eredis.googlecode.com/svn/trunk/"; - rev = "28"; + src = fetchFromGitHub { + owner = "justinhj"; + repo = "eredis"; + rev = "f6d4697620212b5ce77d5b4ff4e0cd6d7caf74e6"; sha256 = "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eredis"; - sha256 = "1j0y4h97pqsw6k18w6r3rza3ql04ag3cixyndji7i1smbfsh4v95"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eredis"; + sha256 = "087lln2izn5bv7bprmbaciivf17vv4pz2cjl91hy2f0sww6nsiw8"; name = "eredis"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eredis"; + homepage = "https://melpa.org/#/eredis"; license = lib.licenses.free; }; }) {}; @@ -15908,34 +16550,55 @@ sha256 = "1v8x6qmhywfxs7crzv7hfl5n4zq5y3ar40l873946l4wyk0wclng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erefactor"; sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7"; name = "erefactor"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/erefactor"; + homepage = "https://melpa.org/#/erefactor"; license = lib.licenses.free; }; }) {}; - ergoemacs-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, undo-tree }: + ergoemacs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ergoemacs-mode"; - version = "20160221.103"; + version = "20160419.3"; src = fetchFromGitHub { owner = "ergoemacs"; repo = "ergoemacs-mode"; - rev = "80780ef8603577cb0ab8c64630d1301f7afef2ec"; - sha256 = "1dfl8qwzjygnhfivf9w2dkv0vqyg0grnfganl7vh2l0lszps735d"; + rev = "6c5d5bc7a4e366dec328dfd3430f20b7b977f781"; + sha256 = "1swpwk0wrxn689cc5kqnh9rpis8k1an4k7sispj1b5k0916zp7wi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ergoemacs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ergoemacs-mode"; sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62"; name = "ergoemacs-mode"; }; - packageRequires = [ emacs undo-tree ]; + packageRequires = []; meta = { - homepage = "http://melpa.org/#/ergoemacs-mode"; + homepage = "https://melpa.org/#/ergoemacs-mode"; + license = lib.licenses.free; + }; + }) {}; + ergoemacs-status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mode-icons, powerline }: + melpaBuild { + pname = "ergoemacs-status"; + version = "20160318.38"; + src = fetchFromGitHub { + owner = "ergoemacs"; + repo = "ergoemacs-status"; + rev = "d952cc2361adf6eb4d6af60950ad4ab699c81320"; + sha256 = "06pdwrhflpi5rkigqnr5h3jzv3dm1p9nydpvql9w33ixm6qhjj71"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ergoemacs-status"; + sha256 = "065pw31s8dmqpag7zj40iv6dbl0qln7c65gcyp7pz9agg9rp6vbb"; + name = "ergoemacs-status"; + }; + packageRequires = [ mode-icons powerline ]; + meta = { + homepage = "https://melpa.org/#/ergoemacs-status"; license = lib.licenses.free; }; }) {}; @@ -15946,17 +16609,17 @@ src = fetchFromGitHub { owner = "erlang"; repo = "otp"; - rev = "d0002b70b1f948dcef3e08781b9db589907776c5"; - sha256 = "19cm7zq3n78a3qb1299rhc6n7diy5a5ix94k9ljkww5qydx9qi77"; + rev = "523e048754f5086a6cc4fd9a250e1b495fc5b9b8"; + sha256 = "1ss9jl5zasn7y7xk395igbbmaa2vw5pwhc120hs7hp07qqyqgyh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erlang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erlang"; sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc"; name = "erlang"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erlang"; + homepage = "https://melpa.org/#/erlang"; license = lib.licenses.free; }; }) {}; @@ -15971,13 +16634,13 @@ sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-async"; sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5"; name = "ert-async"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ert-async"; + homepage = "https://melpa.org/#/ert-async"; license = lib.licenses.free; }; }) {}; @@ -15985,17 +16648,17 @@ pname = "ert-expectations"; version = "20130824.700"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/ert-expectations.el"; + url = "https://www.emacswiki.org/emacs/download/ert-expectations.el"; sha256 = "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-expectations"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-expectations"; sha256 = "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w"; name = "ert-expectations"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ert-expectations"; + homepage = "https://melpa.org/#/ert-expectations"; license = lib.licenses.free; }; }) {}; @@ -16006,16 +16669,16 @@ src = fetchgit { url = "https://bitbucket.org/olanilsson/ert-junit"; rev = "c303c04da7a3ba4d2c46b00b79b67ff7ec57cc6d"; - sha256 = "eedfdd6753c32d16baa341e6d20abee8713921d8eb850d16782cde55bdbeec46"; + sha256 = "0ipcpsymbpicg0b0v1gbv0hkjwg8pq5d5rj1lfx1cbf3adkxvpzf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-junit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-junit"; sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g"; name = "ert-junit"; }; packageRequires = [ ert ]; meta = { - homepage = "http://melpa.org/#/ert-junit"; + homepage = "https://melpa.org/#/ert-junit"; license = lib.licenses.free; }; }) {}; @@ -16030,34 +16693,34 @@ sha256 = "08yfq3qzscxvzyxvyvdqpkrm787278yhkdd9prbvrgjj80p8n7vq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-modeline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-modeline"; sha256 = "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b"; name = "ert-modeline"; }; packageRequires = [ dash emacs projectile s ]; meta = { - homepage = "http://melpa.org/#/ert-modeline"; + homepage = "https://melpa.org/#/ert-modeline"; license = lib.licenses.free; }; }) {}; ert-runner = callPackage ({ ansi, commander, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up }: melpaBuild { pname = "ert-runner"; - version = "20151023.313"; + version = "20160330.106"; src = fetchFromGitHub { owner = "rejeep"; repo = "ert-runner.el"; - rev = "0a88a6cc9d970660c9f1205a623bc80d9bd5a05b"; - sha256 = "0ivnfc42pw9pc9glx2m4klzx4csy4m60hj1x12js7492bd0ri933"; + rev = "691a8f17870a654a4cf315a1e5aa03e6e8e8678b"; + sha256 = "0cjdpk0v07yzxbxqhxlgrk0nh9cj31yx6dd90d9f7jd4bxyzkzbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-runner"; sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48"; name = "ert-runner"; }; packageRequires = [ ansi commander dash f s shut-up ]; meta = { - homepage = "http://melpa.org/#/ert-runner"; + homepage = "https://melpa.org/#/ert-runner"; license = lib.licenses.free; }; }) {}; @@ -16072,34 +16735,34 @@ sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-lib"; sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n"; name = "es-lib"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/es-lib"; + homepage = "https://melpa.org/#/es-lib"; license = lib.licenses.free; }; }) {}; es-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "es-mode"; - version = "20160220.2252"; + version = "20160408.2129"; src = fetchFromGitHub { owner = "dakrone"; repo = "es-mode"; - rev = "4424f5e3731852a16468d4aaa4ef7f5fab78d4d5"; - sha256 = "0km7nvagipjqqppv1njm40cm4l7iyajqnqjy9a3j0r7civ4cz5y6"; + rev = "8d0f4872846be9f117736179cb5dff781fc9d9c9"; + sha256 = "0gap1n1611wx18zcnnb03zgmpmagiyfgnnq0jpbrcpv84c9svrkh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-mode"; sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp"; name = "es-mode"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/es-mode"; + homepage = "https://melpa.org/#/es-mode"; license = lib.licenses.free; }; }) {}; @@ -16114,13 +16777,34 @@ sha256 = "14rsifcx2kwdmwq9zh41fkb848l0f4igp5v9pk3x4jd2yw9gay7m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-windows"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-windows"; sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx"; name = "es-windows"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/es-windows"; + homepage = "https://melpa.org/#/es-windows"; + license = lib.licenses.free; + }; + }) {}; + esa = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "esa"; + version = "20160407.850"; + src = fetchFromGitHub { + owner = "nabinno"; + repo = "esa.el"; + rev = "846ab3d970792cd741141f9e652a4c50aae3920c"; + sha256 = "1p5ycfiir5b40hfv4iwyj7qv0ljlpcg630a47w8rx557vbwv7jdz"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esa"; + sha256 = "1kbsv4xsp7p9v0g22had0dr7w5zsr24bgi2xzryy76699pxq4h6c"; + name = "esa"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/esa"; license = lib.licenses.free; }; }) {}; @@ -16135,13 +16819,13 @@ sha256 = "0id7820vjbprlpprj4fyhylkjvx00b87mw4n7jnxn1gczvjgafmc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/escreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/escreen"; sha256 = "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54"; name = "escreen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/escreen"; + homepage = "https://melpa.org/#/escreen"; license = lib.licenses.free; }; }) {}; @@ -16156,13 +16840,13 @@ sha256 = "1k8k9hl9m4vjqdw3x9wg04cy2lb9x64mq0mm0i3i6w59zrsnkn4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esh-buf-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esh-buf-stack"; sha256 = "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg"; name = "esh-buf-stack"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/esh-buf-stack"; + homepage = "https://melpa.org/#/esh-buf-stack"; license = lib.licenses.free; }; }) {}; @@ -16177,13 +16861,13 @@ sha256 = "1yfvdx763xxhxf2r6kjjjyafaxrj1lpgrz1sgbhzkyj6nspmm9ms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esh-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esh-help"; sha256 = "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w"; name = "esh-help"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/esh-help"; + homepage = "https://melpa.org/#/esh-help"; license = lib.licenses.free; }; }) {}; @@ -16198,13 +16882,13 @@ sha256 = "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-autojump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-autojump"; sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5"; name = "eshell-autojump"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eshell-autojump"; + homepage = "https://melpa.org/#/eshell-autojump"; license = lib.licenses.free; }; }) {}; @@ -16219,13 +16903,13 @@ sha256 = "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-did-you-mean"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-did-you-mean"; sha256 = "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz"; name = "eshell-did-you-mean"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/eshell-did-you-mean"; + homepage = "https://melpa.org/#/eshell-did-you-mean"; license = lib.licenses.free; }; }) {}; @@ -16240,34 +16924,34 @@ sha256 = "1b94pamb92a26lvlbwyr7kgaiwax4hkgmmalh8l5ldcwxkscq09c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-git-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-git-prompt"; sha256 = "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s"; name = "eshell-git-prompt"; }; packageRequires = [ cl-lib dash emacs s ]; meta = { - homepage = "http://melpa.org/#/eshell-git-prompt"; + homepage = "https://melpa.org/#/eshell-git-prompt"; license = lib.licenses.free; }; }) {}; eshell-prompt-extras = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eshell-prompt-extras"; - version = "20160213.1950"; + version = "20160418.1030"; src = fetchFromGitHub { - owner = "kaihaosw"; + owner = "hiddenlotus"; repo = "eshell-prompt-extras"; - rev = "61973d732c1e6b24d3fd0374162669dec83f5ed6"; - sha256 = "1k8falfyd5rfgn56pdin36k4afx0zp0z00jldg1jn22c6p3ndsfl"; + rev = "4ebc7952c8892ba60bd37dc59481934d80e12ebb"; + sha256 = "0lhmqnqrcnwnir0kqhkhnda6dyn7ggcidmk6lf24p57n3sf33pww"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-prompt-extras"; - sha256 = "1plvc8azpmb3phlrxhw3y18dv5y0xljsr5fqym4w84m66lq5csfj"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-prompt-extras"; + sha256 = "0kh4lvjkayjdz5lqvdqmdcblxizxk9kwmigjwa68kx8z6ngmfwa5"; name = "eshell-prompt-extras"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eshell-prompt-extras"; + homepage = "https://melpa.org/#/eshell-prompt-extras"; license = lib.licenses.free; }; }) {}; @@ -16282,13 +16966,13 @@ sha256 = "0znk2wmvk7b5mi727cawbddvzx74dlm1lwsxgkiylx2qp299ark0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-z"; sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d"; name = "eshell-z"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/eshell-z"; + homepage = "https://melpa.org/#/eshell-z"; license = lib.licenses.free; }; }) {}; @@ -16303,13 +16987,13 @@ sha256 = "0ir7j4dgy0fq9ybixaqs52kiqk73p9v6prgqzjs8nyicjrpmnpyq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/espresso-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/espresso-theme"; sha256 = "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5"; name = "espresso-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/espresso-theme"; + homepage = "https://melpa.org/#/espresso-theme"; license = lib.licenses.free; }; }) {}; @@ -16324,13 +17008,13 @@ sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/espuds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/espuds"; sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c"; name = "espuds"; }; packageRequires = [ dash f s ]; meta = { - homepage = "http://melpa.org/#/espuds"; + homepage = "https://melpa.org/#/espuds"; license = lib.licenses.free; }; }) {}; @@ -16345,13 +17029,13 @@ sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esqlite"; sha256 = "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh"; name = "esqlite"; }; packageRequires = [ pcsv ]; meta = { - homepage = "http://melpa.org/#/esqlite"; + homepage = "https://melpa.org/#/esqlite"; license = lib.licenses.free; }; }) {}; @@ -16366,34 +17050,34 @@ sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esqlite-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esqlite-helm"; sha256 = "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq"; name = "esqlite-helm"; }; packageRequires = [ esqlite helm ]; meta = { - homepage = "http://melpa.org/#/esqlite-helm"; + homepage = "https://melpa.org/#/esqlite-helm"; license = lib.licenses.free; }; }) {}; ess = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }: melpaBuild { pname = "ess"; - version = "20160208.653"; + version = "20160426.1056"; src = fetchFromGitHub { owner = "emacs-ess"; repo = "ESS"; - rev = "9ef548725d8fd8bd301ff2b4c8f292c309871110"; - sha256 = "0376yic7aldqxrzc91f7g3licc8svvqdqn4jdbnhw4cdk94w46fm"; + rev = "09e32812327b7c349501334a24c6f9f8d576aa48"; + sha256 = "0954p9kwp40r6gxidpr92al4vjiqcbzljmi87r2f33nayrrz3gd6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess"; sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i"; name = "ess"; }; packageRequires = [ julia-mode ]; meta = { - homepage = "http://melpa.org/#/ess"; + homepage = "https://melpa.org/#/ess"; license = lib.licenses.free; }; }) {}; @@ -16408,13 +17092,13 @@ sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-R-data-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-R-data-view"; sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0"; name = "ess-R-data-view"; }; packageRequires = [ ctable ess popup ]; meta = { - homepage = "http://melpa.org/#/ess-R-data-view"; + homepage = "https://melpa.org/#/ess-R-data-view"; license = lib.licenses.free; }; }) {}; @@ -16429,13 +17113,13 @@ sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-R-object-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-R-object-popup"; sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj"; name = "ess-R-object-popup"; }; packageRequires = [ ess popup ]; meta = { - homepage = "http://melpa.org/#/ess-R-object-popup"; + homepage = "https://melpa.org/#/ess-R-object-popup"; license = lib.licenses.free; }; }) {}; @@ -16450,13 +17134,13 @@ sha256 = "0ici253mllqyzcbhxrazfj2kl50brr8qid99fk9nlyfgh516ms1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-smart-equals"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-smart-equals"; sha256 = "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp"; name = "ess-smart-equals"; }; packageRequires = [ emacs ess ]; meta = { - homepage = "http://melpa.org/#/ess-smart-equals"; + homepage = "https://melpa.org/#/ess-smart-equals"; license = lib.licenses.free; }; }) {}; @@ -16471,34 +17155,34 @@ sha256 = "01xa98q0pqsf4gyl6ixlpjjdqazqsxg1sf7a3j2wbh7196ps61v5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-smart-underscore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-smart-underscore"; sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2"; name = "ess-smart-underscore"; }; packageRequires = [ ess ]; meta = { - homepage = "http://melpa.org/#/ess-smart-underscore"; + homepage = "https://melpa.org/#/ess-smart-underscore"; license = lib.licenses.free; }; }) {}; ess-view = callPackage ({ ess, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ess-view"; - version = "20160218.344"; + version = "20160309.1515"; src = fetchFromGitHub { owner = "GioBo"; repo = "ess-view"; - rev = "d2eecbf43a1e68bd9716b52853aca46d6667ef18"; - sha256 = "0wz6n41aqph1b460m8vnxvz6mnmh6n7kxbx4wriknjlacxamksyy"; + rev = "5ae35d37ac625b16640401d19f9a51b340da9420"; + sha256 = "1fdg8a4nsyjhwqsslawfvij77g3fp9klpas7m8vwjsjpc85iwh3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-view"; sha256 = "1zx5sbxmbs6ya349ic7yvnx56v3km2cb27p8kan5ygisnwwq2wc4"; name = "ess-view"; }; packageRequires = [ ess f s ]; meta = { - homepage = "http://melpa.org/#/ess-view"; + homepage = "https://melpa.org/#/ess-view"; license = lib.licenses.free; }; }) {}; @@ -16513,13 +17197,13 @@ sha256 = "034rs6mmc5f6y8ply2a90b5s4pi4qx9m49wsxc9v0zwa9i5skmx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esup"; sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0"; name = "esup"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/esup"; + homepage = "https://melpa.org/#/esup"; license = lib.licenses.free; }; }) {}; @@ -16534,13 +17218,13 @@ sha256 = "0mrfkq3jcsjfccqir02yijl24hllc347b02y7gk3b2yn0b676dv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esxml"; sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz"; name = "esxml"; }; packageRequires = [ kv ]; meta = { - homepage = "http://melpa.org/#/esxml"; + homepage = "https://melpa.org/#/esxml"; license = lib.licenses.free; }; }) {}; @@ -16555,13 +17239,13 @@ sha256 = "1k361bbwd9z17qlycymb1x7scidvgvrh9bdp06rhwfh9j3slrbxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/etable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/etable"; sha256 = "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32"; name = "etable"; }; packageRequires = [ dash emacs interval-list ]; meta = { - homepage = "http://melpa.org/#/etable"; + homepage = "https://melpa.org/#/etable"; license = lib.licenses.free; }; }) {}; @@ -16569,17 +17253,17 @@ pname = "etags-select"; version = "20130824.700"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/etags-select.el"; + url = "https://www.emacswiki.org/emacs/download/etags-select.el"; sha256 = "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/etags-select"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/etags-select"; sha256 = "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h"; name = "etags-select"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/etags-select"; + homepage = "https://melpa.org/#/etags-select"; license = lib.licenses.free; }; }) {}; @@ -16587,59 +17271,80 @@ pname = "etags-table"; version = "20130824.657"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/etags-table.el"; + url = "https://www.emacswiki.org/emacs/download/etags-table.el"; sha256 = "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/etags-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/etags-table"; sha256 = "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84"; name = "etags-table"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/etags-table"; + homepage = "https://melpa.org/#/etags-table"; license = lib.licenses.free; }; }) {}; ethan-wspace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ethan-wspace"; - version = "20151217.2010"; + version = "20160317.1120"; src = fetchFromGitHub { owner = "glasserc"; repo = "ethan-wspace"; - rev = "477444d95adc2cb86c82e498cbaa5fbb1fc293a8"; - sha256 = "098mfyw63b23h7jajaik1rfj307sxs82nnwf6b81j550kl2n05y6"; + rev = "8b63c8fb7ace322a7f4a72b07efbcb0debe8ee37"; + sha256 = "0lp8rvwxyk7bz2yl3vgpql4rqb7xcs2xllnf2arpzzg0xcndxyg3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ethan-wspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ethan-wspace"; sha256 = "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws"; name = "ethan-wspace"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ethan-wspace"; + homepage = "https://melpa.org/#/ethan-wspace"; + license = lib.licenses.free; + }; + }) {}; + euslisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "euslisp-mode"; + version = "20160422.255"; + src = fetchFromGitHub { + owner = "iory"; + repo = "euslisp-mode"; + rev = "1427b1c704437016dbd9319a8c9f46bcaaa4eba2"; + sha256 = "116n07fqg0q3y9c6b745mfl3w475wf6nch2y4nnill5mxg951c3l"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/euslisp-mode"; + sha256 = "0qrd35jdr8p13x34972scyk6d0zrj1zh6vx9d740rjc8gmq0z5l4"; + name = "euslisp-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/euslisp-mode"; license = lib.licenses.free; }; }) {}; eval-in-repl = callPackage ({ ace-window, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "eval-in-repl"; - version = "20160117.957"; + version = "20160418.2043"; src = fetchFromGitHub { owner = "kaz-yos"; repo = "eval-in-repl"; - rev = "c5072e60bff11de48944476ef361e9d48a55e2ff"; - sha256 = "0vd2crs261na9a682d74ycz1il661kavsz1bvs0bkak09lplc1qz"; + rev = "4ac77eb80f6df21f5a8621982bcafc71ac2ef7dd"; + sha256 = "07jlrngmnfp1jp30hx9vk42h065c74dz92b38sa18swzfmhwd4y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eval-in-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eval-in-repl"; sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63"; name = "eval-in-repl"; }; packageRequires = [ ace-window dash paredit ]; meta = { - homepage = "http://melpa.org/#/eval-in-repl"; + homepage = "https://melpa.org/#/eval-in-repl"; license = lib.licenses.free; }; }) {}; @@ -16654,13 +17359,13 @@ sha256 = "1syqakdyg3ydnq9gvkjf2rw9rz3kyhzp7avhy6dvyy65pv2ndyc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eval-sexp-fu"; sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs"; name = "eval-sexp-fu"; }; packageRequires = [ highlight ]; meta = { - homepage = "http://melpa.org/#/eval-sexp-fu"; + homepage = "https://melpa.org/#/eval-sexp-fu"; license = lib.licenses.free; }; }) {}; @@ -16675,13 +17380,13 @@ sha256 = "1llxxdprs8yw2hqj4dhrkrrzmkl25h7p4rcaa2cw544fmg3kvlz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evalator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evalator"; sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk"; name = "evalator"; }; packageRequires = [ helm-core ]; meta = { - homepage = "http://melpa.org/#/evalator"; + homepage = "https://melpa.org/#/evalator"; license = lib.licenses.free; }; }) {}; @@ -16696,54 +17401,33 @@ sha256 = "1q5s1ffmfh5dby92853xm8kjhgjfd5vbvcg1xbf8lswc1i41k7n7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evalator-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evalator-clojure"; sha256 = "10mxlgirnsq3z7l1izrf2v1l1yr4sbdjsaszz7llqv6l80y4bji3"; name = "evalator-clojure"; }; packageRequires = [ cider evalator ]; meta = { - homepage = "http://melpa.org/#/evalator-clojure"; + homepage = "https://melpa.org/#/evalator-clojure"; license = lib.licenses.free; }; }) {}; evil = callPackage ({ fetchhg, fetchurl, goto-chg, lib, melpaBuild, undo-tree }: melpaBuild { pname = "evil"; - version = "20160215.1148"; + version = "20160420.123"; src = fetchhg { url = "https://bitbucket.com/lyro/evil"; - rev = "70005dd4c11e"; - sha256 = "0hdysszfc3796d19nyw1f4cqzisspih1if0hh9hp2xjgxh3vj0mw"; + rev = "5bbbfd0c8832"; + sha256 = "037d5skihr3z1v3pvd1qg10pgygb4adznf6z0bysdvisjny298nv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil"; sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc"; name = "evil"; }; packageRequires = [ goto-chg undo-tree ]; meta = { - homepage = "http://melpa.org/#/evil"; - license = lib.licenses.free; - }; - }) {}; - evil-annoying-arrows = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "evil-annoying-arrows"; - version = "20150509.1618"; - src = fetchFromGitHub { - owner = "endrebak"; - repo = "evil-annoying-arrows"; - rev = "1ec60cea0e67d782e5b8d093d19da6d0d4fd1e7f"; - sha256 = "05fba10yvxl82g2xl48mxwz7cwjp4pylb7n8a4b08i8f9xasny7f"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-annoying-arrows"; - sha256 = "024zz9l43y1kk2hm8l96h1ahril23cj35f0x72jrcfjysid7wpry"; - name = "evil-annoying-arrows"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "http://melpa.org/#/evil-annoying-arrows"; + homepage = "https://melpa.org/#/evil"; license = lib.licenses.free; }; }) {}; @@ -16758,13 +17442,13 @@ sha256 = "0cnj91lwpmk4c8nf3xi80yvv6anvkg8h1kbzbp16glkgmy6jpmy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-anzu"; sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70"; name = "evil-anzu"; }; packageRequires = [ anzu evil ]; meta = { - homepage = "http://melpa.org/#/evil-anzu"; + homepage = "https://melpa.org/#/evil-anzu"; license = lib.licenses.free; }; }) {}; @@ -16779,13 +17463,13 @@ sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-args"; sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w"; name = "evil-args"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-args"; + homepage = "https://melpa.org/#/evil-args"; license = lib.licenses.free; }; }) {}; @@ -16800,13 +17484,13 @@ sha256 = "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-avy"; sha256 = "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd"; name = "evil-avy"; }; packageRequires = [ avy cl-lib emacs evil ]; meta = { - homepage = "http://melpa.org/#/evil-avy"; + homepage = "https://melpa.org/#/evil-avy"; license = lib.licenses.free; }; }) {}; @@ -16821,13 +17505,13 @@ sha256 = "08cpgbwsrk8n88qiq2z90s6wx0ayvrrb38m8dks595x2qzzpa1gi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-cleverparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-cleverparens"; sha256 = "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799"; name = "evil-cleverparens"; }; packageRequires = [ dash emacs evil paredit smartparens ]; meta = { - homepage = "http://melpa.org/#/evil-cleverparens"; + homepage = "https://melpa.org/#/evil-cleverparens"; license = lib.licenses.free; }; }) {}; @@ -16842,55 +17526,55 @@ sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-commentary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-commentary"; sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz"; name = "evil-commentary"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-commentary"; + homepage = "https://melpa.org/#/evil-commentary"; license = lib.licenses.free; }; }) {}; - evil-dvorak = callPackage ({ ace-jump-mode, evil, evil-surround, fetchFromGitHub, fetchurl, helm, helm-swoop, lib, melpaBuild }: + evil-dvorak = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-dvorak"; - version = "20160127.615"; + version = "20160416.1341"; src = fetchFromGitHub { owner = "jbranso"; repo = "evil-dvorak"; - rev = "86f7ebd4dc5db6cd126ef2e12a113c9af1354e53"; - sha256 = "0fdlj2m8bzdwqh43qb34il3fmang0zpdgxfkrsmxy9kpc0bsx940"; + rev = "824f7c56980d72a0ff04c662223540cd66f13754"; + sha256 = "15rnxhqc56g4ydr8drvcgzvjp8blxsarm86dqc36rym7g5gnxr20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-dvorak"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-dvorak"; sha256 = "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn"; name = "evil-dvorak"; }; - packageRequires = [ ace-jump-mode evil evil-surround helm helm-swoop ]; + packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-dvorak"; + homepage = "https://melpa.org/#/evil-dvorak"; license = lib.licenses.free; }; }) {}; - evil-easymotion = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + evil-easymotion = callPackage ({ avy, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-easymotion"; - version = "20160217.2043"; + version = "20160425.2337"; src = fetchFromGitHub { owner = "PythonNut"; repo = "evil-easymotion"; - rev = "5b77d65b0a8d93b8b9602d4757a40c548a3bc997"; - sha256 = "01nk89wkqbi6jpggdj6yl74k8jzlh329i4p77wljyr18akbrdz9l"; + rev = "8d653125103ab1454ef5fa8e46025f4426b78668"; + sha256 = "11j1d59nk5v12h30dc93b5ic4piijwgy4gj7d8vf8rr8d3r2bicb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-easymotion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-easymotion"; sha256 = "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv"; name = "evil-easymotion"; }; - packageRequires = [ avy emacs ]; + packageRequires = [ avy cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/evil-easymotion"; + homepage = "https://melpa.org/#/evil-easymotion"; license = lib.licenses.free; }; }) {}; @@ -16905,55 +17589,76 @@ sha256 = "16pz48gdpl68azaqwyixh10y1x9xzi1lnhq2v0nrd0y6bfcqcvc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-ediff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-ediff"; sha256 = "1xwl2511byb00ybfnm6q6mbkgzarrq8bfv5rbip67zqbw2qgmb6i"; name = "evil-ediff"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-ediff"; + homepage = "https://melpa.org/#/evil-ediff"; license = lib.licenses.free; }; }) {}; evil-escape = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-escape"; - version = "20151214.1311"; + version = "20160313.1405"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-escape"; - rev = "32a6c6c31eaa5678205ce658baaab7eb5ca9c9e3"; - sha256 = "1dl201jx7kfmkhd7ism6wlmlnbgfg1qn17faryz7kc5v2mms69b4"; + rev = "58ec625a94c3a7f1d8f45fae29f26e890a190062"; + sha256 = "0v30yfkyy21nl45f9c05rbkbpfivf173bn2470r1b9vxgx6gcj8g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-escape"; sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k"; name = "evil-escape"; }; packageRequires = [ cl-lib emacs evil ]; meta = { - homepage = "http://melpa.org/#/evil-escape"; + homepage = "https://melpa.org/#/evil-escape"; license = lib.licenses.free; }; }) {}; evil-exchange = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-exchange"; - version = "20160117.2202"; + version = "20160407.2318"; src = fetchFromGitHub { owner = "Dewdrops"; repo = "evil-exchange"; - rev = "55375945729140ce6bd8806c3da1536801fbf0f5"; - sha256 = "0gbpd1wmlcvddiym0r410rch8bjg4gxslynwmfqywwgbva8zm46c"; + rev = "29bd39d942a1401a714e43daf11573eab6abfaa8"; + sha256 = "0avaw5pgyv75nhbinjjpy30pgkwfq79fx2k9z034f1x76ls9s683"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-exchange"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-exchange"; sha256 = "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r"; name = "evil-exchange"; }; packageRequires = [ cl-lib evil ]; meta = { - homepage = "http://melpa.org/#/evil-exchange"; + homepage = "https://melpa.org/#/evil-exchange"; + license = lib.licenses.free; + }; + }) {}; + evil-extra-operator = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "evil-extra-operator"; + version = "20160407.122"; + src = fetchFromGitHub { + owner = "Dewdrops"; + repo = "evil-extra-operator"; + rev = "96d611b557876caefbc64731ad2d0385edbb0c23"; + sha256 = "10vwyrg833imja3ak9fx0zackdjwlcncl7wm9dym3kjs6qf2rvv0"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-extra-operator"; + sha256 = "066apin0yrjx7zr007p2h9p2nq58lz7qikzjzg0spqkb8vy7vkc5"; + name = "evil-extra-operator"; + }; + packageRequires = [ evil ]; + meta = { + homepage = "https://melpa.org/#/evil-extra-operator"; license = lib.licenses.free; }; }) {}; @@ -16968,34 +17673,34 @@ sha256 = "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-god-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-god-state"; sha256 = "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf"; name = "evil-god-state"; }; packageRequires = [ evil god-mode ]; meta = { - homepage = "http://melpa.org/#/evil-god-state"; + homepage = "https://melpa.org/#/evil-god-state"; license = lib.licenses.free; }; }) {}; evil-iedit-state = callPackage ({ evil, fetchFromGitHub, fetchurl, iedit, lib, melpaBuild }: melpaBuild { pname = "evil-iedit-state"; - version = "20141217.1934"; + version = "20160313.1356"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-iedit-state"; - rev = "153de161d5a272e3740dd862a3b7530b4240bcf8"; - sha256 = "1kdigwpl9pp88l11bkpxkw91pvs8z3gachxccibivzgjxd2pnvfl"; + rev = "eab7d5e3e7d25c4a852fedb6c0c7f50dd9e9bd7c"; + sha256 = "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-iedit-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-iedit-state"; sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl"; name = "evil-iedit-state"; }; packageRequires = [ evil iedit ]; meta = { - homepage = "http://melpa.org/#/evil-iedit-state"; + homepage = "https://melpa.org/#/evil-iedit-state"; license = lib.licenses.free; }; }) {}; @@ -17010,13 +17715,13 @@ sha256 = "1g6r1ydscwjvmhh1zg4q3nap4avk8lb9msdqrh7dff6pla0r2qs6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-indent-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-indent-plus"; sha256 = "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12"; name = "evil-indent-plus"; }; packageRequires = [ cl-lib evil ]; meta = { - homepage = "http://melpa.org/#/evil-indent-plus"; + homepage = "https://melpa.org/#/evil-indent-plus"; license = lib.licenses.free; }; }) {}; @@ -17031,34 +17736,13 @@ sha256 = "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-indent-textobject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-indent-textobject"; sha256 = "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09"; name = "evil-indent-textobject"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-indent-textobject"; - license = lib.licenses.free; - }; - }) {}; - evil-jumper = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "evil-jumper"; - version = "20160214.1515"; - src = fetchFromGitHub { - owner = "bling"; - repo = "evil-jumper"; - rev = "3fdbf356b8d86bfcdbd32a476420bec9da370596"; - sha256 = "1bcravq8z2bj9dvfhmmv82vxx2lfhc1pqb4kq5b1nfvajjy1g8pn"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-jumper"; - sha256 = "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x"; - name = "evil-jumper"; - }; - packageRequires = [ cl-lib evil ]; - meta = { - homepage = "http://melpa.org/#/evil-jumper"; + homepage = "https://melpa.org/#/evil-indent-textobject"; license = lib.licenses.free; }; }) {}; @@ -17073,55 +17757,55 @@ sha256 = "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-leader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-leader"; sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6"; name = "evil-leader"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-leader"; + homepage = "https://melpa.org/#/evil-leader"; license = lib.licenses.free; }; }) {}; evil-lisp-state = callPackage ({ bind-map, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: melpaBuild { pname = "evil-lisp-state"; - version = "20151201.924"; + version = "20160403.2148"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-lisp-state"; - rev = "f4da21900563f4ac1abf79f3fe73eaf1edcd633d"; - sha256 = "0lvjqs40caxj3781cs41qavk10vlz2mjw0r6fmxa2z3c087cxnxw"; + rev = "3c65fecd9917a41eaf6460f22187e2323821f3ce"; + sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-lisp-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-lisp-state"; sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy"; name = "evil-lisp-state"; }; packageRequires = [ bind-map evil smartparens ]; meta = { - homepage = "http://melpa.org/#/evil-lisp-state"; + homepage = "https://melpa.org/#/evil-lisp-state"; license = lib.licenses.free; }; }) {}; evil-magit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "evil-magit"; - version = "20160211.709"; + version = "20160420.615"; src = fetchFromGitHub { owner = "justbur"; repo = "evil-magit"; - rev = "593a0e5b3118aca28de672870fa7b8611f6760ef"; - sha256 = "0dqhxl9df9d6s9rx5dvgzf0i88y0y2jq3vzr2v2q8vh3ffvj2s2g"; + rev = "acc6af408ca08181103b2d4b5d37b207b5d56624"; + sha256 = "17dc48qc8sicmqngy8kpw7r0qm1gnzsal1106d4lx4z7d8lyhpvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-magit"; sha256 = "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6"; name = "evil-magit"; }; packageRequires = [ evil magit ]; meta = { - homepage = "http://melpa.org/#/evil-magit"; + homepage = "https://melpa.org/#/evil-magit"; license = lib.licenses.free; }; }) {}; @@ -17136,55 +17820,55 @@ sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-mark-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-mark-replace"; sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0"; name = "evil-mark-replace"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-mark-replace"; + homepage = "https://melpa.org/#/evil-mark-replace"; license = lib.licenses.free; }; }) {}; evil-matchit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-matchit"; - version = "20151120.535"; + version = "20160413.825"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "evil-matchit"; - rev = "8b80b3df9472217d55962981025539f2da603296"; - sha256 = "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi"; + rev = "6346825fd89ee115fab974746fdba338adee856c"; + sha256 = "0x6rc98g7hvvmlgq31n7qanylrld6dzvg6n8qgzp4s544l0dwfw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-matchit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-matchit"; sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq"; name = "evil-matchit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/evil-matchit"; + homepage = "https://melpa.org/#/evil-matchit"; license = lib.licenses.free; }; }) {}; evil-mc = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-mc"; - version = "20160205.1942"; + version = "20160418.2349"; src = fetchFromGitHub { owner = "gabesoft"; repo = "evil-mc"; - rev = "97c81605a627fec0eaa32466615b8c2f4b3feb17"; - sha256 = "1i9m827ffwqphkw2b5nmj11y7c5jn5dc8ds6k0dpdiq5whjklplh"; + rev = "c5634386d66d3505e15f0c0876b123c1f7f22d2b"; + sha256 = "1dzcy4hlipwwb0j3jcaywapdrj8vwv8w4gcag7sawj2ywi06cljr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-mc"; sha256 = "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs"; name = "evil-mc"; }; packageRequires = [ cl-lib emacs evil ]; meta = { - homepage = "http://melpa.org/#/evil-mc"; + homepage = "https://melpa.org/#/evil-mc"; license = lib.licenses.free; }; }) {}; @@ -17199,13 +17883,34 @@ sha256 = "0zqmmv3if9zzq9fgjg8wj62pk1qn65nax9hsk9m7lx2ncdv8cph1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-mu4e"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-mu4e"; sha256 = "1ks4vnga7dkz27a7gza5hakzbcsiqgkq1ysc0lcx7g82ihpmrrcq"; name = "evil-mu4e"; }; packageRequires = [ dash emacs evil ]; meta = { - homepage = "http://melpa.org/#/evil-mu4e"; + homepage = "https://melpa.org/#/evil-mu4e"; + license = lib.licenses.free; + }; + }) {}; + evil-multiedit = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, iedit, lib, melpaBuild }: + melpaBuild { + pname = "evil-multiedit"; + version = "20160412.210"; + src = fetchFromGitHub { + owner = "hlissner"; + repo = "evil-multiedit"; + rev = "39163cb968848bd4c60871f617365a861b011020"; + sha256 = "16rrd02yr6rz4xlc35gr5d7ds3h168yhz4iinq8zmnlw778waz5j"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-multiedit"; + sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp"; + name = "evil-multiedit"; + }; + packageRequires = [ cl-lib emacs evil iedit ]; + meta = { + homepage = "https://melpa.org/#/evil-multiedit"; license = lib.licenses.free; }; }) {}; @@ -17220,13 +17925,13 @@ sha256 = "0msk65smj05wgs8dr42wy0w265pgcffrpgbvclahxhyj9ypscwsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-nerd-commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-nerd-commenter"; sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d"; name = "evil-nerd-commenter"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/evil-nerd-commenter"; + homepage = "https://melpa.org/#/evil-nerd-commenter"; license = lib.licenses.free; }; }) {}; @@ -17241,13 +17946,13 @@ sha256 = "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-numbers"; sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2"; name = "evil-numbers"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/evil-numbers"; + homepage = "https://melpa.org/#/evil-numbers"; license = lib.licenses.free; }; }) {}; @@ -17262,13 +17967,13 @@ sha256 = "0pir7a3xxbcp5f3q9pi36rpdpi8pbx18afmh0r3501ynssyjfq53"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-org"; sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c"; name = "evil-org"; }; packageRequires = [ evil evil-leader org ]; meta = { - homepage = "http://melpa.org/#/evil-org"; + homepage = "https://melpa.org/#/evil-org"; license = lib.licenses.free; }; }) {}; @@ -17283,13 +17988,13 @@ sha256 = "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-paredit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-paredit"; sha256 = "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy"; name = "evil-paredit"; }; packageRequires = [ evil paredit ]; meta = { - homepage = "http://melpa.org/#/evil-paredit"; + homepage = "https://melpa.org/#/evil-paredit"; license = lib.licenses.free; }; }) {}; @@ -17304,13 +18009,13 @@ sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-quickscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-quickscope"; sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489"; name = "evil-quickscope"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-quickscope"; + homepage = "https://melpa.org/#/evil-quickscope"; license = lib.licenses.free; }; }) {}; @@ -17325,13 +18030,13 @@ sha256 = "12rdx5zjp5pck008cykpw200rr1y0b3lj2dpzf82llfyfaxzh7wi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-rails"; sha256 = "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj"; name = "evil-rails"; }; packageRequires = [ evil projectile-rails ]; meta = { - homepage = "http://melpa.org/#/evil-rails"; + homepage = "https://melpa.org/#/evil-rails"; license = lib.licenses.free; }; }) {}; @@ -17346,13 +18051,13 @@ sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-rsi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-rsi"; sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345"; name = "evil-rsi"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-rsi"; + homepage = "https://melpa.org/#/evil-rsi"; license = lib.licenses.free; }; }) {}; @@ -17367,13 +18072,13 @@ sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-search-highlight-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-search-highlight-persist"; sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy"; name = "evil-search-highlight-persist"; }; packageRequires = [ highlight ]; meta = { - homepage = "http://melpa.org/#/evil-search-highlight-persist"; + homepage = "https://melpa.org/#/evil-search-highlight-persist"; license = lib.licenses.free; }; }) {}; @@ -17384,38 +18089,38 @@ src = fetchFromGitHub { owner = "expez"; repo = "evil-smartparens"; - rev = "0e89b23924b2e0baa0d11841ea5126967a072fa8"; - sha256 = "0xwrg03w40pncdy5ppn7f77ravcbimj1ylc1r4clpqiha1d4xkhi"; + rev = "37c99cbbfbe637f98850adea3dee9dc14a3b7d76"; + sha256 = "18iwbxwdiicx2xrfdrh0cx1d90ykwh3a0fy96s6sl1mvnv9z50sw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-smartparens"; sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza"; name = "evil-smartparens"; }; packageRequires = [ emacs evil smartparens ]; meta = { - homepage = "http://melpa.org/#/evil-smartparens"; + homepage = "https://melpa.org/#/evil-smartparens"; license = lib.licenses.free; }; }) {}; - evil-snipe = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: + evil-snipe = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-snipe"; - version = "20151106.1602"; + version = "20160413.1249"; src = fetchFromGitHub { owner = "hlissner"; repo = "evil-snipe"; - rev = "71f0f7df2300be390227e3f78619630c32bddbe9"; - sha256 = "0iyk8pn7pc3js3ppn46myzfr2i0b47wwrzv72939aydpw64rx76q"; + rev = "396d6b0f80790781cce834ce8535249542d11c7c"; + sha256 = "17l5g1zg3dhnjmdlx486x3b3v7vp4z0l9fv12anmw442k37xwia4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-snipe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-snipe"; sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn"; name = "evil-snipe"; }; - packageRequires = [ evil ]; + packageRequires = [ cl-lib evil ]; meta = { - homepage = "http://melpa.org/#/evil-snipe"; + homepage = "https://melpa.org/#/evil-snipe"; license = lib.licenses.free; }; }) {}; @@ -17430,34 +18135,34 @@ sha256 = "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-space"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-space"; sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23"; name = "evil-space"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-space"; + homepage = "https://melpa.org/#/evil-space"; license = lib.licenses.free; }; }) {}; evil-surround = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-surround"; - version = "20160128.1228"; + version = "20160331.1021"; src = fetchFromGitHub { owner = "timcharper"; repo = "evil-surround"; - rev = "bfa438cf62e29074b3fc68c582765a7e0f9907e4"; - sha256 = "01p02h17ls0pmisnfbyna7xf6fz2c7fyyvdb1yq38dwv2j4zi1b4"; + rev = "a4a04c6f016528502f0d7d05ea7a8c6c0912e3ed"; + sha256 = "0r4wkj2sbk814kxdd1q6523p1fdzk7a1sr54krvhmxhnl666l3xb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-surround"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-surround"; sha256 = "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag"; name = "evil-surround"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/evil-surround"; + homepage = "https://melpa.org/#/evil-surround"; license = lib.licenses.free; }; }) {}; @@ -17472,13 +18177,13 @@ sha256 = "1qklx0j3fz3mp87v64yqbyyq5csfymbjfwvy2s4nk634wbnrra93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-tabs"; sha256 = "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62"; name = "evil-tabs"; }; packageRequires = [ elscreen evil ]; meta = { - homepage = "http://melpa.org/#/evil-tabs"; + homepage = "https://melpa.org/#/evil-tabs"; license = lib.licenses.free; }; }) {}; @@ -17493,13 +18198,13 @@ sha256 = "10aic2r1akk38hh761hr5vp9fjlh1m5nimag0nzdq5x9g9467cc8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-terminal-cursor-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-terminal-cursor-changer"; sha256 = "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian"; name = "evil-terminal-cursor-changer"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-terminal-cursor-changer"; + homepage = "https://melpa.org/#/evil-terminal-cursor-changer"; license = lib.licenses.free; }; }) {}; @@ -17514,13 +18219,13 @@ sha256 = "1v4z2snllgg32cy8glv7xl0m9ib7rwi5ixgdydz1d0sx0z62jyhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-textobj-anyblock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-textobj-anyblock"; sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa"; name = "evil-textobj-anyblock"; }; packageRequires = [ cl-lib evil ]; meta = { - homepage = "http://melpa.org/#/evil-textobj-anyblock"; + homepage = "https://melpa.org/#/evil-textobj-anyblock"; license = lib.licenses.free; }; }) {}; @@ -17535,13 +18240,13 @@ sha256 = "0nff90v6d97n2xizvfz126ksrf7ngd5rp0j7k7lhbv0v5zcqgxiv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-textobj-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-textobj-column"; sha256 = "13q3nawx05rn3k6kzq1889vxjznr454cib96pc9lmrq7h65lym2h"; name = "evil-textobj-column"; }; packageRequires = [ emacs evil names ]; meta = { - homepage = "http://melpa.org/#/evil-textobj-column"; + homepage = "https://melpa.org/#/evil-textobj-column"; license = lib.licenses.free; }; }) {}; @@ -17556,34 +18261,34 @@ sha256 = "00yfq8aflxvp2nnz7smgq0c5wlb7cips5irj8qs6193ixlkpffvx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-tutor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-tutor"; sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn"; name = "evil-tutor"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-tutor"; + homepage = "https://melpa.org/#/evil-tutor"; license = lib.licenses.free; }; }) {}; evil-vimish-fold = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, vimish-fold }: melpaBuild { pname = "evil-vimish-fold"; - version = "20151006.2326"; + version = "20160224.603"; src = fetchFromGitHub { owner = "alexmurray"; repo = "evil-vimish-fold"; - rev = "d187a685d9610ec8159040c90030cb8ada4f54a5"; - sha256 = "0m4ipz3x5k3gbyjgsnhl6rr4jvhqn61cyc1gmv0mkc2pbqqs1ijq"; + rev = "ec7064f267b9ef04f6ed0a68490bf0f5cd026c32"; + sha256 = "0cn5dzyaicrf63hyg9mbqlkza1rmz0qh0hx06nawvagmh5xpkbv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-vimish-fold"; sha256 = "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6"; name = "evil-vimish-fold"; }; packageRequires = [ emacs evil vimish-fold ]; meta = { - homepage = "http://melpa.org/#/evil-vimish-fold"; + homepage = "https://melpa.org/#/evil-vimish-fold"; license = lib.licenses.free; }; }) {}; @@ -17598,34 +18303,34 @@ sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-visual-mark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-visual-mark-mode"; sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48"; name = "evil-visual-mark-mode"; }; packageRequires = [ dash evil ]; meta = { - homepage = "http://melpa.org/#/evil-visual-mark-mode"; + homepage = "https://melpa.org/#/evil-visual-mark-mode"; license = lib.licenses.free; }; }) {}; evil-visualstar = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-visualstar"; - version = "20150514.1610"; + version = "20160222.1848"; src = fetchFromGitHub { owner = "bling"; repo = "evil-visualstar"; - rev = "eb996eca0081b6e8bab70b2c0a86ef1c71087bf6"; - sha256 = "11y2jrwbsw4fcx77zkhj1cn2hl1zcdqy00bv3mpbcrs03jywssrk"; + rev = "06c053d8f7381f91c53311b1234872ca96ced752"; + sha256 = "0mkbzw12fav945icibc2293m5haxqr3hzkyli2cf4ssk6yvn0x4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-visualstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-visualstar"; sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy"; name = "evil-visualstar"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-visualstar"; + homepage = "https://melpa.org/#/evil-visualstar"; license = lib.licenses.free; }; }) {}; @@ -17640,13 +18345,13 @@ sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evm"; sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03"; name = "evm"; }; packageRequires = [ dash f ]; meta = { - homepage = "http://melpa.org/#/evm"; + homepage = "https://melpa.org/#/evm"; license = lib.licenses.free; }; }) {}; @@ -17661,13 +18366,13 @@ sha256 = "1frhcgkiys0pqrlcsi5zcl3ngblr38wrwfi6wzqk75x21rnwnbqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ewmctrl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ewmctrl"; sha256 = "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl"; name = "ewmctrl"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ewmctrl"; + homepage = "https://melpa.org/#/ewmctrl"; license = lib.licenses.free; }; }) {}; @@ -17682,13 +18387,13 @@ sha256 = "1i6zf17rwa390c33cbspz81dz86vwlphyhjjsia4gp205nfk3s20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eww-lnum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eww-lnum"; sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79"; name = "eww-lnum"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eww-lnum"; + homepage = "https://melpa.org/#/eww-lnum"; license = lib.licenses.free; }; }) {}; @@ -17703,13 +18408,13 @@ sha256 = "0xxk0cr28g7vw8cwsnwrdrc8xqr50g6m9h0v43mx2iws9pn9dd47"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/exec-path-from-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/exec-path-from-shell"; sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9"; name = "exec-path-from-shell"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/exec-path-from-shell"; + homepage = "https://melpa.org/#/exec-path-from-shell"; license = lib.licenses.free; }; }) {}; @@ -17724,13 +18429,13 @@ sha256 = "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/expand-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/expand-line"; sha256 = "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9"; name = "expand-line"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/expand-line"; + homepage = "https://melpa.org/#/expand-line"; license = lib.licenses.free; }; }) {}; @@ -17745,13 +18450,13 @@ sha256 = "0qqqv0pp25xg1zh72i6fsb7l9vi14nd96rx0qdj1f3pdwfidqms1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/expand-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/expand-region"; sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg"; name = "expand-region"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/expand-region"; + homepage = "https://melpa.org/#/expand-region"; license = lib.licenses.free; }; }) {}; @@ -17766,34 +18471,34 @@ sha256 = "0ah8zayipwp760909llb9whcdvmbsdgkg0x5y4qlcicm1r9kwcc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/express"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/express"; sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9"; name = "express"; }; packageRequires = [ string-utils ]; meta = { - homepage = "http://melpa.org/#/express"; + homepage = "https://melpa.org/#/express"; license = lib.licenses.free; }; }) {}; extempore-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "extempore-mode"; - version = "20160218.2301"; + version = "20160323.134"; src = fetchFromGitHub { owner = "extemporelang"; repo = "extempore-emacs-mode"; - rev = "7ef138c18abbe78fafdc7da71f73e323be88ac5a"; - sha256 = "0vpxrwaghzffj3rhsvmia4ykj8z059gjxws5vkgjjffh35d72ask"; + rev = "462989a184a182264b4b0e6b449264d0dcf4a913"; + sha256 = "0sx3kywaqb8sgywqgcx9gllz8zm53pr5vp82vlv7aj5h93lxhxzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/extempore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/extempore-mode"; sha256 = "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php"; name = "extempore-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/extempore-mode"; + homepage = "https://melpa.org/#/extempore-mode"; license = lib.licenses.free; }; }) {}; @@ -17808,13 +18513,34 @@ sha256 = "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/extend-dnd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/extend-dnd"; sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417"; name = "extend-dnd"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/extend-dnd"; + homepage = "https://melpa.org/#/extend-dnd"; + license = lib.licenses.free; + }; + }) {}; + exwm-x = callPackage ({ cl-lib ? null, dmenu, exwm, fetchFromGitHub, fetchurl, lib, melpaBuild, start-menu, switch-window }: + melpaBuild { + pname = "exwm-x"; + version = "20160307.255"; + src = fetchFromGitHub { + owner = "tumashu"; + repo = "exwm-x"; + rev = "cda2bc2b3b3347af34349e5f33d2d90f1ef27157"; + sha256 = "1i9lklzg7fyi4rl0vv1lidx0shlhih0474bbjsvc74p19p5cmlrq"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/exwm-x"; + sha256 = "1d9q57vz63sk3h1g5gvp9xnmqkpa73wppmiy2bv8mxk11whl6xa3"; + name = "exwm-x"; + }; + packageRequires = [ cl-lib dmenu exwm start-menu switch-window ]; + meta = { + homepage = "https://melpa.org/#/exwm-x"; license = lib.licenses.free; }; }) {}; @@ -17829,13 +18555,13 @@ sha256 = "0w2g7rpw26j65j4r23w6j8nw3arw73l601kyy6qv9p9bkk1yc072"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eyebrowse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eyebrowse"; sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861"; name = "eyebrowse"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/eyebrowse"; + homepage = "https://melpa.org/#/eyebrowse"; license = lib.licenses.free; }; }) {}; @@ -17844,17 +18570,17 @@ pname = "eyedropper"; version = "20151231.1501"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/eyedropper.el"; + url = "https://www.emacswiki.org/emacs/download/eyedropper.el"; sha256 = "1fg3j0jlww2rqc6k2nq95hcg6i26nqdp043h7kyjcwrgqbjfsigl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eyedropper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eyedropper"; sha256 = "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk"; name = "eyedropper"; }; packageRequires = [ hexrgb ]; meta = { - homepage = "http://melpa.org/#/eyedropper"; + homepage = "https://melpa.org/#/eyedropper"; license = lib.licenses.free; }; }) {}; @@ -17869,13 +18595,13 @@ sha256 = "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eyuml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eyuml"; sha256 = "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx"; name = "eyuml"; }; packageRequires = [ request s ]; meta = { - homepage = "http://melpa.org/#/eyuml"; + homepage = "https://melpa.org/#/eyuml"; license = lib.licenses.free; }; }) {}; @@ -17890,34 +18616,34 @@ sha256 = "15qa09x206s7rxmk35rslqniydh6hdb3n2kbspm5zrndcmsqz4zi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ez-query-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ez-query-replace"; sha256 = "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx"; name = "ez-query-replace"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/ez-query-replace"; + homepage = "https://melpa.org/#/ez-query-replace"; license = lib.licenses.free; }; }) {}; f = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "f"; - version = "20151113.323"; + version = "20160426.727"; src = fetchFromGitHub { owner = "rejeep"; repo = "f.el"; - rev = "e0259ee060ff9a3f12204adcc8630869080acd68"; - sha256 = "0lzqfr5xgc3qvpbs6vf63yiw7pc2mybfvsrhczf9ghlmlawqa6k1"; + rev = "de85171132fc0d3bdb8ca9264845b478e28c7b81"; + sha256 = "0v6y897ibs589gry7xrs1vj14h9qd6riach6r27xf7386ji5hb6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/f"; sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2"; name = "f"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/f"; + homepage = "https://melpa.org/#/f"; license = lib.licenses.free; }; }) {}; @@ -17932,13 +18658,13 @@ sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fabric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fabric"; sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m"; name = "fabric"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fabric"; + homepage = "https://melpa.org/#/fabric"; license = lib.licenses.free; }; }) {}; @@ -17946,17 +18672,17 @@ pname = "face-remap-plus"; version = "20151231.1502"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/face-remap+.el"; + url = "https://www.emacswiki.org/emacs/download/face-remap+.el"; sha256 = "0yr3fqpn9pj6y8bsb6g7hkg75sl703pzngn8gp0sgs3v90c180l5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/face-remap+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/face-remap+"; sha256 = "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y"; name = "face-remap-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/face-remap+"; + homepage = "https://melpa.org/#/face-remap+"; license = lib.licenses.free; }; }) {}; @@ -17964,17 +18690,17 @@ pname = "facemenu-plus"; version = "20151231.1505"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/facemenu+.el"; + url = "https://www.emacswiki.org/emacs/download/facemenu+.el"; sha256 = "1kayc4hsalvqnn577y3f97w9kz94c53vcxwx01s0k34ffav919c2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/facemenu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/facemenu+"; sha256 = "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv"; name = "facemenu-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/facemenu+"; + homepage = "https://melpa.org/#/facemenu+"; license = lib.licenses.free; }; }) {}; @@ -17982,17 +18708,17 @@ pname = "faces-plus"; version = "20151231.1505"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/faces+.el"; + url = "https://www.emacswiki.org/emacs/download/faces+.el"; sha256 = "0sqrymmr583cgqmv4bs6rjms5ij5cm8vvxjrfc9alacwyz5f7w8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/faces+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/faces+"; sha256 = "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92"; name = "faces-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/faces+"; + homepage = "https://melpa.org/#/faces+"; license = lib.licenses.free; }; }) {}; @@ -18007,13 +18733,13 @@ sha256 = "0sjmjydapfnv979dx8dwiz67wffamiaf41s4skkwa0wn2h4p6wja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/faceup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/faceup"; sha256 = "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx"; name = "faceup"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/faceup"; + homepage = "https://melpa.org/#/faceup"; license = lib.licenses.free; }; }) {}; @@ -18028,34 +18754,34 @@ sha256 = "19zm9my7fl1r3q48axjv2f8x9hcjk6qah4y4r92b90bzfmcdc30y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/factlog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/factlog"; sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7"; name = "factlog"; }; packageRequires = [ deferred ]; meta = { - homepage = "http://melpa.org/#/factlog"; + homepage = "https://melpa.org/#/factlog"; license = lib.licenses.free; }; }) {}; faff-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "faff-theme"; - version = "20151027.717"; + version = "20160424.1052"; src = fetchFromGitHub { owner = "WJCFerguson"; repo = "emacs-faff-theme"; - rev = "8ec2bee09b386c711b0753ab12ace926d06fca7e"; - sha256 = "1sc5f867h7i0n2gd9qcydqn1b2pk227l92ad4bf9nnpl3jmdr26v"; + rev = "66d67b355c8be03483fbf4519daff698870cb165"; + sha256 = "1iv9xnpylw2mw18993yy5s9bkxs1rjrn4q92b1wvrx1n51kcw2ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/faff-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/faff-theme"; sha256 = "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g"; name = "faff-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/faff-theme"; + homepage = "https://melpa.org/#/faff-theme"; license = lib.licenses.free; }; }) {}; @@ -18070,13 +18796,13 @@ sha256 = "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fakespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fakespace"; sha256 = "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27"; name = "fakespace"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fakespace"; + homepage = "https://melpa.org/#/fakespace"; license = lib.licenses.free; }; }) {}; @@ -18091,13 +18817,13 @@ sha256 = "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fakir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fakir"; sha256 = "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25"; name = "fakir"; }; packageRequires = [ dash kv noflet ]; meta = { - homepage = "http://melpa.org/#/fakir"; + homepage = "https://melpa.org/#/fakir"; license = lib.licenses.free; }; }) {}; @@ -18112,13 +18838,13 @@ sha256 = "0m7rjzl9js2gjfcaqp2n5pn5ykpqnv8qfv35l5m5kpfigsi9cbb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fancy-battery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fancy-battery"; sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii"; name = "fancy-battery"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/fancy-battery"; + homepage = "https://melpa.org/#/fancy-battery"; license = lib.licenses.free; }; }) {}; @@ -18133,13 +18859,13 @@ sha256 = "0825hyz8b2biil0pd2bgjxqd2zm3gw9si7br5hnh51qasbaw9hid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fancy-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fancy-narrow"; sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv"; name = "fancy-narrow"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fancy-narrow"; + homepage = "https://melpa.org/#/fancy-narrow"; license = lib.licenses.free; }; }) {}; @@ -18154,13 +18880,13 @@ sha256 = "08lgfa2k42qpcs4999b77ycsg76zb56qbcxbsvmg0pcwjwa1ambz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/farmhouse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/farmhouse-theme"; sha256 = "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229"; name = "farmhouse-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/farmhouse-theme"; + homepage = "https://melpa.org/#/farmhouse-theme"; license = lib.licenses.free; }; }) {}; @@ -18175,13 +18901,13 @@ sha256 = "0m2qn3rd16s7ahyw6f9a4jb73sdc8bqp6d03p450yzcn36lw78z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fasd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fasd"; sha256 = "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c"; name = "fasd"; }; packageRequires = [ grizzl ]; meta = { - homepage = "http://melpa.org/#/fasd"; + homepage = "https://melpa.org/#/fasd"; license = lib.licenses.free; }; }) {}; @@ -18196,13 +18922,13 @@ sha256 = "0y95lrdqd9i2kbb266s1wdiim4m8vrn3br19d8s55ib6xlywf8cx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fastnav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fastnav"; sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5"; name = "fastnav"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fastnav"; + homepage = "https://melpa.org/#/fastnav"; license = lib.licenses.free; }; }) {}; @@ -18217,34 +18943,34 @@ sha256 = "0m9nzl0z3gc6fjpfqklwrsxlcgbbyydls004a39wfppyz0wr94fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/faust-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/faust-mode"; sha256 = "1lfn4q1wcc3vzazv2yzcnpvnmq6bqcczq8lpkz7w8yj8i5kpjvsc"; name = "faust-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/faust-mode"; + homepage = "https://melpa.org/#/faust-mode"; license = lib.licenses.free; }; }) {}; fcitx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fcitx"; - version = "20160209.2240"; + version = "20160422.1244"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "fcitx.el"; - rev = "f0a6d309de52893331c002fdc69b937abe9a4831"; - sha256 = "0xknl32hglmkj85h69cpwqpar589ylfzr3mxx730fy2gkaqzd2nf"; + rev = "550b410cbaf2aca72d29b9549c66c7ee12836478"; + sha256 = "01942hw783v2fzvx76pz03855jsax8c5x6bxp6kf59fnq7hs4sqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fcitx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fcitx"; sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx"; name = "fcitx"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fcitx"; + homepage = "https://melpa.org/#/fcitx"; license = lib.licenses.free; }; }) {}; @@ -18259,13 +18985,13 @@ sha256 = "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fcopy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fcopy"; sha256 = "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1"; name = "fcopy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fcopy"; + homepage = "https://melpa.org/#/fcopy"; license = lib.licenses.free; }; }) {}; @@ -18280,13 +19006,13 @@ sha256 = "0ylm4zcf82f5rl4lps5p6p8dc3i5p2v7w93caadgzv5qbl400h5d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/feature-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/feature-mode"; sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg"; name = "feature-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/feature-mode"; + homepage = "https://melpa.org/#/feature-mode"; license = lib.licenses.free; }; }) {}; @@ -18301,31 +19027,55 @@ sha256 = "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fetch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fetch"; sha256 = "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby"; name = "fetch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fetch"; + homepage = "https://melpa.org/#/fetch"; license = lib.licenses.free; }; }) {}; - fic-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + fic-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "fic-mode"; - version = "20140421.1122"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/fic-mode.el"; - sha256 = "110h0ff7bkwx7icph0j997hq53zpyz426dji4vs89zf75cf1nl7s"; + version = "20160209.1211"; + src = fetchFromGitHub { + owner = "lewang"; + repo = "fic-mode"; + rev = "8182f5be875fdefc5bd7142ab45adea89ac20705"; + sha256 = "06xd5rvn037g1kjdw7aa1n71i1mpnp4qz3a7wcmzbls0amhhnx1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fic-mode"; - sha256 = "037f2jr8bs2sfxw28cal2d49bsbrg0zkz2xdham627l04qnkgv8x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fic-mode"; + sha256 = "0yy1zw0b0s93qkzyq0n17gzn33ma5h56mh40ysz6adwsi68af84c"; name = "fic-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fic-mode"; + homepage = "https://melpa.org/#/fic-mode"; + license = lib.licenses.free; + }; + }) {}; + fifo-class = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "fifo-class"; + version = "20160425.58"; + src = fetchFromGitHub { + owner = "mola-T"; + repo = "fifo-class"; + rev = "8fe4cf690727f4ac7b67f29c55f845df023c3f21"; + sha256 = "0dkng4zkd5xdyvqy67bnfp4z6w8byx66bssq1zl7bhga45vihfjg"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fifo-class"; + sha256 = "0yyjrvdjiq5166vrys13c3dqy5807a3x99597iw5v6mcxg37jg3h"; + name = "fifo-class"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/fifo-class"; license = lib.licenses.free; }; }) {}; @@ -18338,13 +19088,13 @@ sha256 = "1c18b1h154sdxkksqwk8snyk8n43bwzgavi75l8mnz8dnl1ciaxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/figlet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/figlet"; sha256 = "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj"; name = "figlet"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/figlet"; + homepage = "https://melpa.org/#/figlet"; license = lib.licenses.free; }; }) {}; @@ -18352,17 +19102,17 @@ pname = "files-plus"; version = "20151231.1507"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/files+.el"; + url = "https://www.emacswiki.org/emacs/download/files+.el"; sha256 = "0s79b5jj3jfl3aih6r3fa0zix40arysk6mz4fijapd8ybaflz25n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/files+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/files+"; sha256 = "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8"; name = "files-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/files+"; + homepage = "https://melpa.org/#/files+"; license = lib.licenses.free; }; }) {}; @@ -18370,17 +19120,17 @@ pname = "filesets-plus"; version = "20151231.1508"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/filesets+.el"; + url = "https://www.emacswiki.org/emacs/download/filesets+.el"; sha256 = "020rpjrjp2gh4w6mrphrvk27kdizfqbjsw2sxraf8jz0dibg9gfg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/filesets+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/filesets+"; sha256 = "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn"; name = "filesets-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/filesets+"; + homepage = "https://melpa.org/#/filesets+"; license = lib.licenses.free; }; }) {}; @@ -18395,13 +19145,13 @@ sha256 = "0gbqspqn4y7f2fwqq8210b6k5q22c0zr7b4ws8qgz9swav8g3vrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fill-column-indicator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fill-column-indicator"; sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma"; name = "fill-column-indicator"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fill-column-indicator"; + homepage = "https://melpa.org/#/fill-column-indicator"; license = lib.licenses.free; }; }) {}; @@ -18416,13 +19166,13 @@ sha256 = "1x9wmxbcmd6qgdyzrl978nczfqrgyk6xz3rnh5hffbapy1v1rw47"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fillcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fillcode"; sha256 = "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2"; name = "fillcode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fillcode"; + homepage = "https://melpa.org/#/fillcode"; license = lib.licenses.free; }; }) {}; @@ -18437,13 +19187,13 @@ sha256 = "0f76cgh97z0rbbg2bp217nqmxfimzkvw85k9mx8bj78i9s2cdmwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/finalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/finalize"; sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq"; name = "finalize"; }; packageRequires = [ cl-lib eieio emacs ]; meta = { - homepage = "http://melpa.org/#/finalize"; + homepage = "https://melpa.org/#/finalize"; license = lib.licenses.free; }; }) {}; @@ -18458,52 +19208,52 @@ sha256 = "18a4ydp30ycx5w80j3xgghclzmzbvrkl2awxixy4aj68nmljk480"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-by-pinyin-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-by-pinyin-dired"; sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq"; name = "find-by-pinyin-dired"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/find-by-pinyin-dired"; + homepage = "https://melpa.org/#/find-by-pinyin-dired"; license = lib.licenses.free; }; }) {}; find-dired-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "find-dired-plus"; - version = "20151231.1510"; + version = "20160325.1606"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/find-dired+.el"; - sha256 = "1pch1kjbgnbf8zmlxh6wg4ch9bpfg7hmwkw1mrr1hiym05xvza0m"; + url = "https://www.emacswiki.org/emacs/download/find-dired+.el"; + sha256 = "19da93v605db8jfkl9j2rl8vxzlxl9lr5f07pl5xjq108mrkwr7i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-dired+"; sha256 = "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli"; name = "find-dired-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/find-dired+"; + homepage = "https://melpa.org/#/find-dired+"; license = lib.licenses.free; }; }) {}; find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "find-file-in-project"; - version = "20151216.2050"; + version = "20160405.130"; src = fetchFromGitHub { owner = "technomancy"; repo = "find-file-in-project"; - rev = "908cc56c0fd715001da4d97b30cba5eb7af3a609"; - sha256 = "0bf32nhpmjvvgnr6g9xqh8pqnhr3dl24y3g40lsv4pc8ffs70ydm"; + rev = "b89910f133d7ffbd00a164b675828609d335ee40"; + sha256 = "1ddy7797br58zqn9fgm8r25ikm24f7768iq73531wzck9k5z59qj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-file-in-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-file-in-project"; sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy"; name = "find-file-in-project"; }; packageRequires = [ emacs swiper ]; meta = { - homepage = "http://melpa.org/#/find-file-in-project"; + homepage = "https://melpa.org/#/find-file-in-project"; license = lib.licenses.free; }; }) {}; @@ -18518,13 +19268,13 @@ sha256 = "090m5647dpc8r8fwi3mszvc8kp0420ma5sv0lmqr2fpxyn9ybkjh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-file-in-repository"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-file-in-repository"; sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6"; name = "find-file-in-repository"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/find-file-in-repository"; + homepage = "https://melpa.org/#/find-file-in-repository"; license = lib.licenses.free; }; }) {}; @@ -18539,13 +19289,13 @@ sha256 = "1d6zn3qsg4lpk13cvn5r1w88dnhfydnhwf59x6cb4sy5q1ihk0g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-temp-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-temp-file"; sha256 = "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p"; name = "find-temp-file"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/find-temp-file"; + homepage = "https://melpa.org/#/find-temp-file"; license = lib.licenses.free; }; }) {}; @@ -18560,13 +19310,13 @@ sha256 = "1r6cs7p43pi6n2inbrv9q924m679izxwxqgyr4sjjj3lg6an4cnx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-things-fast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-things-fast"; sha256 = "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m"; name = "find-things-fast"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/find-things-fast"; + homepage = "https://melpa.org/#/find-things-fast"; license = lib.licenses.free; }; }) {}; @@ -18574,17 +19324,17 @@ pname = "finder-plus"; version = "20151231.1513"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/finder+.el"; + url = "https://www.emacswiki.org/emacs/download/finder+.el"; sha256 = "0x3f9qygp26c4yw32cgyy35bb4f1fq0fg7q8s9vs777skyl3rvp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/finder+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/finder+"; sha256 = "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh"; name = "finder-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/finder+"; + homepage = "https://melpa.org/#/finder+"; license = lib.licenses.free; }; }) {}; @@ -18592,17 +19342,17 @@ pname = "findr"; version = "20130824.707"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/findr.el"; + url = "https://www.emacswiki.org/emacs/download/findr.el"; sha256 = "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/findr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/findr"; sha256 = "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq"; name = "findr"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/findr"; + homepage = "https://melpa.org/#/findr"; license = lib.licenses.free; }; }) {}; @@ -18617,13 +19367,13 @@ sha256 = "1vjgcxyzv2p74igr3y0z6hk7bj6yqwjawx90xvvmp9z7m91d4yrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fingers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fingers"; sha256 = "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg"; name = "fingers"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fingers"; + homepage = "https://melpa.org/#/fingers"; license = lib.licenses.free; }; }) {}; @@ -18632,19 +19382,19 @@ pname = "fiplr"; version = "20140724.145"; src = fetchFromGitHub { - owner = "d11wtq"; + owner = "grizzl"; repo = "fiplr"; rev = "bb6b90ba3c558988c195048c4c40140b2ee17530"; sha256 = "14yy7kr2iv549xaf5gkav48lk2hzmvipwbs0rzljzw60il6k05hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fiplr"; - sha256 = "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fiplr"; + sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca"; name = "fiplr"; }; packageRequires = [ cl-lib grizzl ]; meta = { - homepage = "http://melpa.org/#/fiplr"; + homepage = "https://melpa.org/#/fiplr"; license = lib.licenses.free; }; }) {}; @@ -18659,13 +19409,13 @@ sha256 = "02ajday0lnk37dnzf4747ha3w0azisq35fmdhq322hx0hfb1c66x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firebelly-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firebelly-theme"; sha256 = "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr"; name = "firebelly-theme"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/firebelly-theme"; + homepage = "https://melpa.org/#/firebelly-theme"; license = lib.licenses.free; }; }) {}; @@ -18680,34 +19430,34 @@ sha256 = "0v8liv6aq10f8dxbl3d4rph1qk891dlxm9wqdc6w8aj318750hfm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firecode-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firecode-theme"; sha256 = "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739"; name = "firecode-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/firecode-theme"; + homepage = "https://melpa.org/#/firecode-theme"; license = lib.licenses.free; }; }) {}; firefox-controller = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, moz, popwin }: melpaBuild { pname = "firefox-controller"; - version = "20160125.1721"; + version = "20160320.1347"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "emacs-firefox-controller"; - rev = "0282bccb8ef7edcacb54a4991cc2c51bfdbf04a7"; - sha256 = "1hr4mfvaz8rc60fn5xi7sp1xn72rk2fg346di3mmcfnb9na9cbzq"; + rev = "5b1bedec83206f41672b1b65bba859f235bff48b"; + sha256 = "04afwxgydrn23bv93zqf9bd2cp02i9dcfqbi809arkmh8723qf6k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firefox-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firefox-controller"; sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6"; name = "firefox-controller"; }; packageRequires = [ cl-lib moz popwin ]; meta = { - homepage = "http://melpa.org/#/firefox-controller"; + homepage = "https://melpa.org/#/firefox-controller"; license = lib.licenses.free; }; }) {}; @@ -18722,34 +19472,34 @@ sha256 = "1smg4mqc5qdwzk5mp2hfm6l4s7k408x46xfl7fl45csb18islmrp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fireplace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fireplace"; sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw"; name = "fireplace"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fireplace"; + homepage = "https://melpa.org/#/fireplace"; license = lib.licenses.free; }; }) {}; firestarter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "firestarter"; - version = "20151213.815"; + version = "20160318.1542"; src = fetchFromGitHub { owner = "wasamasa"; repo = "firestarter"; - rev = "4b7428477980e12578ebbbb121115696b352d6b2"; - sha256 = "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55"; + rev = "e40af9b4ff53e5d2eccbce66159cffd5f2481edd"; + sha256 = "0ssx3qjv600n8x83g34smphiyywgl97dh4wx8kzm9pp42jnp29cj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firestarter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firestarter"; sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp"; name = "firestarter"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/firestarter"; + homepage = "https://melpa.org/#/firestarter"; license = lib.licenses.free; }; }) {}; @@ -18764,13 +19514,13 @@ sha256 = "17djaz79spms9il71m4xdfjhm58dzswb6fpncngkgx8kxvcy9y24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fish-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fish-mode"; sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14"; name = "fish-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/fish-mode"; + homepage = "https://melpa.org/#/fish-mode"; license = lib.licenses.free; }; }) {}; @@ -18778,17 +19528,17 @@ pname = "fit-frame"; version = "20151231.1514"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/fit-frame.el"; + url = "https://www.emacswiki.org/emacs/download/fit-frame.el"; sha256 = "082c6yyb1269va6k602hxpdf7ylfxz8gq8swqzwf07qaas0b5qxd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fit-frame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fit-frame"; sha256 = "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb"; name = "fit-frame"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fit-frame"; + homepage = "https://melpa.org/#/fit-frame"; license = lib.licenses.free; }; }) {}; @@ -18803,13 +19553,13 @@ sha256 = "16rd23ygh76fs4i7rni94k8gwa9n360h40qmhm65snp31kqnpr1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fix-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fix-input"; sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p"; name = "fix-input"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/fix-input"; + homepage = "https://melpa.org/#/fix-input"; license = lib.licenses.free; }; }) {}; @@ -18824,13 +19574,13 @@ sha256 = "17f11v9sd5fay3i4k6lmpsjicdw9j3zvx3fvhx0a86mp7ay2ywwf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fix-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fix-word"; sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc"; name = "fix-word"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/fix-word"; + homepage = "https://melpa.org/#/fix-word"; license = lib.licenses.free; }; }) {}; @@ -18845,7 +19595,7 @@ sha256 = "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fixmee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fixmee"; sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp"; name = "fixmee"; }; @@ -18858,7 +19608,7 @@ tabulated-list ]; meta = { - homepage = "http://melpa.org/#/fixmee"; + homepage = "https://melpa.org/#/fixmee"; license = lib.licenses.free; }; }) {}; @@ -18873,13 +19623,13 @@ sha256 = "07hv6l80ka10qszm16fpan8sas4b0qvl5s6qixxlz02fm7m0s7m5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flappymacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flappymacs"; sha256 = "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d"; name = "flappymacs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flappymacs"; + homepage = "https://melpa.org/#/flappymacs"; license = lib.licenses.free; }; }) {}; @@ -18894,13 +19644,13 @@ sha256 = "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flash-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flash-region"; sha256 = "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c"; name = "flash-region"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flash-region"; + homepage = "https://melpa.org/#/flash-region"; license = lib.licenses.free; }; }) {}; @@ -18915,13 +19665,13 @@ sha256 = "0ib6r6q4wbkkxdwgqsd25nx7ccxhk16lqkvwikign80j9n11g7s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flatland-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flatland-black-theme"; sha256 = "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da"; name = "flatland-black-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/flatland-black-theme"; + homepage = "https://melpa.org/#/flatland-black-theme"; license = lib.licenses.free; }; }) {}; @@ -18936,13 +19686,13 @@ sha256 = "0cl8m1i1aaw4zmkrkhfchhp0gxhpvhcmpjglsisjni47y5mydypf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flatland-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flatland-theme"; sha256 = "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3"; name = "flatland-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flatland-theme"; + homepage = "https://melpa.org/#/flatland-theme"; license = lib.licenses.free; }; }) {}; @@ -18957,13 +19707,13 @@ sha256 = "0j8pklgd2sk01glgkr24b5n5521425vws8zwdi4sxcv74922j5zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flatui-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flatui-theme"; sha256 = "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz"; name = "flatui-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flatui-theme"; + homepage = "https://melpa.org/#/flatui-theme"; license = lib.licenses.free; }; }) {}; @@ -18978,13 +19728,13 @@ sha256 = "187ah7yhmr3ckw23bf4fivx8v79yj0zmilrkjj7k6l198w8wmvql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flex-autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flex-autopair"; sha256 = "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007"; name = "flex-autopair"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flex-autopair"; + homepage = "https://melpa.org/#/flex-autopair"; license = lib.licenses.free; }; }) {}; @@ -18998,34 +19748,34 @@ sha256 = "02z1w8z9fqdshyyf03c26zjwhmmclb02caw3b6nhhk4w1rkbh6is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flex-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flex-isearch"; sha256 = "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3"; name = "flex-isearch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flex-isearch"; + homepage = "https://melpa.org/#/flex-isearch"; license = lib.licenses.free; }; }) {}; flim = callPackage ({ apel, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flim"; - version = "20151213.150"; + version = "20160311.1737"; src = fetchFromGitHub { owner = "wanderlust"; repo = "flim"; - rev = "60fa2c74a72358658603480addc75b1d23f6431a"; - sha256 = "1w913kw4b3dipawn567847jxl89j0prnf6656yqi2rp96axx3lhp"; + rev = "96fb2de481f5fa543f730f370042e94bc7152e13"; + sha256 = "10sayqyf5jwmz7h9gpp4657v6v8vmcd8ahzbshwwqbakjqwnn08c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flim"; sha256 = "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc"; name = "flim"; }; packageRequires = [ apel ]; meta = { - homepage = "http://melpa.org/#/flim"; + homepage = "https://melpa.org/#/flim"; license = lib.licenses.free; }; }) {}; @@ -19033,38 +19783,38 @@ pname = "fliptext"; version = "20131113.2018"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/fliptext.el"; + url = "https://www.emacswiki.org/emacs/download/fliptext.el"; sha256 = "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fliptext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fliptext"; sha256 = "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji"; name = "fliptext"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fliptext"; + homepage = "https://melpa.org/#/fliptext"; license = lib.licenses.free; }; }) {}; floobits = callPackage ({ fetchFromGitHub, fetchurl, highlight, json ? null, lib, melpaBuild }: melpaBuild { pname = "floobits"; - version = "20160111.2348"; + version = "20160307.1904"; src = fetchFromGitHub { owner = "Floobits"; repo = "floobits-emacs"; - rev = "9c052942524169c1ba98e644ccbeaea583275530"; - sha256 = "12b1b7avjdbfm184mcg3bh3s6k0ygfz1sraz8q7qnrsyw4170893"; + rev = "87ae6b1257f7c2ae91b100920b03363dd26d7dd9"; + sha256 = "10irvd9bi25fbx66dlc3v6zcqznng0aqcdb8656cz0qx7hrz56pw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/floobits"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/floobits"; sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf"; name = "floobits"; }; packageRequires = [ highlight json ]; meta = { - homepage = "http://melpa.org/#/floobits"; + homepage = "https://melpa.org/#/floobits"; license = lib.licenses.free; }; }) {}; @@ -19075,17 +19825,17 @@ src = fetchFromGitHub { owner = "lewang"; repo = "flx"; - rev = "807d69455585d89804ecef233a9462db7d0524d8"; - sha256 = "10f9135i9z2y4k0x6fbwm0g6vhsj6ag41xq504zpygqzp6y6ikmz"; + rev = "ae0981b253b17b52dec666e2f739f889e7952291"; + sha256 = "0csflhd69vz3wwq5j7872xx2l62hwiz1f5nggl5nz7h7v9anjx3r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flx"; sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9"; name = "flx"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/flx"; + homepage = "https://melpa.org/#/flx"; license = lib.licenses.free; }; }) {}; @@ -19096,17 +19846,17 @@ src = fetchFromGitHub { owner = "lewang"; repo = "flx"; - rev = "807d69455585d89804ecef233a9462db7d0524d8"; - sha256 = "10f9135i9z2y4k0x6fbwm0g6vhsj6ag41xq504zpygqzp6y6ikmz"; + rev = "ae0981b253b17b52dec666e2f739f889e7952291"; + sha256 = "0csflhd69vz3wwq5j7872xx2l62hwiz1f5nggl5nz7h7v9anjx3r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flx-ido"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flx-ido"; sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc"; name = "flx-ido"; }; packageRequires = [ cl-lib flx ]; meta = { - homepage = "http://melpa.org/#/flx-ido"; + homepage = "https://melpa.org/#/flx-ido"; license = lib.licenses.free; }; }) {}; @@ -19121,34 +19871,55 @@ sha256 = "1cmjw1zrb1nq9nx0d634ajli1di8x48k6s88zi2s2q0mbi28lzz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flx-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flx-isearch"; sha256 = "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd"; name = "flx-isearch"; }; packageRequires = [ cl-lib emacs flx ]; meta = { - homepage = "http://melpa.org/#/flx-isearch"; + homepage = "https://melpa.org/#/flx-isearch"; license = lib.licenses.free; }; }) {}; flycheck = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }: melpaBuild { pname = "flycheck"; - version = "20160220.935"; + version = "20160420.1512"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck"; - rev = "12099e93422c75fb1a0d5b731543d469e19b5455"; - sha256 = "1lhp53r7n7j4lv7gl9lnqpa6b9ip7xyy9rdm5gygqkp27pdjx39y"; + rev = "9a213998d0467d43ecb67a7c1f8d14fdb6082031"; + sha256 = "13qs4g9991n8mz5ls3ih0jkxalb86nkwh9gv96lviv833gg0z6z1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck"; sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr"; name = "flycheck"; }; packageRequires = [ dash emacs let-alist pkg-info seq ]; meta = { - homepage = "http://melpa.org/#/flycheck"; + homepage = "https://melpa.org/#/flycheck"; + license = lib.licenses.free; + }; + }) {}; + flycheck-apertium = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: + melpaBuild { + pname = "flycheck-apertium"; + version = "20160406.818"; + src = fetchFromGitHub { + owner = "unhammer"; + repo = "flycheck-apertium"; + rev = "71cf49d5aaee962b995583384bfa045a1d4c3db7"; + sha256 = "14idjjz6fhmq806mmncmqnr9bvcjks6spin8z6jb0gqcg1dbhm06"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-apertium"; + sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7"; + name = "flycheck-apertium"; + }; + packageRequires = [ flycheck ]; + meta = { + homepage = "https://melpa.org/#/flycheck-apertium"; license = lib.licenses.free; }; }) {}; @@ -19163,13 +19934,13 @@ sha256 = "0fh5z68gnggm0qjb8ncmfngv195lbp1dxz9jbmdi418d47mlba9c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ats2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ats2"; sha256 = "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr"; name = "flycheck-ats2"; }; packageRequires = [ emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-ats2"; + homepage = "https://melpa.org/#/flycheck-ats2"; license = lib.licenses.free; }; }) {}; @@ -19184,34 +19955,34 @@ sha256 = "0klnhq0zfn5zbkwl7y9kja7x49n1w6r1qbphk7a7v9svgm3h9s7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-cask"; sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7"; name = "flycheck-cask"; }; packageRequires = [ dash emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-cask"; + homepage = "https://melpa.org/#/flycheck-cask"; license = lib.licenses.free; }; }) {}; flycheck-checkbashisms = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-checkbashisms"; - version = "20160120.2007"; + version = "20160224.1106"; src = fetchFromGitHub { owner = "Gnouc"; repo = "flycheck-checkbashisms"; - rev = "6acb957a33a21e61764792b80ba4e33e88f2271f"; - sha256 = "18nhfj0vx8rg2236nb9475s27rhyb34m81i7l6zkhifqba6rb0bb"; + rev = "39362240b8e38e6ddc1da2e2c2229e3fecdf6057"; + sha256 = "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-checkbashisms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-checkbashisms"; sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz"; name = "flycheck-checkbashisms"; }; packageRequires = [ emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-checkbashisms"; + homepage = "https://melpa.org/#/flycheck-checkbashisms"; license = lib.licenses.free; }; }) {}; @@ -19226,34 +19997,34 @@ sha256 = "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-clangcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-clangcheck"; sha256 = "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m"; name = "flycheck-clangcheck"; }; packageRequires = [ cl-lib flycheck seq ]; meta = { - homepage = "http://melpa.org/#/flycheck-clangcheck"; + homepage = "https://melpa.org/#/flycheck-clangcheck"; license = lib.licenses.free; }; }) {}; flycheck-clojure = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }: melpaBuild { pname = "flycheck-clojure"; - version = "20150831.831"; + version = "20160319.958"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "squiggly-clojure"; - rev = "d677cde2720fa1b9f66b551af28f006e09474ca7"; - sha256 = "0flpma49m99i6pr0gx43ifhhgb222zsbqgcwyvfrpi90s9wny7mr"; + rev = "c432f07dc8ba548043f3b02ecf0f23020e87ef04"; + sha256 = "04qyylw868mn7wvml8l23vxgca9pwq1hrv6xlcd3xqgn7102n3w2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-clojure"; sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28"; name = "flycheck-clojure"; }; packageRequires = [ cider emacs flycheck let-alist ]; meta = { - homepage = "http://melpa.org/#/flycheck-clojure"; + homepage = "https://melpa.org/#/flycheck-clojure"; license = lib.licenses.free; }; }) {}; @@ -19268,13 +20039,13 @@ sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-color-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-color-mode-line"; sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq"; name = "flycheck-color-mode-line"; }; packageRequires = [ dash emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-color-mode-line"; + homepage = "https://melpa.org/#/flycheck-color-mode-line"; license = lib.licenses.free; }; }) {}; @@ -19289,34 +20060,55 @@ sha256 = "073vkjgcyqp8frsi05s6x8ml3ar6hwjmn2c7ryfab5b35kp9gmdi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-css-colorguard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-css-colorguard"; sha256 = "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc"; name = "flycheck-css-colorguard"; }; packageRequires = [ emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-css-colorguard"; + homepage = "https://melpa.org/#/flycheck-css-colorguard"; license = lib.licenses.free; }; }) {}; flycheck-cstyle = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-cstyle"; - version = "20160209.22"; + version = "20160320.1808"; src = fetchFromGitHub { owner = "alexmurray"; repo = "flycheck-cstyle"; - rev = "7c4cc5ab4909a80ade184a0bd6a36fa9deff678c"; - sha256 = "019h17p24cvsn1ny1fxlhwpjs3fz5gfar7dj0m2znjmx6qm72577"; + rev = "997f55402b9f5af64ba5f9029015db23b649029d"; + sha256 = "1fric65r33bgn2h1s1m3pxnm3d1gk2z4pwnj72in6p7glj3kg24w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-cstyle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-cstyle"; sha256 = "0p3lzpcgwk4nkq1w0iq40njz8ll2h3vi9z5fbvv1ar4r80fqd909"; name = "flycheck-cstyle"; }; packageRequires = [ emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-cstyle"; + homepage = "https://melpa.org/#/flycheck-cstyle"; + license = lib.licenses.free; + }; + }) {}; + flycheck-cython = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: + melpaBuild { + pname = "flycheck-cython"; + version = "20160327.1428"; + src = fetchFromGitHub { + owner = "lbolla"; + repo = "emacs-flycheck-cython"; + rev = "45097658a16eeabf2bd5e0464355f8f37a1aeffc"; + sha256 = "0994346iyp7143476i3y6pc5m1n6z7g1r6n1rldivsj0qr4gjh01"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-cython"; + sha256 = "1mbrwhpbs8in11mp79cnl4bd3m33qdgrvnbvi1mqvrsvz1ay28g4"; + name = "flycheck-cython"; + }; + packageRequires = [ flycheck ]; + meta = { + homepage = "https://melpa.org/#/flycheck-cython"; license = lib.licenses.free; }; }) {}; @@ -19331,13 +20123,13 @@ sha256 = "0b4yq39c8m03pv5cgvvqcippc3yfphpgjw3bh2bnxch1pwfik3xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-d-unittest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-d-unittest"; sha256 = "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2"; name = "flycheck-d-unittest"; }; packageRequires = [ dash flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-d-unittest"; + homepage = "https://melpa.org/#/flycheck-d-unittest"; license = lib.licenses.free; }; }) {}; @@ -19352,34 +20144,34 @@ sha256 = "1hw875dirz041vzw1pxjpk5lr1zmrp2kp9m6pazs9j19d686hyn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-dedukti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-dedukti"; sha256 = "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8"; name = "flycheck-dedukti"; }; packageRequires = [ dedukti-mode flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-dedukti"; + homepage = "https://melpa.org/#/flycheck-dedukti"; license = lib.licenses.free; }; }) {}; flycheck-dialyzer = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-dialyzer"; - version = "20151024.37"; + version = "20160326.930"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-dialyzer"; - rev = "3560214658cbdbd454f8b3d4f108cb51537afa36"; - sha256 = "15dc76r047pnxll229z0pmpn76zw3cc6qs81b7wg7yc5czsk8axh"; + rev = "a5df0db95ac69f397b5f85d325a6d88cf8974f64"; + sha256 = "1i5wm2r6rck6864a60mm6kv31vgvqnq49hi9apvhyywfn6sycwkf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-dialyzer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-dialyzer"; sha256 = "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2"; name = "flycheck-dialyzer"; }; packageRequires = [ flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-dialyzer"; + homepage = "https://melpa.org/#/flycheck-dialyzer"; license = lib.licenses.free; }; }) {}; @@ -19394,13 +20186,34 @@ sha256 = "0dqkd9h54qmr9cv2gmic010j2h03i80psajrv4wq3c4pvxyqyn2j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-dmd-dub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-dmd-dub"; sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm"; name = "flycheck-dmd-dub"; }; packageRequires = [ flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-dmd-dub"; + homepage = "https://melpa.org/#/flycheck-dmd-dub"; + license = lib.licenses.free; + }; + }) {}; + flycheck-elixir = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: + melpaBuild { + pname = "flycheck-elixir"; + version = "20160404.231"; + src = fetchFromGitHub { + owner = "lbolla"; + repo = "emacs-flycheck-elixir"; + rev = "96683d19c41b29933be69b2fb7100e2b85ac90fc"; + sha256 = "1aa7x25a70ldbm6rl0s1wa1ncd6p6z1a7f75lk5a3274ghq8jv8p"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-elixir"; + sha256 = "0f78fai6q15smh9rvsliv8r0hh3kpwn1lz37yvqkkbx9vl7rlwld"; + name = "flycheck-elixir"; + }; + packageRequires = [ flycheck ]; + meta = { + homepage = "https://melpa.org/#/flycheck-elixir"; license = lib.licenses.free; }; }) {}; @@ -19415,13 +20228,13 @@ sha256 = "08dlm3g2d8rl53hq0b4z7gp8529almlkyf69d3c8f9didmlhizk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-elm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-elm"; sha256 = "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4"; name = "flycheck-elm"; }; packageRequires = [ emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-elm"; + homepage = "https://melpa.org/#/flycheck-elm"; license = lib.licenses.free; }; }) {}; @@ -19436,13 +20249,13 @@ sha256 = "0lk7da7axn9fm0kzlzx10ir014rsdsycffi8jcy4biqllw6yi4dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-flow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-flow"; sha256 = "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3"; name = "flycheck-flow"; }; packageRequires = [ flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-flow"; + homepage = "https://melpa.org/#/flycheck-flow"; license = lib.licenses.free; }; }) {}; @@ -19457,34 +20270,34 @@ sha256 = "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ghcmod"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ghcmod"; sha256 = "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp"; name = "flycheck-ghcmod"; }; packageRequires = [ dash flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-ghcmod"; + homepage = "https://melpa.org/#/flycheck-ghcmod"; license = lib.licenses.free; }; }) {}; flycheck-gometalinter = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-gometalinter"; - version = "20160113.2221"; + version = "20160301.2105"; src = fetchFromGitHub { owner = "favadi"; repo = "flycheck-gometalinter"; - rev = "4b6f26aa5062f9d4164b24ce021bc18d00f9308e"; - sha256 = "0j2mvf3zjznwkm8dykcgs1v5sz0i882mrivghxqr3h6n3ni4wag4"; + rev = "6da19fbf8f750f56891c5b57bfb37997af09de77"; + sha256 = "0frgyj57mrggq5ib6xi71696m97ch0bw6cc208d2qbnb55sf4fgb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-gometalinter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-gometalinter"; sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2"; name = "flycheck-gometalinter"; }; packageRequires = [ emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-gometalinter"; + homepage = "https://melpa.org/#/flycheck-gometalinter"; license = lib.licenses.free; }; }) {}; @@ -19495,38 +20308,38 @@ src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-google-cpplint"; - rev = "dc23300757c6762c018d536a5831aef2486f7a17"; - sha256 = "0fykawnq9ch1vj76rsimwbmn2xxdamsnvbj4ahqaqhq7adb2wyrq"; + rev = "1d8a090861572258ab704915263feeb3a436c3d2"; + sha256 = "0l6sg83f6z8x2alnblpv03rj442sbnkkkcbf8i0agjmx3713a5yx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-google-cpplint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-google-cpplint"; sha256 = "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b"; name = "flycheck-google-cpplint"; }; packageRequires = [ flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-google-cpplint"; + homepage = "https://melpa.org/#/flycheck-google-cpplint"; license = lib.licenses.free; }; }) {}; flycheck-haskell = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, let-alist, lib, melpaBuild, seq }: melpaBuild { pname = "flycheck-haskell"; - version = "20160118.1051"; + version = "20160413.331"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-haskell"; - rev = "7ff353c8bc7e1a02fe2c14b0b8f9cecb748e0025"; - sha256 = "01y3nv4h5zz4w2bydw7f2w98rbyhbyq80w5w5y5nal5w4vd76qb7"; + rev = "927abe14bfb2da632267ef95a9fa8db92fcdd08a"; + sha256 = "1yyjh649ag6h3wnflsjlndmrlanjqbf59zg4gm9qqyhksqy4hyyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-haskell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-haskell"; sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7"; name = "flycheck-haskell"; }; packageRequires = [ dash emacs flycheck haskell-mode let-alist seq ]; meta = { - homepage = "http://melpa.org/#/flycheck-haskell"; + homepage = "https://melpa.org/#/flycheck-haskell"; license = lib.licenses.free; }; }) {}; @@ -19541,34 +20354,34 @@ sha256 = "1x61q0fqr1jbqs9kk59f565a02qjxh1gnp1aigys0yz6qnshvzbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-hdevtools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-hdevtools"; sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93"; name = "flycheck-hdevtools"; }; packageRequires = [ dash flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-hdevtools"; + homepage = "https://melpa.org/#/flycheck-hdevtools"; license = lib.licenses.free; }; }) {}; flycheck-irony = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, irony, lib, melpaBuild }: melpaBuild { pname = "flycheck-irony"; - version = "20150728.1431"; + version = "20160317.1736"; src = fetchFromGitHub { owner = "Sarcasm"; repo = "flycheck-irony"; - rev = "b92e881fdf9c9cea192bfb8fa228784af5e27ea4"; - sha256 = "1ax55yhf9q8i8z1f97zp3r08dqv8npd2llllbwa67d1bj49bsf2h"; + rev = "34940ae5ab8f4c721d9c1118ebfc3496d7e67a84"; + sha256 = "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-irony"; sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z"; name = "flycheck-irony"; }; packageRequires = [ emacs flycheck irony ]; meta = { - homepage = "http://melpa.org/#/flycheck-irony"; + homepage = "https://melpa.org/#/flycheck-irony"; license = lib.licenses.free; }; }) {}; @@ -19583,13 +20396,13 @@ sha256 = "15cgqbl6n3nyqiizgs2zvcvfs6bcnjk3bj81lhhwrzizbjvap3rv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ledger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ledger"; sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl"; name = "flycheck-ledger"; }; packageRequires = [ flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-ledger"; + homepage = "https://melpa.org/#/flycheck-ledger"; license = lib.licenses.free; }; }) {}; @@ -19604,13 +20417,13 @@ sha256 = "0isqa6ybdd4166h3rdcg0b8pcxn00v8dav58xwfcj92nhzvs0qca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-mercury"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-mercury"; sha256 = "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h"; name = "flycheck-mercury"; }; packageRequires = [ dash flycheck s ]; meta = { - homepage = "http://melpa.org/#/flycheck-mercury"; + homepage = "https://melpa.org/#/flycheck-mercury"; license = lib.licenses.free; }; }) {}; @@ -19625,13 +20438,13 @@ sha256 = "01r2ycbayhsxh3dq4d3qky5s0gcv3fjlp8j08y8dgyl406pkzhdz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-mypy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-mypy"; sha256 = "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f"; name = "flycheck-mypy"; }; packageRequires = [ flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-mypy"; + homepage = "https://melpa.org/#/flycheck-mypy"; license = lib.licenses.free; }; }) {}; @@ -19646,13 +20459,13 @@ sha256 = "06hs41l41hm08dv93wldd98hmnd3jqbg58pj5ymn15kgdsy1rirg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-nim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-nim"; sha256 = "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az"; name = "flycheck-nim"; }; packageRequires = [ dash flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-nim"; + homepage = "https://melpa.org/#/flycheck-nim"; license = lib.licenses.free; }; }) {}; @@ -19667,13 +20480,13 @@ sha256 = "0fm8w7126vf04n76qhh33rzybvl1n7va2whbqzafbvmv2nny3v94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ocaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ocaml"; sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7"; name = "flycheck-ocaml"; }; packageRequires = [ emacs flycheck let-alist merlin ]; meta = { - homepage = "http://melpa.org/#/flycheck-ocaml"; + homepage = "https://melpa.org/#/flycheck-ocaml"; license = lib.licenses.free; }; }) {}; @@ -19688,13 +20501,13 @@ sha256 = "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-package"; sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d"; name = "flycheck-package"; }; packageRequires = [ cl-lib emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-package"; + homepage = "https://melpa.org/#/flycheck-package"; license = lib.licenses.free; }; }) {}; @@ -19709,34 +20522,55 @@ sha256 = "0ffas4alqhijvm8wl1p5nqjhnxki8gs6b5bxb4nsqwnma8qmlcx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-perl6"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-perl6"; sha256 = "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4"; name = "flycheck-perl6"; }; packageRequires = [ emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-perl6"; + homepage = "https://melpa.org/#/flycheck-perl6"; + license = lib.licenses.free; + }; + }) {}; + flycheck-pkg-config = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: + melpaBuild { + pname = "flycheck-pkg-config"; + version = "20160401.1824"; + src = fetchFromGitHub { + owner = "Wilfred"; + repo = "flycheck-pkg-config"; + rev = "fc8912fb27d549bf947b7dc6943f76b405852736"; + sha256 = "1m183k3j2grr8462y2hi4fxi8sinyfrrwi8983ax904vhza8lclc"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-pkg-config"; + sha256 = "0w7h4fa4mv8377sdbkilqcw4b9qda98c1k01nxic7a8i3iyq02d6"; + name = "flycheck-pkg-config"; + }; + packageRequires = [ cl-lib dash s ]; + meta = { + homepage = "https://melpa.org/#/flycheck-pkg-config"; license = lib.licenses.free; }; }) {}; flycheck-pos-tip = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, pos-tip }: melpaBuild { pname = "flycheck-pos-tip"; - version = "20160122.905"; + version = "20160323.329"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-pos-tip"; - rev = "f0f8a4232b53494d6cf13934b53c61ed6c32273f"; - sha256 = "11brmradnsz3qqj11rviwdh6hqhbicgycr2zs5wrfbq8rifx4cv1"; + rev = "2ad60d92610596672b830328b5837b58350ca7cf"; + sha256 = "0wca22jp0alknmllfl22j89aasiwms6ipqyv1pnvbrgmrbzcmlp7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-pos-tip"; sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; name = "flycheck-pos-tip"; }; packageRequires = [ dash flycheck pos-tip ]; meta = { - homepage = "http://melpa.org/#/flycheck-pos-tip"; + homepage = "https://melpa.org/#/flycheck-pos-tip"; license = lib.licenses.free; }; }) {}; @@ -19751,13 +20585,13 @@ sha256 = "1adcijysw4v8rrxzswi8zhd6w99iaqq7asps0jp21gr9nqci8vdj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-protobuf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-protobuf"; sha256 = "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc"; name = "flycheck-protobuf"; }; packageRequires = [ protobuf-mode ]; meta = { - homepage = "http://melpa.org/#/flycheck-protobuf"; + homepage = "https://melpa.org/#/flycheck-protobuf"; license = lib.licenses.free; }; }) {}; @@ -19772,13 +20606,13 @@ sha256 = "1r8k38ldw7mldhl2hsqc8gvb99svc1vlhlqfnj8hqd3vvqxd5r1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-purescript"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-purescript"; sha256 = "05j1iscyg9khw0zq63676zrisragklxp48hmbc7vrbmbiy964lwd"; name = "flycheck-purescript"; }; packageRequires = [ dash emacs flycheck let-alist seq ]; meta = { - homepage = "http://melpa.org/#/flycheck-purescript"; + homepage = "https://melpa.org/#/flycheck-purescript"; license = lib.licenses.free; }; }) {}; @@ -19793,13 +20627,13 @@ sha256 = "16albss527dq4ncpiy8p326fib038qc6wjbh985lw2p1f9babswa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-pyflakes"; sha256 = "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1"; name = "flycheck-pyflakes"; }; packageRequires = [ flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-pyflakes"; + homepage = "https://melpa.org/#/flycheck-pyflakes"; license = lib.licenses.free; }; }) {}; @@ -19814,13 +20648,13 @@ sha256 = "08ar85p5llk0lxlm2rd7rfc8s449vrknsrzzxqg8kvakgpd0nx7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-rust"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-rust"; sha256 = "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w"; name = "flycheck-rust"; }; packageRequires = [ dash emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-rust"; + homepage = "https://melpa.org/#/flycheck-rust"; license = lib.licenses.free; }; }) {}; @@ -19835,76 +20669,76 @@ sha256 = "0v7d0yijqn3mhgjwqiv1rsdhw2ay6ffbn8i45x0dlp960v7k2k8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-status-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-status-emoji"; sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p"; name = "flycheck-status-emoji"; }; packageRequires = [ emacs flycheck let-alist ]; meta = { - homepage = "http://melpa.org/#/flycheck-status-emoji"; + homepage = "https://melpa.org/#/flycheck-status-emoji"; license = lib.licenses.free; }; }) {}; flycheck-tip = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, popup }: melpaBuild { pname = "flycheck-tip"; - version = "20150726.356"; + version = "20160318.2034"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "flycheck-tip"; - rev = "9eefbea4ccc9e348d356faf28c9a1902ba28f29e"; - sha256 = "0hn3qjff1lcpd2ghjixkkq2bpmrmqab3860vy38yw201yy4xmn5r"; + rev = "302f19a3e8df71ddd30c74fa46836443395667b0"; + sha256 = "0lrgww53xzz2hnc8c83hqxczzfm1bvixfswhsav4i8aakk3idjxi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-tip"; sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656"; name = "flycheck-tip"; }; packageRequires = [ emacs flycheck popup ]; meta = { - homepage = "http://melpa.org/#/flycheck-tip"; + homepage = "https://melpa.org/#/flycheck-tip"; license = lib.licenses.free; }; }) {}; flycheck-typescript-tslint = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-typescript-tslint"; - version = "20160213.1249"; + version = "20160404.230"; src = fetchFromGitHub { owner = "Simplify"; repo = "flycheck-typescript-tslint"; - rev = "05505563dc980be078aab3642d499ced8f625da3"; - sha256 = "1a9rmp0m5w68qvypxgwvixz32z13xcianyl6hjd6xmaax7f6r0bh"; + rev = "3286d6fad3f891238ed5a9ff31e2f125ba684285"; + sha256 = "0v0xmkl09lrxp20yamw7s9fszljx3g1yrvn1y4c86is8dszm9hdh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-typescript-tslint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-typescript-tslint"; sha256 = "141x4scl13gqxyg0nlc8vig1iaybc3g95il5r51k4k83isi62iyq"; name = "flycheck-typescript-tslint"; }; packageRequires = [ emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-typescript-tslint"; + homepage = "https://melpa.org/#/flycheck-typescript-tslint"; license = lib.licenses.free; }; }) {}; - flycheck-ycmd = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, ycmd }: + flycheck-ycmd = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, ycmd }: melpaBuild { pname = "flycheck-ycmd"; - version = "20160206.150"; + version = "20160320.624"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "61601543ca9b70f6a92a87fb9057af6143ba5ed1"; - sha256 = "10j8zv5m36400wwkwbncqnsm616v59ww0bbkhrxcf6mn56iq8162"; + rev = "1984e49b7894b77438f2257d8058900ab82109e3"; + sha256 = "0dwii83m6cngsnyhzhnmv53p588d4pkkybmcmsj6gsar157l4azi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ycmd"; sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv"; name = "flycheck-ycmd"; }; - packageRequires = [ dash emacs flycheck ycmd ]; + packageRequires = [ dash emacs flycheck let-alist ycmd ]; meta = { - homepage = "http://melpa.org/#/flycheck-ycmd"; + homepage = "https://melpa.org/#/flycheck-ycmd"; license = lib.licenses.free; }; }) {}; @@ -19919,13 +20753,13 @@ sha256 = "10i0rbvk6vyifgbgskdyspmw9q64x99fzi8i1h8bgv58xhfx6pm7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-coffee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-coffee"; sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d"; name = "flymake-coffee"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-coffee"; + homepage = "https://melpa.org/#/flymake-coffee"; license = lib.licenses.free; }; }) {}; @@ -19940,13 +20774,13 @@ sha256 = "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-cppcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-cppcheck"; sha256 = "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d"; name = "flymake-cppcheck"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-cppcheck"; + homepage = "https://melpa.org/#/flymake-cppcheck"; license = lib.licenses.free; }; }) {}; @@ -19961,13 +20795,13 @@ sha256 = "00cnz3snhs44aknq6wmf19hq9bzb5pj0hvfzz93l6n7ngd8vvpzy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-css"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-css"; sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5"; name = "flymake-css"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-css"; + homepage = "https://melpa.org/#/flymake-css"; license = lib.licenses.free; }; }) {}; @@ -19975,17 +20809,17 @@ pname = "flymake-cursor"; version = "20130822.532"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/flymake-cursor.el"; + url = "https://www.emacswiki.org/emacs/download/flymake-cursor.el"; sha256 = "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-cursor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-cursor"; sha256 = "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr"; name = "flymake-cursor"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flymake-cursor"; + homepage = "https://melpa.org/#/flymake-cursor"; license = lib.licenses.free; }; }) {}; @@ -20000,13 +20834,13 @@ sha256 = "1mylcsklnv3q27q1gvf7wrila39rmxab1ypmvjh5p56d91y6pszc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-easy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-easy"; sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7"; name = "flymake-easy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flymake-easy"; + homepage = "https://melpa.org/#/flymake-easy"; license = lib.licenses.free; }; }) {}; @@ -20021,13 +20855,13 @@ sha256 = "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-elixir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-elixir"; sha256 = "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792"; name = "flymake-elixir"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flymake-elixir"; + homepage = "https://melpa.org/#/flymake-elixir"; license = lib.licenses.free; }; }) {}; @@ -20042,13 +20876,13 @@ sha256 = "14kbqyw4v1c51dx7pfgqbn8x4j8j3rgyyq2fa9klqzxpldcskl24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-gjshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-gjshint"; sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44"; name = "flymake-gjshint"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flymake-gjshint"; + homepage = "https://melpa.org/#/flymake-gjshint"; license = lib.licenses.free; }; }) {}; @@ -20063,13 +20897,13 @@ sha256 = "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-go"; sha256 = "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1"; name = "flymake-go"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flymake-go"; + homepage = "https://melpa.org/#/flymake-go"; license = lib.licenses.free; }; }) {}; @@ -20084,13 +20918,13 @@ sha256 = "0zldhlvxmk0xcjmj4ns48pp4h3bvijrzs1md69ya7m3dmsbayfrc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-google-cpplint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-google-cpplint"; sha256 = "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3"; name = "flymake-google-cpplint"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-google-cpplint"; + homepage = "https://melpa.org/#/flymake-google-cpplint"; license = lib.licenses.free; }; }) {}; @@ -20105,13 +20939,13 @@ sha256 = "08rcsg76qdq2l6z8q339yw770kv1q657ywqvq6a20pxxz2158a8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-haml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-haml"; sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1"; name = "flymake-haml"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-haml"; + homepage = "https://melpa.org/#/flymake-haml"; license = lib.licenses.free; }; }) {}; @@ -20126,13 +20960,13 @@ sha256 = "0hwcgas83wwhk0szwgw7abf70400knb8dfabknwv0qrcsk4gqffd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-haskell-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-haskell-multi"; sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij"; name = "flymake-haskell-multi"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-haskell-multi"; + homepage = "https://melpa.org/#/flymake-haskell-multi"; license = lib.licenses.free; }; }) {}; @@ -20147,13 +20981,13 @@ sha256 = "003fdrgxlyhs595ndcdzhmdkcpsf9bpw53hrlrrrh07qlnqxwrvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-hlint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-hlint"; sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x"; name = "flymake-hlint"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-hlint"; + homepage = "https://melpa.org/#/flymake-hlint"; license = lib.licenses.free; }; }) {}; @@ -20168,13 +21002,13 @@ sha256 = "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-jshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-jshint"; sha256 = "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j"; name = "flymake-jshint"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-jshint"; + homepage = "https://melpa.org/#/flymake-jshint"; license = lib.licenses.free; }; }) {}; @@ -20189,13 +21023,13 @@ sha256 = "0y01albwwcnhj4pnpvcry0zw7z2g9py9q2p3sw5zhgw3g0v5p9ls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-jslint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-jslint"; sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm"; name = "flymake-jslint"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-jslint"; + homepage = "https://melpa.org/#/flymake-jslint"; license = lib.licenses.free; }; }) {}; @@ -20210,13 +21044,13 @@ sha256 = "1qn15pr7c07fmki484z5xpqyn8546qb5dr9gcp5n1172wnh2a534"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-json"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-json"; sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d"; name = "flymake-json"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-json"; + homepage = "https://melpa.org/#/flymake-json"; license = lib.licenses.free; }; }) {}; @@ -20231,13 +21065,13 @@ sha256 = "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-less"; sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0"; name = "flymake-less"; }; packageRequires = [ flymake-easy less-css-mode ]; meta = { - homepage = "http://melpa.org/#/flymake-less"; + homepage = "https://melpa.org/#/flymake-less"; license = lib.licenses.free; }; }) {}; @@ -20252,13 +21086,13 @@ sha256 = "1fz7kywp1y2nhp50b2v961wz604sw1gzqcid4k8igz9aii3ygxcv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-lua"; sha256 = "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6"; name = "flymake-lua"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flymake-lua"; + homepage = "https://melpa.org/#/flymake-lua"; license = lib.licenses.free; }; }) {}; @@ -20273,13 +21107,13 @@ sha256 = "1f4l2r4gp03s18255jawc7s5abpjjrw54937wzygmvzvqvmaiikj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-perlcritic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-perlcritic"; sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8"; name = "flymake-perlcritic"; }; packageRequires = [ flymake ]; meta = { - homepage = "http://melpa.org/#/flymake-perlcritic"; + homepage = "https://melpa.org/#/flymake-perlcritic"; license = lib.licenses.free; }; }) {}; @@ -20294,13 +21128,13 @@ sha256 = "09mibjdji5mf3qvngspv1zmik1zd9jwp4mb4c1w4256202359sf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-php"; sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk"; name = "flymake-php"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-php"; + homepage = "https://melpa.org/#/flymake-php"; license = lib.licenses.free; }; }) {}; @@ -20315,13 +21149,13 @@ sha256 = "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-phpcs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-phpcs"; sha256 = "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9"; name = "flymake-phpcs"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-phpcs"; + homepage = "https://melpa.org/#/flymake-phpcs"; license = lib.licenses.free; }; }) {}; @@ -20336,13 +21170,13 @@ sha256 = "1r3yjqxig2j7l50l787qsi96mkvjcgqll9vb4ci51j7b43d53c5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-puppet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-puppet"; sha256 = "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv"; name = "flymake-puppet"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-puppet"; + homepage = "https://melpa.org/#/flymake-puppet"; license = lib.licenses.free; }; }) {}; @@ -20357,13 +21191,13 @@ sha256 = "1aijapvpw4skfhfmz09v5kpaxay6b0bp77bbjkrvgyizsqdd39vp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-python-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-python-pyflakes"; sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497"; name = "flymake-python-pyflakes"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-python-pyflakes"; + homepage = "https://melpa.org/#/flymake-python-pyflakes"; license = lib.licenses.free; }; }) {}; @@ -20378,13 +21212,13 @@ sha256 = "13yk9cncp3zw6d7zkgdpgprpw6wrirk2gxgjvkr15dwcyx1g3109"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-ruby"; sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr"; name = "flymake-ruby"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-ruby"; + homepage = "https://melpa.org/#/flymake-ruby"; license = lib.licenses.free; }; }) {}; @@ -20393,19 +21227,19 @@ pname = "flymake-rust"; version = "20141004.1752"; src = fetchFromGitHub { - owner = "joaoxsouls"; + owner = "jxs"; repo = "flymake-rust"; rev = "72ec92c261670b7384ee2593d0f1946ea29f429a"; sha256 = "1qxb3vhh83ikhmm89ms7irdip2l03hnjcq5ncmgywkaqkpslaacv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-rust"; - sha256 = "080cvgl2cg08kyvmgg080zqb6k6bngga3m5lfwb2dpmi1bajywc1"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-rust"; + sha256 = "0fgpkz1d4y2ywizwwrhqdqncdmhdnbgf3mcv3hjpa82x44yb7j32"; name = "flymake-rust"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-rust"; + homepage = "https://melpa.org/#/flymake-rust"; license = lib.licenses.free; }; }) {}; @@ -20420,13 +21254,13 @@ sha256 = "0rwjiplpqw3rrh76llnx2fn78f6avxsg0la5br46q1rgw4n8r1w1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-sass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-sass"; sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d"; name = "flymake-sass"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-sass"; + homepage = "https://melpa.org/#/flymake-sass"; license = lib.licenses.free; }; }) {}; @@ -20441,13 +21275,34 @@ sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-shell"; sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i"; name = "flymake-shell"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-shell"; + homepage = "https://melpa.org/#/flymake-shell"; + license = lib.licenses.free; + }; + }) {}; + flymake-solidity = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: + melpaBuild { + pname = "flymake-solidity"; + version = "20160424.920"; + src = fetchFromGitHub { + owner = "kootenpv"; + repo = "flymake-solidity"; + rev = "07f33ed52aac5d958fc0f50026a9bf111e1a5308"; + sha256 = "1rq47qhp3jdrw1n22cnhvhcxqzbi6v9r94kgf3200vrfp435rvkn"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-solidity"; + sha256 = "10d1g14y3l670lqgfdsnyxanzcjs2jpgnliih56n1xhcpyz551l3"; + name = "flymake-solidity"; + }; + packageRequires = [ flymake-easy ]; + meta = { + homepage = "https://melpa.org/#/flymake-solidity"; license = lib.licenses.free; }; }) {}; @@ -20462,13 +21317,13 @@ sha256 = "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-vala"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-vala"; sha256 = "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx"; name = "flymake-vala"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-vala"; + homepage = "https://melpa.org/#/flymake-vala"; license = lib.licenses.free; }; }) {}; @@ -20483,13 +21338,13 @@ sha256 = "0mdam39a85csi9b90wak9j3zkd25lj6x54affwkg3fym8yphmplm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-yaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-yaml"; sha256 = "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7"; name = "flymake-yaml"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-yaml"; + homepage = "https://melpa.org/#/flymake-yaml"; license = lib.licenses.free; }; }) {}; @@ -20504,13 +21359,13 @@ sha256 = "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flyparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flyparens"; sha256 = "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a"; name = "flyparens"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flyparens"; + homepage = "https://melpa.org/#/flyparens"; license = lib.licenses.free; }; }) {}; @@ -20525,13 +21380,13 @@ sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flyspell-lazy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flyspell-lazy"; sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y"; name = "flyspell-lazy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flyspell-lazy"; + homepage = "https://melpa.org/#/flyspell-lazy"; license = lib.licenses.free; }; }) {}; @@ -20546,13 +21401,13 @@ sha256 = "1rdpggnw9mz3qr4kp5gh9nvwncivj446vdhpc04d4jgrl568bhqb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flyspell-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flyspell-popup"; sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql"; name = "flyspell-popup"; }; packageRequires = [ popup ]; meta = { - homepage = "http://melpa.org/#/flyspell-popup"; + homepage = "https://melpa.org/#/flyspell-popup"; license = lib.licenses.free; }; }) {}; @@ -20567,13 +21422,13 @@ sha256 = "1fk4zsb4jliwz10sqz5bpqgj1p479mc506dmvy4zq3vqnpbypqvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fm"; sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f"; name = "fm"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fm"; + homepage = "https://melpa.org/#/fm"; license = lib.licenses.free; }; }) {}; @@ -20588,13 +21443,13 @@ sha256 = "0984fhf1nlpdh9mh3gd2xak3v2rlv76qxppqvr6a4kl1dxwg37r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fm-bookmarks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fm-bookmarks"; sha256 = "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj"; name = "fm-bookmarks"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/fm-bookmarks"; + homepage = "https://melpa.org/#/fm-bookmarks"; license = lib.licenses.free; }; }) {}; @@ -20609,13 +21464,13 @@ sha256 = "0vqjyc00ba9wy2rn454hhy9rnnghljc1i8f3zrpkdmkqn5cg3336"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/focus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/focus"; sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8"; name = "focus"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/focus"; + homepage = "https://melpa.org/#/focus"; license = lib.licenses.free; }; }) {}; @@ -20624,19 +21479,19 @@ pname = "focus-autosave-mode"; version = "20151012.442"; src = fetchFromGitHub { - owner = "vifon"; + owner = "Vifon"; repo = "focus-autosave-mode.el"; rev = "592e2c0642ee86b2000b728ea346de084447dda8"; sha256 = "1k5xhnr1jkfw8896kf2nl4633r6ni5bnc53rs6lxn8y9lj0srafb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/focus-autosave-mode"; - sha256 = "1zwp99mk360mqk4mjnnjr6islavginc9732p0jn9g5yz62xypxpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/focus-autosave-mode"; + sha256 = "10cd1x5b1w7apgxd2kq45lv0jlj7az4zmn2iz4iymf2r2hancrcd"; name = "focus-autosave-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/focus-autosave-mode"; + homepage = "https://melpa.org/#/focus-autosave-mode"; license = lib.licenses.free; }; }) {}; @@ -20651,13 +21506,13 @@ sha256 = "1mnak9k0hz99jq2p7gydxajzvx2vcql8yzwcm0v80a6xji2whl70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/foggy-night-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/foggy-night-theme"; sha256 = "03x3dhkk81d2zh9nflq6wd7v3khpy9046v8qhq4i9dw6davvy9j4"; name = "foggy-night-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/foggy-night-theme"; + homepage = "https://melpa.org/#/foggy-night-theme"; license = lib.licenses.free; }; }) {}; @@ -20672,13 +21527,13 @@ sha256 = "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-dwim"; sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x"; name = "fold-dwim"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fold-dwim"; + homepage = "https://melpa.org/#/fold-dwim"; license = lib.licenses.free; }; }) {}; @@ -20693,13 +21548,13 @@ sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-dwim-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-dwim-org"; sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn"; name = "fold-dwim-org"; }; packageRequires = [ fold-dwim ]; meta = { - homepage = "http://melpa.org/#/fold-dwim-org"; + homepage = "https://melpa.org/#/fold-dwim-org"; license = lib.licenses.free; }; }) {}; @@ -20714,13 +21569,13 @@ sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-this"; sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d"; name = "fold-this"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fold-this"; + homepage = "https://melpa.org/#/fold-this"; license = lib.licenses.free; }; }) {}; @@ -20735,13 +21590,13 @@ sha256 = "1z2dkyzj1gq3gp9cc3lhi240f8f3yjpjnw520xszm0wvx1rp06ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/folding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/folding"; sha256 = "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y"; name = "folding"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/folding"; + homepage = "https://melpa.org/#/folding"; license = lib.licenses.free; }; }) {}; @@ -20749,17 +21604,17 @@ pname = "font-lock-plus"; version = "20151231.1519"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/font-lock+.el"; + url = "https://www.emacswiki.org/emacs/download/font-lock+.el"; sha256 = "04j9xybn9an3bm2p2aqmqnswxxg3gwq2mc96brkgxkr88h316d4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/font-lock+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/font-lock+"; sha256 = "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g"; name = "font-lock-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/font-lock+"; + homepage = "https://melpa.org/#/font-lock+"; license = lib.licenses.free; }; }) {}; @@ -20774,13 +21629,13 @@ sha256 = "04n32rgdz7m24jji8p0j42zmf2r60sdbbr4mkr6435fqyvmdd20k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/font-lock-studio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/font-lock-studio"; sha256 = "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq"; name = "font-lock-studio"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/font-lock-studio"; + homepage = "https://melpa.org/#/font-lock-studio"; license = lib.licenses.free; }; }) {}; @@ -20795,13 +21650,13 @@ sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/font-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/font-utils"; sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5"; name = "font-utils"; }; packageRequires = [ pcache persistent-soft ]; meta = { - homepage = "http://melpa.org/#/font-utils"; + homepage = "https://melpa.org/#/font-utils"; license = lib.licenses.free; }; }) {}; @@ -20816,55 +21671,55 @@ sha256 = "103xz042h8w6c85hn19cglfsa34syjh18asm41rjhr9krp15sdl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fontawesome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fontawesome"; sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3"; name = "fontawesome"; }; packageRequires = [ cl-lib helm-core ]; meta = { - homepage = "http://melpa.org/#/fontawesome"; + homepage = "https://melpa.org/#/fontawesome"; license = lib.licenses.free; }; }) {}; forecast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "forecast"; - version = "20160208.1748"; + version = "20160419.748"; src = fetchFromGitHub { owner = "cadadr"; repo = "forecast.el"; - rev = "7531c979a8756a9c78e4e3d221534a4143f5804d"; - sha256 = "091v9iazqiyarabpdh0v71ddsw018mhy5nnis7jfkafp60psn0nj"; + rev = "95bb9c92aad42ed0195fb93551b442a4fc45f452"; + sha256 = "05m1ryn9fi4m49d7p68q25svrzfxpl1h9sisa8jlvbiapwmghvgj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/forecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/forecast"; sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc"; name = "forecast"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/forecast"; + homepage = "https://melpa.org/#/forecast"; license = lib.licenses.free; }; }) {}; foreign-regexp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "foreign-regexp"; - version = "20140823.1942"; + version = "20160318.1107"; src = fetchFromGitHub { owner = "k-talo"; repo = "foreign-regexp.el"; - rev = "c7251fce89c8585f2595e687d8d7bc65cf465b5e"; - sha256 = "1fczg710a0rjs932yv6vv9rwr9g5ii6cwva82nqfzyhlkf0b1sn5"; + rev = "e368c4dbd3b7a95a14cbc3c25617b5f1bc5a7fb4"; + sha256 = "1459hy5kgp0dkzy1jab41aibixgmrk9lk6ysn1801spd8gwph371"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/foreign-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/foreign-regexp"; sha256 = "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7"; name = "foreign-regexp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/foreign-regexp"; + homepage = "https://melpa.org/#/foreign-regexp"; license = lib.licenses.free; }; }) {}; @@ -20879,13 +21734,13 @@ sha256 = "00wqn8h50xr90pyvwk4sv552yiajlzq56wh6f6lad5w90j47q1lx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/foreman-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/foreman-mode"; sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv"; name = "foreman-mode"; }; packageRequires = [ dash dash-functional emacs f s ]; meta = { - homepage = "http://melpa.org/#/foreman-mode"; + homepage = "https://melpa.org/#/foreman-mode"; license = lib.licenses.free; }; }) {}; @@ -20900,13 +21755,13 @@ sha256 = "0nj056x87gcpdqkgx3li5syp6wbj58a1mw2aqa48zflbqwyvs03i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/form-feed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/form-feed"; sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh"; name = "form-feed"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/form-feed"; + homepage = "https://melpa.org/#/form-feed"; license = lib.licenses.free; }; }) {}; @@ -20921,13 +21776,13 @@ sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/format-sql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/format-sql"; sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj"; name = "format-sql"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/format-sql"; + homepage = "https://melpa.org/#/format-sql"; license = lib.licenses.free; }; }) {}; @@ -20942,13 +21797,13 @@ sha256 = "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fortpy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fortpy"; sha256 = "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj"; name = "fortpy"; }; packageRequires = [ auto-complete epc pos-tip python-environment ]; meta = { - homepage = "http://melpa.org/#/fortpy"; + homepage = "https://melpa.org/#/fortpy"; license = lib.licenses.free; }; }) {}; @@ -20963,13 +21818,13 @@ sha256 = "1kk04hl2y2svrs07w4pq9f4g7vs9qzy2qpw9prvi1gravmnfrzc4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fortune-cookie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fortune-cookie"; sha256 = "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78"; name = "fortune-cookie"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fortune-cookie"; + homepage = "https://melpa.org/#/fortune-cookie"; license = lib.licenses.free; }; }) {}; @@ -20984,13 +21839,13 @@ sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fountain-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fountain-mode"; sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840"; name = "fountain-mode"; }; packageRequires = [ emacs s ]; meta = { - homepage = "http://melpa.org/#/fountain-mode"; + homepage = "https://melpa.org/#/fountain-mode"; license = lib.licenses.free; }; }) {}; @@ -20999,17 +21854,17 @@ pname = "frame-cmds"; version = "20160124.1026"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/frame-cmds.el"; + url = "https://www.emacswiki.org/emacs/download/frame-cmds.el"; sha256 = "1867zmm3pyqz8p9ig44jf598z9jkyvbp04mfg6j6ys3hyqfkw942"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/frame-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/frame-cmds"; sha256 = "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0"; name = "frame-cmds"; }; packageRequires = [ frame-fns ]; meta = { - homepage = "http://melpa.org/#/frame-cmds"; + homepage = "https://melpa.org/#/frame-cmds"; license = lib.licenses.free; }; }) {}; @@ -21017,17 +21872,17 @@ pname = "frame-fns"; version = "20151231.1522"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/frame-fns.el"; + url = "https://www.emacswiki.org/emacs/download/frame-fns.el"; sha256 = "0lvlyxb62sgrm37hc21dn7qzlrq2yagiwpspa926q6dpzcsbam15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/frame-fns"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/frame-fns"; sha256 = "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p"; name = "frame-fns"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/frame-fns"; + homepage = "https://melpa.org/#/frame-fns"; license = lib.licenses.free; }; }) {}; @@ -21042,13 +21897,13 @@ sha256 = "0n6jhm1198c8slvdymsfjif0dfx3wlf8q4mm0yvpiln46shhwldx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/frame-restore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/frame-restore"; sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm"; name = "frame-restore"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/frame-restore"; + homepage = "https://melpa.org/#/frame-restore"; license = lib.licenses.free; }; }) {}; @@ -21063,13 +21918,13 @@ sha256 = "1vvkdgj8warl40kqmd0408q46dxy9qp2sclq4q92b6falry9qy30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/frame-tag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/frame-tag"; sha256 = "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q"; name = "frame-tag"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/frame-tag"; + homepage = "https://melpa.org/#/frame-tag"; license = lib.licenses.free; }; }) {}; @@ -21077,17 +21932,17 @@ pname = "framemove"; version = "20130328.633"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/framemove.el"; + url = "https://www.emacswiki.org/emacs/download/framemove.el"; sha256 = "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/framemove"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/framemove"; sha256 = "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar"; name = "framemove"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/framemove"; + homepage = "https://melpa.org/#/framemove"; license = lib.licenses.free; }; }) {}; @@ -21102,13 +21957,13 @@ sha256 = "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/framesize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/framesize"; sha256 = "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf"; name = "framesize"; }; packageRequires = [ key-chord ]; meta = { - homepage = "http://melpa.org/#/framesize"; + homepage = "https://melpa.org/#/framesize"; license = lib.licenses.free; }; }) {}; @@ -21123,13 +21978,13 @@ sha256 = "12rmwf7gm9ib2c99jangygh2yswy41vxlp90rg0hvlhdfmbqa8p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/free-keys"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/free-keys"; sha256 = "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj"; name = "free-keys"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/free-keys"; + homepage = "https://melpa.org/#/free-keys"; license = lib.licenses.free; }; }) {}; @@ -21144,13 +21999,13 @@ sha256 = "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fringe-current-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fringe-current-line"; sha256 = "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8"; name = "fringe-current-line"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fringe-current-line"; + homepage = "https://melpa.org/#/fringe-current-line"; license = lib.licenses.free; }; }) {}; @@ -21165,34 +22020,34 @@ sha256 = "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fringe-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fringe-helper"; sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv"; name = "fringe-helper"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fringe-helper"; + homepage = "https://melpa.org/#/fringe-helper"; license = lib.licenses.free; }; }) {}; - fsharp-mode = callPackage ({ company, company-quickhelp, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip, s }: + fsharp-mode = callPackage ({ company, company-quickhelp, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip, s }: melpaBuild { pname = "fsharp-mode"; - version = "20160205.900"; + version = "20160414.1020"; src = fetchFromGitHub { owner = "rneatherway"; repo = "emacs-fsharp-mode-bin"; - rev = "3dd9cb858266608570ca264ec308f9776c370045"; - sha256 = "0q802gykb3rmn4ssqhs92d23r38jgshl8pjy2y6shmizmixzykml"; + rev = "29fa2a8c62b6ee564977d86ec815ad7a8899f7f1"; + sha256 = "0rj4dyhygn8bhhwf4cbs6mfz5vwl4x6f0664vi0rmhc6ghwbzy6k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fsharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fsharp-mode"; sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z"; name = "fsharp-mode"; }; - packageRequires = [ company company-quickhelp dash pos-tip s ]; + packageRequires = [ company company-quickhelp dash popup pos-tip s ]; meta = { - homepage = "http://melpa.org/#/fsharp-mode"; + homepage = "https://melpa.org/#/fsharp-mode"; license = lib.licenses.free; }; }) {}; @@ -21203,37 +22058,37 @@ src = fetchFromGitHub { owner = "FStarLang"; repo = "fstar-mode.el"; - rev = "247c9fc0a5f59a6df137d7cd82644b13ab4050ee"; - sha256 = "1257wsxvxp412s5vvaqf541kj1fr5whhlyalkfb0b2k1madal2al"; + rev = "26a7f489cc553e93a50595f45f000bbca66573ee"; + sha256 = "0vw6z68b99llcj10jy7vbmirlx62j23rgzxgdngl7kj6rfg9llpy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fstar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fstar-mode"; sha256 = "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy"; name = "fstar-mode"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/fstar-mode"; + homepage = "https://melpa.org/#/fstar-mode"; license = lib.licenses.free; }; }) {}; fuel = callPackage ({ cl-lib ? null, emacs, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fuel"; - version = "20151204.543"; + version = "20160328.729"; src = fetchgit { url = "git://factorcode.org/git/factor.git"; - rev = "69d5a3a276439b1b7b249dbfce2f8c46549536c1"; - sha256 = "c05f9f72c6a0f3582aecc258d8187a9e809041fd79ebcaed735b6803cdb7e4ac"; + rev = "20e8ca1f9e8fcfdbe8898e06b149d51b7254933d"; + sha256 = "072cbl5n4lyshnyij7vdyz5xhv0lbh0z4kjx9rcvwr1zcmw2w75x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuel"; sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756"; name = "fuel"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/fuel"; + homepage = "https://melpa.org/#/fuel"; license = lib.licenses.free; }; }) {}; @@ -21248,34 +22103,34 @@ sha256 = "0bjny4ryrs788myhiaf3ir99vadf2v4swa5gkz9i36a7j6wzpgk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/full-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/full-ack"; sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309"; name = "full-ack"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/full-ack"; + homepage = "https://melpa.org/#/full-ack"; license = lib.licenses.free; }; }) {}; fullframe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fullframe"; - version = "20160210.118"; + version = "20160223.242"; src = fetchFromGitHub { owner = "tomterl"; repo = "fullframe"; - rev = "3c046dd4c27a5c96d9dc3bc50a44eb1e7fd68912"; - sha256 = "1narmlcd8ycwkmsrgk64l7q0ljsbq2fsikl8hjbrsc20nma032m4"; + rev = "53872482447c46554760a73d99e6a4822d676664"; + sha256 = "06f5qqhqgdrdc2dk7vyb5l6z5nsa5gpkfbm36vnfydj4mchvlr8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fullframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fullframe"; sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a"; name = "fullframe"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/fullframe"; + homepage = "https://melpa.org/#/fullframe"; license = lib.licenses.free; }; }) {}; @@ -21290,32 +22145,34 @@ sha256 = "067fmk46wk6jpc01wylagw948sgs3ndrq18mp3x81pdv3dykzmr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/function-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/function-args"; sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak"; name = "function-args"; }; packageRequires = [ swiper ]; meta = { - homepage = "http://melpa.org/#/function-args"; + homepage = "https://melpa.org/#/function-args"; license = lib.licenses.free; }; }) {}; - furl = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { + furl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "furl"; - version = "20110112.1907"; - src = fetchhg { - url = "https://code.google.com/p/furl-el/"; - rev = "9a96eeea0046"; - sha256 = "109z1d0zrya1s9wy28nz5ynpg4zl7i1p6q1n57m1b1kkhhckjcv5"; + version = "20150508.2216"; + src = fetchFromGitHub { + owner = "nex3"; + repo = "furl-el"; + rev = "014438271e0ef27333dfcd599cb247f12a20d870"; + sha256 = "0wrmbvx0risdjkaxqmh4li6iwvg4635cdpjvw32k2wkdsyn2dlsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/furl"; - sha256 = "15njmanpj3qb8ic3k4sbrngqnsg85lvlj32dmii3y9bpgvis3k6f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/furl"; + sha256 = "1z3yqx95qmvpi6vkkgcwvkmw96s24h8ssd5gc06988picw6vj76f"; name = "furl"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/furl"; + homepage = "https://melpa.org/#/furl"; license = lib.licenses.free; }; }) {}; @@ -21330,13 +22187,13 @@ sha256 = "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuzzy"; sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h"; name = "fuzzy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fuzzy"; + homepage = "https://melpa.org/#/fuzzy"; license = lib.licenses.free; }; }) {}; @@ -21344,17 +22201,17 @@ pname = "fuzzy-format"; version = "20130824.700"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/fuzzy-format.el"; + url = "https://www.emacswiki.org/emacs/download/fuzzy-format.el"; sha256 = "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuzzy-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuzzy-format"; sha256 = "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb"; name = "fuzzy-format"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fuzzy-format"; + homepage = "https://melpa.org/#/fuzzy-format"; license = lib.licenses.free; }; }) {}; @@ -21362,38 +22219,38 @@ pname = "fuzzy-match"; version = "20151231.1523"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/fuzzy-match.el"; + url = "https://www.emacswiki.org/emacs/download/fuzzy-match.el"; sha256 = "1q3gbv9xp2jxrf9vfarjqk9k805xc9z72zbaw7aqdxrj1bafxwnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuzzy-match"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuzzy-match"; sha256 = "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds"; name = "fuzzy-match"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fuzzy-match"; + homepage = "https://melpa.org/#/fuzzy-match"; license = lib.licenses.free; }; }) {}; fvwm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fvwm-mode"; - version = "20160217.859"; + version = "20160411.638"; src = fetchFromGitHub { owner = "theBlackDragon"; repo = "fvwm-mode"; - rev = "89d5dad68224ada08378014c0fee1111a5830c2b"; - sha256 = "14nr19skannq60cvvxg359vb45jxs593mmz370v1hi6k652z4pny"; + rev = "6832a1c1f68bf6249c3fd6672ea8e27dc7a5c79e"; + sha256 = "03zmk4v259pqx7gkwqq95lccn78rwmh7iq5j0d5jj4jf9h39rr20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fvwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fvwm-mode"; sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb"; name = "fvwm-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fvwm-mode"; + homepage = "https://melpa.org/#/fvwm-mode"; license = lib.licenses.free; }; }) {}; @@ -21408,34 +22265,34 @@ sha256 = "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fwb-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fwb-cmds"; sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx"; name = "fwb-cmds"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fwb-cmds"; + homepage = "https://melpa.org/#/fwb-cmds"; license = lib.licenses.free; }; }) {}; fxrd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "fxrd-mode"; - version = "20160210.1733"; + version = "20160311.1815"; src = fetchFromGitHub { owner = "msherry"; repo = "fxrd-mode"; - rev = "28792b17878c5e8c45b81c53bef83b751a73119c"; - sha256 = "1p0l3fvbpvwdg4p82yj9ab7fxmsyvrvqsbclrvns6k3xlgpcrcbc"; + rev = "841e9d26ed5020b7320ca5a2daed0577bbd670be"; + sha256 = "1w0h369s8rii1n88xqy4rnkyr5y5w6zybbnmjcw68gp43jzqfkjw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fxrd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fxrd-mode"; sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r"; name = "fxrd-mode"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/fxrd-mode"; + homepage = "https://melpa.org/#/fxrd-mode"; license = lib.licenses.free; }; }) {}; @@ -21450,13 +22307,13 @@ sha256 = "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fyure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fyure"; sha256 = "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x"; name = "fyure"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fyure"; + homepage = "https://melpa.org/#/fyure"; license = lib.licenses.free; }; }) {}; @@ -21471,13 +22328,34 @@ sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fzf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fzf"; sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0"; name = "fzf"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/fzf"; + homepage = "https://melpa.org/#/fzf"; + license = lib.licenses.free; + }; + }) {}; + gams-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "gams-mode"; + version = "20160320.428"; + src = fetchFromGitHub { + owner = "ShiroTakeda"; + repo = "gams-mode"; + rev = "268ee8b4554446104d200de3ffbd2f067b20cb3f"; + sha256 = "16x3fz2ljrmqhjy7w96fhp3j9ja2gib042c363yfrzwa7q5rxzd2"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gams-mode"; + sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci"; + name = "gams-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/gams-mode"; license = lib.licenses.free; }; }) {}; @@ -21492,13 +22370,13 @@ sha256 = "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gandalf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gandalf-theme"; sha256 = "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p"; name = "gandalf-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gandalf-theme"; + homepage = "https://melpa.org/#/gandalf-theme"; license = lib.licenses.free; }; }) {}; @@ -21511,13 +22389,13 @@ sha256 = "1jsw2mywc0y8sf7yl7y3i3l8vs3jv1srjf34lgb5xfz6p8wc5lc0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gap-mode"; sha256 = "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2"; name = "gap-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gap-mode"; + homepage = "https://melpa.org/#/gap-mode"; license = lib.licenses.free; }; }) {}; @@ -21532,13 +22410,13 @@ sha256 = "0j0dg7nl9kmanayvw0712x5c5x9h48qmqdsyi0pijvgmv8l5slg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gather"; sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk"; name = "gather"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gather"; + homepage = "https://melpa.org/#/gather"; license = lib.licenses.free; }; }) {}; @@ -21551,13 +22429,13 @@ sha256 = "01kbvmylymm6qww45mbjjxmb8ccdl9c2pxdyqfq3g73vwzrvndk4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/geben"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/geben"; sha256 = "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm"; name = "geben"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/geben"; + homepage = "https://melpa.org/#/geben"; license = lib.licenses.free; }; }) {}; @@ -21572,34 +22450,55 @@ sha256 = "14v5gm931dcsfflhsvijr4ihx7cs6jymvnjzph3arvhvqwyqhwgq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/geeknote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/geeknote"; sha256 = "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v"; name = "geeknote"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/geeknote"; + homepage = "https://melpa.org/#/geeknote"; license = lib.licenses.free; }; }) {}; geiser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "geiser"; - version = "20160215.1932"; + version = "20160422.1920"; src = fetchFromGitHub { owner = "jaor"; repo = "geiser"; - rev = "c425acc5528bd24ca90fa7b5b3c3edba12b8f4fb"; - sha256 = "1na5wq15prn1qkla1bxg0jb8k86kdczvm4if878f7djj4vhkvxx5"; + rev = "dcaf849ccdfd488fb26e0d9131bbc59928690e0d"; + sha256 = "018kcbmwm8nqv2hgg0sfsdb2fz6ikhrqgzf1l1rr4knpcrrj8s6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/geiser"; sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596"; name = "geiser"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/geiser"; + homepage = "https://melpa.org/#/geiser"; + license = lib.licenses.free; + }; + }) {}; + general = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "general"; + version = "20160424.1829"; + src = fetchFromGitHub { + owner = "noctuid"; + repo = "general.el"; + rev = "10f0a0e6b308c8f59011edc13c5b184fcb949d58"; + sha256 = "0kng0bfb0wsa1ds907yhcrynv4cvzsf805l1kiqd736bkqi17vjq"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/general"; + sha256 = "104ywsfylfymly64p1i3hsy9pnpz3dkpmcq1ygafnld8zjd08gpc"; + name = "general"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/general"; license = lib.licenses.free; }; }) {}; @@ -21610,17 +22509,17 @@ src = fetchFromGitHub { owner = "emacs-berlin"; repo = "general-close"; - rev = "e12d26ffc59f62aeee31ad16a823cb4a390d85c8"; - sha256 = "1l3ps28a1wdrg2fgvvkdxdadfgpplijs4ig1yqq8yi7k13k046p4"; + rev = "5d3beb49c06c5df0ba7c305f64d31db2c93760af"; + sha256 = "1x9v8w224ifww0mn4a1rj60pi53h9iv1vli1n74a778bqv54vz3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/general-close"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/general-close"; sha256 = "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964"; name = "general-close"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/general-close"; + homepage = "https://melpa.org/#/general-close"; license = lib.licenses.free; }; }) {}; @@ -21635,13 +22534,13 @@ sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/genrnc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/genrnc"; sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm"; name = "genrnc"; }; packageRequires = [ concurrent deferred log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/genrnc"; + homepage = "https://melpa.org/#/genrnc"; license = lib.licenses.free; }; }) {}; @@ -21656,13 +22555,13 @@ sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/german-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/german-holidays"; sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn"; name = "german-holidays"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/german-holidays"; + homepage = "https://melpa.org/#/german-holidays"; license = lib.licenses.free; }; }) {}; @@ -21677,13 +22576,13 @@ sha256 = "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gerrit-download"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gerrit-download"; sha256 = "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp"; name = "gerrit-download"; }; packageRequires = [ emacs magit ]; meta = { - homepage = "http://melpa.org/#/gerrit-download"; + homepage = "https://melpa.org/#/gerrit-download"; license = lib.licenses.free; }; }) {}; @@ -21698,13 +22597,13 @@ sha256 = "0bwjiq4a4f5pg0ngvc3lmkk7aki8n9zqfa1dym0lk4vy6yfhcbhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ggo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ggo-mode"; sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p"; name = "ggo-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ggo-mode"; + homepage = "https://melpa.org/#/ggo-mode"; license = lib.licenses.free; }; }) {}; @@ -21719,34 +22618,34 @@ sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ggtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ggtags"; sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw"; name = "ggtags"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/ggtags"; + homepage = "https://melpa.org/#/ggtags"; license = lib.licenses.free; }; }) {}; gh = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, logito, melpaBuild, pcache }: melpaBuild { pname = "gh"; - version = "20151216.946"; + version = "20160222.2011"; src = fetchFromGitHub { owner = "sigma"; repo = "gh.el"; - rev = "3ceef078d9418cf19e1fe6be15cf34794a14880a"; - sha256 = "0fkq3yl9jpakfnahymjv28fcal38c210garnq055rgmyhyhhpdwd"; + rev = "202cbd71f9b7fff1547589fab7e4fba2c79f0fc5"; + sha256 = "10iy5sfyqnz3mrl951j9skxp1s8zm6cqmsadgbxnl9fj3br3ygd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gh"; sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0"; name = "gh"; }; packageRequires = [ emacs logito pcache ]; meta = { - homepage = "http://melpa.org/#/gh"; + homepage = "https://melpa.org/#/gh"; license = lib.licenses.free; }; }) {}; @@ -21761,13 +22660,13 @@ sha256 = "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gh-md"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gh-md"; sha256 = "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm"; name = "gh-md"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/gh-md"; + homepage = "https://melpa.org/#/gh-md"; license = lib.licenses.free; }; }) {}; @@ -21776,19 +22675,19 @@ pname = "ghc"; version = "20160108.901"; src = fetchFromGitHub { - owner = "kazu-yamamoto"; + owner = "DanielG"; repo = "ghc-mod"; - rev = "add699af4831b7b7df5d65ed7203427a125d1888"; - sha256 = "0lpxiqjyqsqjf36q3j078xcv10llljqyvm4knwgijd35axsxrcvf"; + rev = "c925e920a0b913d0c93f1400e416312bc73fcc14"; + sha256 = "19g2pq3l8zsd8c5r594071b610dsxch2wbprmw91myhydrvaz3zz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghc"; - sha256 = "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghc"; + sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5"; name = "ghc"; }; packageRequires = [ haskell-mode ]; meta = { - homepage = "http://melpa.org/#/ghc"; + homepage = "https://melpa.org/#/ghc"; license = lib.licenses.free; }; }) {}; @@ -21803,13 +22702,13 @@ sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghc-imported-from"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghc-imported-from"; sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5"; name = "ghc-imported-from"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ghc-imported-from"; + homepage = "https://melpa.org/#/ghc-imported-from"; license = lib.licenses.free; }; }) {}; @@ -21824,13 +22723,13 @@ sha256 = "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghci-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghci-completion"; sha256 = "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll"; name = "ghci-completion"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/ghci-completion"; + homepage = "https://melpa.org/#/ghci-completion"; license = lib.licenses.free; }; }) {}; @@ -21845,13 +22744,13 @@ sha256 = "0lcbyw6yrl6c8py5v2hqghcbsf9cbiplzil90al4lwqps7rw09a8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gherkin-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gherkin-mode"; sha256 = "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv"; name = "gherkin-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gherkin-mode"; + homepage = "https://melpa.org/#/gherkin-mode"; license = lib.licenses.free; }; }) {}; @@ -21866,13 +22765,13 @@ sha256 = "1aj5j0y244r1fbbbl0lzb53wnyhljw91kb4n3hi2gagm7zwp8jcf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghq"; sha256 = "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh"; name = "ghq"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ghq"; + homepage = "https://melpa.org/#/ghq"; license = lib.licenses.free; }; }) {}; @@ -21887,13 +22786,13 @@ sha256 = "1na8pp1g940zi22jgqi6drsm12db0hyw99v493i5j1p2y67c4hxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gildas-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gildas-mode"; sha256 = "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv"; name = "gildas-mode"; }; packageRequires = [ emacs polymode ]; meta = { - homepage = "http://melpa.org/#/gildas-mode"; + homepage = "https://melpa.org/#/gildas-mode"; license = lib.licenses.free; }; }) {}; @@ -21908,13 +22807,13 @@ sha256 = "18433gjhra0gqrwnxssd3njpxbvqhh64bds9rym1vq9l7w09z024"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gist"; sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3"; name = "gist"; }; packageRequires = [ emacs gh ]; meta = { - homepage = "http://melpa.org/#/gist"; + homepage = "https://melpa.org/#/gist"; license = lib.licenses.free; }; }) {}; @@ -21929,13 +22828,13 @@ sha256 = "0471xm0h6jkmxnrcqy5agq42i8immdb2qpnw7q7czrbsl521al8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git"; sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5"; name = "git"; }; packageRequires = [ dash f s ]; meta = { - homepage = "http://melpa.org/#/git"; + homepage = "https://melpa.org/#/git"; license = lib.licenses.free; }; }) {}; @@ -21950,13 +22849,13 @@ sha256 = "0d2blcnyqd1br7zhwprdxpx2jphjhsb4jgaw9dr4gvv0xdb2sr87"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-annex"; sha256 = "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l"; name = "git-annex"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/git-annex"; + homepage = "https://melpa.org/#/git-annex"; license = lib.licenses.free; }; }) {}; @@ -21971,13 +22870,13 @@ sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-auto-commit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-auto-commit-mode"; sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl"; name = "git-auto-commit-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/git-auto-commit-mode"; + homepage = "https://melpa.org/#/git-auto-commit-mode"; license = lib.licenses.free; }; }) {}; @@ -21992,13 +22891,13 @@ sha256 = "0g839pzmipjlv32r0gh166jn3na5d0wh2w1sia2k4yx1w0ch1bsx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-blame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-blame"; sha256 = "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06"; name = "git-blame"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/git-blame"; + homepage = "https://melpa.org/#/git-blame"; license = lib.licenses.free; }; }) {}; @@ -22013,34 +22912,34 @@ sha256 = "1irqmypgc4l1jlzj4g65ihpic3ffnnkcg1hlysj7qpip5nbflqgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-command"; sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg"; name = "git-command"; }; packageRequires = [ term-run with-editor ]; meta = { - homepage = "http://melpa.org/#/git-command"; + homepage = "https://melpa.org/#/git-command"; license = lib.licenses.free; }; }) {}; git-commit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }: melpaBuild { pname = "git-commit"; - version = "20160130.849"; + version = "20160425.630"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "08c61ea85ca62e8cc04c4e8a0a55a5d947a8d01f"; - sha256 = "18jk5bl30kncbc5n7sra5i0n4d57c2nd348kmw154xq1dc7w8b64"; + rev = "d1f678316f2c27e9677760938757b38168e36ebc"; + sha256 = "01pcx8bx07vqzd3b3rb3y4hgv8fhrlal7ayn0f70nr01f3v0gfl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-commit"; sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2"; name = "git-commit"; }; packageRequires = [ dash emacs with-editor ]; meta = { - homepage = "http://melpa.org/#/git-commit"; + homepage = "https://melpa.org/#/git-commit"; license = lib.licenses.free; }; }) {}; @@ -22055,13 +22954,13 @@ sha256 = "1vdyrqg2w5q4xmazqqh2ymjnrp9p1x5172nllwryz43jvvxaw05s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-commit-insert-issue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-commit-insert-issue"; sha256 = "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3"; name = "git-commit-insert-issue"; }; packageRequires = [ github-issues helm projectile s ]; meta = { - homepage = "http://melpa.org/#/git-commit-insert-issue"; + homepage = "https://melpa.org/#/git-commit-insert-issue"; license = lib.licenses.free; }; }) {}; @@ -22069,38 +22968,38 @@ pname = "git-dwim"; version = "20130130.1550"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/git-dwim.el"; + url = "https://www.emacswiki.org/emacs/download/git-dwim.el"; sha256 = "074k1r8rkvyhhwnqy4gnyd7shidxgc25l1xq4hmnwjn13nsyqfnv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-dwim"; sha256 = "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr"; name = "git-dwim"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/git-dwim"; + homepage = "https://melpa.org/#/git-dwim"; license = lib.licenses.free; }; }) {}; git-gutter = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-gutter"; - version = "20160210.228"; + version = "20160409.913"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-git-gutter"; - rev = "b680e11144863f67813cd8139bff7b13df9c6d8c"; - sha256 = "0h4ascd1ywfx9mjssl9py6xj7g4q6h4ab7g8y7dgbs6yzjjyhyn4"; + rev = "331643894d5be532b12e480d936014e2a9694f7d"; + sha256 = "1493302p60gxi15v9zcz0s3pac4w1x2zmxas1lvj9micv379khhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter"; sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg"; name = "git-gutter"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/git-gutter"; + homepage = "https://melpa.org/#/git-gutter"; license = lib.licenses.free; }; }) {}; @@ -22115,13 +23014,13 @@ sha256 = "0vc1da72vwlys723xi7xvv4ii43sjxgsywb2ss0l0kcm0rays6lv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter-fringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter-fringe"; sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z"; name = "git-gutter-fringe"; }; packageRequires = [ cl-lib emacs fringe-helper git-gutter ]; meta = { - homepage = "http://melpa.org/#/git-gutter-fringe"; + homepage = "https://melpa.org/#/git-gutter-fringe"; license = lib.licenses.free; }; }) {}; @@ -22136,13 +23035,13 @@ sha256 = "1rsj193zpblndki4khjjlwl2njxb329d42l75ki55msxifqrn4fi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter-fringe+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter-fringe+"; sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc"; name = "git-gutter-fringe-plus"; }; packageRequires = [ fringe-helper git-gutter-plus ]; meta = { - homepage = "http://melpa.org/#/git-gutter-fringe+"; + homepage = "https://melpa.org/#/git-gutter-fringe+"; license = lib.licenses.free; }; }) {}; @@ -22157,13 +23056,13 @@ sha256 = "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter+"; sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0"; name = "git-gutter-plus"; }; packageRequires = [ dash git-commit ]; meta = { - homepage = "http://melpa.org/#/git-gutter+"; + homepage = "https://melpa.org/#/git-gutter+"; license = lib.licenses.free; }; }) {}; @@ -22178,34 +23077,34 @@ sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-lens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-lens"; sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb"; name = "git-lens"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/git-lens"; + homepage = "https://melpa.org/#/git-lens"; license = lib.licenses.free; }; }) {}; git-link = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-link"; - version = "20150927.1225"; + version = "20160401.2050"; src = fetchFromGitHub { owner = "sshaw"; repo = "git-link"; - rev = "00a8ed924d837d43bfdc486ab389ee400b6c2a8f"; - sha256 = "1la3zzcjnmzgxkd4ljr9b5335ddbrvid47kfzp2s358xknzmbsdf"; + rev = "3cb4ced58c48d372230efd10ee4a7f55f54945ea"; + sha256 = "0a1kxdz05ly9wbzyxcb79xlmy11q38xplf5s8w8klmyajdn43g1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-link"; sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7"; name = "git-link"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/git-link"; + homepage = "https://melpa.org/#/git-link"; license = lib.licenses.free; }; }) {}; @@ -22220,13 +23119,13 @@ sha256 = "082g2gqbf8yjgvj2c32ix6j3wwba5fmgcyi75bf0q0bbg4ck5rab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-messenger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-messenger"; sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn"; name = "git-messenger"; }; packageRequires = [ cl-lib popup ]; meta = { - homepage = "http://melpa.org/#/git-messenger"; + homepage = "https://melpa.org/#/git-messenger"; license = lib.licenses.free; }; }) {}; @@ -22241,34 +23140,34 @@ sha256 = "1v0jk35ynfg9hivw9gdz2snk73pac67xlfx7av8argdcss1bmyb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-ps1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-ps1-mode"; sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6"; name = "git-ps1-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/git-ps1-mode"; + homepage = "https://melpa.org/#/git-ps1-mode"; license = lib.licenses.free; }; }) {}; git-timemachine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-timemachine"; - version = "20160120.616"; + version = "20160323.1440"; src = fetchFromGitHub { owner = "pidu"; repo = "git-timemachine"; - rev = "7c66a878ee89861dcd59b5dfc598520daa156052"; - sha256 = "1brz9dc7ngywndlxbqbi3pbjbjydgqc9bjzf05lgx0pzr1ppc3w3"; + rev = "2e1674b1b5f2fcc485e19bb259eb2e4ab51aa914"; + sha256 = "1iz5cy3fc7y56s4005syxnb1y3sn1q0s0nlpa01bnxksrfy5zahl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-timemachine"; sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq"; name = "git-timemachine"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/git-timemachine"; + homepage = "https://melpa.org/#/git-timemachine"; license = lib.licenses.free; }; }) {}; @@ -22283,34 +23182,34 @@ sha256 = "1ivnf4vsqk6c7iw1cid7q1hxp7047ajd1mpg0fl002d7m7ginhyl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-wip-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-wip-timemachine"; sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw"; name = "git-wip-timemachine"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/git-wip-timemachine"; + homepage = "https://melpa.org/#/git-wip-timemachine"; license = lib.licenses.free; }; }) {}; gitattributes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitattributes-mode"; - version = "20150330.1248"; + version = "20160319.502"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; - rev = "9d8f6eda6ee97963e4085da8988cad2c0547b8df"; - sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; + rev = "7ccc5de55fc370c328d7ec08de559e351b1ac94c"; + sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitattributes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitattributes-mode"; sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x"; name = "gitattributes-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gitattributes-mode"; + homepage = "https://melpa.org/#/gitattributes-mode"; license = lib.licenses.free; }; }) {}; @@ -22325,34 +23224,34 @@ sha256 = "184q3vsxa9rvhc1n57ms47r73f3zap25wswzi66rm6rmfi2k7678"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitconfig"; sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7"; name = "gitconfig"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gitconfig"; + homepage = "https://melpa.org/#/gitconfig"; license = lib.licenses.free; }; }) {}; gitconfig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitconfig-mode"; - version = "20150330.1248"; + version = "20160319.502"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; - rev = "9d8f6eda6ee97963e4085da8988cad2c0547b8df"; - sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; + rev = "7ccc5de55fc370c328d7ec08de559e351b1ac94c"; + sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitconfig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitconfig-mode"; sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1"; name = "gitconfig-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gitconfig-mode"; + homepage = "https://melpa.org/#/gitconfig-mode"; license = lib.licenses.free; }; }) {}; @@ -22367,13 +23266,13 @@ sha256 = "0i3dkm0j4gh21b7r5vxr6dddql5rj7lg8xlaairvild0ccf3bhdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-browse-file"; sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr"; name = "github-browse-file"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/github-browse-file"; + homepage = "https://melpa.org/#/github-browse-file"; license = lib.licenses.free; }; }) {}; @@ -22388,13 +23287,13 @@ sha256 = "000m6w2akx1z1lb32nvy6qzyggpcvlbdjh1i8419rzaidxf5gaxg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-clone"; sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9"; name = "github-clone"; }; packageRequires = [ emacs gh magit ]; meta = { - homepage = "http://melpa.org/#/github-clone"; + homepage = "https://melpa.org/#/github-clone"; license = lib.licenses.free; }; }) {}; @@ -22409,13 +23308,13 @@ sha256 = "065gpnllsk4x574fn9d6m4ajxl7mj5w2w5g9in421sp5r80fp9fv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-issues"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-issues"; sha256 = "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0"; name = "github-issues"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/github-issues"; + homepage = "https://melpa.org/#/github-issues"; license = lib.licenses.free; }; }) {}; @@ -22430,34 +23329,34 @@ sha256 = "11nfpy39xdkjxaxbfn8rppj4rcz57wl15gyibp01j9w7wmb5b4pr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-notifier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-notifier"; sha256 = "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw"; name = "github-notifier"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/github-notifier"; + homepage = "https://melpa.org/#/github-notifier"; license = lib.licenses.free; }; }) {}; gitignore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitignore-mode"; - version = "20150330.1248"; + version = "20160319.502"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; - rev = "9d8f6eda6ee97963e4085da8988cad2c0547b8df"; - sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; + rev = "7ccc5de55fc370c328d7ec08de559e351b1ac94c"; + sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitignore-mode"; sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn"; name = "gitignore-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gitignore-mode"; + homepage = "https://melpa.org/#/gitignore-mode"; license = lib.licenses.free; }; }) {}; @@ -22472,13 +23371,13 @@ sha256 = "00mma30r7ixbrxjmmddz4klh517fcr3yn6ss4zw33fh2hzj3w6rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitlab"; sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq"; name = "gitlab"; }; packageRequires = [ dash pkg-info request s ]; meta = { - homepage = "http://melpa.org/#/gitlab"; + homepage = "https://melpa.org/#/gitlab"; license = lib.licenses.free; }; }) {}; @@ -22493,13 +23392,13 @@ sha256 = "1h66wywhl5ipryx0s0w1vxp3ydg57zpizjz61wvf6qd8zn07nhng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitolite-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitolite-clone"; sha256 = "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac"; name = "gitolite-clone"; }; packageRequires = [ dash emacs pcache s ]; meta = { - homepage = "http://melpa.org/#/gitolite-clone"; + homepage = "https://melpa.org/#/gitolite-clone"; license = lib.licenses.free; }; }) {}; @@ -22514,13 +23413,13 @@ sha256 = "0y8msn22lzfwh7d417abay9by2zhs9zswhcj8a0l7ln2ksljl500"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitty"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitty"; sha256 = "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16"; name = "gitty"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gitty"; + homepage = "https://melpa.org/#/gitty"; license = lib.licenses.free; }; }) {}; @@ -22535,13 +23434,13 @@ sha256 = "14ziljq34k585scwn606hqbkcvy8h1iylsc4h2n1grfmm8ilf0ws"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/glsl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/glsl-mode"; sha256 = "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5"; name = "glsl-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/glsl-mode"; + homepage = "https://melpa.org/#/glsl-mode"; license = lib.licenses.free; }; }) {}; @@ -22556,13 +23455,13 @@ sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmail-message-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmail-message-mode"; sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk"; name = "gmail-message-mode"; }; packageRequires = [ ham-mode ]; meta = { - homepage = "http://melpa.org/#/gmail-message-mode"; + homepage = "https://melpa.org/#/gmail-message-mode"; license = lib.licenses.free; }; }) {}; @@ -22577,13 +23476,13 @@ sha256 = "01hhanijqlh741f9wh6xn88qvghwqnfj5j0rvys5mghssfspqs3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmail2bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmail2bbdb"; sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j"; name = "gmail2bbdb"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gmail2bbdb"; + homepage = "https://melpa.org/#/gmail2bbdb"; license = lib.licenses.free; }; }) {}; @@ -22598,13 +23497,13 @@ sha256 = "08d6j5wws2ngngf3p31ic0lrsrp9i9lkpr3nxgmiiadm617x8hv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmpl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmpl-mode"; sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz"; name = "gmpl-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/gmpl-mode"; + homepage = "https://melpa.org/#/gmpl-mode"; license = lib.licenses.free; }; }) {}; @@ -22619,13 +23518,13 @@ sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnome-calendar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnome-calendar"; sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6"; name = "gnome-calendar"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gnome-calendar"; + homepage = "https://melpa.org/#/gnome-calendar"; license = lib.licenses.free; }; }) {}; @@ -22640,13 +23539,13 @@ sha256 = "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnomenm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnomenm"; sha256 = "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm"; name = "gnomenm"; }; packageRequires = [ dash kv s ]; meta = { - homepage = "http://melpa.org/#/gnomenm"; + homepage = "https://melpa.org/#/gnomenm"; license = lib.licenses.free; }; }) {}; @@ -22661,34 +23560,34 @@ sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gntp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gntp"; sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f"; name = "gntp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gntp"; + homepage = "https://melpa.org/#/gntp"; license = lib.licenses.free; }; }) {}; gnu-apl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnu-apl-mode"; - version = "20151224.1059"; + version = "20160306.2106"; src = fetchFromGitHub { owner = "lokedhs"; repo = "gnu-apl-mode"; - rev = "fb1686403e4842b6f44eebe80e5acf86a5151d88"; - sha256 = "1dfkjzx33wzafj9cfm1bpj99bmnq5a8qrvzmhjykr7mfkca79ymz"; + rev = "8fd695391c7668c8e11519b80deed73d3a9ce597"; + sha256 = "0vgamjc5qr968i96xdd75p6589f9xvx5b4yv6j19ypnyw8d0fnq6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnu-apl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnu-apl-mode"; sha256 = "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6"; name = "gnu-apl-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/gnu-apl-mode"; + homepage = "https://melpa.org/#/gnu-apl-mode"; license = lib.licenses.free; }; }) {}; @@ -22703,13 +23602,13 @@ sha256 = "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnuplot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnuplot"; sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds"; name = "gnuplot"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gnuplot"; + homepage = "https://melpa.org/#/gnuplot"; license = lib.licenses.free; }; }) {}; @@ -22724,13 +23623,13 @@ sha256 = "1pss9a60dh6i277pkp8j5g1v5h7qlh11w2fki50qcp0zglyw1kaq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnuplot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnuplot-mode"; sha256 = "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg"; name = "gnuplot-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gnuplot-mode"; + homepage = "https://melpa.org/#/gnuplot-mode"; license = lib.licenses.free; }; }) {}; @@ -22745,13 +23644,13 @@ sha256 = "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-alias"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-alias"; sha256 = "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf"; name = "gnus-alias"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gnus-alias"; + homepage = "https://melpa.org/#/gnus-alias"; license = lib.licenses.free; }; }) {}; @@ -22761,18 +23660,18 @@ version = "20160210.447"; src = fetchFromGitHub { owner = "wavexx"; - repo = "gnus-desktop-notify"; + repo = "gnus-desktop-notify.el"; rev = "c363af85f341cc878d6c0be53fd32efa8ca9423b"; sha256 = "1zizmxjf55bkm9agmrym80h2mnyvpc9bamkjy2azs42fqgi9pqjn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-desktop-notify"; - sha256 = "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-desktop-notify"; + sha256 = "08k32vhdp6i8c03rp1k6b5jmvj5ijplj26mdblrgasklcqbdnlfs"; name = "gnus-desktop-notify"; }; packageRequires = [ gnus ]; meta = { - homepage = "http://melpa.org/#/gnus-desktop-notify"; + homepage = "https://melpa.org/#/gnus-desktop-notify"; license = lib.licenses.free; }; }) {}; @@ -22780,38 +23679,38 @@ pname = "gnus-spotlight"; version = "20130901.935"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/gnus-spotlight.el"; + url = "https://www.emacswiki.org/emacs/download/gnus-spotlight.el"; sha256 = "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-spotlight"; sha256 = "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx"; name = "gnus-spotlight"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gnus-spotlight"; + homepage = "https://melpa.org/#/gnus-spotlight"; license = lib.licenses.free; }; }) {}; gnus-summary-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnus-summary-ext"; - version = "20150119.2033"; + version = "20160301.2134"; src = fetchFromGitHub { owner = "vapniks"; repo = "gnus-summary-ext"; - rev = "6be01a82819dc73b0650d726e17d0adb44b72c2b"; - sha256 = "1dzb3h5swvmwwy7x1lhz79cq2kpmamk35jb4dwmmxz6j248kmv6b"; + rev = "9c0f410f9d3c94a7b35752a83835c0715ecb45ac"; + sha256 = "0csr5nd8lgn9yzqw1vxrvww8af6nf419ab9zh3y2rc0rr47plz94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-summary-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-summary-ext"; sha256 = "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf"; name = "gnus-summary-ext"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gnus-summary-ext"; + homepage = "https://melpa.org/#/gnus-summary-ext"; license = lib.licenses.free; }; }) {}; @@ -22826,13 +23725,13 @@ sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-x-gm-raw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-x-gm-raw"; sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg"; name = "gnus-x-gm-raw"; }; packageRequires = [ log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/gnus-x-gm-raw"; + homepage = "https://melpa.org/#/gnus-x-gm-raw"; license = lib.licenses.free; }; }) {}; @@ -22843,17 +23742,17 @@ src = fetchFromGitHub { owner = "nsf"; repo = "gocode"; - rev = "659c0a429af764118d27692d02b77c544a32cfe3"; - sha256 = "1gfad94acp7qxm6yg0prjfkx370caq309zc8dy20ssi4x19j4n0x"; + rev = "3b7488f4e4c234abbea9c5ff313a3a7139fc56e8"; + sha256 = "0sw12mzgxq5nh7yzkzzpca3y4chd2i81amzynlaz46ci16wa6gpb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-autocomplete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-autocomplete"; sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a"; name = "go-autocomplete"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/go-autocomplete"; + homepage = "https://melpa.org/#/go-autocomplete"; license = lib.licenses.free; }; }) {}; @@ -22868,13 +23767,13 @@ sha256 = "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-complete"; sha256 = "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4"; name = "go-complete"; }; packageRequires = [ cl-lib go-mode ]; meta = { - homepage = "http://melpa.org/#/go-complete"; + homepage = "https://melpa.org/#/go-complete"; license = lib.licenses.free; }; }) {}; @@ -22889,13 +23788,13 @@ sha256 = "09rxz40bkr0l75v3lmf8lcwqsgjiv5c8zjmwzy2d4syj4qv69c5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-direx"; sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7"; name = "go-direx"; }; packageRequires = [ cl-lib direx ]; meta = { - homepage = "http://melpa.org/#/go-direx"; + homepage = "https://melpa.org/#/go-direx"; license = lib.licenses.free; }; }) {}; @@ -22910,34 +23809,34 @@ sha256 = "0wha1h5mnnh3nsiaf5q1drrvk1gj2cn18bapi8ysy5jdpzi4xqsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-dlv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-dlv"; sha256 = "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i"; name = "go-dlv"; }; packageRequires = [ go-mode ]; meta = { - homepage = "http://melpa.org/#/go-dlv"; + homepage = "https://melpa.org/#/go-dlv"; license = lib.licenses.free; }; }) {}; go-eldoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-eldoc"; - version = "20160217.2131"; + version = "20160307.816"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-go-eldoc"; - rev = "ef18dd32e76cab22f17a704943338ffddf283791"; - sha256 = "1y4zrslmvg88c1q1asf9g509w69cyr3zgknfakdd98xrgfbg580n"; + rev = "ebf17e486bb64af494278f851f674303c954432c"; + sha256 = "1n5fnlfq9cy9rbn2hizqqsy0iryw5g2blaa7nd75ya03gxm10p8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-eldoc"; sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk"; name = "go-eldoc"; }; packageRequires = [ cl-lib go-mode ]; meta = { - homepage = "http://melpa.org/#/go-eldoc"; + homepage = "https://melpa.org/#/go-eldoc"; license = lib.licenses.free; }; }) {}; @@ -22952,55 +23851,117 @@ sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-errcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-errcheck"; sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs"; name = "go-errcheck"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/go-errcheck"; + homepage = "https://melpa.org/#/go-errcheck"; + license = lib.licenses.free; + }; + }) {}; + go-gopath = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "go-gopath"; + version = "20160311.248"; + src = fetchFromGitHub { + owner = "iced"; + repo = "go-gopath"; + rev = "573bcad96a8c13ed996196a395b4da1e84ed0337"; + sha256 = "1hfyxf07m73jf8zca8dna3w828ypvx8a3p70f8nfr5mijy4q3i4c"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-gopath"; + sha256 = "0jfy2r3axqpn2cnibp8f9vw36kmx0icixhj6zy43d9xa4znvdqal"; + name = "go-gopath"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/go-gopath"; + license = lib.licenses.free; + }; + }) {}; + go-guru = callPackage ({ cl-lib ? null, fetchgit, fetchurl, go-mode, lib, melpaBuild }: + melpaBuild { + pname = "go-guru"; + version = "20160417.1315"; + src = fetchgit { + url = "https://go.googlesource.com/tools"; + rev = "4e3242e000c9086052d8d700ca255d64e2b9fdfb"; + sha256 = "0i4cdmh701vdxjykc3vndri2syg0hvgf4nma5kmyzzxc4g0zrr9s"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-guru"; + sha256 = "0c62rvsfqcx2g02iwaga2zp1266w0zhkc73ihpi0iq7cd6nr4wn0"; + name = "go-guru"; + }; + packageRequires = [ cl-lib go-mode ]; + meta = { + homepage = "https://melpa.org/#/go-guru"; + license = lib.licenses.free; + }; + }) {}; + go-impl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "go-impl"; + version = "20160320.1716"; + src = fetchFromGitHub { + owner = "dominikh"; + repo = "go-impl.el"; + rev = "d4b7f4575360d560609e735bfaa65b691fa9df40"; + sha256 = "199aa2crddx2a5lvl0wrzylzdc23rcm3wcbbwas17ary3gl4z8jg"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-impl"; + sha256 = "0yhcl6y26s4wxaa3jj8d13i4zr879kp1lwnhlnqskpq8l8n3nmpz"; + name = "go-impl"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/go-impl"; license = lib.licenses.free; }; }) {}; go-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-mode"; - version = "20160220.1951"; + version = "20160404.202"; src = fetchFromGitHub { owner = "dominikh"; repo = "go-mode.el"; - rev = "27b74155dc2896a1809c905a7326b1d6d36014f3"; - sha256 = "1x29shbz3hmljr92f07kpplj2hpyz64c4miy11a20xlymixchnzb"; + rev = "b7675005349d5faaf6c6cf3d4322309f6c94b90c"; + sha256 = "1lx7bf962zf4zg7ly99v1cjgcaf8555z451jlr27bdvw6panv98s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-mode"; sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx"; name = "go-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/go-mode"; + homepage = "https://melpa.org/#/go-mode"; license = lib.licenses.free; }; }) {}; go-playground = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, gotest, lib, melpaBuild }: melpaBuild { pname = "go-playground"; - version = "20151031.1610"; + version = "20160424.1049"; src = fetchFromGitHub { owner = "grafov"; repo = "go-playground"; - rev = "6de119fe6d1ecb8db2dad1f70831561695c5da58"; - sha256 = "1hpxvp0slqafbxhkashnmfjssb0ccjq67x01b4p7gznf6rwji166"; + rev = "1f8afea9315228ea0951cc400e9b43eeb6a7edab"; + sha256 = "02a0pzm6xv6yxl2wzmv04k95lcyik16b1vgpk1kfv7vfx1bfdm8x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-playground"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-playground"; sha256 = "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6"; name = "go-playground"; }; packageRequires = [ emacs go-mode gotest ]; meta = { - homepage = "http://melpa.org/#/go-playground"; + homepage = "https://melpa.org/#/go-playground"; license = lib.licenses.free; }; }) {}; @@ -23015,54 +23976,54 @@ sha256 = "0xm3v6snsxv1x8i4jdq3k2aax7v1xm4zvgc9khabwhc2y63xja46"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-playground-cli"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-playground-cli"; sha256 = "00h89rh8d7lq1di77nv609xbzxmjmffq6mz3cmagylxncflg81jc"; name = "go-playground-cli"; }; packageRequires = [ cl-lib deferred emacs f let-alist names request s ]; meta = { - homepage = "http://melpa.org/#/go-playground-cli"; + homepage = "https://melpa.org/#/go-playground-cli"; license = lib.licenses.free; }; }) {}; - go-projectile = callPackage ({ fetchFromGitHub, fetchurl, go-eldoc, go-mode, go-rename, lib, melpaBuild, projectile }: + go-projectile = callPackage ({ fetchFromGitHub, fetchurl, go-eldoc, go-guru, go-mode, go-rename, lib, melpaBuild, projectile }: melpaBuild { pname = "go-projectile"; - version = "20151215.1058"; + version = "20160418.1817"; src = fetchFromGitHub { owner = "dougm"; repo = "go-projectile"; - rev = "0a974097ef74b6045585c6120309c208b002f6e6"; - sha256 = "16n8655i7qidakxijymx1n84pnkn3hxpj7lsr901j03blxdrij5y"; + rev = "0c36c5abd1510a2b35bab2b8b36fcd4a26a8d05c"; + sha256 = "0010dgkk521pn4cwir5lvkxxzfzzw2nyz1cr5zx1h1ahxvhrzsqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-projectile"; sha256 = "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml"; name = "go-projectile"; }; - packageRequires = [ go-eldoc go-mode go-rename projectile ]; + packageRequires = [ go-eldoc go-guru go-mode go-rename projectile ]; meta = { - homepage = "http://melpa.org/#/go-projectile"; + homepage = "https://melpa.org/#/go-projectile"; license = lib.licenses.free; }; }) {}; go-rename = callPackage ({ fetchgit, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-rename"; - version = "20151027.838"; + version = "20160307.944"; src = fetchgit { url = "https://go.googlesource.com/tools"; - rev = "86372b3255bd23c074d3112bdb87052e725463ed"; - sha256 = "b57e416275e60520686e1f40df43ac646b19e84723e93619497d6800d9d21a4f"; + rev = "4e3242e000c9086052d8d700ca255d64e2b9fdfb"; + sha256 = "0i4cdmh701vdxjykc3vndri2syg0hvgf4nma5kmyzzxc4g0zrr9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-rename"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-rename"; sha256 = "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah"; name = "go-rename"; }; packageRequires = [ go-mode ]; meta = { - homepage = "http://melpa.org/#/go-rename"; + homepage = "https://melpa.org/#/go-rename"; license = lib.licenses.free; }; }) {}; @@ -23077,13 +24038,13 @@ sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-scratch"; sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5"; name = "go-scratch"; }; packageRequires = [ emacs go-mode ]; meta = { - homepage = "http://melpa.org/#/go-scratch"; + homepage = "https://melpa.org/#/go-scratch"; license = lib.licenses.free; }; }) {}; @@ -23098,13 +24059,13 @@ sha256 = "0di6xwpl6pi0430q208gliz8dgrzwqnmp997q7xcczbkk8zfwn0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-snippets"; sha256 = "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn"; name = "go-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/go-snippets"; + homepage = "https://melpa.org/#/go-snippets"; license = lib.licenses.free; }; }) {}; @@ -23119,13 +24080,13 @@ sha256 = "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-stacktracer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-stacktracer"; sha256 = "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy"; name = "go-stacktracer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/go-stacktracer"; + homepage = "https://melpa.org/#/go-stacktracer"; license = lib.licenses.free; }; }) {}; @@ -23140,13 +24101,13 @@ sha256 = "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/god-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/god-mode"; sha256 = "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa"; name = "god-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/god-mode"; + homepage = "https://melpa.org/#/god-mode"; license = lib.licenses.free; }; }) {}; @@ -23161,13 +24122,13 @@ sha256 = "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gold-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gold-mode"; sha256 = "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf"; name = "gold-mode"; }; packageRequires = [ sws-mode ]; meta = { - homepage = "http://melpa.org/#/gold-mode"; + homepage = "https://melpa.org/#/gold-mode"; license = lib.licenses.free; }; }) {}; @@ -23182,13 +24143,13 @@ sha256 = "0wdw89n7ngxpcdigv8c01h4i84hsdh0y7xq6jdj1i6mnajl8gk92"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/golden-ratio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/golden-ratio"; sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81"; name = "golden-ratio"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/golden-ratio"; + homepage = "https://melpa.org/#/golden-ratio"; license = lib.licenses.free; }; }) {}; @@ -23203,13 +24164,13 @@ sha256 = "18a7dv8yshspyq4bi30j0l4ap9qp696syfc29mgvly4xyqh9x4qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/golden-ratio-scroll-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/golden-ratio-scroll-screen"; sha256 = "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5"; name = "golden-ratio-scroll-screen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/golden-ratio-scroll-screen"; + homepage = "https://melpa.org/#/golden-ratio-scroll-screen"; license = lib.licenses.free; }; }) {}; @@ -23220,17 +24181,17 @@ src = fetchFromGitHub { owner = "golang"; repo = "lint"; - rev = "32a87160691b3c96046c0c678fe57c5bef761456"; - sha256 = "16lghkdi0rd7l1fph0a254k6axxivmpmc6grx4ryvza3f4yf7483"; + rev = "8f348af5e29faa4262efdc14302797f23774e477"; + sha256 = "1xz53lak1gswgzh05d687crjzbw7lz3pm0ggwsvmsqwwsdwiwavw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/golint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/golint"; sha256 = "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb"; name = "golint"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/golint"; + homepage = "https://melpa.org/#/golint"; license = lib.licenses.free; }; }) {}; @@ -23245,34 +24206,34 @@ sha256 = "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gom-mode"; sha256 = "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m"; name = "gom-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gom-mode"; + homepage = "https://melpa.org/#/gom-mode"; license = lib.licenses.free; }; }) {}; google = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google"; - version = "20140330.1056"; + version = "20140416.1248"; src = fetchFromGitHub { - owner = "steckerhalter"; + owner = "hober"; repo = "google-el"; - rev = "1ec11138bdd237e668ced1470c54f740e6c629a4"; + rev = "3b3189a8b201c8d36fed6e61496274e530dd40bd"; sha256 = "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google"; - sha256 = "15z8l3adw8il0simk8phjgksh0v88cffb6gg3hv8a7nf5bla43my"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google"; + sha256 = "11a521cq5bj7afl7bqiilg0c81dy00lnhak7h3d9c9kwg7kfljiq"; name = "google"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/google"; + homepage = "https://melpa.org/#/google"; license = lib.licenses.free; }; }) {}; @@ -23283,17 +24244,17 @@ src = fetchFromGitHub { owner = "google"; repo = "styleguide"; - rev = "b43afc71a5ae4a2585a583333b45ce664cd2c3c6"; - sha256 = "0ksbrnca7zyapz874m4kvfvzv7m30d08gpqdi50q8v5197b1h0rv"; + rev = "8c09ccf840eab50b1323c931668661ac357fa08c"; + sha256 = "0jspkl67c8l5hdayl1bs8hq5h8i63ai2bxxnl6qd1hlicfypy3zi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-c-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-c-style"; sha256 = "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r"; name = "google-c-style"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/google-c-style"; + homepage = "https://melpa.org/#/google-c-style"; license = lib.licenses.free; }; }) {}; @@ -23308,13 +24269,13 @@ sha256 = "1h7nj570drp2l9x6475gwzcjrp75ms8dkixa7qsgszjdk58qyhnb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-contacts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-contacts"; sha256 = "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn"; name = "google-contacts"; }; packageRequires = [ oauth2 ]; meta = { - homepage = "http://melpa.org/#/google-contacts"; + homepage = "https://melpa.org/#/google-contacts"; license = lib.licenses.free; }; }) {}; @@ -23329,13 +24290,13 @@ sha256 = "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-maps"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-maps"; sha256 = "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx"; name = "google-maps"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/google-maps"; + homepage = "https://melpa.org/#/google-maps"; license = lib.licenses.free; }; }) {}; @@ -23350,13 +24311,13 @@ sha256 = "0r6hngf3h5x55lk2qwfgd6bhjhkax5nz8ml43d1x23y5bjnrricq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-this"; sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c"; name = "google-this"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/google-this"; + homepage = "https://melpa.org/#/google-this"; license = lib.licenses.free; }; }) {}; @@ -23371,13 +24332,34 @@ sha256 = "0hvxyqkxv5hfsa9sv71m7d98g25a1xc962r961nw6vmbvsf64z6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-translate"; sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47"; name = "google-translate"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/google-translate"; + homepage = "https://melpa.org/#/google-translate"; + license = lib.licenses.free; + }; + }) {}; + goose-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "goose-theme"; + version = "20160401.33"; + src = fetchFromGitHub { + owner = "thwg"; + repo = "goose-theme"; + rev = "7112c459fc1a6aea9b0ab47a0ac774a8892ccaed"; + sha256 = "1ms5f6imzw5klxi1mqqjxgb02iflvpam8cfxii3ljcr4fz093m4h"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goose-theme"; + sha256 = "18kfz61mhf8pvp3z5cdvjklla9p840p1dazylrgjb1g5hdwqw0n9"; + name = "goose-theme"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/goose-theme"; license = lib.licenses.free; }; }) {}; @@ -23392,13 +24374,13 @@ sha256 = "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gore-mode"; sha256 = "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3"; name = "gore-mode"; }; packageRequires = [ go-mode ]; meta = { - homepage = "http://melpa.org/#/gore-mode"; + homepage = "https://melpa.org/#/gore-mode"; license = lib.licenses.free; }; }) {}; @@ -23413,55 +24395,55 @@ sha256 = "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gorepl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gorepl-mode"; sha256 = "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl"; name = "gorepl-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/gorepl-mode"; + homepage = "https://melpa.org/#/gorepl-mode"; license = lib.licenses.free; }; }) {}; gotest = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }: melpaBuild { pname = "gotest"; - version = "20160125.800"; + version = "20160414.325"; src = fetchFromGitHub { owner = "nlamirault"; repo = "gotest.el"; - rev = "57f894e68b47352aeacaf0d9c61039b24ba42918"; - sha256 = "0vf42j9jpa75879pxb1h7qgflcrrg78dgq5lg8v0sbpy7z86zaxr"; + rev = "c7ead398b69ab25db695f5dab73ceaa0aba572fa"; + sha256 = "1idhnsl8vkq3v3nbvhkmxmvgqp97aycxvmkj7894mj9hvhib68l9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gotest"; sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9"; name = "gotest"; }; packageRequires = [ emacs f go-mode s ]; meta = { - homepage = "http://melpa.org/#/gotest"; + homepage = "https://melpa.org/#/gotest"; license = lib.licenses.free; }; }) {}; gotham-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gotham-theme"; - version = "20160102.1654"; + version = "20160414.1335"; src = fetchFromGitHub { owner = "wasamasa"; repo = "gotham-theme"; - rev = "3cc07bd3cf1406d41cfc0a422673d524d52c22d3"; - sha256 = "12lglll20w321vvl6zpqd8r9745y58g6zzfm83iifyzd9hzx7v30"; + rev = "25e2a3af8a8cc786b1b03e27a5eec6bf0537cb14"; + sha256 = "0b52aib5m6n76fd814yigipnsfsrx2qpyckfra8hfc04zwx2hhlr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gotham-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gotham-theme"; sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl"; name = "gotham-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gotham-theme"; + homepage = "https://melpa.org/#/gotham-theme"; license = lib.licenses.free; }; }) {}; @@ -23469,17 +24451,17 @@ pname = "goto-chg"; version = "20131228.859"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/goto-chg.el"; + url = "https://www.emacswiki.org/emacs/download/goto-chg.el"; sha256 = "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/goto-chg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goto-chg"; sha256 = "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv"; name = "goto-chg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/goto-chg"; + homepage = "https://melpa.org/#/goto-chg"; license = lib.licenses.free; }; }) {}; @@ -23494,13 +24476,13 @@ sha256 = "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/goto-gem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goto-gem"; sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a"; name = "goto-gem"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/goto-gem"; + homepage = "https://melpa.org/#/goto-gem"; license = lib.licenses.free; }; }) {}; @@ -23515,13 +24497,13 @@ sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/goto-last-change"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goto-last-change"; sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx"; name = "goto-last-change"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/goto-last-change"; + homepage = "https://melpa.org/#/goto-last-change"; license = lib.licenses.free; }; }) {}; @@ -23532,17 +24514,17 @@ src = fetchFromGitHub { owner = "vmware"; repo = "govmomi"; - rev = "227420a68c86f8890c8c768fd908e1ef3a816702"; - sha256 = "0hm5w34z6wghmaf4d6j9pzcbpz6nsmz6xwzx6rd1gr73v5marayp"; + rev = "68d94eefbead1504e260ecfaeae0d76ba0a143f2"; + sha256 = "0m23i2gci38ch562vfm21az55m19ahagz556mv4g6cw4ab996pga"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/govc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/govc"; sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v"; name = "govc"; }; packageRequires = [ dash emacs json-mode magit-popup s ]; meta = { - homepage = "http://melpa.org/#/govc"; + homepage = "https://melpa.org/#/govc"; license = lib.licenses.free; }; }) {}; @@ -23557,13 +24539,13 @@ sha256 = "1fzf43my7qs4n37yh1jm6fyp76dfgknc5g4zin7x5b5lc63g0wxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/govet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/govet"; sha256 = "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy"; name = "govet"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/govet"; + homepage = "https://melpa.org/#/govet"; license = lib.licenses.free; }; }) {}; @@ -23578,13 +24560,13 @@ sha256 = "1l43h008l7n6waclb2km32dy8aj7m5yavm1pkq38p9ppzayfxqq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gplusify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gplusify"; sha256 = "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr"; name = "gplusify"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gplusify"; + homepage = "https://melpa.org/#/gplusify"; license = lib.licenses.free; }; }) {}; @@ -23599,13 +24581,34 @@ sha256 = "0xs2278gamzg0710bm1fkhjh1p75m2l1jcl98ldhyjhvaf9d0ysc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gradle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gradle-mode"; sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g"; name = "gradle-mode"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/gradle-mode"; + homepage = "https://melpa.org/#/gradle-mode"; + license = lib.licenses.free; + }; + }) {}; + grails = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "grails"; + version = "20160417.136"; + src = fetchFromGitHub { + owner = "lifeisfoo"; + repo = "emacs-grails"; + rev = "fa638abe5c37f3f8af4fcd32f212453185ce50b1"; + sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grails"; + sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw"; + name = "grails"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/grails"; license = lib.licenses.free; }; }) {}; @@ -23620,34 +24623,34 @@ sha256 = "0gvz0zdpspl8dhsm17f0q9020ayvxmgmm15yy7hnl4z0xrv9yvjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grails-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grails-mode"; sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4"; name = "grails-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/grails-mode"; + homepage = "https://melpa.org/#/grails-mode"; license = lib.licenses.free; }; }) {}; grails-projectile-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "grails-projectile-mode"; - version = "20141229.1329"; + version = "20160327.824"; src = fetchFromGitHub { owner = "yveszoundi"; repo = "grails-projectile-mode"; - rev = "6cb3b7890ce869a911a7b1d5892a6eef7992c199"; - sha256 = "11ry4p5r0hg3jlmfhp6hfkryzrp6snl38v8j7ds8limhbpdh5wr4"; + rev = "8efca50ce92b556fe9d467b157d7aec635bcc017"; + sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grails-projectile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grails-projectile-mode"; sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn"; name = "grails-projectile-mode"; }; packageRequires = [ cl-lib emacs projectile ]; meta = { - homepage = "http://melpa.org/#/grails-projectile-mode"; + homepage = "https://melpa.org/#/grails-projectile-mode"; license = lib.licenses.free; }; }) {}; @@ -23658,17 +24661,17 @@ src = fetchFromGitHub { owner = "steckerhalter"; repo = "grandshell-theme"; - rev = "6bf34fb1a3117244629a7fb23daf610f50854bed"; - sha256 = "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs"; + rev = "2ca20ace2fc9757ebf4e0acf8b08dfd819163667"; + sha256 = "0803j6r447br0nszzcy6pc65l53j871icyr91dd7x10xi7ygw0lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grandshell-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grandshell-theme"; sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa"; name = "grandshell-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/grandshell-theme"; + homepage = "https://melpa.org/#/grandshell-theme"; license = lib.licenses.free; }; }) {}; @@ -23683,7 +24686,7 @@ sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphene"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphene"; sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k"; name = "graphene"; }; @@ -23701,7 +24704,7 @@ web-mode ]; meta = { - homepage = "http://melpa.org/#/graphene"; + homepage = "https://melpa.org/#/graphene"; license = lib.licenses.free; }; }) {}; @@ -23716,13 +24719,13 @@ sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphene-meta-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphene-meta-theme"; sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q"; name = "graphene-meta-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/graphene-meta-theme"; + homepage = "https://melpa.org/#/graphene-meta-theme"; license = lib.licenses.free; }; }) {}; @@ -23737,13 +24740,13 @@ sha256 = "12r6a3hikzqcdbplmraa4p4w136c006yamylxfjf8580v15xngrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphviz-dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphviz-dot-mode"; sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2"; name = "graphviz-dot-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/graphviz-dot-mode"; + homepage = "https://melpa.org/#/graphviz-dot-mode"; license = lib.licenses.free; }; }) {}; @@ -23758,33 +24761,33 @@ sha256 = "0nvl8mh7jxailisq31h5bi64s9b74ah1465wiwh18x502swr2s3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grapnel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grapnel"; sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r"; name = "grapnel"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/grapnel"; + homepage = "https://melpa.org/#/grapnel"; license = lib.licenses.free; }; }) {}; grass-mode = callPackage ({ cl-lib ? null, dash, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grass-mode"; - version = "20151030.1120"; + version = "20160317.814"; src = fetchhg { url = "https://bitbucket.com/tws/grass-mode.el"; - rev = "aa8cc5eff764"; - sha256 = "0djv2ps2ahw9b1b5i45hgy7l7cch7cgh7rzq601c0r6vi7gm2ac5"; + rev = "25414dff1fc5"; + sha256 = "0mnwmsn078hz317xfz6c05r7narx3k8956v1ajz5myxx8xrcr24z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grass-mode"; sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v"; name = "grass-mode"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/grass-mode"; + homepage = "https://melpa.org/#/grass-mode"; license = lib.licenses.free; }; }) {}; @@ -23799,13 +24802,13 @@ sha256 = "0rgv96caigcjffg1983274p4ff1icx1xh5bj7rcd53hai5ag16mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/green-phosphor-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/green-phosphor-theme"; sha256 = "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh"; name = "green-phosphor-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/green-phosphor-theme"; + homepage = "https://melpa.org/#/green-phosphor-theme"; license = lib.licenses.free; }; }) {}; @@ -23820,13 +24823,13 @@ sha256 = "1670pxgmqflzw5d02mzsmqjf3gp0c4wf25z0crmaamyfmwdz9pag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gregorio-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gregorio-mode"; sha256 = "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx"; name = "gregorio-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gregorio-mode"; + homepage = "https://melpa.org/#/gregorio-mode"; license = lib.licenses.free; }; }) {}; @@ -23841,13 +24844,13 @@ sha256 = "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grep-a-lot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grep-a-lot"; sha256 = "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1"; name = "grep-a-lot"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/grep-a-lot"; + homepage = "https://melpa.org/#/grep-a-lot"; license = lib.licenses.free; }; }) {}; @@ -23855,17 +24858,17 @@ pname = "grep-plus"; version = "20160212.825"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/grep+.el"; + url = "https://www.emacswiki.org/emacs/download/grep+.el"; sha256 = "08jl4xhh25znyc6cm7288x4b55pykrpcsyym78fdlrw3xxr77cxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grep+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grep+"; sha256 = "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx"; name = "grep-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/grep+"; + homepage = "https://melpa.org/#/grep+"; license = lib.licenses.free; }; }) {}; @@ -23880,13 +24883,13 @@ sha256 = "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/greymatters-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/greymatters-theme"; sha256 = "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr"; name = "greymatters-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/greymatters-theme"; + homepage = "https://melpa.org/#/greymatters-theme"; license = lib.licenses.free; }; }) {}; @@ -23899,13 +24902,13 @@ sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grin"; sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk"; name = "grin"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/grin"; + homepage = "https://melpa.org/#/grin"; license = lib.licenses.free; }; }) {}; @@ -23914,19 +24917,19 @@ pname = "grizzl"; version = "20160131.151"; src = fetchFromGitHub { - owner = "d11wtq"; + owner = "grizzl"; repo = "grizzl"; rev = "b0996a9e2e5f6a9c4327ba7665ab29b633e404eb"; sha256 = "1d2kwiq3zy8wdg5zig0q9rrdcs4xdv6zsgvgc21b3kv83daq1dsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grizzl"; - sha256 = "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grizzl"; + sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb"; name = "grizzl"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/grizzl"; + homepage = "https://melpa.org/#/grizzl"; license = lib.licenses.free; }; }) {}; @@ -23941,55 +24944,55 @@ sha256 = "0gvz0zdpspl8dhsm17f0q9020ayvxmgmm15yy7hnl4z0xrv9yvjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/groovy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/groovy-mode"; sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal"; name = "groovy-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/groovy-mode"; + homepage = "https://melpa.org/#/groovy-mode"; license = lib.licenses.free; }; }) {}; gruber-darker-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gruber-darker-theme"; - version = "20160209.416"; + version = "20160417.630"; src = fetchFromGitHub { owner = "rexim"; repo = "gruber-darker-theme"; - rev = "87bb44be343676b622dd7fb7f09e2861b21e2346"; - sha256 = "0mb38niiscl0jljq43z9scl6zarqqgavhal3c4dzwbjyfy21c16a"; + rev = "0c2a75d170547a808ce4d22fb63a1d86b4ddf3b2"; + sha256 = "0dn1iscy0vw2bcnh5s675wjnfk9f20i30b8slyffvpzbbi369pys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gruber-darker-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gruber-darker-theme"; sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi"; name = "gruber-darker-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gruber-darker-theme"; + homepage = "https://melpa.org/#/gruber-darker-theme"; license = lib.licenses.free; }; }) {}; grunt = callPackage ({ ansi-color ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grunt"; - version = "20151110.1029"; + version = "20160316.1028"; src = fetchFromGitHub { owner = "gempesaw"; repo = "grunt.el"; - rev = "42bcab2990a27e0f8cf22eee87089c95eb9fae29"; - sha256 = "1js849s8b9x0n6ak2qwv90lk6zr71mgkk9f0xccdhikz4c8vxk0r"; + rev = "4c269e2738658643ec2ed9ef61a2a3d71b08d304"; + sha256 = "1xd6gv9bkqnj7j5mcnwvl1mxjmzvxqhp135hxj0ijc0ybdybacf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grunt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grunt"; sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz"; name = "grunt"; }; packageRequires = [ ansi-color dash emacs ]; meta = { - homepage = "http://melpa.org/#/grunt"; + homepage = "https://melpa.org/#/grunt"; license = lib.licenses.free; }; }) {}; @@ -24004,13 +25007,13 @@ sha256 = "04jknwkax9gdmzz0yq0m21grl9c43vr3abdam3g8zjh5sjx5gs14"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gruvbox-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gruvbox-theme"; sha256 = "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32"; name = "gruvbox-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gruvbox-theme"; + homepage = "https://melpa.org/#/gruvbox-theme"; license = lib.licenses.free; }; }) {}; @@ -24025,34 +25028,34 @@ sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gs-mode"; sha256 = "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq"; name = "gs-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gs-mode"; + homepage = "https://melpa.org/#/gs-mode"; license = lib.licenses.free; }; }) {}; gscholar-bibtex = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gscholar-bibtex"; - version = "20151022.1225"; + version = "20160412.1619"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "gscholar-bibtex"; - rev = "00b32521de3aa689bc58516ae10ba7f3ef1b6c92"; - sha256 = "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk"; + rev = "df504cf9d1aecccb99551067861e9e1bae932d99"; + sha256 = "1xc5lzrq9nz3cxx6gm89c9p00ki53gxa3bri5yn6yk4g7hbwqvz0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gscholar-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gscholar-bibtex"; sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az"; name = "gscholar-bibtex"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gscholar-bibtex"; + homepage = "https://melpa.org/#/gscholar-bibtex"; license = lib.licenses.free; }; }) {}; @@ -24067,13 +25070,13 @@ sha256 = "14sx5m6fpkm2q8ljkicl1yy1sw003k4rzz9hi7lm1nfqr2l4n6q0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guide-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guide-key"; sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf"; name = "guide-key"; }; packageRequires = [ dash popwin s ]; meta = { - homepage = "http://melpa.org/#/guide-key"; + homepage = "https://melpa.org/#/guide-key"; license = lib.licenses.free; }; }) {}; @@ -24088,34 +25091,34 @@ sha256 = "1s6p4ysdbqx5fk68s317ckj5rjmpkwwb0324sbqqa6byhw3j0xyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guide-key-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guide-key-tip"; sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06"; name = "guide-key-tip"; }; packageRequires = [ guide-key pos-tip ]; meta = { - homepage = "http://melpa.org/#/guide-key-tip"; + homepage = "https://melpa.org/#/guide-key-tip"; license = lib.licenses.free; }; }) {}; guru-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "guru-mode"; - version = "20151028.28"; + version = "20160415.2121"; src = fetchFromGitHub { owner = "bbatsov"; repo = "guru-mode"; - rev = "062a41794431d5e263f9f0e6ae1ec4a8d79980dd"; - sha256 = "16h1g88y4q737sxcjkm1kxirv5m2x3l9wgmz0s4hlxjzli8fc7jr"; + rev = "81db5611dd29f2c3d9ea91fb7f086a2cf9847553"; + sha256 = "1jymhjjpn600svd5jbj42m3vnpaza838zby507ynbwc95nja29vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guru-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guru-mode"; sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs"; name = "guru-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/guru-mode"; + homepage = "https://melpa.org/#/guru-mode"; license = lib.licenses.free; }; }) {}; @@ -24130,34 +25133,34 @@ sha256 = "0060qw4gr9fv6db20xf3spgl2fwg2iid5ckfjm3vj3ydyv62q13s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gvpr-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gvpr-mode"; sha256 = "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw"; name = "gvpr-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gvpr-mode"; + homepage = "https://melpa.org/#/gvpr-mode"; license = lib.licenses.free; }; }) {}; hackernews = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "hackernews"; - version = "20150901.1017"; + version = "20160326.925"; src = fetchFromGitHub { owner = "clarete"; repo = "hackernews.el"; - rev = "676d72da9fa4743dae34da95138fd022a51fbfdd"; - sha256 = "15d7zjxjp9h8jmxq3dqakwzlymqk6hqsg7zklkjs0ih7fz0d25pl"; + rev = "452e939211ebc0af7256a2f0e8cdad5c426694e6"; + sha256 = "1c49lfm5saafxks591qyy2nilymxz3aqlxpsmnad5d0kfhvjr47z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hackernews"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hackernews"; sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a"; name = "hackernews"; }; packageRequires = [ json ]; meta = { - homepage = "http://melpa.org/#/hackernews"; + homepage = "https://melpa.org/#/hackernews"; license = lib.licenses.free; }; }) {}; @@ -24172,13 +25175,13 @@ sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ham-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ham-mode"; sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz"; name = "ham-mode"; }; packageRequires = [ html-to-markdown markdown-mode ]; meta = { - homepage = "http://melpa.org/#/ham-mode"; + homepage = "https://melpa.org/#/ham-mode"; license = lib.licenses.free; }; }) {}; @@ -24193,13 +25196,13 @@ sha256 = "1rnkzl51h263nck1bd0jyb7q58b54d764gcsh7wqxfgzs1jfr4am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hamburg-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hamburg-theme"; sha256 = "149ln7670kjyhdfj5j9akxch47dlff2hd58amla7j3297z1nhg4k"; name = "hamburg-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/hamburg-theme"; + homepage = "https://melpa.org/#/hamburg-theme"; license = lib.licenses.free; }; }) {}; @@ -24214,13 +25217,13 @@ sha256 = "0fmcm4pcivigz9xhf7z9wsxz9pg1yfx9qv8na2dxj426bibk0a6w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haml-mode"; sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f"; name = "haml-mode"; }; packageRequires = [ ruby-mode ]; meta = { - homepage = "http://melpa.org/#/haml-mode"; + homepage = "https://melpa.org/#/haml-mode"; license = lib.licenses.free; }; }) {}; @@ -24235,13 +25238,13 @@ sha256 = "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hamlet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hamlet-mode"; sha256 = "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx"; name = "hamlet-mode"; }; packageRequires = [ cl-lib dash s ]; meta = { - homepage = "http://melpa.org/#/hamlet-mode"; + homepage = "https://melpa.org/#/hamlet-mode"; license = lib.licenses.free; }; }) {}; @@ -24256,13 +25259,13 @@ sha256 = "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/handlebars-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/handlebars-mode"; sha256 = "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj"; name = "handlebars-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/handlebars-mode"; + homepage = "https://melpa.org/#/handlebars-mode"; license = lib.licenses.free; }; }) {}; @@ -24277,13 +25280,13 @@ sha256 = "1z37di9vk1l35my8kl8jnyqlkr1rnp0iz13hpc0r065mib67v58k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/handlebars-sgml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/handlebars-sgml-mode"; sha256 = "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w"; name = "handlebars-sgml-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/handlebars-sgml-mode"; + homepage = "https://melpa.org/#/handlebars-sgml-mode"; license = lib.licenses.free; }; }) {}; @@ -24298,13 +25301,13 @@ sha256 = "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/handoff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/handoff"; sha256 = "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w"; name = "handoff"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/handoff"; + homepage = "https://melpa.org/#/handoff"; license = lib.licenses.free; }; }) {}; @@ -24319,55 +25322,76 @@ sha256 = "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hardcore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hardcore-mode"; sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd"; name = "hardcore-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hardcore-mode"; + homepage = "https://melpa.org/#/hardcore-mode"; license = lib.licenses.free; }; }) {}; hardhat = callPackage ({ fetchFromGitHub, fetchurl, ignoramus, lib, melpaBuild }: melpaBuild { pname = "hardhat"; - version = "20140827.2056"; + version = "20160414.913"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "hardhat"; - rev = "9355d174d49a514f3e176995ba93d5da7a25cbba"; - sha256 = "13pgxskddir74lqknkkflzkrv6q455cf5s7wjww1zgvw95j7q50v"; + rev = "9038a49ab55cd4c502cf7f07ed0d1b9b6bc3626e"; + sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hardhat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hardhat"; sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z"; name = "hardhat"; }; packageRequires = [ ignoramus ]; meta = { - homepage = "http://melpa.org/#/hardhat"; + homepage = "https://melpa.org/#/hardhat"; + license = lib.licenses.free; + }; + }) {}; + harvest = callPackage ({ fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, s, swiper }: + melpaBuild { + pname = "harvest"; + version = "20160405.1143"; + src = fetchFromGitHub { + owner = "kostajh"; + repo = "harvest.el"; + rev = "016d04b63023b083b9d2deb61612fe7336713a17"; + sha256 = "1nswlbw4x461zksjcy2kllgiz8h270iyk44bls3m3l9y2nx82fxm"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/harvest"; + sha256 = "1qfhfzjwlnqpbq4kfxvs97fa3xks8zi02fnwv0ik8wb1ppbb77qd"; + name = "harvest"; + }; + packageRequires = [ hydra s swiper ]; + meta = { + homepage = "https://melpa.org/#/harvest"; license = lib.licenses.free; }; }) {}; haskell-emacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haskell-emacs"; - version = "20160104.1652"; + version = "20160223.550"; src = fetchFromGitHub { owner = "knupfer"; repo = "haskell-emacs"; - rev = "73dbda903b3fcb1225bf69d5ed7f9d013d7ae1fd"; - sha256 = "1l08d6qn7ixs3yg6svh8fd2x6zwjkbv0s34vm5aa7krx7yhydblx"; + rev = "382d72a14a15c88d6b1d61db8262ce7a0db236fb"; + sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs"; sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6"; name = "haskell-emacs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/haskell-emacs"; + homepage = "https://melpa.org/#/haskell-emacs"; license = lib.licenses.free; }; }) {}; @@ -24378,17 +25402,17 @@ src = fetchFromGitHub { owner = "knupfer"; repo = "haskell-emacs"; - rev = "73dbda903b3fcb1225bf69d5ed7f9d013d7ae1fd"; - sha256 = "1l08d6qn7ixs3yg6svh8fd2x6zwjkbv0s34vm5aa7krx7yhydblx"; + rev = "382d72a14a15c88d6b1d61db8262ce7a0db236fb"; + sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs-base"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs-base"; sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb"; name = "haskell-emacs-base"; }; packageRequires = [ haskell-emacs ]; meta = { - homepage = "http://melpa.org/#/haskell-emacs-base"; + homepage = "https://melpa.org/#/haskell-emacs-base"; license = lib.licenses.free; }; }) {}; @@ -24399,38 +25423,38 @@ src = fetchFromGitHub { owner = "knupfer"; repo = "haskell-emacs"; - rev = "73dbda903b3fcb1225bf69d5ed7f9d013d7ae1fd"; - sha256 = "1l08d6qn7ixs3yg6svh8fd2x6zwjkbv0s34vm5aa7krx7yhydblx"; + rev = "382d72a14a15c88d6b1d61db8262ce7a0db236fb"; + sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs-text"; sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy"; name = "haskell-emacs-text"; }; packageRequires = [ haskell-emacs ]; meta = { - homepage = "http://melpa.org/#/haskell-emacs-text"; + homepage = "https://melpa.org/#/haskell-emacs-text"; license = lib.licenses.free; }; }) {}; - haskell-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + haskell-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haskell-mode"; - version = "20160221.351"; + version = "20160425.1432"; src = fetchFromGitHub { owner = "haskell"; repo = "haskell-mode"; - rev = "2193190a271cc99e09399f53164c06d62826a490"; - sha256 = "0alyyffv8x74nfgp2alai711hvwhgqh7xl38gcvpdfdl7w1msfzi"; + rev = "773540c8781a8abb9e799fa420983b1ac3e34a74"; + sha256 = "0gj91ffh2fahs68s8ml281frdb1dg89mrkw9446z8l8q7pwjqajm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-mode"; sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp"; name = "haskell-mode"; }; - packageRequires = [ cl-lib emacs ]; + packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/haskell-mode"; + homepage = "https://melpa.org/#/haskell-mode"; license = lib.licenses.free; }; }) {}; @@ -24445,13 +25469,13 @@ sha256 = "1wha5f2zx5hr6y0wvpmkg7jnxcgbzx99gd70h96c3dqqqhqz6d2a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-snippets"; sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2"; name = "haskell-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/haskell-snippets"; + homepage = "https://melpa.org/#/haskell-snippets"; license = lib.licenses.free; }; }) {}; @@ -24462,16 +25486,16 @@ src = fetchgit { url = "https://git.spwhitton.name/haskell-tab-indent"; rev = "150f52176242ba3bc4f58179cd2dbee4d89580f4"; - sha256 = "7e41c910d6901638b9dfb697206659f5441e26e0558f9227c4ba7c6f2f47d841"; + sha256 = "0hfq8wpnyz5sqhkr53smw0k1wi7mb5k215xnvywkh5lhsq8cjhby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-tab-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-tab-indent"; sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7"; name = "haskell-tab-indent"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/haskell-tab-indent"; + homepage = "https://melpa.org/#/haskell-tab-indent"; license = lib.licenses.free; }; }) {}; @@ -24486,13 +25510,13 @@ sha256 = "1gmh455ahd9if11f8mrqbfky24c784bb4fgdl3pj8i0n5sl51i88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haste"; sha256 = "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf"; name = "haste"; }; packageRequires = [ json ]; meta = { - homepage = "http://melpa.org/#/haste"; + homepage = "https://melpa.org/#/haste"; license = lib.licenses.free; }; }) {}; @@ -24506,13 +25530,13 @@ sha256 = "106a7kpjj4laxl7x8aqpv75ih54569b3bs2a1b8z4rghmikqc4aw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haxe-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haxe-mode"; sha256 = "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l"; name = "haxe-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/haxe-mode"; + homepage = "https://melpa.org/#/haxe-mode"; license = lib.licenses.free; }; }) {}; @@ -24527,13 +25551,13 @@ sha256 = "1si5r86zvnp4wbzvvqyc4zhap14k8pcq5nqigx45mgvpdnwdvzln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haxor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haxor-mode"; sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5"; name = "haxor-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/haxor-mode"; + homepage = "https://melpa.org/#/haxor-mode"; license = lib.licenses.free; }; }) {}; @@ -24548,13 +25572,13 @@ sha256 = "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hayoo"; sha256 = "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9"; name = "hayoo"; }; packageRequires = [ emacs json ]; meta = { - homepage = "http://melpa.org/#/hayoo"; + homepage = "https://melpa.org/#/hayoo"; license = lib.licenses.free; }; }) {}; @@ -24569,34 +25593,34 @@ sha256 = "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hc-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hc-zenburn-theme"; sha256 = "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y"; name = "hc-zenburn-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hc-zenburn-theme"; + homepage = "https://melpa.org/#/hc-zenburn-theme"; license = lib.licenses.free; }; }) {}; - hcl-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + hcl-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hcl-mode"; - version = "20151002.2249"; + version = "20160426.538"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-hcl-mode"; - rev = "5a5e490509452a1882bea43952e248682577ed2d"; - sha256 = "1vf5130bj1ii9j8qq9vdw0ga0qgfk8brjz34ysfmz9l2ihlcxvl0"; + rev = "2ce5f28e3ebb7cd8e4279a507c27822875b475b0"; + sha256 = "1xadbyhzfbl75rm8n9kv0kmcbxd82c9w6p88ds394f3hjmjji3gg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hcl-mode"; sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin"; name = "hcl-mode"; }; - packageRequires = [ cl-lib ]; + packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/hcl-mode"; + homepage = "https://melpa.org/#/hcl-mode"; license = lib.licenses.free; }; }) {}; @@ -24604,17 +25628,17 @@ pname = "header2"; version = "20151231.1526"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/header2.el"; + url = "https://www.emacswiki.org/emacs/download/header2.el"; sha256 = "00j74cqdnaf5rl7w4wabm4z88cm20s152y0yxnv73z9pvqbknrmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/header2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/header2"; sha256 = "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06"; name = "header2"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/header2"; + homepage = "https://melpa.org/#/header2"; license = lib.licenses.free; }; }) {}; @@ -24629,34 +25653,34 @@ sha256 = "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/headlong"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/headlong"; sha256 = "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6"; name = "headlong"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/headlong"; + homepage = "https://melpa.org/#/headlong"; license = lib.licenses.free; }; }) {}; helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: melpaBuild { pname = "helm"; - version = "20160217.1158"; + version = "20160426.758"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "27baadfe942d7b3a2b5049029c002d6a1cc9fea2"; - sha256 = "04fw48six952jxcp9mriz7pcfj223z80am9ig1y4rp3yanqm6z1x"; + rev = "3099cfca9e35b3df9bd1e80057f96246ef2e1705"; + sha256 = "1xspnqdg18rzjnd55vawcj74ypx430lzj19i70bhgzghb22pw3rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm"; sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9"; name = "helm"; }; packageRequires = [ async emacs helm-core popup ]; meta = { - homepage = "http://melpa.org/#/helm"; + homepage = "https://melpa.org/#/helm"; license = lib.licenses.free; }; }) {}; @@ -24671,13 +25695,13 @@ sha256 = "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-R"; sha256 = "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1"; name = "helm-R"; }; packageRequires = [ ess helm ]; meta = { - homepage = "http://melpa.org/#/helm-R"; + homepage = "https://melpa.org/#/helm-R"; license = lib.licenses.free; }; }) {}; @@ -24692,13 +25716,13 @@ sha256 = "04rvbafa77blps7x7cmlsciys8fgmvhfhq4v51pk8z5q3j1lrgc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ack"; sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni"; name = "helm-ack"; }; packageRequires = [ cl-lib helm ]; meta = { - homepage = "http://melpa.org/#/helm-ack"; + homepage = "https://melpa.org/#/helm-ack"; license = lib.licenses.free; }; }) {}; @@ -24713,34 +25737,34 @@ sha256 = "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ad"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ad"; sha256 = "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi"; name = "helm-ad"; }; packageRequires = [ dash helm ]; meta = { - homepage = "http://melpa.org/#/helm-ad"; + homepage = "https://melpa.org/#/helm-ad"; license = lib.licenses.free; }; }) {}; helm-ag = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ag"; - version = "20160126.2347"; + version = "20160424.746"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-ag"; - rev = "e8af4023bcd49700751c2b6dc3591b5e48016413"; - sha256 = "0ig7d8a0ikslm3yvq8yjzc83rg2xxs0gl54g01bi4rydl3p9b6s3"; + rev = "edc264067b1b4e695e689cab4fd429f605ceef8e"; + sha256 = "1riaih9f74mv1kyy5g47p1s9idynjv11bi99mr4mdrr1gqwi2c8i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ag"; sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf"; name = "helm-ag"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-ag"; + homepage = "https://melpa.org/#/helm-ag"; license = lib.licenses.free; }; }) {}; @@ -24755,13 +25779,13 @@ sha256 = "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ag-r"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ag-r"; sha256 = "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9"; name = "helm-ag-r"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-ag-r"; + homepage = "https://melpa.org/#/helm-ag-r"; license = lib.licenses.free; }; }) {}; @@ -24776,13 +25800,13 @@ sha256 = "153zq1q3s3ihjh15wyci9qdic3pin8f1j1gq2qlzyhmy0njlvgjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-anything"; sha256 = "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx"; name = "helm-anything"; }; packageRequires = [ anything helm ]; meta = { - homepage = "http://melpa.org/#/helm-anything"; + homepage = "https://melpa.org/#/helm-anything"; license = lib.licenses.free; }; }) {}; @@ -24797,13 +25821,13 @@ sha256 = "1bnypr906gfc1fbyrqfsfilsl6wiacrnhr8flpa0gmdjhvmrw7af"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-aws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-aws"; sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5"; name = "helm-aws"; }; packageRequires = [ cl-lib helm s ]; meta = { - homepage = "http://melpa.org/#/helm-aws"; + homepage = "https://melpa.org/#/helm-aws"; license = lib.licenses.free; }; }) {}; @@ -24818,34 +25842,34 @@ sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-backup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-backup"; sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3"; name = "helm-backup"; }; packageRequires = [ cl-lib helm s ]; meta = { - homepage = "http://melpa.org/#/helm-backup"; + homepage = "https://melpa.org/#/helm-backup"; license = lib.licenses.free; }; }) {}; - helm-bibtex = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, parsebib, s }: + helm-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, parsebib, s }: melpaBuild { pname = "helm-bibtex"; - version = "20160210.1638"; + version = "20160422.1800"; src = fetchFromGitHub { owner = "tmalsburg"; repo = "helm-bibtex"; - rev = "7895ac0f016cca71b6e171a98fee236d5ed312dd"; - sha256 = "0j6ygwkwmjs7hblllj3mv2byc7lcqxx9vyjxs34j8q1vpam972p3"; + rev = "62593c6289a3d17566edb1aa8ef4700bc83e9df7"; + sha256 = "1zrs1gk95mna1kipgrq8mfhk0gqimvsb4b583f900fh86019nn1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bibtex"; - sha256 = "1rsplnh18w1fqr6da79vj8x9q2lyss9sssy8pfz3hfw7p6qi6zkg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bibtex"; + sha256 = "037pqgyyb2grg88yfxx1r8yp4lrgz2fyzz9fbbp34l8s6vk3cp4z"; name = "helm-bibtex"; }; - packageRequires = [ cl-lib dash f helm parsebib s ]; + packageRequires = [ biblio cl-lib dash f helm parsebib s ]; meta = { - homepage = "http://melpa.org/#/helm-bibtex"; + homepage = "https://melpa.org/#/helm-bibtex"; license = lib.licenses.free; }; }) {}; @@ -24860,13 +25884,13 @@ sha256 = "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bibtexkey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bibtexkey"; sha256 = "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj"; name = "helm-bibtexkey"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-bibtexkey"; + homepage = "https://melpa.org/#/helm-bibtexkey"; license = lib.licenses.free; }; }) {}; @@ -24881,34 +25905,34 @@ sha256 = "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bind-key"; sha256 = "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid"; name = "helm-bind-key"; }; packageRequires = [ bind-key helm ]; meta = { - homepage = "http://melpa.org/#/helm-bind-key"; + homepage = "https://melpa.org/#/helm-bind-key"; license = lib.licenses.free; }; }) {}; helm-bm = callPackage ({ bm, cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-bm"; - version = "20131224.905"; + version = "20160321.831"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-bm"; - rev = "1764c0139cb2f04b9fd520c7aca0b6d0152913bd"; - sha256 = "1gcx7imq9gxfgmh188a8xlpmmlrdif1vsnnff49qvk82082ghbfz"; + rev = "d66341f5646c23178d4d8bffb6cfebe3fb73f1d7"; + sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bm"; sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh"; name = "helm-bm"; }; packageRequires = [ bm cl-lib helm s ]; meta = { - homepage = "http://melpa.org/#/helm-bm"; + homepage = "https://melpa.org/#/helm-bm"; license = lib.licenses.free; }; }) {}; @@ -24923,13 +25947,13 @@ sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bundle-show"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bundle-show"; sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7"; name = "helm-bundle-show"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-bundle-show"; + homepage = "https://melpa.org/#/helm-bundle-show"; license = lib.licenses.free; }; }) {}; @@ -24944,13 +25968,13 @@ sha256 = "0w4svbg32y63v049plvk7djc1m2amjzrr1v979d9s6jbnnpzlb5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-c-moccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-c-moccur"; sha256 = "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b"; name = "helm-c-moccur"; }; packageRequires = [ color-moccur helm ]; meta = { - homepage = "http://melpa.org/#/helm-c-moccur"; + homepage = "https://melpa.org/#/helm-c-moccur"; license = lib.licenses.free; }; }) {}; @@ -24965,13 +25989,13 @@ sha256 = "03c4w34r0q7xpz1ny8dya8f96rhjpc9r2c24n7vg9x6x4i2wl204"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-c-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-c-yasnippet"; sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90"; name = "helm-c-yasnippet"; }; packageRequires = [ cl-lib helm yasnippet ]; meta = { - homepage = "http://melpa.org/#/helm-c-yasnippet"; + homepage = "https://melpa.org/#/helm-c-yasnippet"; license = lib.licenses.free; }; }) {}; @@ -24986,13 +26010,13 @@ sha256 = "0wkskm0d1mvh49l65xg6pgwd7yxy02llflkzx59ayqv4wjvsyayb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-chrome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-chrome"; sha256 = "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz"; name = "helm-chrome"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-chrome"; + homepage = "https://melpa.org/#/helm-chrome"; license = lib.licenses.free; }; }) {}; @@ -25007,13 +26031,13 @@ sha256 = "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-chronos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-chronos"; sha256 = "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3"; name = "helm-chronos"; }; packageRequires = [ chronos helm ]; meta = { - homepage = "http://melpa.org/#/helm-chronos"; + homepage = "https://melpa.org/#/helm-chronos"; license = lib.licenses.free; }; }) {}; @@ -25028,13 +26052,13 @@ sha256 = "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-cider-history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-cider-history"; sha256 = "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h"; name = "helm-cider-history"; }; packageRequires = [ cider helm ]; meta = { - homepage = "http://melpa.org/#/helm-cider-history"; + homepage = "https://melpa.org/#/helm-cider-history"; license = lib.licenses.free; }; }) {}; @@ -25049,34 +26073,34 @@ sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-circe"; sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v"; name = "helm-circe"; }; packageRequires = [ circe cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-circe"; + homepage = "https://melpa.org/#/helm-circe"; license = lib.licenses.free; }; }) {}; helm-clojuredocs = callPackage ({ edn, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-clojuredocs"; - version = "20160221.1512"; + version = "20160405.223"; src = fetchFromGitHub { owner = "mbuczko"; repo = "helm-clojuredocs"; - rev = "ac9e82c56f269f284968acbdf831b30b61b8ea70"; - sha256 = "0c6gicql7jl0ygwp30axy5wrvwjj1xjnm3x0cjqg07pbycjhl65x"; + rev = "5a7f0f2cb401be0b09e73262a1c18265ab9a3cea"; + sha256 = "015b8zxh91ljhqvn6z43gy08di54xcw9skw0i7frj3d7gk984qhl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-clojuredocs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-clojuredocs"; sha256 = "0yz0wlyay9286by8i30gs3ispswq8ayqlcnna1s7bgspjvb7scmk"; name = "helm-clojuredocs"; }; packageRequires = [ edn helm ]; meta = { - homepage = "http://melpa.org/#/helm-clojuredocs"; + homepage = "https://melpa.org/#/helm-clojuredocs"; license = lib.licenses.free; }; }) {}; @@ -25085,19 +26109,19 @@ pname = "helm-cmd-t"; version = "20150823.1357"; src = fetchFromGitHub { - owner = "lewang"; + owner = "emacs-helm"; repo = "helm-cmd-t"; rev = "8749f0b2b8527423cd146fa2d5c0e7a9e159eefb"; sha256 = "10cp21v8vwgp8hv2rkdn9x8v2n8wqbphgslb561rlwc2rfpvzqvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-cmd-t"; - sha256 = "04fmhravd3ld4n1n820wlnr1jvmk7c7cdazd15gazixrlz6fm4fk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-cmd-t"; + sha256 = "1w870ldq029wgicgv4cqm31zw2i8vkap3m9hsr9d0i3gv2virnc6"; name = "helm-cmd-t"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/helm-cmd-t"; + homepage = "https://melpa.org/#/helm-cmd-t"; license = lib.licenses.free; }; }) {}; @@ -25112,13 +26136,13 @@ sha256 = "05nvbwz3inbmfj88am69sz032wsj8jkfpjk5drgfijw98il9blk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-codesearch"; sha256 = "1v21zwcyx73bc1lcfk60v8xim31bwdk4p06g9i4qag3cijdlli9q"; name = "helm-codesearch"; }; packageRequires = [ cl-lib dash helm s ]; meta = { - homepage = "http://melpa.org/#/helm-codesearch"; + homepage = "https://melpa.org/#/helm-codesearch"; license = lib.licenses.free; }; }) {}; @@ -25133,13 +26157,13 @@ sha256 = "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-commandlinefu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-commandlinefu"; sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd"; name = "helm-commandlinefu"; }; packageRequires = [ emacs helm json let-alist ]; meta = { - homepage = "http://melpa.org/#/helm-commandlinefu"; + homepage = "https://melpa.org/#/helm-commandlinefu"; license = lib.licenses.free; }; }) {}; @@ -25154,34 +26178,34 @@ sha256 = "189qmc6fdj5a01a7w45r0qpn9qjf2q9g83qic9sgnrccc841zpyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-company"; sha256 = "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3"; name = "helm-company"; }; packageRequires = [ company helm ]; meta = { - homepage = "http://melpa.org/#/helm-company"; + homepage = "https://melpa.org/#/helm-company"; license = lib.licenses.free; }; }) {}; helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-core"; - version = "20160217.1158"; + version = "20160420.155"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "27baadfe942d7b3a2b5049029c002d6a1cc9fea2"; - sha256 = "04fw48six952jxcp9mriz7pcfj223z80am9ig1y4rp3yanqm6z1x"; + rev = "3099cfca9e35b3df9bd1e80057f96246ef2e1705"; + sha256 = "1xspnqdg18rzjnd55vawcj74ypx430lzj19i70bhgzghb22pw3rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-core"; sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda"; name = "helm-core"; }; packageRequires = [ async emacs ]; meta = { - homepage = "http://melpa.org/#/helm-core"; + homepage = "https://melpa.org/#/helm-core"; license = lib.licenses.free; }; }) {}; @@ -25196,13 +26220,13 @@ sha256 = "0nhi8xhcf7qpsibpyy5v364xx7lqkhskzai7awkg0xcdq8b5090x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-cscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-cscope"; sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4"; name = "helm-cscope"; }; packageRequires = [ cl-lib emacs helm xcscope ]; meta = { - homepage = "http://melpa.org/#/helm-cscope"; + homepage = "https://melpa.org/#/helm-cscope"; license = lib.licenses.free; }; }) {}; @@ -25217,13 +26241,13 @@ sha256 = "01a3pahpsxb7d15dkfgxypl7gzqb4dy4f36lmid1w77b9rhs6nph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-css-scss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-css-scss"; sha256 = "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak"; name = "helm-css-scss"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-css-scss"; + homepage = "https://melpa.org/#/helm-css-scss"; license = lib.licenses.free; }; }) {}; @@ -25238,34 +26262,34 @@ sha256 = "18d96alik66nw3rkk7k8740b4rx2bnh3pwn27ahpgj5yf51wm0ry"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ctest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ctest"; sha256 = "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm"; name = "helm-ctest"; }; packageRequires = [ dash helm-core s ]; meta = { - homepage = "http://melpa.org/#/helm-ctest"; + homepage = "https://melpa.org/#/helm-ctest"; license = lib.licenses.free; }; }) {}; helm-dash = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-dash"; - version = "20160220.635"; + version = "20160416.1908"; src = fetchFromGitHub { owner = "areina"; repo = "helm-dash"; - rev = "372bba923904d229ecfbd44990f7fb4edec4d6a6"; - sha256 = "1g02vk1pfk969c3zvc307wg7kzgiwzwa861hk60zsffhinhw795y"; + rev = "238d60e329f58bee08b6fb800be56dc7201d560b"; + sha256 = "03h9p3z6n9mi6hld86i6wj01glx4p058iifygrph0vvzczisixcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-dash"; sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy"; name = "helm-dash"; }; packageRequires = [ cl-lib helm ]; meta = { - homepage = "http://melpa.org/#/helm-dash"; + homepage = "https://melpa.org/#/helm-dash"; license = lib.licenses.free; }; }) {}; @@ -25280,13 +26304,13 @@ sha256 = "0y0xxs67bzh6j68j3f4zxzrl2ij5g1qvvxqklw7nz305xliis29g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-descbinds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-descbinds"; sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7"; name = "helm-descbinds"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-descbinds"; + homepage = "https://melpa.org/#/helm-descbinds"; license = lib.licenses.free; }; }) {}; @@ -25301,34 +26325,34 @@ sha256 = "0li9bi1lm5ldwfpvzahxp7hyfd94jr1kl43rprx0myxb016yk2p5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-describe-modes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-describe-modes"; sha256 = "0ajy9kwspm8rzafl0df57fad5867s86yjqj29shznqb12r91lpqb"; name = "helm-describe-modes"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-describe-modes"; + homepage = "https://melpa.org/#/helm-describe-modes"; license = lib.licenses.free; }; }) {}; helm-dictionary = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-dictionary"; - version = "20141226.1336"; + version = "20160408.1145"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-dictionary"; - rev = "2aeafba1556c76cc5ff949ca50f341fc2aa687b0"; - sha256 = "05mb7kb4x7kzh0w9r531ppd92hzsa2v3wqcmafkcn1z5wfp7zw68"; + rev = "d6839ff60da6e5c6936a1f59e48f0ded13dda0b0"; + sha256 = "0v5n46vkbhzsasz41dsllpmkn71y124zz9ycpdql4wsl3mlkhlcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-dictionary"; sha256 = "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n"; name = "helm-dictionary"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-dictionary"; + homepage = "https://melpa.org/#/helm-dictionary"; license = lib.licenses.free; }; }) {}; @@ -25343,13 +26367,13 @@ sha256 = "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-dired-recent-dirs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-dired-recent-dirs"; sha256 = "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs"; name = "helm-dired-recent-dirs"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-dired-recent-dirs"; + homepage = "https://melpa.org/#/helm-dired-recent-dirs"; license = lib.licenses.free; }; }) {}; @@ -25364,13 +26388,13 @@ sha256 = "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-dirset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-dirset"; sha256 = "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml"; name = "helm-dirset"; }; packageRequires = [ cl-lib f helm s ]; meta = { - homepage = "http://melpa.org/#/helm-dirset"; + homepage = "https://melpa.org/#/helm-dirset"; license = lib.licenses.free; }; }) {}; @@ -25385,13 +26409,13 @@ sha256 = "0c3mn5w98phsv7gsljyp5vxxmr2w6n3nczh5zm4hcpwsra3wh1v9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-emmet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-emmet"; sha256 = "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03"; name = "helm-emmet"; }; packageRequires = [ emmet-mode helm ]; meta = { - homepage = "http://melpa.org/#/helm-emmet"; + homepage = "https://melpa.org/#/helm-emmet"; license = lib.licenses.free; }; }) {}; @@ -25406,13 +26430,13 @@ sha256 = "0330s07b41nw9q32xhjdl7yw83p8ikj6b2qkir3y0jyx16gk10dl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-emms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-emms"; sha256 = "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5"; name = "helm-emms"; }; packageRequires = [ cl-lib emacs emms helm ]; meta = { - homepage = "http://melpa.org/#/helm-emms"; + homepage = "https://melpa.org/#/helm-emms"; license = lib.licenses.free; }; }) {}; @@ -25427,76 +26451,76 @@ sha256 = "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-filesets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-filesets"; sha256 = "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f"; name = "helm-filesets"; }; packageRequires = [ filesets-plus helm ]; meta = { - homepage = "http://melpa.org/#/helm-filesets"; + homepage = "https://melpa.org/#/helm-filesets"; license = lib.licenses.free; }; }) {}; helm-firefox = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-firefox"; - version = "20160101.1542"; + version = "20160419.758"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-firefox"; - rev = "ca1a800c2564650e67651ee62159e9f1c1ba1135"; - sha256 = "0vmlpj6zfif5f3wzgq8lkfqprl3z5gjsqj86347krblgfzhqlz30"; + rev = "c6880653face6b6a033558c97ff038168cf991c2"; + sha256 = "04zvpdb6hrkss6mvvl2676b8blvykf6w6ks03ljrfb7sdw9d17ll"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-firefox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-firefox"; sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs"; name = "helm-firefox"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-firefox"; + homepage = "https://melpa.org/#/helm-firefox"; license = lib.licenses.free; }; }) {}; helm-flx = callPackage ({ emacs, fetchFromGitHub, fetchurl, flx, helm, lib, melpaBuild }: melpaBuild { pname = "helm-flx"; - version = "20160129.1504"; + version = "20160227.1852"; src = fetchFromGitHub { owner = "PythonNut"; repo = "helm-flx"; - rev = "0001a85e88164e8ba6a674a19c44772ce946c9d4"; - sha256 = "1j2ziyzyhd177b3rhrdbkqjmqbr3a8aj670mayy6l2r4ydp5xmaq"; + rev = "3cb3587297c3b6e863d79b7d4d7564043c888b61"; + sha256 = "0mrck7qbqjqz5kpih3zb1yn2chjgv5ghrqc5cp80kmsmxasvk8zw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-flx"; sha256 = "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq"; name = "helm-flx"; }; packageRequires = [ emacs flx helm ]; meta = { - homepage = "http://melpa.org/#/helm-flx"; + homepage = "https://melpa.org/#/helm-flx"; license = lib.licenses.free; }; }) {}; helm-flycheck = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, helm, lib, melpaBuild }: melpaBuild { pname = "helm-flycheck"; - version = "20140915.952"; + version = "20160319.117"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-flycheck"; - rev = "361d7f0359cea3dd0bfef1647d65ab61c9e52925"; - sha256 = "0k5703nj838qh0h6hzgffjrp0df9rs7psczg4r9mxpi19vqk8ff0"; + rev = "83c069abd896b481407234cd0132649245d81194"; + sha256 = "062s08k8v657fpkqvdspv32awvj7dq929ks27w29k3kbzlqlrihp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-flycheck"; sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b"; name = "helm-flycheck"; }; packageRequires = [ dash flycheck helm ]; meta = { - homepage = "http://melpa.org/#/helm-flycheck"; + homepage = "https://melpa.org/#/helm-flycheck"; license = lib.licenses.free; }; }) {}; @@ -25511,13 +26535,13 @@ sha256 = "1liaid4l4x8sb133lj944gwwpqngsf8hzibdwyfdmsi4m4abh73h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-flymake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-flymake"; sha256 = "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b"; name = "helm-flymake"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-flymake"; + homepage = "https://melpa.org/#/helm-flymake"; license = lib.licenses.free; }; }) {}; @@ -25532,13 +26556,13 @@ sha256 = "1k7invgzqrcm11plyvinqwf98yxibr8i4r9yw3csfsicc8b6if59"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-flyspell"; sha256 = "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f"; name = "helm-flyspell"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-flyspell"; + homepage = "https://melpa.org/#/helm-flyspell"; license = lib.licenses.free; }; }) {}; @@ -25553,13 +26577,13 @@ sha256 = "15am2dpva3fzj68sw9n4mpdxkw75l97l1k2j9vlvi2lbqk1h46pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-fuzzier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-fuzzier"; sha256 = "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc"; name = "helm-fuzzier"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-fuzzier"; + homepage = "https://melpa.org/#/helm-fuzzier"; license = lib.licenses.free; }; }) {}; @@ -25574,13 +26598,13 @@ sha256 = "1yxnmxq6ppfgwxrk5ryc5xfn82kjf4j65j14hy077gphr0q61q6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-fuzzy-find"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-fuzzy-find"; sha256 = "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i"; name = "helm-fuzzy-find"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-fuzzy-find"; + homepage = "https://melpa.org/#/helm-fuzzy-find"; license = lib.licenses.free; }; }) {}; @@ -25595,13 +26619,13 @@ sha256 = "16p1gisbza48qircsvrwx020n96ss1c6s68d7cgqqfc0bf2467is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ghc"; sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d"; name = "helm-ghc"; }; packageRequires = [ cl-lib emacs ghc helm ]; meta = { - homepage = "http://melpa.org/#/helm-ghc"; + homepage = "https://melpa.org/#/helm-ghc"; license = lib.licenses.free; }; }) {}; @@ -25616,13 +26640,13 @@ sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ghq"; sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6"; name = "helm-ghq"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-ghq"; + homepage = "https://melpa.org/#/helm-ghq"; license = lib.licenses.free; }; }) {}; @@ -25637,13 +26661,13 @@ sha256 = "1yfy4a52hx44r32i0b75bka8gfcn5lp61jl86lzrsi2cr9wg10pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-git"; sha256 = "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8"; name = "helm-git"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/helm-git"; + homepage = "https://melpa.org/#/helm-git"; license = lib.licenses.free; }; }) {}; @@ -25658,34 +26682,34 @@ sha256 = "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-git-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-git-files"; sha256 = "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6"; name = "helm-git-files"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-git-files"; + homepage = "https://melpa.org/#/helm-git-files"; license = lib.licenses.free; }; }) {}; helm-git-grep = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-git-grep"; - version = "20140222.2022"; + version = "20160408.2152"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-git-grep"; - rev = "9e602f79ea58fe12c6a48ce3c2f749b817ef8c86"; - sha256 = "1mp5gbda81szbx19rvaa6ybb28v64q49hqic8d478ggnjjsqhfyr"; + rev = "f8639362a6b96cbe2c5456d895d8a43ec84ff339"; + sha256 = "1b29g71a2hwr83j6mamlzrczz5sydvds23wf50ja7svy2qvzyvp3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-git-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-git-grep"; sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi"; name = "helm-git-grep"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-git-grep"; + homepage = "https://melpa.org/#/helm-git-grep"; license = lib.licenses.free; }; }) {}; @@ -25700,13 +26724,13 @@ sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-github-stars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-github-stars"; sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy"; name = "helm-github-stars"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-github-stars"; + homepage = "https://melpa.org/#/helm-github-stars"; license = lib.licenses.free; }; }) {}; @@ -25721,13 +26745,13 @@ sha256 = "0pd755s5zcg8y1svxj3g8m0znkp6cyx5y6lsj4lxczrk7lynzc3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-gitignore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-gitignore"; sha256 = "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6"; name = "helm-gitignore"; }; packageRequires = [ cl-lib gitignore-mode helm request ]; meta = { - homepage = "http://melpa.org/#/helm-gitignore"; + homepage = "https://melpa.org/#/helm-gitignore"; license = lib.licenses.free; }; }) {}; @@ -25742,76 +26766,76 @@ sha256 = "00mma30r7ixbrxjmmddz4klh517fcr3yn6ss4zw33fh2hzj3w6rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-gitlab"; sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd"; name = "helm-gitlab"; }; packageRequires = [ dash gitlab helm s ]; meta = { - homepage = "http://melpa.org/#/helm-gitlab"; + homepage = "https://melpa.org/#/helm-gitlab"; license = lib.licenses.free; }; }) {}; helm-go-package = callPackage ({ deferred, fetchFromGitHub, fetchurl, go-mode, helm, lib, melpaBuild }: melpaBuild { pname = "helm-go-package"; - version = "20150603.804"; + version = "20160321.315"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-go-package"; - rev = "1909156510a4e73697a86b8c040d38e4d352851a"; - sha256 = "1r01nl1k9jjb70214rkmbqaa4qrkyd3apiyq00w02wsymy12wwic"; + rev = "469bbbe4c6cdd4c80444ece10f07cfb62fc4f13e"; + sha256 = "0iyfn58h50xms5915i29b54wfyxh6vi9vy3v3r91g6dwlxrjibka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-go-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-go-package"; sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6"; name = "helm-go-package"; }; packageRequires = [ deferred go-mode helm ]; meta = { - homepage = "http://melpa.org/#/helm-go-package"; + homepage = "https://melpa.org/#/helm-go-package"; license = lib.licenses.free; }; }) {}; helm-google = callPackage ({ fetchFromGitHub, fetchurl, google, helm, lib, melpaBuild }: melpaBuild { pname = "helm-google"; - version = "20141228.540"; + version = "20160226.1420"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "helm-google"; - rev = "21443456eefab39a2bfef00f1387c015e7dfac51"; - sha256 = "0ml5mv282dz73hmgjalcsypdvc30pwhsfbamyz46744j7wxn6ik2"; + rev = "73485b901c306c7bc25100e0e7433124fb657654"; + sha256 = "1addskcm325lb9plcbxfp1f6fsj3dcccb87gzihrp7ahiy7pmvih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-google"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-google"; sha256 = "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32"; name = "helm-google"; }; packageRequires = [ google helm ]; meta = { - homepage = "http://melpa.org/#/helm-google"; + homepage = "https://melpa.org/#/helm-google"; license = lib.licenses.free; }; }) {}; helm-grepint = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-grepint"; - version = "20160220.1240"; + version = "20160303.1426"; src = fetchFromGitHub { owner = "kopoli"; repo = "helm-grepint"; - rev = "2c0a2a95c3403bb1090665f4d56e6e1ed085a91e"; - sha256 = "0n1nfi1zbp70bjyik7s8mif2vwyadacikvasrdry0s3mnrx0hsnx"; + rev = "95e4c10ef0c0a18f660caaebb07bf5c5887efcfc"; + sha256 = "1f88vd31fc7ksrhlc72i6c0wbbz62lxw9yakxdk0m72pfz345mz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-grepint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-grepint"; sha256 = "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf"; name = "helm-grepint"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-grepint"; + homepage = "https://melpa.org/#/helm-grepint"; license = lib.licenses.free; }; }) {}; @@ -25826,34 +26850,34 @@ sha256 = "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-growthforecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-growthforecast"; sha256 = "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh"; name = "helm-growthforecast"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-growthforecast"; + homepage = "https://melpa.org/#/helm-growthforecast"; license = lib.licenses.free; }; }) {}; helm-gtags = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-gtags"; - version = "20160202.703"; + version = "20160417.755"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-gtags"; - rev = "f14ff7140d0f070b089df7567f2cc6b437ab9924"; - sha256 = "1hqmwbdcjssvvl7prdykhlgbfrf4qylkvqp0nnnxp8r1wy6h6aws"; + rev = "dbe0d2d9d08058d469ad2d729bd782515b5b3b62"; + sha256 = "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-gtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-gtags"; sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl"; name = "helm-gtags"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-gtags"; + homepage = "https://melpa.org/#/helm-gtags"; license = lib.licenses.free; }; }) {}; @@ -25868,13 +26892,13 @@ sha256 = "189dv3qqqmfyhsqa1n52cgcn1xv7k49f92ndn43y2v20234nhl9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-hatena-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-hatena-bookmark"; sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id"; name = "helm-hatena-bookmark"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-hatena-bookmark"; + homepage = "https://melpa.org/#/helm-hatena-bookmark"; license = lib.licenses.free; }; }) {}; @@ -25889,13 +26913,13 @@ sha256 = "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-hayoo"; sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32"; name = "helm-hayoo"; }; packageRequires = [ haskell-mode helm json ]; meta = { - homepage = "http://melpa.org/#/helm-hayoo"; + homepage = "https://melpa.org/#/helm-hayoo"; license = lib.licenses.free; }; }) {}; @@ -25910,34 +26934,34 @@ sha256 = "05ksfx54ar2j4mypzwh0gfir8r26s4f1i4xw319q5pa1y2100cpn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-helm-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-helm-commands"; sha256 = "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf"; name = "helm-helm-commands"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-helm-commands"; + homepage = "https://melpa.org/#/helm-helm-commands"; license = lib.licenses.free; }; }) {}; helm-hoogle = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-hoogle"; - version = "20150919.421"; + version = "20150919.232"; src = fetchFromGitHub { owner = "jwiegley"; - repo = "haskell-config"; - rev = "8e4e28c3852376510861f64f00009a63b8ec0c7d"; - sha256 = "052hzybign54qawdm1fflsaz4bcwflycksv6wb1nw1jv79s2qbap"; + repo = "helm-hoogle"; + rev = "f4a02784dd7c3f6e8ecda31dea23b2faae260636"; + sha256 = "1l85kip4zd08d38sk7cdafmx0v68dh419cs86g7x0mgi0wn00kfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-hoogle"; - sha256 = "0672mqm0c261mknbgc3a4pahq27gw2pfklflxl1y4ykbs6q7vcyw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-hoogle"; + sha256 = "0vhk4vwqfirdm5d0pppplfpqyc2sfj6jybhzp9n1w8xgrh2d1c0x"; name = "helm-hoogle"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-hoogle"; + homepage = "https://melpa.org/#/helm-hoogle"; license = lib.licenses.free; }; }) {}; @@ -25952,13 +26976,13 @@ sha256 = "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-idris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-idris"; sha256 = "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf"; name = "helm-idris"; }; packageRequires = [ helm idris-mode ]; meta = { - homepage = "http://melpa.org/#/helm-idris"; + homepage = "https://melpa.org/#/helm-idris"; license = lib.licenses.free; }; }) {}; @@ -25973,13 +26997,13 @@ sha256 = "0py4xs27z2jvg99i6qaf2ccz0mvk6bb9cvdyz8v8ngmnj3rw2vla"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-img"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-img"; sha256 = "0sq9l1wgm97ppfc45w3bdcv0qq5m85ygnanv1bdcp8bxbdl4vg0q"; name = "helm-img"; }; packageRequires = [ cl-lib helm ]; meta = { - homepage = "http://melpa.org/#/helm-img"; + homepage = "https://melpa.org/#/helm-img"; license = lib.licenses.free; }; }) {}; @@ -25994,13 +27018,13 @@ sha256 = "04vdin0n3514c8bycdjrwk3l6pkarrwanlklnm75315b91nkkbcp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-img-tiqav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-img-tiqav"; sha256 = "1m083hiih2rpyy8i439745mj4ldqy85fpnvms8qnv3042b8x35y0"; name = "helm-img-tiqav"; }; packageRequires = [ helm-img ]; meta = { - homepage = "http://melpa.org/#/helm-img-tiqav"; + homepage = "https://melpa.org/#/helm-img-tiqav"; license = lib.licenses.free; }; }) {}; @@ -26015,13 +27039,13 @@ sha256 = "04ddjdia09y14gq4h6m8g6aiwkqvdxp66yjx3j5dh2xrkyxhlxpz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ispell"; sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0"; name = "helm-ispell"; }; packageRequires = [ helm-core ]; meta = { - homepage = "http://melpa.org/#/helm-ispell"; + homepage = "https://melpa.org/#/helm-ispell"; license = lib.licenses.free; }; }) {}; @@ -26030,19 +27054,19 @@ pname = "helm-itunes"; version = "20151013.148"; src = fetchFromGitHub { - owner = "daschwa"; + owner = "anschwa"; repo = "helm-itunes"; rev = "966de755a5aadbe02311a6cef77bd4790e84c263"; sha256 = "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-itunes"; - sha256 = "15z5lgh5x1ykz5p31i994fig8v05s7ckkgw6p9jifn11sn1a39nb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-itunes"; + sha256 = "0zi4wyraqkjwp954pkng8b23giv1q9618apd9v3dczsvlmaar9hf"; name = "helm-itunes"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-itunes"; + homepage = "https://melpa.org/#/helm-itunes"; license = lib.licenses.free; }; }) {}; @@ -26057,13 +27081,13 @@ sha256 = "0f2psp7p82sa2fip282w152zc1rjd3l0sna1g7rgwi9x29gcsh0v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-j-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-j-cheatsheet"; sha256 = "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm"; name = "helm-j-cheatsheet"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-j-cheatsheet"; + homepage = "https://melpa.org/#/helm-j-cheatsheet"; license = lib.licenses.free; }; }) {}; @@ -26078,13 +27102,13 @@ sha256 = "0vhqpcv8xi6a6q7n6xxahdzijr1x5s40fvk9nc44q55psbyv627g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-jstack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-jstack"; sha256 = "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz"; name = "helm-jstack"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-jstack"; + homepage = "https://melpa.org/#/helm-jstack"; license = lib.licenses.free; }; }) {}; @@ -26099,34 +27123,34 @@ sha256 = "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-lobsters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-lobsters"; sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp"; name = "helm-lobsters"; }; packageRequires = [ cl-lib helm ]; meta = { - homepage = "http://melpa.org/#/helm-lobsters"; + homepage = "https://melpa.org/#/helm-lobsters"; license = lib.licenses.free; }; }) {}; helm-ls-git = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ls-git"; - version = "20151101.56"; + version = "20160407.2340"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-ls-git"; - rev = "8cddd84ee4361b9d21f800adbaeeacf72645ab62"; - sha256 = "129mlpx5vqxyg2scrdiajxp71phxamrvijpc054k1q1an8vgn0kv"; + rev = "841400ff302c5fdcba55fd6b2a18a01b420fcfd2"; + sha256 = "0yridy54p53zps33766hl7p2hq5pc4vxm08rb5vzbjw84vwaq07b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ls-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ls-git"; sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj"; name = "helm-ls-git"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-ls-git"; + homepage = "https://melpa.org/#/helm-ls-git"; license = lib.licenses.free; }; }) {}; @@ -26141,13 +27165,13 @@ sha256 = "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ls-hg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ls-hg"; sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh"; name = "helm-ls-hg"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-ls-hg"; + homepage = "https://melpa.org/#/helm-ls-hg"; license = lib.licenses.free; }; }) {}; @@ -26157,38 +27181,38 @@ version = "20150717.239"; src = fetchsvn { url = "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el"; - rev = "145939"; + rev = "148084"; sha256 = "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ls-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ls-svn"; sha256 = "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d"; name = "helm-ls-svn"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-ls-svn"; + homepage = "https://melpa.org/#/helm-ls-svn"; license = lib.licenses.free; }; }) {}; helm-make = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }: melpaBuild { pname = "helm-make"; - version = "20151117.1120"; + version = "20160331.954"; src = fetchFromGitHub { owner = "abo-abo"; repo = "helm-make"; - rev = "0f29d09002653a2b3cb21ffdecaf33e7911747d8"; - sha256 = "05z1s01wgdj2s7qln42cg7nnjq0hmq2ji4xjldzj6w770a5nvb7g"; + rev = "83f11a9bf9db3570b547eade58346b5887e016c0"; + sha256 = "1zxahr48s17di8mcy2sxvy4006ch9vwbvkbgkxdphijgqz41irqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-make"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-make"; sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc"; name = "helm-make"; }; packageRequires = [ helm projectile ]; meta = { - homepage = "http://melpa.org/#/helm-make"; + homepage = "https://melpa.org/#/helm-make"; license = lib.licenses.free; }; }) {}; @@ -26203,13 +27227,13 @@ sha256 = "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-migemo"; sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x"; name = "helm-migemo"; }; packageRequires = [ cl-lib emacs helm-core migemo ]; meta = { - homepage = "http://melpa.org/#/helm-migemo"; + homepage = "https://melpa.org/#/helm-migemo"; license = lib.licenses.free; }; }) {}; @@ -26224,13 +27248,13 @@ sha256 = "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-mode-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-mode-manager"; sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd"; name = "helm-mode-manager"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-mode-manager"; + homepage = "https://melpa.org/#/helm-mode-manager"; license = lib.licenses.free; }; }) {}; @@ -26245,34 +27269,34 @@ sha256 = "09rb8aq7fnf661w3liwbkkaczjph3dzvg26slm9cwcnl7pqnvagl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-mt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-mt"; sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a"; name = "helm-mt"; }; packageRequires = [ cl-lib emacs helm multi-term ]; meta = { - homepage = "http://melpa.org/#/helm-mt"; + homepage = "https://melpa.org/#/helm-mt"; license = lib.licenses.free; }; }) {}; helm-mu = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-mu"; - version = "20160124.1957"; + version = "20160404.1053"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-mu"; - rev = "20a2a8a43403f5ff9ee32510c78551f63d2e0e57"; - sha256 = "0zcpdkh2ycmnv2nkv02khqp5r7za3x3vji2sj4nwz1wd86rrpbv5"; + rev = "f5e1cb2cd16798efb7a38c6c25db8890878af2c9"; + sha256 = "1q55x1rygqxriwxyp88azfp3phnibjfz9bwq4dwsvqah1zpzdzma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-mu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-mu"; sha256 = "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2"; name = "helm-mu"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-mu"; + homepage = "https://melpa.org/#/helm-mu"; license = lib.licenses.free; }; }) {}; @@ -26283,17 +27307,38 @@ src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; - rev = "63061d379460c53abbe88ec695a61e22feae438f"; - sha256 = "100vjppa6nipn227v871nkmjmqln2l1lv1v8in1lcjhsz4rxrhs9"; + rev = "9e84e7f93307b72a1c0decfc2eff9d4943631de3"; + sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-nixos-options"; sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933"; name = "helm-nixos-options"; }; packageRequires = [ helm nixos-options ]; meta = { - homepage = "http://melpa.org/#/helm-nixos-options"; + homepage = "https://melpa.org/#/helm-nixos-options"; + license = lib.licenses.free; + }; + }) {}; + helm-notmuch = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, notmuch }: + melpaBuild { + pname = "helm-notmuch"; + version = "20160412.1406"; + src = fetchFromGitHub { + owner = "xuchunyang"; + repo = "helm-notmuch"; + rev = "e3c41e6b1458c6fb686bbcc8c8827dca98f306d0"; + sha256 = "04c6k1rxdi175kwn146sb2nxd13mvx3irr9fbqykcfv81609kqx3"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-notmuch"; + sha256 = "1ixdc1ba4ygxl0lpg6ijk06dgj2hfv5p5k6ivq60ss0axyisnnv0"; + name = "helm-notmuch"; + }; + packageRequires = [ helm notmuch ]; + meta = { + homepage = "https://melpa.org/#/helm-notmuch"; license = lib.licenses.free; }; }) {}; @@ -26308,13 +27353,34 @@ sha256 = "1wkmbc7247f209krvw4dzja3z0wyny12x5yi1cn3fnfh5nx04851"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-open-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-open-github"; sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx"; name = "helm-open-github"; }; packageRequires = [ cl-lib gh helm-core ]; meta = { - homepage = "http://melpa.org/#/helm-open-github"; + homepage = "https://melpa.org/#/helm-open-github"; + license = lib.licenses.free; + }; + }) {}; + helm-org-rifle = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: + melpaBuild { + pname = "helm-org-rifle"; + version = "20160420.1018"; + src = fetchFromGitHub { + owner = "alphapapa"; + repo = "helm-org-rifle"; + rev = "66b85c6ff1c73186ee9248c00f9221e023f18aa8"; + sha256 = "0glrbln15wang9n1h76dk19ykcgmc8hwphg1qcmc4fbbcgmh1a1p"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-org-rifle"; + sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3"; + name = "helm-org-rifle"; + }; + packageRequires = [ dash emacs f helm s ]; + meta = { + homepage = "https://melpa.org/#/helm-org-rifle"; license = lib.licenses.free; }; }) {}; @@ -26329,13 +27395,13 @@ sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-orgcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-orgcard"; sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p"; name = "helm-orgcard"; }; packageRequires = [ helm-core ]; meta = { - homepage = "http://melpa.org/#/helm-orgcard"; + homepage = "https://melpa.org/#/helm-orgcard"; license = lib.licenses.free; }; }) {}; @@ -26350,34 +27416,34 @@ sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-package"; sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y"; name = "helm-package"; }; packageRequires = [ cl-lib helm ]; meta = { - homepage = "http://melpa.org/#/helm-package"; + homepage = "https://melpa.org/#/helm-package"; license = lib.licenses.free; }; }) {}; helm-pages = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-pages"; - version = "20151209.1400"; + version = "20160321.2113"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "helm-pages"; - rev = "60f52edb11e54f553251234f4d336c0947ca0a2b"; - sha256 = "0yngs3q6142g2nn1wwdaifylyfjjs3gmmy0jck5zh8mhmdgdqr06"; + rev = "0366be2f89b92edc0d4a8c5f0f0e8674e0124d0c"; + sha256 = "1dyi3rs72jl7739knnikv8pawam54k0sxz5a4a33i6s2bg3ghxcd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pages"; sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj"; name = "helm-pages"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-pages"; + homepage = "https://melpa.org/#/helm-pages"; license = lib.licenses.free; }; }) {}; @@ -26392,13 +27458,13 @@ sha256 = "13wnagmgicl2mi4iksqckrjbaiz05j9ykbmvj26jy8zcbll5imfs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-perldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-perldoc"; sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb"; name = "helm-perldoc"; }; packageRequires = [ cl-lib deferred helm-core ]; meta = { - homepage = "http://melpa.org/#/helm-perldoc"; + homepage = "https://melpa.org/#/helm-perldoc"; license = lib.licenses.free; }; }) {}; @@ -26413,13 +27479,13 @@ sha256 = "076yhcf447fas14k8gg67rc743x049xf66627sd9lgjv7107r8vr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-proc"; sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx"; name = "helm-proc"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-proc"; + homepage = "https://melpa.org/#/helm-proc"; license = lib.licenses.free; }; }) {}; @@ -26434,34 +27500,34 @@ sha256 = "0j54c1kzsjgr05qx25rg3ylawvyw6n6liypiwaas47vpyfswbxhv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-project-persist"; sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld"; name = "helm-project-persist"; }; packageRequires = [ helm project-persist ]; meta = { - homepage = "http://melpa.org/#/helm-project-persist"; + homepage = "https://melpa.org/#/helm-project-persist"; license = lib.licenses.free; }; }) {}; helm-projectile = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }: melpaBuild { pname = "helm-projectile"; - version = "20160221.26"; + version = "20160330.331"; src = fetchFromGitHub { owner = "bbatsov"; repo = "helm-projectile"; - rev = "64880aad1828044db113c9f455c971bc90dea56b"; - sha256 = "1c4x1zidabysyi5cms93zn3naczhfagd8q4mvg9jkhd1z0lk19gc"; + rev = "87476ab9f5113d6c4e5de9920911b951b4092c19"; + sha256 = "09sw0mhsi5ifcwa3ldx9hgybvmv1xwvxh7sm57pvywaw77vg8k95"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-projectile"; sha256 = "18y7phrvbpdi3cnghwyhh0v1bwm95nwq1lymzf8lrcbmrwcvh36a"; name = "helm-projectile"; }; packageRequires = [ cl-lib dash helm projectile ]; meta = { - homepage = "http://melpa.org/#/helm-projectile"; + homepage = "https://melpa.org/#/helm-projectile"; license = lib.licenses.free; }; }) {}; @@ -26476,13 +27542,13 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-prosjekt"; sha256 = "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm"; name = "helm-prosjekt"; }; packageRequires = [ helm prosjekt ]; meta = { - homepage = "http://melpa.org/#/helm-prosjekt"; + homepage = "https://melpa.org/#/helm-prosjekt"; license = lib.licenses.free; }; }) {}; @@ -26497,13 +27563,13 @@ sha256 = "03ys40rr0pvgp35j5scw9c28j184f1c9m58a3x0c8f0lgyfpssjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pt"; sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi"; name = "helm-pt"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-pt"; + homepage = "https://melpa.org/#/helm-pt"; license = lib.licenses.free; }; }) {}; @@ -26518,13 +27584,13 @@ sha256 = "1lxknzjfhl6irrspynlkc1dp02s0byp94y4qp69gcl9sla9262ip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-purpose"; sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6"; name = "helm-purpose"; }; packageRequires = [ emacs helm window-purpose ]; meta = { - homepage = "http://melpa.org/#/helm-purpose"; + homepage = "https://melpa.org/#/helm-purpose"; license = lib.licenses.free; }; }) {}; @@ -26535,17 +27601,17 @@ src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-pydoc"; - rev = "d4f409127bc77e7c79dcc87320b2db10466caed2"; - sha256 = "1hlbyw6jvh6pm3ivmhd6qvs9j7km322fki9g4yd4qw7w15a3wkyy"; + rev = "8eebf6535b4669b5d9e50bbe4f319cd54a2878c7"; + sha256 = "0admgfy0p13nilb4fi3dq8pm48w1fib8h8avi7h9ybi9k5h6x4ii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pydoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pydoc"; sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7"; name = "helm-pydoc"; }; packageRequires = [ cl-lib helm-core ]; meta = { - homepage = "http://melpa.org/#/helm-pydoc"; + homepage = "https://melpa.org/#/helm-pydoc"; license = lib.licenses.free; }; }) {}; @@ -26560,13 +27626,13 @@ sha256 = "1a26r21jvgzk21vh3mf29s1dhvvv70jh860zaq9ihrpfrrl91158"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rails"; sha256 = "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6"; name = "helm-rails"; }; packageRequires = [ helm inflections ]; meta = { - homepage = "http://melpa.org/#/helm-rails"; + homepage = "https://melpa.org/#/helm-rails"; license = lib.licenses.free; }; }) {}; @@ -26581,13 +27647,13 @@ sha256 = "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rb"; sha256 = "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr"; name = "helm-rb"; }; packageRequires = [ helm helm-ag-r ]; meta = { - homepage = "http://melpa.org/#/helm-rb"; + homepage = "https://melpa.org/#/helm-rb"; license = lib.licenses.free; }; }) {}; @@ -26602,34 +27668,34 @@ sha256 = "0nbny1a41sy4w3k2irp7rh6663jhbssqqshxd3y82iq0hs9h2wda"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-recoll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-recoll"; sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b"; name = "helm-recoll"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-recoll"; + homepage = "https://melpa.org/#/helm-recoll"; license = lib.licenses.free; }; }) {}; helm-rhythmbox = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-rhythmbox"; - version = "20150813.808"; + version = "20160310.634"; src = fetchFromGitHub { owner = "mrBliss"; repo = "helm-rhythmbox"; - rev = "3bdff00fd9d7b39f8b1dfb35e6843da307ef4d98"; - sha256 = "05mf0021jhr4zmysy28cgilkfxyp08qmkc20v9wlykksg73l2crk"; + rev = "068ddb16356d85267d510607313153cb2ecc151b"; + sha256 = "114maxzybs3sn32nv12fgm6aqsdqzn59fjdk6ra5cbbfyjvin16l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rhythmbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rhythmbox"; sha256 = "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a"; name = "helm-rhythmbox"; }; packageRequires = [ cl-lib helm ]; meta = { - homepage = "http://melpa.org/#/helm-rhythmbox"; + homepage = "https://melpa.org/#/helm-rhythmbox"; license = lib.licenses.free; }; }) {}; @@ -26644,13 +27710,13 @@ sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-robe"; sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw"; name = "helm-robe"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-robe"; + homepage = "https://melpa.org/#/helm-robe"; license = lib.licenses.free; }; }) {}; @@ -26659,19 +27725,19 @@ pname = "helm-rubygems-local"; version = "20130711.2011"; src = fetchFromGitHub { - owner = "f-kubotar"; + owner = "hadashiA"; repo = "helm-rubygems-local"; rev = "289cb33d41c703af9791d6da46b55f070013c2e3"; sha256 = "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rubygems-local"; - sha256 = "18p18bly15a8xjc34k11jbvxlmr127sll0vh5ma2p787x6a3mc7c"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rubygems-local"; + sha256 = "134qyqnh9l05lfj0vizlx35631q8ih6cdblrvka3p8i571300ikh"; name = "helm-rubygems-local"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-rubygems-local"; + homepage = "https://melpa.org/#/helm-rubygems-local"; license = lib.licenses.free; }; }) {}; @@ -26686,34 +27752,34 @@ sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rubygems-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rubygems-org"; sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs"; name = "helm-rubygems-org"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-rubygems-org"; + homepage = "https://melpa.org/#/helm-rubygems-org"; license = lib.licenses.free; }; }) {}; helm-safari = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-safari"; - version = "20160116.134"; + version = "20160403.2224"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "helm-safari"; - rev = "a1e17b7a75df62e84b1b5fdedb969cc291c90beb"; - sha256 = "0qm5wlqklwf0y8grqhl2hfyfbkyj8200cdmbcf9cfr51lrh3cn8v"; + rev = "664c7f4488829228eed7e90cd53002e14bec555b"; + sha256 = "1ws5zxanaiaaxpgkcb2914qa8wxp6ml019hfnfcp7amjnajq9pyz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-safari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-safari"; sha256 = "0lvwghcl5w67g0lc97r7hfvca7ss0mysy2mxj9axxbpyiq6fmh0y"; name = "helm-safari"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-safari"; + homepage = "https://melpa.org/#/helm-safari"; license = lib.licenses.free; }; }) {}; @@ -26728,13 +27794,13 @@ sha256 = "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-sage"; sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj"; name = "helm-sage"; }; packageRequires = [ cl-lib helm sage-shell-mode ]; meta = { - homepage = "http://melpa.org/#/helm-sage"; + homepage = "https://melpa.org/#/helm-sage"; license = lib.licenses.free; }; }) {}; @@ -26749,34 +27815,34 @@ sha256 = "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-sheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-sheet"; sha256 = "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc"; name = "helm-sheet"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-sheet"; + homepage = "https://melpa.org/#/helm-sheet"; license = lib.licenses.free; }; }) {}; helm-spaces = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, spaces }: melpaBuild { pname = "helm-spaces"; - version = "20130605.1100"; + version = "20160319.954"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-spaces"; - rev = "7545fed3880effe079bb27bfbf22e902ac0bc828"; - sha256 = "0sw7g1zcs1jfqcpprxwjq97lsk4qfngwamkj3q8jhm77zh7kfa3b"; + rev = "8b20a229d7a932a54ac6a4239638789215e18597"; + sha256 = "0j3b5ypxq8k7mg6zlx3r15jpk3x2f0gx9p9bjr0h78h0sc0f46l7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-spaces"; sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791"; name = "helm-spaces"; }; packageRequires = [ helm spaces ]; meta = { - homepage = "http://melpa.org/#/helm-spaces"; + homepage = "https://melpa.org/#/helm-spaces"; license = lib.licenses.free; }; }) {}; @@ -26791,34 +27857,55 @@ sha256 = "133dcqk42nq5gh5qlcbcmx3lczisfgymcnypnld318jvjgd2ma8a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-spotify"; sha256 = "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf"; name = "helm-spotify"; }; packageRequires = [ helm multi ]; meta = { - homepage = "http://melpa.org/#/helm-spotify"; + homepage = "https://melpa.org/#/helm-spotify"; license = lib.licenses.free; }; }) {}; helm-swoop = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-swoop"; - version = "20160131.733"; + version = "20160417.1657"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "helm-swoop"; - rev = "002338d9685d82ef10aaf97d2e8084e61dfc94b4"; - sha256 = "0n7fma8zp6shyz814mxfljj8x23gcwnkrbghkmfjp87cr1zkmw41"; + rev = "fd01dac3d647544f4ca297ca9963859b07ebe354"; + sha256 = "1iid2jcnqpd5b2g0jgas76n06i8m20kp3j4lhmalg9jnyvgrlf7s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-swoop"; sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8"; name = "helm-swoop"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-swoop"; + homepage = "https://melpa.org/#/helm-swoop"; + license = lib.licenses.free; + }; + }) {}; + helm-systemd = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, with-editor }: + melpaBuild { + pname = "helm-systemd"; + version = "20160424.854"; + src = fetchFromGitHub { + owner = "lompik"; + repo = "helm-systemd"; + rev = "f716006030aea2675e4c51705033f2ba980f964c"; + sha256 = "171yym0jkhgbvxwmqk4xla7bbhmnijdwkyrzqppa5nzl86g2g3kg"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-systemd"; + sha256 = "1kcf9218l8aygrcj1h3czyklk1cxc5c73qmv4d3r3bzpxbxgf6ib"; + name = "helm-systemd"; + }; + packageRequires = [ emacs helm with-editor ]; + meta = { + homepage = "https://melpa.org/#/helm-systemd"; license = lib.licenses.free; }; }) {}; @@ -26833,13 +27920,13 @@ sha256 = "0a9h6rmjc6c6krkvxbgrzv35if260d9ma9a2k47jzm9psnyp9s2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-themes"; sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j"; name = "helm-themes"; }; packageRequires = [ helm-core ]; meta = { - homepage = "http://melpa.org/#/helm-themes"; + homepage = "https://melpa.org/#/helm-themes"; license = lib.licenses.free; }; }) {}; @@ -26854,13 +27941,13 @@ sha256 = "1ypnsbx623gg3q07gxrbkn82jzy38sj4p52hj1wcb54qjqzyznkg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-unicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-unicode"; sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4"; name = "helm-unicode"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-unicode"; + homepage = "https://melpa.org/#/helm-unicode"; license = lib.licenses.free; }; }) {}; @@ -26875,13 +27962,13 @@ sha256 = "0xlz9rxx7y9pkrzvxmv42vgys5iwx75zv9g50k8ihwc08z80dhcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-w32-launcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-w32-launcher"; sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri"; name = "helm-w32-launcher"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-w32-launcher"; + homepage = "https://melpa.org/#/helm-w32-launcher"; license = lib.licenses.free; }; }) {}; @@ -26896,13 +27983,13 @@ sha256 = "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-w3m"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-w3m"; sha256 = "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz"; name = "helm-w3m"; }; packageRequires = [ cl-lib emacs helm w3m ]; meta = { - homepage = "http://melpa.org/#/helm-w3m"; + homepage = "https://melpa.org/#/helm-w3m"; license = lib.licenses.free; }; }) {}; @@ -26917,13 +28004,13 @@ sha256 = "03a5hzgqak8wg6i2h2p3fr9ij55lqarcsblml8qrnrj27ghcvzzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-wordnet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-wordnet"; sha256 = "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f"; name = "helm-wordnet"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-wordnet"; + homepage = "https://melpa.org/#/helm-wordnet"; license = lib.licenses.free; }; }) {}; @@ -26938,13 +28025,13 @@ sha256 = "19l8vysjygscr1nsddjz2yv0fjhbsswfq40rdny8zsmaa6qhpj35"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-words"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-words"; sha256 = "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76"; name = "helm-words"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/helm-words"; + homepage = "https://melpa.org/#/helm-words"; license = lib.licenses.free; }; }) {}; @@ -26959,13 +28046,13 @@ sha256 = "1yqr5z5sw7schvaq9pmwg79anp806gikm28s6xvrayzyn4idz2n6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-xcdoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-xcdoc"; sha256 = "1ikphlnj053i4g1l8r2pqaljvdqglj1yk0xx4vygnw98qyzdsx4v"; name = "helm-xcdoc"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-xcdoc"; + homepage = "https://melpa.org/#/helm-xcdoc"; license = lib.licenses.free; }; }) {}; @@ -26980,13 +28067,13 @@ sha256 = "11fznbfcv4rac4h50mkax1g66wd2f91f5dw2v4jxjq2f5y4h4w0g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-zhihu-daily"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-zhihu-daily"; sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r"; name = "helm-zhihu-daily"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-zhihu-daily"; + homepage = "https://melpa.org/#/helm-zhihu-daily"; license = lib.licenses.free; }; }) {}; @@ -26994,17 +28081,17 @@ pname = "help-fns-plus"; version = "20151215.837"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/help-fns+.el"; + url = "https://www.emacswiki.org/emacs/download/help-fns+.el"; sha256 = "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/help-fns+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/help-fns+"; sha256 = "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia"; name = "help-fns-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/help-fns+"; + homepage = "https://melpa.org/#/help-fns+"; license = lib.licenses.free; }; }) {}; @@ -27012,17 +28099,17 @@ pname = "help-mode-plus"; version = "20151231.1531"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/help-mode+.el"; + url = "https://www.emacswiki.org/emacs/download/help-mode+.el"; sha256 = "0qmf81maq6yvs68b8vlbxwkjk72qldamq75znrma9mhvlv8igrgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/help-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/help-mode+"; sha256 = "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra"; name = "help-mode-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/help-mode+"; + homepage = "https://melpa.org/#/help-mode+"; license = lib.licenses.free; }; }) {}; @@ -27030,17 +28117,17 @@ pname = "help-plus"; version = "20151231.1528"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/help+.el"; + url = "https://www.emacswiki.org/emacs/download/help+.el"; sha256 = "1r7kf9plnsjx87bhflsdh47wybvhis7gb10izqa1p6w0aqsg178s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/help+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/help+"; sha256 = "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi"; name = "help-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/help+"; + homepage = "https://melpa.org/#/help+"; license = lib.licenses.free; }; }) {}; @@ -27055,13 +28142,13 @@ sha256 = "178dvigiw162m01x7dm8pf61w2n3bq51lvk5q7jzpb9s35pz1697"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hemisu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hemisu-theme"; sha256 = "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph"; name = "hemisu-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hemisu-theme"; + homepage = "https://melpa.org/#/hemisu-theme"; license = lib.licenses.free; }; }) {}; @@ -27076,13 +28163,13 @@ sha256 = "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/heroku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/heroku"; sha256 = "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy"; name = "heroku"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/heroku"; + homepage = "https://melpa.org/#/heroku"; license = lib.licenses.free; }; }) {}; @@ -27097,13 +28184,34 @@ sha256 = "15hk0v6ck076mahsz4spq75jcnv587fx4d3w50c7bdh423fl0xvx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/heroku-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/heroku-theme"; sha256 = "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9"; name = "heroku-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/heroku-theme"; + homepage = "https://melpa.org/#/heroku-theme"; + license = lib.licenses.free; + }; + }) {}; + hexo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "hexo"; + version = "20160423.1017"; + src = fetchFromGitHub { + owner = "kuanyui"; + repo = "hexo.el"; + rev = "3e41f90f4954e75dc584dd3563e68e11757ea3b9"; + sha256 = "1ghknn1fd6lwxq035amrawx9ixw3qwjsfarsjyqss7rhs70wrn5a"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hexo"; + sha256 = "0fgrxf6gdw0kzs6x6y8qr511cazaaiyk7licgkgznngj4w6g7jyn"; + name = "hexo"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/hexo"; license = lib.licenses.free; }; }) {}; @@ -27111,17 +28219,38 @@ pname = "hexrgb"; version = "20151231.1532"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/hexrgb.el"; + url = "https://www.emacswiki.org/emacs/download/hexrgb.el"; sha256 = "0rqjidjxa5j6rjknklfks743lczbq3qsyiranrf2z3ghzi0gf7fd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hexrgb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hexrgb"; sha256 = "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06"; name = "hexrgb"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hexrgb"; + homepage = "https://melpa.org/#/hexrgb"; + license = lib.licenses.free; + }; + }) {}; + hfst-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "hfst-mode"; + version = "20160402.628"; + src = fetchFromGitHub { + owner = "unhammer"; + repo = "hfst-mode"; + rev = "d145a21e3e175b0fe2b0592981533c9492bd289c"; + sha256 = "1zr59kcnkd9bm5676shmz63n0wpnfr7yl9g4l01ng0xcili1n13i"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hfst-mode"; + sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7"; + name = "hfst-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/hfst-mode"; license = lib.licenses.free; }; }) {}; @@ -27136,13 +28265,13 @@ sha256 = "06hm98aq87l91fhb2bqz8jw427k8fb280ygz5g44fy6sqc6js7v0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hgignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hgignore-mode"; sha256 = "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj"; name = "hgignore-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hgignore-mode"; + homepage = "https://melpa.org/#/hgignore-mode"; license = lib.licenses.free; }; }) {}; @@ -27157,13 +28286,13 @@ sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hi2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hi2"; sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2"; name = "hi2"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hi2"; + homepage = "https://melpa.org/#/hi2"; license = lib.licenses.free; }; }) {}; @@ -27171,17 +28300,17 @@ pname = "hide-comnt"; version = "20151231.1533"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/hide-comnt.el"; + url = "https://www.emacswiki.org/emacs/download/hide-comnt.el"; sha256 = "1l5jvgjgd0kzv1sn6h467fbnl487hma4h4pkwq4x1dhbc26yvfpz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hide-comnt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hide-comnt"; sha256 = "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx"; name = "hide-comnt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hide-comnt"; + homepage = "https://melpa.org/#/hide-comnt"; license = lib.licenses.free; }; }) {}; @@ -27189,17 +28318,17 @@ pname = "hide-lines"; version = "20151127.1240"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/hide-lines.el"; + url = "https://www.emacswiki.org/emacs/download/hide-lines.el"; sha256 = "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hide-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hide-lines"; sha256 = "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q"; name = "hide-lines"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hide-lines"; + homepage = "https://melpa.org/#/hide-lines"; license = lib.licenses.free; }; }) {}; @@ -27207,17 +28336,17 @@ pname = "hide-region"; version = "20140201.514"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/hide-region.el"; + url = "https://www.emacswiki.org/emacs/download/hide-region.el"; sha256 = "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hide-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hide-region"; sha256 = "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm"; name = "hide-region"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hide-region"; + homepage = "https://melpa.org/#/hide-region"; license = lib.licenses.free; }; }) {}; @@ -27232,13 +28361,13 @@ sha256 = "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hideshow-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hideshow-org"; sha256 = "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc"; name = "hideshow-org"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hideshow-org"; + homepage = "https://melpa.org/#/hideshow-org"; license = lib.licenses.free; }; }) {}; @@ -27246,17 +28375,17 @@ pname = "hideshowvis"; version = "20130824.700"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/hideshowvis.el"; + url = "https://www.emacswiki.org/emacs/download/hideshowvis.el"; sha256 = "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hideshowvis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hideshowvis"; sha256 = "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f"; name = "hideshowvis"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hideshowvis"; + homepage = "https://melpa.org/#/hideshowvis"; license = lib.licenses.free; }; }) {}; @@ -27264,17 +28393,17 @@ pname = "highlight"; version = "20151231.1537"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/highlight.el"; + url = "https://www.emacswiki.org/emacs/download/highlight.el"; sha256 = "15s4463damlszd5wqi22a6w25i8l0m5rvqdg73k3yp01i65jc29z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight"; sha256 = "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0"; name = "highlight"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight"; + homepage = "https://melpa.org/#/highlight"; license = lib.licenses.free; }; }) {}; @@ -27289,13 +28418,13 @@ sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-blocks"; sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1"; name = "highlight-blocks"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/highlight-blocks"; + homepage = "https://melpa.org/#/highlight-blocks"; license = lib.licenses.free; }; }) {}; @@ -27303,17 +28432,17 @@ pname = "highlight-chars"; version = "20151231.1535"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/highlight-chars.el"; + url = "https://www.emacswiki.org/emacs/download/highlight-chars.el"; sha256 = "18y6cw43mhizccvwfydv6g2kz8w7vff0n3k9sq5ghwq3rb3z14b2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-chars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-chars"; sha256 = "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0"; name = "highlight-chars"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-chars"; + homepage = "https://melpa.org/#/highlight-chars"; license = lib.licenses.free; }; }) {}; @@ -27321,17 +28450,17 @@ pname = "highlight-cl"; version = "20091012.1230"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/highlight-cl.el"; + url = "https://www.emacswiki.org/emacs/download/highlight-cl.el"; sha256 = "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-cl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-cl"; sha256 = "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w"; name = "highlight-cl"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-cl"; + homepage = "https://melpa.org/#/highlight-cl"; license = lib.licenses.free; }; }) {}; @@ -27340,17 +28469,17 @@ pname = "highlight-current-line"; version = "20051013.1256"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/highlight-current-line.el"; + url = "https://www.emacswiki.org/emacs/download/highlight-current-line.el"; sha256 = "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-current-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-current-line"; sha256 = "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973"; name = "highlight-current-line"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-current-line"; + homepage = "https://melpa.org/#/highlight-current-line"; license = lib.licenses.free; }; }) {}; @@ -27365,13 +28494,13 @@ sha256 = "1l10xnjyvcbv1v8xlldaca7z3fk5qav7nsbhfnjxxd0bgh5v9by2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-defined"; sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms"; name = "highlight-defined"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/highlight-defined"; + homepage = "https://melpa.org/#/highlight-defined"; license = lib.licenses.free; }; }) {}; @@ -27386,13 +28515,13 @@ sha256 = "0rs8zyjz5mh26n8bdxn6fmyw2809nihz1vp7ih59dq11lx3mf9az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-escape-sequences"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-escape-sequences"; sha256 = "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6"; name = "highlight-escape-sequences"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-escape-sequences"; + homepage = "https://melpa.org/#/highlight-escape-sequences"; license = lib.licenses.free; }; }) {}; @@ -27407,13 +28536,13 @@ sha256 = "10m1cr5plzsxbq08lck4c2w0whcdrnl9h2qm4bbr9srhnpry7fxj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-indent-guides"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-indent-guides"; sha256 = "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm"; name = "highlight-indent-guides"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-indent-guides"; + homepage = "https://melpa.org/#/highlight-indent-guides"; license = lib.licenses.free; }; }) {}; @@ -27428,13 +28557,13 @@ sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-indentation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-indentation"; sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6"; name = "highlight-indentation"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-indentation"; + homepage = "https://melpa.org/#/highlight-indentation"; license = lib.licenses.free; }; }) {}; @@ -27449,13 +28578,13 @@ sha256 = "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-leading-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-leading-spaces"; sha256 = "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p"; name = "highlight-leading-spaces"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/highlight-leading-spaces"; + homepage = "https://melpa.org/#/highlight-leading-spaces"; license = lib.licenses.free; }; }) {}; @@ -27470,13 +28599,13 @@ sha256 = "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-numbers"; sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv"; name = "highlight-numbers"; }; packageRequires = [ emacs parent-mode ]; meta = { - homepage = "http://melpa.org/#/highlight-numbers"; + homepage = "https://melpa.org/#/highlight-numbers"; license = lib.licenses.free; }; }) {}; @@ -27485,19 +28614,19 @@ pname = "highlight-parentheses"; version = "20151108.116"; src = fetchFromGitHub { - owner = "nschum"; + owner = "tsdh"; repo = "highlight-parentheses.el"; rev = "a821a314942f409cd69660d816cd9a0aebd1ae8f"; sha256 = "0kzqx1y6rr4ryxi2md9087saad4g4bzysckmp8272k521d46xa1r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-parentheses"; - sha256 = "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-parentheses"; + sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5"; name = "highlight-parentheses"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-parentheses"; + homepage = "https://melpa.org/#/highlight-parentheses"; license = lib.licenses.free; }; }) {}; @@ -27512,13 +28641,13 @@ sha256 = "1gq8inxfni9zgz2brqm4nlswgr8b0spq15wr532xfrgr456g10ks"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-quoted"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-quoted"; sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl"; name = "highlight-quoted"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/highlight-quoted"; + homepage = "https://melpa.org/#/highlight-quoted"; license = lib.licenses.free; }; }) {}; @@ -27533,13 +28662,13 @@ sha256 = "0gnr1dqkcmc9gfzqjaixh76g1kq7xp20mg1h6vl3c4na7nk6a3fg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-stages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-stages"; sha256 = "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4"; name = "highlight-stages"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-stages"; + homepage = "https://melpa.org/#/highlight-stages"; license = lib.licenses.free; }; }) {}; @@ -27554,13 +28683,13 @@ sha256 = "19cgyk0sh8nsmf3jbi92i8qsdx4l4yilfq5jj9zfdbj9p5gvwx96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-symbol"; sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4"; name = "highlight-symbol"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-symbol"; + homepage = "https://melpa.org/#/highlight-symbol"; license = lib.licenses.free; }; }) {}; @@ -27568,17 +28697,17 @@ pname = "highlight-tail"; version = "20140415.2041"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/highlight-tail.el"; + url = "https://www.emacswiki.org/emacs/download/highlight-tail.el"; sha256 = "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-tail"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-tail"; sha256 = "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws"; name = "highlight-tail"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-tail"; + homepage = "https://melpa.org/#/highlight-tail"; license = lib.licenses.free; }; }) {}; @@ -27593,13 +28722,13 @@ sha256 = "00s2nm0rfdgkpn2v9m36y0l42jyfah5hp5hd3bkwljgs99cp1ihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-thing"; sha256 = "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1"; name = "highlight-thing"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-thing"; + homepage = "https://melpa.org/#/highlight-thing"; license = lib.licenses.free; }; }) {}; @@ -27614,13 +28743,13 @@ sha256 = "0hhc2l4pz6q8injpplv6b5l08l8q2lnjdpwabp7gwmhraq54rhjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-unique-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-unique-symbol"; sha256 = "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx"; name = "highlight-unique-symbol"; }; packageRequires = [ deferred ]; meta = { - homepage = "http://melpa.org/#/highlight-unique-symbol"; + homepage = "https://melpa.org/#/highlight-unique-symbol"; license = lib.licenses.free; }; }) {}; @@ -27635,13 +28764,13 @@ sha256 = "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight2clipboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight2clipboard"; sha256 = "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0"; name = "highlight2clipboard"; }; packageRequires = [ htmlize ]; meta = { - homepage = "http://melpa.org/#/highlight2clipboard"; + homepage = "https://melpa.org/#/highlight2clipboard"; license = lib.licenses.free; }; }) {}; @@ -27652,17 +28781,17 @@ src = fetchFromGitHub { owner = "chrisdone"; repo = "hindent"; - rev = "575a7a19f9c86b9699a6222072c79fe02da18c4c"; - sha256 = "1phyaf6fwaxi2plq38m09cfb5ls401ay8jw0yf5rix8nyvm8nrn9"; + rev = "546025b34a259ea4556505feee301462ac0e9def"; + sha256 = "03mnvhav2bm51s430z3vyig5z5q8rg9glr8zqxwdnw297ln2f3l6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hindent"; sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz"; name = "hindent"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/hindent"; + homepage = "https://melpa.org/#/hindent"; license = lib.licenses.free; }; }) {}; @@ -27670,17 +28799,17 @@ pname = "hippie-exp-ext"; version = "20151011.345"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/hippie-exp-ext.el"; + url = "https://www.emacswiki.org/emacs/download/hippie-exp-ext.el"; sha256 = "1jkjg7zxpc06plzlyvj1a8dcvj8ijqzhkxwlsd12cgkymvp411yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hippie-exp-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hippie-exp-ext"; sha256 = "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq"; name = "hippie-exp-ext"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hippie-exp-ext"; + homepage = "https://melpa.org/#/hippie-exp-ext"; license = lib.licenses.free; }; }) {}; @@ -27695,13 +28824,13 @@ sha256 = "1l76r8hzhaapx76f6spm5jmjbrrm5zf79cpd5024xw3hpj1jbkjp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hippie-expand-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hippie-expand-slime"; sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m"; name = "hippie-expand-slime"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hippie-expand-slime"; + homepage = "https://melpa.org/#/hippie-expand-slime"; license = lib.licenses.free; }; }) {}; @@ -27716,13 +28845,13 @@ sha256 = "0b5wrid428s11afc48d6mdifmd31gmzyrj9zcpd3jwk63ydiihdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hippie-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hippie-namespace"; sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0"; name = "hippie-namespace"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hippie-namespace"; + homepage = "https://melpa.org/#/hippie-namespace"; license = lib.licenses.free; }; }) {}; @@ -27737,13 +28866,13 @@ sha256 = "17dcpwx2y464g8qi3ixlsf3la8dn0bkxax296bhfg4vh73dxccl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hipster-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hipster-theme"; sha256 = "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2"; name = "hipster-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hipster-theme"; + homepage = "https://melpa.org/#/hipster-theme"; license = lib.licenses.free; }; }) {}; @@ -27758,13 +28887,13 @@ sha256 = "1dmrg39g0faqqkgrpcbybjbb91vcpkwawxsplckkj92y59zanq3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/history"; sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g"; name = "history"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/history"; + homepage = "https://melpa.org/#/history"; license = lib.licenses.free; }; }) {}; @@ -27779,13 +28908,13 @@ sha256 = "1y275fchhx0n6dv038hsr44a3bjghqdhc8j1dcpm2rvs8chgm8g0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/historyf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/historyf"; sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s"; name = "historyf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/historyf"; + homepage = "https://melpa.org/#/historyf"; license = lib.licenses.free; }; }) {}; @@ -27800,13 +28929,13 @@ sha256 = "097lrj9lgfa7szww324hlqywwkbi31n1pxfqyg0zbfj45djkp9bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hive"; sha256 = "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya"; name = "hive"; }; packageRequires = [ sql ]; meta = { - homepage = "http://melpa.org/#/hive"; + homepage = "https://melpa.org/#/hive"; license = lib.licenses.free; }; }) {}; @@ -27821,34 +28950,34 @@ sha256 = "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hiwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hiwin"; sha256 = "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g"; name = "hiwin"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hiwin"; + homepage = "https://melpa.org/#/hiwin"; license = lib.licenses.free; }; }) {}; hl-anything = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-anything"; - version = "20150219.731"; + version = "20160422.1208"; src = fetchFromGitHub { - owner = "boyw165"; - repo = "hl-anything"; - rev = "018da4cdf891529b4769d59c0400b6cf3456b9c4"; - sha256 = "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr"; + owner = "hl-anything"; + repo = "hl-anything-emacs"; + rev = "8696bc55a8cba408f0fc83a907a9ec529d79e558"; + sha256 = "10ps1rb5fqwaw4lz3nz2rbsry4y81asmi5557g229h8xjhp6gpnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-anything"; - sha256 = "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-anything"; + sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa"; name = "hl-anything"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/hl-anything"; + homepage = "https://melpa.org/#/hl-anything"; license = lib.licenses.free; }; }) {}; @@ -27856,17 +28985,17 @@ pname = "hl-defined"; version = "20151231.1538"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/hl-defined.el"; + url = "https://www.emacswiki.org/emacs/download/hl-defined.el"; sha256 = "170sz6hjd85cw1x0y2g81ks3x3niib4f7y2xz6k8x0dpw357ggv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-defined"; sha256 = "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx"; name = "hl-defined"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hl-defined"; + homepage = "https://melpa.org/#/hl-defined"; license = lib.licenses.free; }; }) {}; @@ -27881,13 +29010,13 @@ sha256 = "17apqs7yqd89mv5283kmwp7byaaimj7j0vis0z1d89jlmp8i6zbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-indent"; sha256 = "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr"; name = "hl-indent"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/hl-indent"; + homepage = "https://melpa.org/#/hl-indent"; license = lib.licenses.free; }; }) {}; @@ -27895,17 +29024,17 @@ pname = "hl-line-plus"; version = "20151231.1539"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/hl-line+.el"; + url = "https://www.emacswiki.org/emacs/download/hl-line+.el"; sha256 = "1kxq79pfs83gp12p2g093m6shsf25q88mi29bvhapxx77ahmxpkn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-line+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-line+"; sha256 = "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix"; name = "hl-line-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hl-line+"; + homepage = "https://melpa.org/#/hl-line+"; license = lib.licenses.free; }; }) {}; @@ -27920,13 +29049,13 @@ sha256 = "0pjfbm8p077frk475bx8xkygn8r4vdsvnx4rcqbjlpjawj0ndgxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-sentence"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-sentence"; sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs"; name = "hl-sentence"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hl-sentence"; + homepage = "https://melpa.org/#/hl-sentence"; license = lib.licenses.free; }; }) {}; @@ -27941,13 +29070,13 @@ sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-sexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-sexp"; sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy"; name = "hl-sexp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hl-sexp"; + homepage = "https://melpa.org/#/hl-sexp"; license = lib.licenses.free; }; }) {}; @@ -27955,38 +29084,38 @@ pname = "hl-spotlight"; version = "20151231.1540"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/hl-spotlight.el"; + url = "https://www.emacswiki.org/emacs/download/hl-spotlight.el"; sha256 = "0m84d1rdsp9r5ip79jlrp69pf1daw0ch8c378q3kc328606i3p2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-spotlight"; sha256 = "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3"; name = "hl-spotlight"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hl-spotlight"; + homepage = "https://melpa.org/#/hl-spotlight"; license = lib.licenses.free; }; }) {}; hl-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-todo"; - version = "20151025.1420"; + version = "20160424.649"; src = fetchFromGitHub { owner = "tarsius"; repo = "hl-todo"; - rev = "4a5958b90d35c0ba368778274c2a3ab9df941d1c"; - sha256 = "0lwcvwnkbfpjw92k4qfj57nlhv8xbl614p5dfi8qy76y8bs71cvd"; + rev = "6507868d63f3569a6f196716c38e09cf2b57d4e9"; + sha256 = "1ljakm15bsl9hv1rbg6lj0mnbc4qna5fr9rwkalnlwknjpka1bx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-todo"; sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4"; name = "hl-todo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hl-todo"; + homepage = "https://melpa.org/#/hl-todo"; license = lib.licenses.free; }; }) {}; @@ -28001,13 +29130,13 @@ sha256 = "02mkfrs55d32948x739f94v35343gw6a0f7fknbcigbz56mzsvsp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hlint-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hlint-refactor"; sha256 = "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq"; name = "hlint-refactor"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hlint-refactor"; + homepage = "https://melpa.org/#/hlint-refactor"; license = lib.licenses.free; }; }) {}; @@ -28022,13 +29151,13 @@ sha256 = "0yw89kxvz53i9rbq3lsbp5xkgfl1986s23vyra5pipakfv85gmq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hlinum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hlinum"; sha256 = "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv"; name = "hlinum"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/hlinum"; + homepage = "https://melpa.org/#/hlinum"; license = lib.licenses.free; }; }) {}; @@ -28039,16 +29168,16 @@ src = fetchgit { url = "https://gitlab.lrde.epita.fr/spot/emacs-modes.git"; rev = "3c608e15b655d2375c5f81323ac561c7848dc029"; - sha256 = "bf4056192044808554a5dfd537512ec939cbcf628a9becd61736d6409f7e7ce8"; + sha256 = "1s3wgsgl1min2zbfr6wacb7wnff95r8kgmfzlma8b02440cmch5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hoa-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hoa-mode"; sha256 = "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv"; name = "hoa-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hoa-mode"; + homepage = "https://melpa.org/#/hoa-mode"; license = lib.licenses.free; }; }) {}; @@ -28063,34 +29192,34 @@ sha256 = "0g2r4d0ivbadqw1k8jsv0jwv8krpfahsg0qmzyi909p2yfddqk1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hoa-pp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hoa-pp-mode"; sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla"; name = "hoa-pp-mode"; }; packageRequires = [ emacs names ]; meta = { - homepage = "http://melpa.org/#/hoa-pp-mode"; + homepage = "https://melpa.org/#/hoa-pp-mode"; license = lib.licenses.free; }; }) {}; homebrew-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "homebrew-mode"; - version = "20151030.851"; + version = "20160406.1125"; src = fetchFromGitHub { owner = "dunn"; repo = "homebrew-mode"; - rev = "767b4934c02c7b4117b6bd6cae8224848bc49db2"; - sha256 = "1sj8pz48cilk8l6zn47fv1wkv833wrkvrf2mrmbdkvj3lqjrz0b3"; + rev = "11e952b9fd9c7aa9c18933f7605cd10bac31e227"; + sha256 = "0yh9v5zng1j2kfjjadfkdds67jws79q52kvl2mx9s8mq28263idm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/homebrew-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/homebrew-mode"; sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj"; name = "homebrew-mode"; }; packageRequires = [ dash emacs inf-ruby ]; meta = { - homepage = "http://melpa.org/#/homebrew-mode"; + homepage = "https://melpa.org/#/homebrew-mode"; license = lib.licenses.free; }; }) {}; @@ -28101,17 +29230,17 @@ src = fetchFromGitHub { owner = "Silex"; repo = "hookify"; - rev = "e76127230716f7fab6662410c03c3872d17a172b"; - sha256 = "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc"; + rev = "b4aa586b24ff63f84baa8de4ed2fd93be6479ade"; + sha256 = "1d3dlkrv95xrpv4rv3jgn58mxs71f6vi2lr88bddhxz702vb11d8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hookify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hookify"; sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy"; name = "hookify"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/hookify"; + homepage = "https://melpa.org/#/hookify"; license = lib.licenses.free; }; }) {}; @@ -28126,13 +29255,13 @@ sha256 = "1gm5nczq5lsxqkfb38ajffg65zwxkfqvqhk33bwnnd00rpa1ix6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hound"; sha256 = "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v"; name = "hound"; }; packageRequires = [ cl-lib web ]; meta = { - homepage = "http://melpa.org/#/hound"; + homepage = "https://melpa.org/#/hound"; license = lib.licenses.free; }; }) {}; @@ -28141,19 +29270,19 @@ pname = "how-many-lines-in-project"; version = "20140806.2342"; src = fetchFromGitHub { - owner = "kaihaosw"; + owner = "hiddenlotus"; repo = "how-many-lines-in-project"; rev = "8a37ef885d004fe2ce231bfe05ed4867c6192d9b"; sha256 = "0vygbdjy2dv7n50vrkcnqyswq48sgas0zzjfsac8x5g9vhxjkawj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/how-many-lines-in-project"; - sha256 = "145zmfmsxcbmfh9s0mvxxgfh1d51q66396zc29k1c0hw94ffhkdd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/how-many-lines-in-project"; + sha256 = "1dfh1ydpjbrawqpsj6kydvy8sz3rlwn4ma5cizfw5spd2gcmj1zb"; name = "how-many-lines-in-project"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/how-many-lines-in-project"; + homepage = "https://melpa.org/#/how-many-lines-in-project"; license = lib.licenses.free; }; }) {}; @@ -28168,13 +29297,33 @@ sha256 = "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/howdoi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/howdoi"; sha256 = "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b"; name = "howdoi"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/howdoi"; + homepage = "https://melpa.org/#/howdoi"; + license = lib.licenses.free; + }; + }) {}; + howm = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "howm"; + version = "20160405.718"; + src = fetchgit { + url = "git://git.osdn.jp/gitroot/howm/howm.git"; + rev = "6d6b4ca60e5c164a3e284ba82156b8ae33e83b7a"; + sha256 = "0q9rjy8i263d6fcyj0s1l95s7vajf15i2fkbkbmhh4rp63nd04g3"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/howm"; + sha256 = "007r8mjn7m7m1mvsb1gaiqbizlwykh23k72g48nwan8bw556gfcr"; + name = "howm"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/howm"; license = lib.licenses.free; }; }) {}; @@ -28189,13 +29338,13 @@ sha256 = "17x5w5kzam8cgaphyasnqzm2yhc0hwm38azvmin7ra4h912vlisd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ht"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ht"; sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd"; name = "ht"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ht"; + homepage = "https://melpa.org/#/ht"; license = lib.licenses.free; }; }) {}; @@ -28210,13 +29359,13 @@ sha256 = "10lbxf56gvy26grzrhhx2p710fzs0h866jd2zmmgkisvyb0vaiay"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/html-check-frag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/html-check-frag"; sha256 = "0drancb9ryifiln44b40l6cal0c7nyp597a6q26288s3v909yk2a"; name = "html-check-frag"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/html-check-frag"; + homepage = "https://melpa.org/#/html-check-frag"; license = lib.licenses.free; }; }) {}; @@ -28226,18 +29375,18 @@ version = "20120403.1315"; src = fetchFromGitHub { owner = "rejeep"; - repo = "html-script-src"; + repo = "html-script-src.el"; rev = "66460f8ab1b24656e6f3ce5bd50cff6a81be8422"; sha256 = "0k9ga0qi6h33akip2vrpclfp4zljnbw5ax40lxyxc1813hwkdrmh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/html-script-src"; - sha256 = "1pin1x6g68y75pa3vz2i9h5pmhjamh5rd5ladb1z3flcavsls64j"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/html-script-src"; + sha256 = "0pdyc2a9wxxc9rivjm2kgh4ysdxmdp73wg37nfy2nzka1m7qni7j"; name = "html-script-src"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/html-script-src"; + homepage = "https://melpa.org/#/html-script-src"; license = lib.licenses.free; }; }) {}; @@ -28252,13 +29401,13 @@ sha256 = "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/html-to-markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/html-to-markdown"; sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv"; name = "html-to-markdown"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/html-to-markdown"; + homepage = "https://melpa.org/#/html-to-markdown"; license = lib.licenses.free; }; }) {}; @@ -28268,16 +29417,16 @@ src = fetchgit { url = "http://fly.srk.fer.hr/~hniksic/emacs/htmlize.git"; rev = "aa6e2f6dba6fdfa200c7c55efe29ff63380eac8f"; - sha256 = "8afaf87b30628afd8d376965247a6b2791129339ad7238c5529f4b173f908251"; + sha256 = "0lc2j0zifjwzab2khwmd769i5497ddx28rb96y6zv2k261xziyla"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/htmlize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/htmlize"; sha256 = "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp"; name = "htmlize"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/htmlize"; + homepage = "https://melpa.org/#/htmlize"; license = lib.licenses.free; }; }) {}; @@ -28292,13 +29441,13 @@ sha256 = "1i0r677zwnl5xl64cqk47y0gfd87vw49nf6ry5v2imbc95ni56wc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/http"; sha256 = "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm"; name = "http"; }; packageRequires = [ emacs request ]; meta = { - homepage = "http://melpa.org/#/http"; + homepage = "https://melpa.org/#/http"; license = lib.licenses.free; }; }) {}; @@ -28306,17 +29455,17 @@ pname = "http-post-simple"; version = "20131010.2258"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/http-post-simple.el"; + url = "https://www.emacswiki.org/emacs/download/http-post-simple.el"; sha256 = "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/http-post-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/http-post-simple"; sha256 = "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf"; name = "http-post-simple"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/http-post-simple"; + homepage = "https://melpa.org/#/http-post-simple"; license = lib.licenses.free; }; }) {}; @@ -28331,13 +29480,13 @@ sha256 = "008iq5fhsw4qklw2l457a1cfqq8diadpnf1c1di5p07sc0za5562"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/http-twiddle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/http-twiddle"; sha256 = "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry"; name = "http-twiddle"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/http-twiddle"; + homepage = "https://melpa.org/#/http-twiddle"; license = lib.licenses.free; }; }) {}; @@ -28352,13 +29501,13 @@ sha256 = "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/httpcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/httpcode"; sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh"; name = "httpcode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/httpcode"; + homepage = "https://melpa.org/#/httpcode"; license = lib.licenses.free; }; }) {}; @@ -28373,13 +29522,13 @@ sha256 = "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/httprepl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/httprepl"; sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh"; name = "httprepl"; }; packageRequires = [ dash emacs s ]; meta = { - homepage = "http://melpa.org/#/httprepl"; + homepage = "https://melpa.org/#/httprepl"; license = lib.licenses.free; }; }) {}; @@ -28394,13 +29543,13 @@ sha256 = "1vy521ljn16a1lcmpj09mr9y0m15lfjhl6xk04sb7nisps3vljyl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hungry-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hungry-delete"; sha256 = "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz"; name = "hungry-delete"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hungry-delete"; + homepage = "https://melpa.org/#/hungry-delete"; license = lib.licenses.free; }; }) {}; @@ -28411,38 +29560,38 @@ src = fetchFromGitHub { owner = "hylang"; repo = "hy-mode"; - rev = "af0d848b069ca0cda3ed177d37d94de117f7ffec"; - sha256 = "16z43mpj839bzafhyzpcbw6bmv4ckrf9ryslvg6z6q4g93k64q2m"; + rev = "50d7d24a52aefd7079c3f26a90c8eaf3065884a1"; + sha256 = "0wn83n1780bvrzx9p870wln51n9rfdghsxl79dp968dxycyhyxvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hy-mode"; sha256 = "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m"; name = "hy-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hy-mode"; + homepage = "https://melpa.org/#/hy-mode"; license = lib.licenses.free; }; }) {}; hyai = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hyai"; - version = "20160216.825"; + version = "20160319.2035"; src = fetchFromGitHub { owner = "iquiw"; repo = "hyai"; - rev = "256c0e2a1a7188bce7ed808804a1f4216ff9db9d"; - sha256 = "1w490lcncl3zfm694x7xpi847527qkqmy0qkpzf72ak2zhywldj0"; + rev = "1ad6876a090dc54a5be1feab1c7f83b9a679e43a"; + sha256 = "0k7r5zddlfipnf6za467lmjx8s6h68dflj7gk05vqr4n4xniwgja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hyai"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hyai"; sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s"; name = "hyai"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/hyai"; + homepage = "https://melpa.org/#/hyai"; license = lib.licenses.free; }; }) {}; @@ -28457,13 +29606,13 @@ sha256 = "11vgz64f8vs8vqp4scj9qvrfdshag7bs615ly9zvzzlk68jivdya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hydandata-light-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hydandata-light-theme"; sha256 = "0jw43m91m10ifqg335y6d52r6ri77hcmxkird8wsyrpsnk3cfb60"; name = "hydandata-light-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hydandata-light-theme"; + homepage = "https://melpa.org/#/hydandata-light-theme"; license = lib.licenses.free; }; }) {}; @@ -28478,34 +29627,34 @@ sha256 = "14gxbza26ccah8jl0fm7ksvaag0mv3c348bgqjy88dqq2qlwcrav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hyde"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hyde"; sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3"; name = "hyde"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hyde"; + homepage = "https://melpa.org/#/hyde"; license = lib.licenses.free; }; }) {}; hydra = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hydra"; - version = "20160126.257"; + version = "20160415.623"; src = fetchFromGitHub { owner = "abo-abo"; repo = "hydra"; - rev = "04cd3e4270ff5d0d51e783c86e87314054f1a018"; - sha256 = "13ghz8mvnqn59m9alwcrxlml1k4cbw4a9wwwgf211ap4q618qjqs"; + rev = "585db09f588805f9c49f679aa1f6d702fe115665"; + sha256 = "1h6pj6bgsh3z8azikxxvwqrbk7pg3zr5q2h3cha88fvxsrzxfhy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hydra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hydra"; sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw"; name = "hydra"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/hydra"; + homepage = "https://melpa.org/#/hydra"; license = lib.licenses.free; }; }) {}; @@ -28520,13 +29669,13 @@ sha256 = "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/i2b2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/i2b2-mode"; sha256 = "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf"; name = "i2b2-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/i2b2-mode"; + homepage = "https://melpa.org/#/i2b2-mode"; license = lib.licenses.free; }; }) {}; @@ -28541,13 +29690,13 @@ sha256 = "1gl21li9vqfjvls4ffjw8a4bicas2c7hmaa621k3hpllgpy6qdg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iasm-mode"; sha256 = "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv"; name = "iasm-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/iasm-mode"; + homepage = "https://melpa.org/#/iasm-mode"; license = lib.licenses.free; }; }) {}; @@ -28562,13 +29711,13 @@ sha256 = "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-git"; sha256 = "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z"; name = "ibuffer-git"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ibuffer-git"; + homepage = "https://melpa.org/#/ibuffer-git"; license = lib.licenses.free; }; }) {}; @@ -28583,13 +29732,13 @@ sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-projectile"; sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk"; name = "ibuffer-projectile"; }; packageRequires = [ projectile ]; meta = { - homepage = "http://melpa.org/#/ibuffer-projectile"; + homepage = "https://melpa.org/#/ibuffer-projectile"; license = lib.licenses.free; }; }) {}; @@ -28604,13 +29753,13 @@ sha256 = "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-rcirc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-rcirc"; sha256 = "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc"; name = "ibuffer-rcirc"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/ibuffer-rcirc"; + homepage = "https://melpa.org/#/ibuffer-rcirc"; license = lib.licenses.free; }; }) {}; @@ -28625,13 +29774,13 @@ sha256 = "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-tramp"; sha256 = "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32"; name = "ibuffer-tramp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ibuffer-tramp"; + homepage = "https://melpa.org/#/ibuffer-tramp"; license = lib.licenses.free; }; }) {}; @@ -28646,31 +29795,31 @@ sha256 = "0fwxhkx5rkyv3w5vs2swhmly9siahlww2ipsmk7v8xmvk4a63bhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-vc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-vc"; sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla"; name = "ibuffer-vc"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/ibuffer-vc"; + homepage = "https://melpa.org/#/ibuffer-vc"; license = lib.licenses.free; }; }) {}; icicles = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "icicles"; - version = "20160131.1203"; + version = "20160328.1"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/icicles.el"; - sha256 = "16fsxw7w0l4dxgdi71q2izcki9ykqbjxaffsjh4k0zl7nxyyvv6q"; + url = "https://www.emacswiki.org/emacs/download/icicles.el"; + sha256 = "1ppximw1j433hfp63apnsz9wgq1nj1lh5cd0zfchrkmgfyhymq7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/icicles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/icicles"; sha256 = "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92"; name = "icicles"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/icicles"; + homepage = "https://melpa.org/#/icicles"; license = lib.licenses.free; }; }) {}; @@ -28678,59 +29827,59 @@ pname = "icomplete-plus"; version = "20151231.1600"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/icomplete+.el"; + url = "https://www.emacswiki.org/emacs/download/icomplete+.el"; sha256 = "0z7v4pj0m6pwrjzyzz2xmwf6a53kmka9hxlzd1dxcpzx47pyvz3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/icomplete+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/icomplete+"; sha256 = "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx"; name = "icomplete-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/icomplete+"; + homepage = "https://melpa.org/#/icomplete+"; license = lib.licenses.free; }; }) {}; id-manager = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "id-manager"; - version = "20150605.2239"; + version = "20160425.416"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-id-manager"; - rev = "0d968929bbaff813dd7e098c7f69e0b54434ce09"; - sha256 = "0bzbp0vgnzvd1m3lhbcrxmknpi0cjisff6jd49f1nvkdx3p2ks40"; + rev = "cf0c3743f6a1a1d63637e25fff2ffa948ba40f3a"; + sha256 = "0xd0zhbabb9cx4rsapvq6qs40w4q2cav6p16vrka54rmr98544vl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/id-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/id-manager"; sha256 = "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm"; name = "id-manager"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/id-manager"; + homepage = "https://melpa.org/#/id-manager"; license = lib.licenses.free; }; }) {}; idea-darkula-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "idea-darkula-theme"; - version = "20160209.111"; + version = "20160416.1803"; src = fetchFromGitHub { owner = "fourier"; repo = "idea-darkula-theme"; - rev = "ecff87b3bad30243848edad57d3c43580b0f7dae"; - sha256 = "01irrj41rnbsmyny7vai01prwdkwh3ig1x5zmpmqa5spwq2lgack"; + rev = "52602d9b91883e1f297d000951aeed48bf60176e"; + sha256 = "1hknhbm3b5rsba2s84iwspylhzjsm91zdckz22j9gyrq37wjgyrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idea-darkula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idea-darkula-theme"; sha256 = "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk"; name = "idea-darkula-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/idea-darkula-theme"; + homepage = "https://melpa.org/#/idea-darkula-theme"; license = lib.licenses.free; }; }) {}; @@ -28745,13 +29894,13 @@ sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/identica-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/identica-mode"; sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q"; name = "identica-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/identica-mode"; + homepage = "https://melpa.org/#/identica-mode"; license = lib.licenses.free; }; }) {}; @@ -28766,13 +29915,13 @@ sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idle-highlight-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idle-highlight-mode"; sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc"; name = "idle-highlight-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/idle-highlight-mode"; + homepage = "https://melpa.org/#/idle-highlight-mode"; license = lib.licenses.free; }; }) {}; @@ -28787,13 +29936,13 @@ sha256 = "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idle-require"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idle-require"; sha256 = "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj"; name = "idle-require"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/idle-require"; + homepage = "https://melpa.org/#/idle-require"; license = lib.licenses.free; }; }) {}; @@ -28808,13 +29957,13 @@ sha256 = "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-at-point"; sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0"; name = "ido-at-point"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ido-at-point"; + homepage = "https://melpa.org/#/ido-at-point"; license = lib.licenses.free; }; }) {}; @@ -28829,13 +29978,13 @@ sha256 = "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-clever-match"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-clever-match"; sha256 = "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m"; name = "ido-clever-match"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/ido-clever-match"; + homepage = "https://melpa.org/#/ido-clever-match"; license = lib.licenses.free; }; }) {}; @@ -28850,34 +29999,34 @@ sha256 = "1aih8n10lcrw0bdgvlrkxzhkpxpmphw07cvbp6zd27ia25037fzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-complete-space-or-hyphen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-complete-space-or-hyphen"; sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc"; name = "ido-complete-space-or-hyphen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ido-complete-space-or-hyphen"; + homepage = "https://melpa.org/#/ido-complete-space-or-hyphen"; license = lib.licenses.free; }; }) {}; ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-completing-read-plus"; - version = "20160220.1842"; + version = "20160320.138"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-ubiquitous"; - rev = "a491b106d9da87bfe45121078563389a77f8788c"; - sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; + rev = "7354d985d4f529877bd8dcb782940e3e87cf36b2"; + sha256 = "13mcpc8qlv0mvabd33cah1zqybfa0hrzanp16ikbsc449zyz3889"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-completing-read+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-completing-read+"; sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh"; name = "ido-completing-read-plus"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/ido-completing-read+"; + homepage = "https://melpa.org/#/ido-completing-read+"; license = lib.licenses.free; }; }) {}; @@ -28892,13 +30041,13 @@ sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-describe-bindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-describe-bindings"; sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2"; name = "ido-describe-bindings"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/ido-describe-bindings"; + homepage = "https://melpa.org/#/ido-describe-bindings"; license = lib.licenses.free; }; }) {}; @@ -28913,13 +30062,13 @@ sha256 = "1s93q47cadanynvm1y4y08s68yq0l8q8vfasdk7w39vrjsxxsj3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-exit-target"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-exit-target"; sha256 = "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi"; name = "ido-exit-target"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ido-exit-target"; + homepage = "https://melpa.org/#/ido-exit-target"; license = lib.licenses.free; }; }) {}; @@ -28934,13 +30083,13 @@ sha256 = "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-gnus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-gnus"; sha256 = "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg"; name = "ido-gnus"; }; packageRequires = [ gnus ]; meta = { - homepage = "http://melpa.org/#/ido-gnus"; + homepage = "https://melpa.org/#/ido-gnus"; license = lib.licenses.free; }; }) {}; @@ -28955,13 +30104,13 @@ sha256 = "1ip8g0r0aimhc4a1f06m711zmbs0krxn8hmayk99gk5kkz12igkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-grid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-grid-mode"; sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr"; name = "ido-grid-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ido-grid-mode"; + homepage = "https://melpa.org/#/ido-grid-mode"; license = lib.licenses.free; }; }) {}; @@ -28976,13 +30125,13 @@ sha256 = "01p4az128k1jvd9i1gshgg87z6048cw9cnm57l8qdlw01c3h6dkx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-hacks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-hacks"; sha256 = "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0"; name = "ido-hacks"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ido-hacks"; + homepage = "https://melpa.org/#/ido-hacks"; license = lib.licenses.free; }; }) {}; @@ -28997,13 +30146,13 @@ sha256 = "0l69sr3g1n2x61j6sv6hnbiyk8a2qra6y2kh413qp0sfpx4fzchv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-load-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-load-library"; sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj"; name = "ido-load-library"; }; packageRequires = [ pcache persistent-soft ]; meta = { - homepage = "http://melpa.org/#/ido-load-library"; + homepage = "https://melpa.org/#/ido-load-library"; license = lib.licenses.free; }; }) {}; @@ -29018,13 +30167,13 @@ sha256 = "15iajhrgy989pn91ijcd1mq2015bkaacaplm79rmb0ggxhh8vq38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-migemo"; sha256 = "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi"; name = "ido-migemo"; }; packageRequires = [ migemo ]; meta = { - homepage = "http://melpa.org/#/ido-migemo"; + homepage = "https://melpa.org/#/ido-migemo"; license = lib.licenses.free; }; }) {}; @@ -29039,13 +30188,13 @@ sha256 = "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-occasional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-occasional"; sha256 = "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2"; name = "ido-occasional"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ido-occasional"; + homepage = "https://melpa.org/#/ido-occasional"; license = lib.licenses.free; }; }) {}; @@ -29060,13 +30209,13 @@ sha256 = "0j12li001yq08vzwh1b25qyq09llizrkgaay9k07g9pvfxlx6zb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-occur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-occur"; sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji"; name = "ido-occur"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/ido-occur"; + homepage = "https://melpa.org/#/ido-occur"; license = lib.licenses.free; }; }) {}; @@ -29081,13 +30230,13 @@ sha256 = "0qvf3h2ljlbf3z36dhywzza62mfi6mqbrfc0sqfsbyia9bn1df4f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-select-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-select-window"; sha256 = "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23"; name = "ido-select-window"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ido-select-window"; + homepage = "https://melpa.org/#/ido-select-window"; license = lib.licenses.free; }; }) {}; @@ -29102,13 +30251,13 @@ sha256 = "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-skk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-skk"; sha256 = "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw"; name = "ido-skk"; }; packageRequires = [ ddskk emacs ]; meta = { - homepage = "http://melpa.org/#/ido-skk"; + homepage = "https://melpa.org/#/ido-skk"; license = lib.licenses.free; }; }) {}; @@ -29123,13 +30272,13 @@ sha256 = "0w3cr2yf8644i0g8w6r147vi9wanibn41sg7dzws51yb9q0y92vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-sort-mtime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-sort-mtime"; sha256 = "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2"; name = "ido-sort-mtime"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ido-sort-mtime"; + homepage = "https://melpa.org/#/ido-sort-mtime"; license = lib.licenses.free; }; }) {}; @@ -29140,38 +30289,38 @@ src = fetchFromGitHub { owner = "jwiegley"; repo = "springboard"; - rev = "d12119d9dd2b0b64f0af0ba82c273326c8c12268"; - sha256 = "14py5amh66jzhqyqjz5pxq0g19vzlmqnrr5wij1ix64xwfr3xdy8"; + rev = "ffcfaade6f69328084a0613d43d323f790d23048"; + sha256 = "0p13q8xax2h3m6rddvmh1p9biw3d1shvwwmqfhg0c93xajlwdfqi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-springboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-springboard"; sha256 = "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv"; name = "ido-springboard"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ido-springboard"; + homepage = "https://melpa.org/#/ido-springboard"; license = lib.licenses.free; }; }) {}; ido-ubiquitous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: melpaBuild { pname = "ido-ubiquitous"; - version = "20160220.1842"; + version = "20160320.138"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-ubiquitous"; - rev = "a491b106d9da87bfe45121078563389a77f8788c"; - sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; + rev = "7354d985d4f529877bd8dcb782940e3e87cf36b2"; + sha256 = "13mcpc8qlv0mvabd33cah1zqybfa0hrzanp16ikbsc449zyz3889"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-ubiquitous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-ubiquitous"; sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp"; name = "ido-ubiquitous"; }; packageRequires = [ cl-lib emacs ido-completing-read-plus ]; meta = { - homepage = "http://melpa.org/#/ido-ubiquitous"; + homepage = "https://melpa.org/#/ido-ubiquitous"; license = lib.licenses.free; }; }) {}; @@ -29186,13 +30335,13 @@ sha256 = "1vl87phswkciijq0j07lqlgmha5dmff8yd4j4jn7cfrkrdjp6jbx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-vertical-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-vertical-mode"; sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm"; name = "ido-vertical-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ido-vertical-mode"; + homepage = "https://melpa.org/#/ido-vertical-mode"; license = lib.licenses.free; }; }) {}; @@ -29207,13 +30356,13 @@ sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-yes-or-no"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-yes-or-no"; sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana"; name = "ido-yes-or-no"; }; packageRequires = [ ido-completing-read-plus ]; meta = { - homepage = "http://melpa.org/#/ido-yes-or-no"; + homepage = "https://melpa.org/#/ido-yes-or-no"; license = lib.licenses.free; }; }) {}; @@ -29228,55 +30377,55 @@ sha256 = "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idomenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idomenu"; sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h"; name = "idomenu"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/idomenu"; + homepage = "https://melpa.org/#/idomenu"; license = lib.licenses.free; }; }) {}; idris-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, prop-menu }: melpaBuild { pname = "idris-mode"; - version = "20151030.607"; + version = "20160302.835"; src = fetchFromGitHub { owner = "idris-hackers"; repo = "idris-mode"; - rev = "f2f0a19f1a23fac618442d7d2187cc3ac5d9e445"; - sha256 = "16gk7ry4yiaxk9dp6s2m4g79klw344yvr86d7hr0qdjkkf229m56"; + rev = "dc122c178c2a0ddda36fccdd0d3976fc7cd27245"; + sha256 = "0ngqsh0ncwcr377ifvnx5j352bf1f7lhcq7qc8avcn5pwlshri4w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idris-mode"; sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s"; name = "idris-mode"; }; packageRequires = [ cl-lib emacs prop-menu ]; meta = { - homepage = "http://melpa.org/#/idris-mode"; + homepage = "https://melpa.org/#/idris-mode"; license = lib.licenses.free; }; }) {}; ids-edit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ids-edit"; - version = "20151128.635"; + version = "20160324.1722"; src = fetchFromGitHub { owner = "kawabata"; repo = "ids-edit"; - rev = "f40495ecd434c6b39d52cadfed25098f08ce78cb"; - sha256 = "1k7h1795kaczmhd21hzqgns7blqc6zjh2xg4w3rj986ll8lb9fpr"; + rev = "3073f03267dd3527718e1edf1010055b6e55929e"; + sha256 = "18dca47ds5fiihijd1vv7nif44n4b4nv4za2djjfqbhbvizra1fd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ids-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ids-edit"; sha256 = "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m"; name = "ids-edit"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ids-edit"; + homepage = "https://melpa.org/#/ids-edit"; license = lib.licenses.free; }; }) {}; @@ -29291,13 +30440,13 @@ sha256 = "1n2yz6jzbminrviadhd3h42fwvfrdy0v2nw7sk5plkzc8zrs3x25"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iedit"; sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04"; name = "iedit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/iedit"; + homepage = "https://melpa.org/#/iedit"; license = lib.licenses.free; }; }) {}; @@ -29312,13 +30461,13 @@ sha256 = "0b86x675g95yrlc0alffx0z9fmficlwv3gpy5cy86z1xvvyh3nzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ietf-docs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ietf-docs"; sha256 = "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3"; name = "ietf-docs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ietf-docs"; + homepage = "https://melpa.org/#/ietf-docs"; license = lib.licenses.free; }; }) {}; @@ -29333,34 +30482,34 @@ sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iflipb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iflipb"; sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d"; name = "iflipb"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/iflipb"; + homepage = "https://melpa.org/#/iflipb"; license = lib.licenses.free; }; }) {}; ignoramus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ignoramus"; - version = "20150216.1542"; + version = "20160414.909"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "ignoramus"; - rev = "cab192aa621d1087f2d574b65fffd295c5efb919"; - sha256 = "161algqrrjbc1ja08416q5wzz34rrg6shr2sim7vba0j3svyggnf"; + rev = "b37dc7c07edd9d152436f9019c14df158b599be3"; + sha256 = "1b4r4h8yrs8zkyr1hnnx2wjrmm39wbqxfhyxpjb5pxi4zk3fh4rj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ignoramus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ignoramus"; sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9"; name = "ignoramus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ignoramus"; + homepage = "https://melpa.org/#/ignoramus"; license = lib.licenses.free; }; }) {}; @@ -29368,17 +30517,17 @@ pname = "igrep"; version = "20130824.707"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/igrep.el"; + url = "https://www.emacswiki.org/emacs/download/igrep.el"; sha256 = "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/igrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/igrep"; sha256 = "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3"; name = "igrep"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/igrep"; + homepage = "https://melpa.org/#/igrep"; license = lib.licenses.free; }; }) {}; @@ -29388,16 +30537,16 @@ src = fetchgit { url = "https://bitbucket.org/sbarbit/eigv"; rev = "47ac6ceede252f451348a2c696398c0cb5279555"; - sha256 = "cefc95ead9e5d425d3763f8d63afa10dea416493cafd7144f4d3cdeee0d0fa86"; + sha256 = "11pss3hfxkfkyi273zfajdj43shdl6pn739zfv9jbm75v7m9bz6f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/igv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/igv"; sha256 = "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z"; name = "igv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/igv"; + homepage = "https://melpa.org/#/igv"; license = lib.licenses.free; }; }) {}; @@ -29412,13 +30561,13 @@ sha256 = "068z3ygq9p139ikm04xqhhqhc994an5isba5c7kpqs009y09xw3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image-archive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image-archive"; sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp"; name = "image-archive"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/image-archive"; + homepage = "https://melpa.org/#/image-archive"; license = lib.licenses.free; }; }) {}; @@ -29433,13 +30582,13 @@ sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image-dired+"; sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy"; name = "image-dired-plus"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/image-dired+"; + homepage = "https://melpa.org/#/image-dired+"; license = lib.licenses.free; }; }) {}; @@ -29454,13 +30603,13 @@ sha256 = "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image+"; sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg"; name = "image-plus"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/image+"; + homepage = "https://melpa.org/#/image+"; license = lib.licenses.free; }; }) {}; @@ -29475,34 +30624,55 @@ sha256 = "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imakado"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imakado"; sha256 = "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3"; name = "imakado"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/imakado"; + homepage = "https://melpa.org/#/imakado"; + license = lib.licenses.free; + }; + }) {}; + imapfilter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "imapfilter"; + version = "20160419.446"; + src = fetchFromGitHub { + owner = "tarsius"; + repo = "imapfilter"; + rev = "f3aca4c07178c56080e4c85875f78321e94a9649"; + sha256 = "15lflvpapm5749qq7jzdwbd0isb89i6df3np4wn9y9gjl7y92wk7"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imapfilter"; + sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz"; + name = "imapfilter"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/imapfilter"; license = lib.licenses.free; }; }) {}; imenu-anywhere = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenu-anywhere"; - version = "20160213.732"; + version = "20160426.1132"; src = fetchFromGitHub { - owner = "vitoshka"; + owner = "vspinu"; repo = "imenu-anywhere"; - rev = "e2419b1558cecdbc8fe8a31806334b8ce2556622"; - sha256 = "0h4x8wbg6kp8iqhka0f5m67hxh3yd5kb95j12k30wbgqgabi01md"; + rev = "a1c0d4acc2abc366ac5a4c975524c14c5804233f"; + sha256 = "1hdfnbxcawwhlff9yndh4n5z7a1dgyab3qid6pm6xzbckmhbqss3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenu-anywhere"; - sha256 = "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenu-anywhere"; + sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq"; name = "imenu-anywhere"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/imenu-anywhere"; + homepage = "https://melpa.org/#/imenu-anywhere"; license = lib.licenses.free; }; }) {}; @@ -29517,13 +30687,13 @@ sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenu-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenu-list"; sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s"; name = "imenu-list"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/imenu-list"; + homepage = "https://melpa.org/#/imenu-list"; license = lib.licenses.free; }; }) {}; @@ -29531,38 +30701,38 @@ pname = "imenu-plus"; version = "20151231.1601"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/imenu+.el"; + url = "https://www.emacswiki.org/emacs/download/imenu+.el"; sha256 = "00w88d37mg2hdrzpw5cxrgqz5jbf7rylmir95hs8j1cm8fk787bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenu+"; sha256 = "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d"; name = "imenu-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/imenu+"; + homepage = "https://melpa.org/#/imenu+"; license = lib.licenses.free; }; }) {}; imenus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenus"; - version = "20160219.458"; + version = "20160220.1532"; src = fetchFromGitHub { owner = "alezost"; repo = "imenus.el"; - rev = "e492fcdcd2fa4c0fda0356ae6e23500514e544d3"; - sha256 = "1zg9rv9qpzxsc3r6gmbcyizx7jvhfdyn08dfgim3g382czbapfbc"; + rev = "ee1bbd2228dbb86df2865dc9004d375421b171ba"; + sha256 = "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenus"; sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r"; name = "imenus"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/imenus"; + homepage = "https://melpa.org/#/imenus"; license = lib.licenses.free; }; }) {}; @@ -29577,13 +30747,13 @@ sha256 = "1q53r3f3x0hpzryxd1v1w3qgs54p384q0azi7xj2gppi1q49sa42"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imgix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imgix"; sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q"; name = "imgix"; }; packageRequires = [ cl-lib dash ht json s ]; meta = { - homepage = "http://melpa.org/#/imgix"; + homepage = "https://melpa.org/#/imgix"; license = lib.licenses.free; }; }) {}; @@ -29598,13 +30768,13 @@ sha256 = "0nzgfj083im8lc62ifgsh1pmbw0j9wivimjgih7k6ny3jgw834rs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imgur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imgur"; sha256 = "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7"; name = "imgur"; }; packageRequires = [ anything ]; meta = { - homepage = "http://melpa.org/#/imgur"; + homepage = "https://melpa.org/#/imgur"; license = lib.licenses.free; }; }) {}; @@ -29619,13 +30789,13 @@ sha256 = "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/immutant-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/immutant-server"; sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i"; name = "immutant-server"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/immutant-server"; + homepage = "https://melpa.org/#/immutant-server"; license = lib.licenses.free; }; }) {}; @@ -29640,13 +30810,13 @@ sha256 = "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/impatient-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/impatient-mode"; sha256 = "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg"; name = "impatient-mode"; }; packageRequires = [ cl-lib htmlize simple-httpd ]; meta = { - homepage = "http://melpa.org/#/impatient-mode"; + homepage = "https://melpa.org/#/impatient-mode"; license = lib.licenses.free; }; }) {}; @@ -29657,17 +30827,17 @@ src = fetchFromGitHub { owner = "trotzig"; repo = "import-js"; - rev = "288fe97646d19a4185dad4a034752e6f79a23155"; - sha256 = "0210mxcbb470h6k1b0nny9jpa7bfy1c46v901gjlpzqxz41r0fiy"; + rev = "0635ef3a17ccc985e707117f6ab753fdbf90573c"; + sha256 = "1px5ym5mpna5vkbl07liqyw46x9n13nf98k44xx9papzb0ss6hf1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/import-js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/import-js"; sha256 = "1grvzy378qj14wlbmhb3j7fx2zkl9wp65b5g0brjimav08nz7bls"; name = "import-js"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/import-js"; + homepage = "https://melpa.org/#/import-js"; license = lib.licenses.free; }; }) {}; @@ -29682,13 +30852,13 @@ sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/import-popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/import-popwin"; sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy"; name = "import-popwin"; }; packageRequires = [ cl-lib popwin ]; meta = { - homepage = "http://melpa.org/#/import-popwin"; + homepage = "https://melpa.org/#/import-popwin"; license = lib.licenses.free; }; }) {}; @@ -29703,13 +30873,13 @@ sha256 = "1p54w9dwkc76nvc4m0q9a0lh4bdxp4ad1wzscadayqy8qbrylf97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/indent-guide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/indent-guide"; sha256 = "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7"; name = "indent-guide"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/indent-guide"; + homepage = "https://melpa.org/#/indent-guide"; license = lib.licenses.free; }; }) {}; @@ -29724,13 +30894,13 @@ sha256 = "1zsw68zzvjjh93cldc0w83k67hzcgi226vz3d0nzqc9sczqk8civ"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/indicators"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/indicators"; sha256 = "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss"; name = "indicators"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/indicators"; + homepage = "https://melpa.org/#/indicators"; license = lib.licenses.free; }; }) {}; @@ -29745,34 +30915,34 @@ sha256 = "0kv0aj444i2rzksvcfz8sw0yyig3ca3m05agnhw9jzr01y05yl1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/indy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/indy"; sha256 = "118n3n07h1vx576fdv6v5a94aa004q0gmy9hlsnrswpxa30ahnw7"; name = "indy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/indy"; + homepage = "https://melpa.org/#/indy"; license = lib.licenses.free; }; }) {}; inf-clojure = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inf-clojure"; - version = "20160206.1019"; + version = "20160404.2338"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "inf-clojure"; - rev = "3e7896a7cb467ce28e2d5eca6a8d6c2ad2335983"; - sha256 = "04ydxjh3wcs1qnack9f1sgq67chl9ihypplhj9i3shnj4zx1a6n8"; + rev = "aa81e316c2a0fcb2026ac036a7c1e5ab01a3d377"; + sha256 = "1632q7zbqqs5nvvxly3b2fj9b9q9mgxwh5sspamj7442s7i0j645"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-clojure"; sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl"; name = "inf-clojure"; }; packageRequires = [ clojure-mode emacs ]; meta = { - homepage = "http://melpa.org/#/inf-clojure"; + homepage = "https://melpa.org/#/inf-clojure"; license = lib.licenses.free; }; }) {}; @@ -29787,13 +30957,13 @@ sha256 = "14kf3zvms1w8cbixhpgw3m2xxc2r87i57gmx00jwh89282i6kgsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-mongo"; sha256 = "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh"; name = "inf-mongo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/inf-mongo"; + homepage = "https://melpa.org/#/inf-mongo"; license = lib.licenses.free; }; }) {}; @@ -29808,34 +30978,34 @@ sha256 = "1z5ns94xgj2dkv2sc2ckax6bzwdxsm19pkvni24ys2w7d5nhajzr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-php"; sha256 = "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d"; name = "inf-php"; }; packageRequires = [ php-mode ]; meta = { - homepage = "http://melpa.org/#/inf-php"; + homepage = "https://melpa.org/#/inf-php"; license = lib.licenses.free; }; }) {}; inf-ruby = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inf-ruby"; - version = "20160221.610"; + version = "20160423.1037"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "inf-ruby"; - rev = "aad537f010a64e8123b610329fd09fedc82abb41"; - sha256 = "0r0gjv6wg60v6xc4a0zmyib07ac04h7vcwjbshjgjwybfvx98raj"; + rev = "db89398caabccce307bee11b39cc9cad1b58d6a1"; + sha256 = "12qjz6bp6p6yh5nxin6w7snil9954mhd4kfnk0wwbijpd1lqw73l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-ruby"; sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp"; name = "inf-ruby"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/inf-ruby"; + homepage = "https://melpa.org/#/inf-ruby"; license = lib.licenses.free; }; }) {}; @@ -29850,13 +31020,13 @@ sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inflections"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inflections"; sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70"; name = "inflections"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/inflections"; + homepage = "https://melpa.org/#/inflections"; license = lib.licenses.free; }; }) {}; @@ -29864,37 +31034,38 @@ pname = "info-plus"; version = "20151231.1603"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/info+.el"; + url = "https://www.emacswiki.org/emacs/download/info+.el"; sha256 = "068y1p44ynimxfrqgrrhrj4gldf661dr0kbc9p7dqm1mw928hxmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/info+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/info+"; sha256 = "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr"; name = "info-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/info+"; + homepage = "https://melpa.org/#/info+"; license = lib.licenses.free; }; }) {}; - inform7-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild, sws-mode }: + inform7-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sws-mode }: melpaBuild { pname = "inform7-mode"; version = "20131010.154"; - src = fetchgit { - url = "https://github.com/fred-o/inform7-mode.git"; + src = fetchFromGitHub { + owner = "fred-o"; + repo = "inform7-mode"; rev = "42458733947f2fbd44bc78f7264be247a5d8980b"; - sha256 = "3c00805529518edba788671fed0c3e56810d1dbec2a0dbd3cb42f42991326ca6"; + sha256 = "19kc6a8jkx22rg9xp862pqfhv0an7q6fs7v7i2kxp3ji55aq001w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inform7-mode"; - sha256 = "1kbyl69vwhp1wdivr3ijmj7mghdnjaw7adk8az7bwyzjvpq73171"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inform7-mode"; + sha256 = "0fpnf9rgizsfz9pn06k87v4s0dr7z1pn0gdxfi6hnnv68qni8hg3"; name = "inform7-mode"; }; packageRequires = [ sws-mode ]; meta = { - homepage = "http://melpa.org/#/inform7-mode"; + homepage = "https://melpa.org/#/inform7-mode"; license = lib.licenses.free; }; }) {}; @@ -29909,13 +31080,13 @@ sha256 = "1zykh80k2sy0as1rn7qaa2hyvkagcvzzmxik4jpb0apw0ha1bf6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/init-loader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/init-loader"; sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r"; name = "init-loader"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/init-loader"; + homepage = "https://melpa.org/#/init-loader"; license = lib.licenses.free; }; }) {}; @@ -29930,13 +31101,13 @@ sha256 = "0xk7lyhd9pgahbscqwa2qkh2vgnbs5yz78am3zh930k4ig9lbmjh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/init-open-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/init-open-recentf"; sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r"; name = "init-open-recentf"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/init-open-recentf"; + homepage = "https://melpa.org/#/init-open-recentf"; license = lib.licenses.free; }; }) {}; @@ -29951,13 +31122,13 @@ sha256 = "1qvkxpxdv0n9qlzigvi25iw485824pgbpb10lwhh8bs2074dvrgq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/initsplit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/initsplit"; sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq"; name = "initsplit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/initsplit"; + homepage = "https://melpa.org/#/initsplit"; license = lib.licenses.free; }; }) {}; @@ -29972,13 +31143,13 @@ sha256 = "063v3a783si5fi8jrnysss60qma1c3whvyb48i10qbrrrx750cmv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inkpot-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inkpot-theme"; sha256 = "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7"; name = "inkpot-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/inkpot-theme"; + homepage = "https://melpa.org/#/inkpot-theme"; license = lib.licenses.free; }; }) {}; @@ -29993,13 +31164,13 @@ sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inline-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inline-crypt"; sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n"; name = "inline-crypt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/inline-crypt"; + homepage = "https://melpa.org/#/inline-crypt"; license = lib.licenses.free; }; }) {}; @@ -30014,34 +31185,34 @@ sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inlineR"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inlineR"; sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw"; name = "inlineR"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/inlineR"; + homepage = "https://melpa.org/#/inlineR"; license = lib.licenses.free; }; }) {}; insert-shebang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "insert-shebang"; - version = "20141119.627"; + version = "20160413.912"; src = fetchFromGitHub { owner = "psachin"; repo = "insert-shebang"; - rev = "a6e520280b1cb64d70adba2ba38dd9b728960b36"; - sha256 = "1np3ih2bz9831p97rx5bssq78grjxj7f9241z372l6ggimrqhkbx"; + rev = "a750edbe20fb7815dd199f5f449b426704e4e79b"; + sha256 = "198pgj0xsfyp8s1kkjjp48w7j3i5cf6zsp46vdwiifj64yfmq7yi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/insert-shebang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/insert-shebang"; sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v"; name = "insert-shebang"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/insert-shebang"; + homepage = "https://melpa.org/#/insert-shebang"; license = lib.licenses.free; }; }) {}; @@ -30056,13 +31227,13 @@ sha256 = "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/insfactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/insfactor"; sha256 = "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn"; name = "insfactor"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/insfactor"; + homepage = "https://melpa.org/#/insfactor"; license = lib.licenses.free; }; }) {}; @@ -30076,34 +31247,34 @@ sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/instapaper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/instapaper"; sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn"; name = "instapaper"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/instapaper"; + homepage = "https://melpa.org/#/instapaper"; license = lib.licenses.free; }; }) {}; interaction-log = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "interaction-log"; - version = "20150603.1210"; + version = "20160305.701"; src = fetchFromGitHub { owner = "michael-heerdegen"; repo = "interaction-log.el"; - rev = "977a3d276b73a4e239addc6c30214bc55ac6fd1f"; - sha256 = "0jdm4xjzpl5dr5s8n2hhd5md6hfl6m6v10nwd1n54pb7bv98aqsl"; + rev = "0f2d773269d1f7b93c9281226719113f5410cbd0"; + sha256 = "0mvhydb4lfm2kazmb7fab8zh7sd8l9casghn8wl42mqji3v7lfwh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/interaction-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/interaction-log"; sha256 = "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j"; name = "interaction-log"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/interaction-log"; + homepage = "https://melpa.org/#/interaction-log"; license = lib.licenses.free; }; }) {}; @@ -30118,13 +31289,13 @@ sha256 = "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/interleave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/interleave"; sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy"; name = "interleave"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/interleave"; + homepage = "https://melpa.org/#/interleave"; license = lib.licenses.free; }; }) {}; @@ -30139,13 +31310,13 @@ sha256 = "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/interval-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/interval-list"; sha256 = "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf"; name = "interval-list"; }; packageRequires = [ cl-lib dash emacs ]; meta = { - homepage = "http://melpa.org/#/interval-list"; + homepage = "https://melpa.org/#/interval-list"; license = lib.licenses.free; }; }) {}; @@ -30160,13 +31331,13 @@ sha256 = "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/interval-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/interval-tree"; sha256 = "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9"; name = "interval-tree"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/interval-tree"; + homepage = "https://melpa.org/#/interval-tree"; license = lib.licenses.free; }; }) {}; @@ -30181,13 +31352,13 @@ sha256 = "10xpxmbzhmi0lmby2rpmxrbr3qf1vlbif2inmfsvkj85wyh8a7rp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/io-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/io-mode"; sha256 = "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q"; name = "io-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/io-mode"; + homepage = "https://melpa.org/#/io-mode"; license = lib.licenses.free; }; }) {}; @@ -30202,13 +31373,13 @@ sha256 = "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/io-mode-inf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/io-mode-inf"; sha256 = "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc"; name = "io-mode-inf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/io-mode-inf"; + homepage = "https://melpa.org/#/io-mode-inf"; license = lib.licenses.free; }; }) {}; @@ -30223,13 +31394,13 @@ sha256 = "1rz5wf19lg1lnm0h73ynhb0vl3c99k7vpipay2f8jls24pv60bra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ioccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ioccur"; sha256 = "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6"; name = "ioccur"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ioccur"; + homepage = "https://melpa.org/#/ioccur"; license = lib.licenses.free; }; }) {}; @@ -30244,13 +31415,13 @@ sha256 = "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iodine-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iodine-theme"; sha256 = "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj"; name = "iodine-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/iodine-theme"; + homepage = "https://melpa.org/#/iodine-theme"; license = lib.licenses.free; }; }) {}; @@ -30265,13 +31436,13 @@ sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iplayer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iplayer"; sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r"; name = "iplayer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/iplayer"; + homepage = "https://melpa.org/#/iplayer"; license = lib.licenses.free; }; }) {}; @@ -30286,13 +31457,13 @@ sha256 = "0skyd9c7pz68v17aj3h47ralszbmc4gqg552q8jpimcjd1lacc7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ipretty"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ipretty"; sha256 = "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4"; name = "ipretty"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ipretty"; + homepage = "https://melpa.org/#/ipretty"; license = lib.licenses.free; }; }) {}; @@ -30307,13 +31478,13 @@ sha256 = "1cy9xwhswj9vahg8zr16r2crm2mm3vczqs73gc580iidasb1q1i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ir-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ir-black-theme"; sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v"; name = "ir-black-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ir-black-theme"; + homepage = "https://melpa.org/#/ir-black-theme"; license = lib.licenses.free; }; }) {}; @@ -30328,13 +31499,13 @@ sha256 = "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iregister"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iregister"; sha256 = "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm"; name = "iregister"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/iregister"; + homepage = "https://melpa.org/#/iregister"; license = lib.licenses.free; }; }) {}; @@ -30342,38 +31513,38 @@ pname = "irfc"; version = "20130824.707"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/irfc.el"; + url = "https://www.emacswiki.org/emacs/download/irfc.el"; sha256 = "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/irfc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/irfc"; sha256 = "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i"; name = "irfc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/irfc"; + homepage = "https://melpa.org/#/irfc"; license = lib.licenses.free; }; }) {}; irony = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "irony"; - version = "20160203.1407"; + version = "20160317.1727"; src = fetchFromGitHub { owner = "Sarcasm"; repo = "irony-mode"; - rev = "7ff87b256650b553dcb0fdd3708d7e3b3531e3c1"; - sha256 = "11mwl22i4r9an992xprzyi24rc3ci3l13s461yjavkgl3nbnlf7q"; + rev = "3d64dec24b01bc582801db537ed12a5812f4f0ee"; + sha256 = "1y72xhs978ah53fmp10pa8riscx94y9bjvr26wk2f3zc94c6cq3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/irony"; sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a"; name = "irony"; }; packageRequires = [ cl-lib json ]; meta = { - homepage = "http://melpa.org/#/irony"; + homepage = "https://melpa.org/#/irony"; license = lib.licenses.free; }; }) {}; @@ -30388,13 +31559,13 @@ sha256 = "01fjpfixfcca01a5fnnpd2wga4j30p0kwhbai25prvib4qcp1kqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/irony-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/irony-eldoc"; sha256 = "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6"; name = "irony-eldoc"; }; packageRequires = [ cl-lib emacs irony ]; meta = { - homepage = "http://melpa.org/#/irony-eldoc"; + homepage = "https://melpa.org/#/irony-eldoc"; license = lib.licenses.free; }; }) {}; @@ -30409,31 +31580,31 @@ sha256 = "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isearch-dabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isearch-dabbrev"; sha256 = "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x"; name = "isearch-dabbrev"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/isearch-dabbrev"; + homepage = "https://melpa.org/#/isearch-dabbrev"; license = lib.licenses.free; }; }) {}; isearch-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "isearch-plus"; - version = "20160212.1523"; + version = "20160227.1617"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/isearch+.el"; - sha256 = "0rfvaz0fa458nk5lyb87vhaxpygbkh4wzfk9ynghp5778faqabgq"; + url = "https://www.emacswiki.org/emacs/download/isearch+.el"; + sha256 = "00m4kh2j4a2rqlagz4b5wdhnrk266whbncwkjbxx0rlxzvsi5skh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isearch+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isearch+"; sha256 = "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r"; name = "isearch-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/isearch+"; + homepage = "https://melpa.org/#/isearch+"; license = lib.licenses.free; }; }) {}; @@ -30441,17 +31612,17 @@ pname = "isearch-prop"; version = "20151231.1607"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/isearch-prop.el"; + url = "https://www.emacswiki.org/emacs/download/isearch-prop.el"; sha256 = "1i1ypganr2ivwgi0vgjihgk1s4yglwj8nbqnqjiiwdywf8g5hcmr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isearch-prop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isearch-prop"; sha256 = "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9"; name = "isearch-prop"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/isearch-prop"; + homepage = "https://melpa.org/#/isearch-prop"; license = lib.licenses.free; }; }) {}; @@ -30466,13 +31637,13 @@ sha256 = "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isearch-symbol-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isearch-symbol-at-point"; sha256 = "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8"; name = "isearch-symbol-at-point"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/isearch-symbol-at-point"; + homepage = "https://melpa.org/#/isearch-symbol-at-point"; license = lib.licenses.free; }; }) {}; @@ -30487,13 +31658,13 @@ sha256 = "022j39r2vvppnh3p5rp9i4cgc3lg24ksjcmcjmbmna1vf624izn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isend-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isend-mode"; sha256 = "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv"; name = "isend-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/isend-mode"; + homepage = "https://melpa.org/#/isend-mode"; license = lib.licenses.free; }; }) {}; @@ -30508,13 +31679,13 @@ sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isgd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isgd"; sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi"; name = "isgd"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/isgd"; + homepage = "https://melpa.org/#/isgd"; license = lib.licenses.free; }; }) {}; @@ -30529,13 +31700,13 @@ sha256 = "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iss-mode"; sha256 = "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc"; name = "iss-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/iss-mode"; + homepage = "https://melpa.org/#/iss-mode"; license = lib.licenses.free; }; }) {}; @@ -30550,34 +31721,55 @@ sha256 = "1az986mk8j8hyvr1mi9hirixwcd73jcqkjsw4xy34vjbwxi122r9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/itail"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/itail"; sha256 = "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7"; name = "itail"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/itail"; + homepage = "https://melpa.org/#/itail"; + license = lib.licenses.free; + }; + }) {}; + itasca = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "itasca"; + version = "20160406.742"; + src = fetchFromGitHub { + owner = "jkfurtney"; + repo = "itasca-emacs"; + rev = "bf0b6a66b57c8a0e7d692d306a50b587a2da8284"; + sha256 = "1174f75p3rkq812gl2rs1x51nqbz4fqxwsbrd7djh1vkd2zii3aw"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/itasca"; + sha256 = "01075ad0sb5q7aql6j5wmjdk2qhdgbbm5xb0ikrnl7rzc1afvv6j"; + name = "itasca"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/itasca"; license = lib.licenses.free; }; }) {}; iterator = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iterator"; - version = "20150321.2325"; + version = "20160406.1406"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "iterator"; - rev = "7bd349d559a6e1c3da575e579a7cb35a7bee9190"; - sha256 = "08gagq74702x65dy75n2f53fsh806nppnidim9z6ycp8qw1ibyfp"; + rev = "1523f1dcbf4086e91561ec5dec4c2f6fcba778bd"; + sha256 = "006lw8zjxz0702wlrs0nb0ijwh5air3yc3cam7dbkyy7mh632vhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iterator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iterator"; sha256 = "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z"; name = "iterator"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/iterator"; + homepage = "https://melpa.org/#/iterator"; license = lib.licenses.free; }; }) {}; @@ -30592,13 +31784,13 @@ sha256 = "12nqpzcmz724wpk8p16lc3z26rxma3wp6pf6dvrsqagnlixrs9si"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ivariants"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ivariants"; sha256 = "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw"; name = "ivariants"; }; packageRequires = [ emacs ivs-edit ]; meta = { - homepage = "http://melpa.org/#/ivariants"; + homepage = "https://melpa.org/#/ivariants"; license = lib.licenses.free; }; }) {}; @@ -30613,13 +31805,55 @@ sha256 = "1926pyfsbr6j7cn3diq8ibs0db94rgsf0aifvbqrqp4grs85pkva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ivs-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ivs-edit"; sha256 = "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2"; name = "ivs-edit"; }; packageRequires = [ cl-lib dash emacs ]; meta = { - homepage = "http://melpa.org/#/ivs-edit"; + homepage = "https://melpa.org/#/ivs-edit"; + license = lib.licenses.free; + }; + }) {}; + ivy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ivy"; + version = "20160425.507"; + src = fetchFromGitHub { + owner = "abo-abo"; + repo = "swiper"; + rev = "c24a3728538dd7d11de9f141b3ad1d8e0996c330"; + sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ivy"; + sha256 = "1w6dh05k1m1b1m3qy1mhfrl9rck0h1x6kh2b2llidwbv346wp17g"; + name = "ivy"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/ivy"; + license = lib.licenses.free; + }; + }) {}; + ivy-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib, s, swiper }: + melpaBuild { + pname = "ivy-bibtex"; + version = "20160422.1800"; + src = fetchFromGitHub { + owner = "tmalsburg"; + repo = "helm-bibtex"; + rev = "62593c6289a3d17566edb1aa8ef4700bc83e9df7"; + sha256 = "1zrs1gk95mna1kipgrq8mfhk0gqimvsb4b583f900fh86019nn1l"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ivy-bibtex"; + sha256 = "0qni48s09lgzqr98r49dhrzpfqp9yfwga11h7vhqclscjvlalpc2"; + name = "ivy-bibtex"; + }; + packageRequires = [ biblio cl-lib dash f parsebib s swiper ]; + meta = { + homepage = "https://melpa.org/#/ivy-bibtex"; license = lib.licenses.free; }; }) {}; @@ -30634,31 +31868,34 @@ sha256 = "069alh9vs6is3hvbwxbwr9g8qq9md5c92wg5bfswi99yciqdvc4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ix"; sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3"; name = "ix"; }; packageRequires = [ grapnel ]; meta = { - homepage = "http://melpa.org/#/ix"; + homepage = "https://melpa.org/#/ix"; license = lib.licenses.free; }; }) {}; - iy-go-to-char = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + iy-go-to-char = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "iy-go-to-char"; - version = "20141029.1049"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/iy-go-to-char.el"; - sha256 = "19l9d5gp1xj40iyy35r8hh7v6bjnzjx7pb8dvwrmndzg0rlsp7mi"; + version = "20141029.1046"; + src = fetchFromGitHub { + owner = "doitian"; + repo = "iy-go-to-char"; + rev = "04ab4f5f3a241cbbc9b8c178a22b412a62f632f9"; + sha256 = "0bcm3y3qvsrk7gd23xfzz5bgcnm3h4l63w9hv8cr9n86sm8475m1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iy-go-to-char"; - sha256 = "055qj2pc32l824vyjl2w2j8c3rpd9g4x0sazi8svqf923lgcs5s8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iy-go-to-char"; + sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz"; name = "iy-go-to-char"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/iy-go-to-char"; + homepage = "https://melpa.org/#/iy-go-to-char"; license = lib.licenses.free; }; }) {}; @@ -30673,13 +31910,13 @@ sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/j-mode"; sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i"; name = "j-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/j-mode"; + homepage = "https://melpa.org/#/j-mode"; license = lib.licenses.free; }; }) {}; @@ -30690,16 +31927,16 @@ src = fetchgit { url = "git://git.code.sf.net/p/emacs-jabber/git"; rev = "98dc8e429ba6f79065f1c9fc3878d92314d4b510"; - sha256 = "994d5c2d917a2874c660ec30827d041ee1f1be55b4d8130cb7a780d60c90158d"; + sha256 = "138mj06dd057nw617n5lanzg3q8y0iyq4c7cc3378a3sj4nmqkcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jabber"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jabber"; sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8"; name = "jabber"; }; packageRequires = [ fsm ]; meta = { - homepage = "http://melpa.org/#/jabber"; + homepage = "https://melpa.org/#/jabber"; license = lib.licenses.free; }; }) {}; @@ -30714,13 +31951,13 @@ sha256 = "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jabber-otr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jabber-otr"; sha256 = "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0"; name = "jabber-otr"; }; packageRequires = [ emacs jabber ]; meta = { - homepage = "http://melpa.org/#/jabber-otr"; + homepage = "https://melpa.org/#/jabber-otr"; license = lib.licenses.free; }; }) {}; @@ -30731,16 +31968,16 @@ src = fetchgit { url = "https://bitbucket.org/sbarbit/jack-connect"; rev = "b00658dfe3d5d67431c18ffa693d5a3705067ba0"; - sha256 = "7036a0eddf25a2274a6fd1584ff497d2b8078869fa6cc9d61504e6540ff863a8"; + sha256 = "1a33z07m9rh42pbcjv7sd640gf6jjzs4yn6idx52g8i5vzns0dkh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jack-connect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jack-connect"; sha256 = "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q"; name = "jack-connect"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jack-connect"; + homepage = "https://melpa.org/#/jack-connect"; license = lib.licenses.free; }; }) {}; @@ -30755,34 +31992,34 @@ sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jade-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jade-mode"; sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94"; name = "jade-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jade-mode"; + homepage = "https://melpa.org/#/jade-mode"; license = lib.licenses.free; }; }) {}; jammer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jammer"; - version = "20151213.814"; + version = "20160310.259"; src = fetchFromGitHub { owner = "wasamasa"; repo = "jammer"; - rev = "1ba232b71507b468c60dc53c2bc8888bef36c858"; - sha256 = "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh"; + rev = "48aa795df6df7ae6484518bcd0398293ca49d7c6"; + sha256 = "1gnj8vmpxds2wdkz49swiby5vq2hvbf64q5hhvwymfdvwlk54v55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jammer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jammer"; sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z"; name = "jammer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jammer"; + homepage = "https://melpa.org/#/jammer"; license = lib.licenses.free; }; }) {}; @@ -30797,13 +32034,13 @@ sha256 = "1mwm9wpnxqq3nw7fl0jf40a92ha51yd95vvr58zllhbxdpy3q9pv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/japanese-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/japanese-holidays"; sha256 = "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9"; name = "japanese-holidays"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/japanese-holidays"; + homepage = "https://melpa.org/#/japanese-holidays"; license = lib.licenses.free; }; }) {}; @@ -30818,13 +32055,13 @@ sha256 = "1lrsm282lhp7pf0gwr3aad2228lvpqnqs1qdv2xk0zljqnqc0bhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/japanlaw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/japanlaw"; sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa"; name = "japanlaw"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/japanlaw"; + homepage = "https://melpa.org/#/japanlaw"; license = lib.licenses.free; }; }) {}; @@ -30839,13 +32076,13 @@ sha256 = "0xmv7gw5xms6nhjcl51cw33yvjgw0c6bpnlyca3195x7g34sg1zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jape-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jape-mode"; sha256 = "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly"; name = "jape-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jape-mode"; + homepage = "https://melpa.org/#/jape-mode"; license = lib.licenses.free; }; }) {}; @@ -30860,13 +32097,13 @@ sha256 = "0nydj0y58yhfh16492q5gzkkz7qrxbdhp4gh2xbiykcbynygj2mq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jar-manifest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jar-manifest-mode"; sha256 = "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd"; name = "jar-manifest-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jar-manifest-mode"; + homepage = "https://melpa.org/#/jar-manifest-mode"; license = lib.licenses.free; }; }) {}; @@ -30881,13 +32118,13 @@ sha256 = "1zcrxijcwqfs6r1cd6w4jq8g3ly0a69nf0cbx93w5v86x2kjpz0l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jasminejs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jasminejs-mode"; sha256 = "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52"; name = "jasminejs-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jasminejs-mode"; + homepage = "https://melpa.org/#/jasminejs-mode"; license = lib.licenses.free; }; }) {}; @@ -30902,55 +32139,55 @@ sha256 = "1bv0al89wlwdv3bhasxnwhsv84phgnixclgrh4l52385rjn8v53f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jaunte"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jaunte"; sha256 = "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf"; name = "jaunte"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jaunte"; + homepage = "https://melpa.org/#/jaunte"; license = lib.licenses.free; }; }) {}; java-imports = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, s }: melpaBuild { pname = "java-imports"; - version = "20160127.929"; + version = "20160311.1715"; src = fetchFromGitHub { owner = "dakrone"; repo = "emacs-java-imports"; - rev = "42e1f92dd60d3adb69d6fac4c59af49d6ab2ccfe"; - sha256 = "0d8r7pw6v2b3b6brspkpra7q7fmmjh6zm23gmnhdrk72f37fgzdz"; + rev = "f1631adacdd9fcb7a92ee4fdfb9e592a1a9c3b0b"; + sha256 = "1wk9i43b147bjcvhq27vcqxi6y1yl6w3n4i2sw3krk4vxcm1mwnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/java-imports"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/java-imports"; sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98"; name = "java-imports"; }; packageRequires = [ emacs pcache s ]; meta = { - homepage = "http://melpa.org/#/java-imports"; + homepage = "https://melpa.org/#/java-imports"; license = lib.licenses.free; }; }) {}; java-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "java-snippets"; - version = "20140728.36"; + version = "20160328.2210"; src = fetchFromGitHub { owner = "nekop"; repo = "yasnippet-java-mode"; - rev = "701e84d91d6e8bf53c0088687ee385c1954792d8"; - sha256 = "09pa1hmk0dyh7vw0lb9awyrvdarakgaxn66gag5fzbg5vgdfz32i"; + rev = "de118b991a1a770283777146c7b437ee1a1e4f01"; + sha256 = "0w67vjpazbrgd9j5xzsrj3m45iw6lyqkgxx1ap5afvgyn5hqhkih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/java-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/java-snippets"; sha256 = "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp"; name = "java-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/java-snippets"; + homepage = "https://melpa.org/#/java-snippets"; license = lib.licenses.free; }; }) {}; @@ -30965,13 +32202,13 @@ sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/javadoc-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/javadoc-lookup"; sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79"; name = "javadoc-lookup"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/javadoc-lookup"; + homepage = "https://melpa.org/#/javadoc-lookup"; license = lib.licenses.free; }; }) {}; @@ -30986,13 +32223,13 @@ sha256 = "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/javap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/javap-mode"; sha256 = "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay"; name = "javap-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/javap-mode"; + homepage = "https://melpa.org/#/javap-mode"; license = lib.licenses.free; }; }) {}; @@ -31007,97 +32244,97 @@ sha256 = "1430xwd86fdlv1gzkdlp9a0x3w4blbplw24z0m7y8b0j9rhl4fka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jaword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jaword"; sha256 = "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d"; name = "jaword"; }; packageRequires = [ tinysegmenter ]; meta = { - homepage = "http://melpa.org/#/jaword"; + homepage = "https://melpa.org/#/jaword"; license = lib.licenses.free; }; }) {}; jazz-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jazz-theme"; - version = "20150910.1044"; + version = "20160412.1236"; src = fetchFromGitHub { owner = "donderom"; repo = "jazz-theme"; - rev = "b9f66600fe33d25a230ed26a69f3abaaca03b453"; - sha256 = "00havgs6xc44plnr3vbs13xxiwygr93izm6nx4y98zhcv389ajb0"; + rev = "da91369cbf72b08cd11f6f3dee843ff3efe0fed7"; + sha256 = "0dikmd1w6jh152hvawgvzlpv87xqnf669a8x427rbshnbj2bly64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jazz-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jazz-theme"; sha256 = "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g"; name = "jazz-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jazz-theme"; + homepage = "https://melpa.org/#/jazz-theme"; license = lib.licenses.free; }; }) {}; jbeans-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jbeans-theme"; - version = "20160218.1012"; + version = "20160406.1457"; src = fetchFromGitHub { owner = "synic"; repo = "jbeans-emacs"; - rev = "25007aa6c241b8891a5609cc05d29e94442f7934"; - sha256 = "0mmvq3kp90fllj3ix0iqbnmpfmzr1ykhpz5q066930kjlgz25nvp"; + rev = "b2ecf9bfad26a15afc75bfae1db097baa5c29f03"; + sha256 = "1gns0y05kyxl2fcyiawgdx2hi0vslz97kvirbckg19id50cv9ac1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jbeans-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jbeans-theme"; sha256 = "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl"; name = "jbeans-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/jbeans-theme"; + homepage = "https://melpa.org/#/jbeans-theme"; license = lib.licenses.free; }; }) {}; jdee = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jdee"; - version = "20160207.228"; + version = "20160304.736"; src = fetchFromGitHub { owner = "jdee-emacs"; repo = "jdee"; - rev = "0296ef1c25c0d75ed5ac1bb951e0d82d1a85c05e"; - sha256 = "04l2p1lhg88jhnsi1v4a5rqra6fkwbhnyk2vc94j7j6gzzzxg71l"; + rev = "df9716c27740d4dd0a508bc2948fb633d1d679ee"; + sha256 = "01dcxf47qlp089sf3b23kzaad7zrxzgcxf4s2awcj69ips8zkbik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jdee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jdee"; sha256 = "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3"; name = "jdee"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/jdee"; + homepage = "https://melpa.org/#/jdee"; license = lib.licenses.free; }; }) {}; jedi = callPackage ({ auto-complete, emacs, fetchFromGitHub, fetchurl, jedi-core, lib, melpaBuild }: melpaBuild { pname = "jedi"; - version = "20151214.905"; + version = "20160425.2356"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-jedi"; - rev = "e6b0139cba46bd4e53afaf044bc84c618b8afb38"; - sha256 = "1zh7jbks0c6swzdm0wwxv4bbpvh15ab7bgs0w7ca1dnlvm07ybjm"; + rev = "1521c525483263b7241c4881b15299b38700070c"; + sha256 = "1xj6rswsnicwcgcqid4qji1x4yhdhrgvvjdd3jhb4z8mfahpnpp6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jedi"; sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4"; name = "jedi"; }; packageRequires = [ auto-complete emacs jedi-core ]; meta = { - homepage = "http://melpa.org/#/jedi"; + homepage = "https://melpa.org/#/jedi"; license = lib.licenses.free; }; }) {}; @@ -31108,17 +32345,17 @@ src = fetchFromGitHub { owner = "tkf"; repo = "emacs-jedi"; - rev = "e6b0139cba46bd4e53afaf044bc84c618b8afb38"; - sha256 = "1zh7jbks0c6swzdm0wwxv4bbpvh15ab7bgs0w7ca1dnlvm07ybjm"; + rev = "1521c525483263b7241c4881b15299b38700070c"; + sha256 = "1xj6rswsnicwcgcqid4qji1x4yhdhrgvvjdd3jhb4z8mfahpnpp6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jedi-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jedi-core"; sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f"; name = "jedi-core"; }; packageRequires = [ cl-lib emacs epc python-environment ]; meta = { - homepage = "http://melpa.org/#/jedi-core"; + homepage = "https://melpa.org/#/jedi-core"; license = lib.licenses.free; }; }) {}; @@ -31133,13 +32370,13 @@ sha256 = "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jedi-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jedi-direx"; sha256 = "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1"; name = "jedi-direx"; }; packageRequires = [ direx jedi ]; meta = { - homepage = "http://melpa.org/#/jedi-direx"; + homepage = "https://melpa.org/#/jedi-direx"; license = lib.licenses.free; }; }) {}; @@ -31154,13 +32391,13 @@ sha256 = "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jekyll-modes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jekyll-modes"; sha256 = "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si"; name = "jekyll-modes"; }; packageRequires = [ polymode ]; meta = { - homepage = "http://melpa.org/#/jekyll-modes"; + homepage = "https://melpa.org/#/jekyll-modes"; license = lib.licenses.free; }; }) {}; @@ -31175,13 +32412,13 @@ sha256 = "08ywfmsjv3vjqy95hx095kasy8knh3asl7mrlkgmv9wjwnxw45zs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jenkins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jenkins"; sha256 = "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s"; name = "jenkins"; }; packageRequires = [ dash emacs json ]; meta = { - homepage = "http://melpa.org/#/jenkins"; + homepage = "https://melpa.org/#/jenkins"; license = lib.licenses.free; }; }) {}; @@ -31196,33 +32433,34 @@ sha256 = "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jenkins-watch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jenkins-watch"; sha256 = "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m"; name = "jenkins-watch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jenkins-watch"; + homepage = "https://melpa.org/#/jenkins-watch"; license = lib.licenses.free; }; }) {}; - jg-quicknav = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild, s }: + jg-quicknav = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "jg-quicknav"; version = "20160216.2235"; - src = fetchgit { - url = "https://github.com/jeffgran/jg-quicknav"; + src = fetchFromGitHub { + owner = "jeffgran"; + repo = "jg-quicknav"; rev = "1b598ee3d691b68dc64f1727a959eab538893d07"; - sha256 = "e442217463a1aa1ed4f05415a56d7d36617acfcab85e385b62e28ead06aa9c98"; + sha256 = "164wm83av3p2c9dkhpmqrb7plq9ngmnsa5aly3a1xam1cds22hp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jg-quicknav"; - sha256 = "1v46ck9imffhrmx6s4c3kbi5g5spf2mn2axy5nfpn7q8sc8bf0s3"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jg-quicknav"; + sha256 = "1pxyv1nbnqb0s177kczy6b6q4l8d2r52xqhx2rdb0wxdmp6m5x9c"; name = "jg-quicknav"; }; packageRequires = [ cl-lib s ]; meta = { - homepage = "http://melpa.org/#/jg-quicknav"; + homepage = "https://melpa.org/#/jg-quicknav"; license = lib.licenses.free; }; }) {}; @@ -31237,13 +32475,13 @@ sha256 = "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jinja2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jinja2-mode"; sha256 = "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx"; name = "jinja2-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jinja2-mode"; + homepage = "https://melpa.org/#/jinja2-mode"; license = lib.licenses.free; }; }) {}; @@ -31251,17 +32489,17 @@ pname = "jira"; version = "20131210.1222"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/jira.el"; + url = "https://www.emacswiki.org/emacs/download/jira.el"; sha256 = "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jira"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jira"; sha256 = "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6"; name = "jira"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jira"; + homepage = "https://melpa.org/#/jira"; license = lib.licenses.free; }; }) {}; @@ -31276,13 +32514,13 @@ sha256 = "1ack7dmapva3wc2gm22prd5wd3cmq19sl4xl9f04a3nk2msr6ksx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jira-markup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jira-markup-mode"; sha256 = "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp"; name = "jira-markup-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jira-markup-mode"; + homepage = "https://melpa.org/#/jira-markup-mode"; license = lib.licenses.free; }; }) {}; @@ -31297,13 +32535,13 @@ sha256 = "0mh7990zqrprsa1g9jzpqm666pynlqd2nh9z236zyzykf8d8il8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jist"; sha256 = "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar"; name = "jist"; }; packageRequires = [ dash emacs let-alist magit pkg-info request ]; meta = { - homepage = "http://melpa.org/#/jist"; + homepage = "https://melpa.org/#/jist"; license = lib.licenses.free; }; }) {}; @@ -31318,13 +32556,13 @@ sha256 = "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jknav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jknav"; sha256 = "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089"; name = "jknav"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jknav"; + homepage = "https://melpa.org/#/jknav"; license = lib.licenses.free; }; }) {}; @@ -31339,34 +32577,34 @@ sha256 = "1a0091r1xs3fpvg1wynh53xibdsiaf2khz1gp6s8dc45z8r0bclx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jonprl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jonprl-mode"; sha256 = "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z"; name = "jonprl-mode"; }; packageRequires = [ cl-lib emacs yasnippet ]; meta = { - homepage = "http://melpa.org/#/jonprl-mode"; + homepage = "https://melpa.org/#/jonprl-mode"; license = lib.licenses.free; }; }) {}; jq-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jq-mode"; - version = "20160217.1831"; + version = "20160222.640"; src = fetchFromGitHub { owner = "ljos"; repo = "jq-mode"; - rev = "7f03354a4c1e26796482c39ce543d1d1f075a18d"; - sha256 = "0ws0297v6sairvsk665wrfzymfi599g5ljshfnpmi81qnnnbwjgf"; + rev = "ce63cb10e5a69c9017ceccf8adb7ab33450b057e"; + sha256 = "08wffbljnaxz2sh72vsqpq1lc47mnh4d47fl71dvw4pqs50zp8v0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jq-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jq-mode"; sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin"; name = "jq-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/jq-mode"; + homepage = "https://melpa.org/#/jq-mode"; license = lib.licenses.free; }; }) {}; @@ -31381,13 +32619,13 @@ sha256 = "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jquery-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jquery-doc"; sha256 = "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj"; name = "jquery-doc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jquery-doc"; + homepage = "https://melpa.org/#/jquery-doc"; license = lib.licenses.free; }; }) {}; @@ -31402,13 +32640,13 @@ sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js-comint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js-comint"; sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1"; name = "js-comint"; }; packageRequires = [ nvm ]; meta = { - homepage = "http://melpa.org/#/js-comint"; + homepage = "https://melpa.org/#/js-comint"; license = lib.licenses.free; }; }) {}; @@ -31423,13 +32661,13 @@ sha256 = "12kwjkhw5x6jb79m49gbypb6br482bpi73788h71lgl5i3g95s5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js-doc"; sha256 = "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk"; name = "js-doc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/js-doc"; + homepage = "https://melpa.org/#/js-doc"; license = lib.licenses.free; }; }) {}; @@ -31444,13 +32682,13 @@ sha256 = "0105vx7bc681q9v2x6wj2r63pwp7g0cjjgpg7k4r852zmndfbzsc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-closure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-closure"; sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7"; name = "js2-closure"; }; packageRequires = [ js2-mode ]; meta = { - homepage = "http://melpa.org/#/js2-closure"; + homepage = "https://melpa.org/#/js2-closure"; license = lib.licenses.free; }; }) {}; @@ -31465,55 +32703,55 @@ sha256 = "1gad5a18m3jfhnklsj0ka3p2wbihh1yvpcn7mwlmm7cjjxcaly9g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-highlight-vars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-highlight-vars"; sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475"; name = "js2-highlight-vars"; }; packageRequires = [ js2-mode ]; meta = { - homepage = "http://melpa.org/#/js2-highlight-vars"; + homepage = "https://melpa.org/#/js2-highlight-vars"; license = lib.licenses.free; }; }) {}; js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "js2-mode"; - version = "20160124.1332"; + version = "20160409.1313"; src = fetchFromGitHub { owner = "mooz"; repo = "js2-mode"; - rev = "7b430a37d2a77c8bc0f384e11e061e914f2d31de"; - sha256 = "09hwxh353w6wk47sqx871fn59la7kncqlskxdrz316jyps6kj890"; + rev = "812df519069555a7b670f6d300239092642aa02e"; + sha256 = "1j6g801skbx27ajymxlyswlpv6xf06jkih3z51rmjcaq2n55h8r6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-mode"; sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv"; name = "js2-mode"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/js2-mode"; + homepage = "https://melpa.org/#/js2-mode"; license = lib.licenses.free; }; }) {}; js2-refactor = callPackage ({ dash, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, multiple-cursors, s, yasnippet }: melpaBuild { pname = "js2-refactor"; - version = "20151029.707"; + version = "20160315.555"; src = fetchFromGitHub { owner = "magnars"; repo = "js2-refactor.el"; - rev = "ac3da94a33b714d44d4f0adc670a829fdc522e34"; - sha256 = "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly"; + rev = "30b7d218bde230adef6608de68f936edb7d52beb"; + sha256 = "04gbap3mfc5r46vdxymfmr15b9zxdzqdddhfg3v327n40n3djrsd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-refactor"; sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r"; name = "js2-refactor"; }; packageRequires = [ dash js2-mode multiple-cursors s yasnippet ]; meta = { - homepage = "http://melpa.org/#/js2-refactor"; + homepage = "https://melpa.org/#/js2-refactor"; license = lib.licenses.free; }; }) {}; @@ -31528,13 +32766,13 @@ sha256 = "137lypg6jwsisn2g5h0wiqh57icj46zv3albxjf2q1k5isszhy1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js3-mode"; sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r"; name = "js3-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/js3-mode"; + homepage = "https://melpa.org/#/js3-mode"; license = lib.licenses.free; }; }) {}; @@ -31549,13 +32787,13 @@ sha256 = "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jscs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jscs"; sha256 = "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv"; name = "jscs"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/jscs"; + homepage = "https://melpa.org/#/jscs"; license = lib.licenses.free; }; }) {}; @@ -31570,13 +32808,13 @@ sha256 = "0h9gx5cl3lashk0n8pv9yzb0mm8dyziddfbwfqfm70638p93ylhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jsfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jsfmt"; sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd"; name = "jsfmt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jsfmt"; + homepage = "https://melpa.org/#/jsfmt"; license = lib.licenses.free; }; }) {}; @@ -31591,13 +32829,13 @@ sha256 = "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-mode"; sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70"; name = "json-mode"; }; packageRequires = [ json-reformat json-snatcher ]; meta = { - homepage = "http://melpa.org/#/json-mode"; + homepage = "https://melpa.org/#/json-mode"; license = lib.licenses.free; }; }) {}; @@ -31612,13 +32850,13 @@ sha256 = "05bjyw0hkpiyfadsx3giawykbj4qinfr1ilzd0xvx8akzq2ipq0y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-reformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-reformat"; sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na"; name = "json-reformat"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/json-reformat"; + homepage = "https://melpa.org/#/json-reformat"; license = lib.licenses.free; }; }) {}; @@ -31633,13 +32871,13 @@ sha256 = "0xgrb0zfxyfmfnvx1l7ca99lzl6f2qyal798rcra45167c0j0vbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-rpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-rpc"; sha256 = "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k"; name = "json-rpc"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/json-rpc"; + homepage = "https://melpa.org/#/json-rpc"; license = lib.licenses.free; }; }) {}; @@ -31654,13 +32892,13 @@ sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-snatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-snatcher"; sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4"; name = "json-snatcher"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/json-snatcher"; + homepage = "https://melpa.org/#/json-snatcher"; license = lib.licenses.free; }; }) {}; @@ -31675,13 +32913,13 @@ sha256 = "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jss"; sha256 = "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k"; name = "jss"; }; packageRequires = [ emacs js2-mode websocket ]; meta = { - homepage = "http://melpa.org/#/jss"; + homepage = "https://melpa.org/#/jss"; license = lib.licenses.free; }; }) {}; @@ -31696,13 +32934,13 @@ sha256 = "16jgmabcqrjb3v9c6q711jqn9dna88bmzm4880mdry69ixwcydxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jst"; sha256 = "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i"; name = "jst"; }; packageRequires = [ dash emacs f pcache s ]; meta = { - homepage = "http://melpa.org/#/jst"; + homepage = "https://melpa.org/#/jst"; license = lib.licenses.free; }; }) {}; @@ -31717,13 +32955,13 @@ sha256 = "1g648r0wrd8m5ggl5jrplmj7jmr68bh2ykyii5wv30zfba97r1sh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jsx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jsx-mode"; sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b"; name = "jsx-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jsx-mode"; + homepage = "https://melpa.org/#/jsx-mode"; license = lib.licenses.free; }; }) {}; @@ -31733,37 +32971,37 @@ src = fetchgit { url = "git://git.code.sf.net/p/jtags/code"; rev = "b50daa48510f71e74ce0ec2eb85030896a79cf96"; - sha256 = "1eedc86541cc3dcb0b0d0c6acc7ddf8b4755c757addb6eacbe33811058f2850f"; + sha256 = "03w5y9c1109kpsn6xnxdaz3maiwbvxywqshc1l5wngfc85jwiv8y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jtags"; sha256 = "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r"; name = "jtags"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jtags"; + homepage = "https://melpa.org/#/jtags"; license = lib.licenses.free; }; }) {}; julia-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "julia-mode"; - version = "20160219.1903"; + version = "20160407.1501"; src = fetchFromGitHub { owner = "JuliaLang"; - repo = "julia"; - rev = "772d903709276ef83fe01df9ef17aec70311036f"; - sha256 = "1d04y5dildjc1zw0i33n0kfds776b2632y2m9layqhm58fiby9d8"; + repo = "julia-emacs"; + rev = "4f72dfa5af900212299133170ddefb45ebfafef4"; + sha256 = "0b6fk40yhzi2iy75gpi7fx3qa6zhr83wgvkmcn140i74f92wc1yk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/julia-mode"; - sha256 = "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/julia-mode"; + sha256 = "0m49v67fs5yq0q3lwkcfmrzsjdzi1qrkfjyvjcdwnfmp29w14kq6"; name = "julia-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/julia-mode"; + homepage = "https://melpa.org/#/julia-mode"; license = lib.licenses.free; }; }) {}; @@ -31778,13 +33016,13 @@ sha256 = "0r4ajn3f1c8n0r831ihvzwyzy94aiv0ijqrwhpq0s85cqvzr7pq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/julia-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/julia-shell"; sha256 = "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410"; name = "julia-shell"; }; packageRequires = [ julia-mode ]; meta = { - homepage = "http://melpa.org/#/julia-shell"; + homepage = "https://melpa.org/#/julia-shell"; license = lib.licenses.free; }; }) {}; @@ -31799,13 +33037,13 @@ sha256 = "1f0kai4cz3r25fqlnryyvnyf80cf57xa655dvv1rx8si3xd20x4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jumblr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jumblr"; sha256 = "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp"; name = "jumblr"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/jumblr"; + homepage = "https://melpa.org/#/jumblr"; license = lib.licenses.free; }; }) {}; @@ -31820,13 +33058,13 @@ sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jump"; sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364"; name = "jump"; }; packageRequires = [ findr inflections ]; meta = { - homepage = "http://melpa.org/#/jump"; + homepage = "https://melpa.org/#/jump"; license = lib.licenses.free; }; }) {}; @@ -31841,13 +33079,13 @@ sha256 = "0vpla6lyr30fyq9gi7g9zmnhysbm077m0qgi7w3axppfbxdvg67q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jump-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jump-char"; sha256 = "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n"; name = "jump-char"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jump-char"; + homepage = "https://melpa.org/#/jump-char"; license = lib.licenses.free; }; }) {}; @@ -31862,13 +33100,13 @@ sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jump-to-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jump-to-line"; sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr"; name = "jump-to-line"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jump-to-line"; + homepage = "https://melpa.org/#/jump-to-line"; license = lib.licenses.free; }; }) {}; @@ -31883,13 +33121,13 @@ sha256 = "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jumplist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jumplist"; sha256 = "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf"; name = "jumplist"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/jumplist"; + homepage = "https://melpa.org/#/jumplist"; license = lib.licenses.free; }; }) {}; @@ -31904,13 +33142,13 @@ sha256 = "0k91cdjlpil8npc4d3zsgx2gk41crl7qgm9r85khcgxs59kmkniw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jvm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jvm-mode"; sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w"; name = "jvm-mode"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/jvm-mode"; + homepage = "https://melpa.org/#/jvm-mode"; license = lib.licenses.free; }; }) {}; @@ -31925,13 +33163,13 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar"; sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l"; name = "kaesar"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/kaesar"; + homepage = "https://melpa.org/#/kaesar"; license = lib.licenses.free; }; }) {}; @@ -31946,13 +33184,13 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar-file"; sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc"; name = "kaesar-file"; }; packageRequires = [ kaesar ]; meta = { - homepage = "http://melpa.org/#/kaesar-file"; + homepage = "https://melpa.org/#/kaesar-file"; license = lib.licenses.free; }; }) {}; @@ -31967,13 +33205,13 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar-mode"; sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry"; name = "kaesar-mode"; }; packageRequires = [ cl-lib kaesar ]; meta = { - homepage = "http://melpa.org/#/kaesar-mode"; + homepage = "https://melpa.org/#/kaesar-mode"; license = lib.licenses.free; }; }) {}; @@ -31988,13 +33226,13 @@ sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kakapo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kakapo-mode"; sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss"; name = "kakapo-mode"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/kakapo-mode"; + homepage = "https://melpa.org/#/kakapo-mode"; license = lib.licenses.free; }; }) {}; @@ -32007,13 +33245,13 @@ sha256 = "14g0f51jig8b1y6zfaw7b1cp692lddqzkc0ngf4y89sw9gbmsh3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kanban"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kanban"; sha256 = "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb"; name = "kanban"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kanban"; + homepage = "https://melpa.org/#/kanban"; license = lib.licenses.free; }; }) {}; @@ -32024,17 +33262,17 @@ src = fetchFromGitHub { owner = "wsgac"; repo = "kanji-mode"; - rev = "3caaee58f00f69a8c9ee2491b8a2050add9df962"; - sha256 = "0vfagfzhh4rkmvjzfhfcm7w3z1x31aqzxwigk5yw9scnfb77pinz"; + rev = "ce6a755d034311059381c3a2c5a97f2de7f38f20"; + sha256 = "0rxf44kszxazkpjmccz3wnks7si3g8vsfi2lamwynmksk8sw5d7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kanji-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kanji-mode"; sha256 = "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5"; name = "kanji-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kanji-mode"; + homepage = "https://melpa.org/#/kanji-mode"; license = lib.licenses.free; }; }) {}; @@ -32049,13 +33287,13 @@ sha256 = "0vqjbv3pqlbyibqylfsqqjzkvjhdg01hlxszfblpg72fziyzcci5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaomoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaomoji"; sha256 = "1p61pbqf2lnwr6ryxxc4jkd5bmlgknrc27lg89h3b4pw7k39cqy1"; name = "kaomoji"; }; packageRequires = [ emacs helm-core ]; meta = { - homepage = "http://melpa.org/#/kaomoji"; + homepage = "https://melpa.org/#/kaomoji"; license = lib.licenses.free; }; }) {}; @@ -32070,13 +33308,13 @@ sha256 = "12v242kfcx849j8w95v2g7djh9xqbx8n033iaxyavfxnz0pp7zdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/karma"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/karma"; sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc"; name = "karma"; }; packageRequires = [ emacs pkg-info ]; meta = { - homepage = "http://melpa.org/#/karma"; + homepage = "https://melpa.org/#/karma"; license = lib.licenses.free; }; }) {}; @@ -32091,31 +33329,31 @@ sha256 = "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kerl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kerl"; sha256 = "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss"; name = "kerl"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kerl"; + homepage = "https://melpa.org/#/kerl"; license = lib.licenses.free; }; }) {}; key-chord = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "key-chord"; - version = "20151209.304"; + version = "20160227.638"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/key-chord.el"; + url = "https://www.emacswiki.org/emacs/download/key-chord.el"; sha256 = "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-chord"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-chord"; sha256 = "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an"; name = "key-chord"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/key-chord"; + homepage = "https://melpa.org/#/key-chord"; license = lib.licenses.free; }; }) {}; @@ -32130,13 +33368,13 @@ sha256 = "1is7s50lgn77lxxwgakiaywx6jqdfg8045d18m4zn3ilxg6k8ljf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-combo"; sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf"; name = "key-combo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/key-combo"; + homepage = "https://melpa.org/#/key-combo"; license = lib.licenses.free; }; }) {}; @@ -32151,13 +33389,13 @@ sha256 = "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-intercept"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-intercept"; sha256 = "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16"; name = "key-intercept"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/key-intercept"; + homepage = "https://melpa.org/#/key-intercept"; license = lib.licenses.free; }; }) {}; @@ -32172,13 +33410,13 @@ sha256 = "14xk0crl25alcckkcg0wx7gwb65hmicfn01db1zip8swk249g9w3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-leap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-leap"; sha256 = "0z1fhpf8g0c4rh3bf8dfmdgyhj5w686kavjr214czaga0x7mwlwj"; name = "key-leap"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/key-leap"; + homepage = "https://melpa.org/#/key-leap"; license = lib.licenses.free; }; }) {}; @@ -32193,34 +33431,34 @@ sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-seq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-seq"; sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74"; name = "key-seq"; }; packageRequires = [ key-chord ]; meta = { - homepage = "http://melpa.org/#/key-seq"; + homepage = "https://melpa.org/#/key-seq"; license = lib.licenses.free; }; }) {}; keychain-environment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keychain-environment"; - version = "20150416.1458"; + version = "20160424.646"; src = fetchFromGitHub { owner = "tarsius"; repo = "keychain-environment"; - rev = "c4c87cf3b3f13c1d73efe8fccf5f2c68ebe04abe"; - sha256 = "0xm7vybqgglacm0xz6fa7ipfvsx14qqws629gi9i16maxn3by9ci"; + rev = "1ca091f72ad1d1a7620552289ae43484d853e968"; + sha256 = "0xgm80dbg45bs3k8psd3pv49z1xbvzm156xs55gmxdzbgxbzpazr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keychain-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keychain-environment"; sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v"; name = "keychain-environment"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/keychain-environment"; + homepage = "https://melpa.org/#/keychain-environment"; license = lib.licenses.free; }; }) {}; @@ -32235,13 +33473,13 @@ sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keydef"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keydef"; sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992"; name = "keydef"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/keydef"; + homepage = "https://melpa.org/#/keydef"; license = lib.licenses.free; }; }) {}; @@ -32256,34 +33494,34 @@ sha256 = "18qiw2324gx5w12pqka9njsysxym8dpglk7dzadg0k1wji73nn6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keyfreq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keyfreq"; sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7"; name = "keyfreq"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/keyfreq"; + homepage = "https://melpa.org/#/keyfreq"; license = lib.licenses.free; }; }) {}; keymap-utils = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keymap-utils"; - version = "20151128.844"; + version = "20160212.1729"; src = fetchFromGitHub { owner = "tarsius"; repo = "keymap-utils"; - rev = "d5d09bc13cecbe334747be23112c99c4ba9f19c7"; - sha256 = "07x52cybb0m94wgbi0rw2ldx9zg1i6l309gfmi9c199g1zj4wsh5"; + rev = "dbb5ec9fa28ff3c0fbb9efcc9f75329a5aca3798"; + sha256 = "1c4qqfq7c1d31v9ap7fgq019l5vds7jzqq9c2dp4gj7j00d9vvlx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keymap-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keymap-utils"; sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9"; name = "keymap-utils"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/keymap-utils"; + homepage = "https://melpa.org/#/keymap-utils"; license = lib.licenses.free; }; }) {}; @@ -32298,34 +33536,34 @@ sha256 = "0cm6naqlwk65xy9lwnn5r7m6nc1l7ims2ckydmyzny5ak8y5jbws"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keyset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keyset"; sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg"; name = "keyset"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/keyset"; + homepage = "https://melpa.org/#/keyset"; license = lib.licenses.free; }; }) {}; keyword-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keyword-search"; - version = "20150911.432"; + version = "20160415.441"; src = fetchFromGitHub { owner = "keyword-search"; repo = "keyword-search"; - rev = "1a01e3d5a43e48701cfab0332876284f5d3a1bba"; - sha256 = "0zw4klp9ifb6yylr9yab3p3vjv18as6clpg2i3w4r2xah9chxgqq"; + rev = "8a529ebe3ff43a5b21c5fe05a2afd530e52a8dea"; + sha256 = "0li7x72ppxjh111njkkrc00lvsfm14h784m6yh3cvgsbx02lywbq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keyword-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keyword-search"; sha256 = "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa"; name = "keyword-search"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/keyword-search"; + homepage = "https://melpa.org/#/keyword-search"; license = lib.licenses.free; }; }) {}; @@ -32340,13 +33578,13 @@ sha256 = "0xq835xzywks4b4kaz5i0pp759i23kibs5gkvvxasw0dncqh7j5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kfg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kfg"; sha256 = "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs"; name = "kfg"; }; packageRequires = [ f ]; meta = { - homepage = "http://melpa.org/#/kfg"; + homepage = "https://melpa.org/#/kfg"; license = lib.licenses.free; }; }) {}; @@ -32361,13 +33599,13 @@ sha256 = "0s2hb2lvfmcvm3n1fg4biaafc1p7j7w990d7w15gicaw6rr2j4nr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kibit-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kibit-helper"; sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s"; name = "kibit-helper"; }; packageRequires = [ emacs s ]; meta = { - homepage = "http://melpa.org/#/kibit-helper"; + homepage = "https://melpa.org/#/kibit-helper"; license = lib.licenses.free; }; }) {}; @@ -32382,13 +33620,13 @@ sha256 = "0a2jmk4wryngs56rqh6sxiyk5yh25l2qvping86yipic2wia17n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kill-or-bury-alive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kill-or-bury-alive"; sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8"; name = "kill-or-bury-alive"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/kill-or-bury-alive"; + homepage = "https://melpa.org/#/kill-or-bury-alive"; license = lib.licenses.free; }; }) {}; @@ -32403,13 +33641,13 @@ sha256 = "0yrc09k64rv5is4wvss938mkj2pkvbr98lr3ahsi7p0aqn7s444v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kill-ring-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kill-ring-search"; sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan"; name = "kill-ring-search"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kill-ring-search"; + homepage = "https://melpa.org/#/kill-ring-search"; license = lib.licenses.free; }; }) {}; @@ -32424,13 +33662,13 @@ sha256 = "05rbh5hkj3jsn9pw0qa4d5a5pi6367vdqkijcn9k14fdfbmyd30x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/killer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/killer"; sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma"; name = "killer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/killer"; + homepage = "https://melpa.org/#/killer"; license = lib.licenses.free; }; }) {}; @@ -32445,13 +33683,13 @@ sha256 = "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kite"; sha256 = "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m"; name = "kite"; }; packageRequires = [ json websocket ]; meta = { - homepage = "http://melpa.org/#/kite"; + homepage = "https://melpa.org/#/kite"; license = lib.licenses.free; }; }) {}; @@ -32466,13 +33704,13 @@ sha256 = "1m0f1hiczq88qjy573rhlkw2lmjy814cgdl42zxsjbf78wg4qx8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kite-mini"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kite-mini"; sha256 = "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh"; name = "kite-mini"; }; packageRequires = [ dash websocket ]; meta = { - homepage = "http://melpa.org/#/kite-mini"; + homepage = "https://melpa.org/#/kite-mini"; license = lib.licenses.free; }; }) {}; @@ -32483,17 +33721,17 @@ src = fetchFromGitHub { owner = "kivy"; repo = "kivy"; - rev = "546e8857b427de32e95cfd15b5ffdc230e5edeea"; - sha256 = "0hd48iii48bi0nrpy0qz5713m0rlgcla42708m8znhzw69myvbna"; + rev = "ef4e311a67416a6642e62db140aa458b1492b934"; + sha256 = "1fdkca63ii2lhss2mff9swxbhymf9hq8znjyfkji5bhq517158qx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kivy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kivy-mode"; sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1"; name = "kivy-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kivy-mode"; + homepage = "https://melpa.org/#/kivy-mode"; license = lib.licenses.free; }; }) {}; @@ -32508,13 +33746,13 @@ sha256 = "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kixtart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kixtart-mode"; sha256 = "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp"; name = "kixtart-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/kixtart-mode"; + homepage = "https://melpa.org/#/kixtart-mode"; license = lib.licenses.free; }; }) {}; @@ -32529,13 +33767,13 @@ sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/know-your-http-well"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/know-your-http-well"; sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q"; name = "know-your-http-well"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/know-your-http-well"; + homepage = "https://melpa.org/#/know-your-http-well"; license = lib.licenses.free; }; }) {}; @@ -32550,13 +33788,13 @@ sha256 = "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kolon-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kolon-mode"; sha256 = "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3"; name = "kolon-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kolon-mode"; + homepage = "https://melpa.org/#/kolon-mode"; license = lib.licenses.free; }; }) {}; @@ -32567,38 +33805,38 @@ src = fetchFromGitHub { owner = "kootenpv"; repo = "emacs-kooten-theme"; - rev = "7caf9e31219281a7c5a2a7b60404d9c18460de4b"; - sha256 = "02217kskgy82dnq3cqrss8hf355aypfm1dxx6ijv6s855kww2zjc"; + rev = "f703b3a9227b505008e2f07d5dd2e087fad563ba"; + sha256 = "1bh2zpprh2zwhfgdw131lm0j7zm0hmnb0zqcahps104xna9s5x60"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kooten-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kooten-theme"; sha256 = "1kkk8nl1xykc4c487icmjrc2xsv8i4s2r5h5gbcpyrk2myqi4179"; name = "kooten-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/kooten-theme"; + homepage = "https://melpa.org/#/kooten-theme"; license = lib.licenses.free; }; }) {}; kpm-list = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kpm-list"; - version = "20130131.348"; + version = "20160310.1250"; src = fetchFromGitHub { owner = "KMahoney"; repo = "kpm-list"; - rev = "397912496d42e57c261ff6d33edc8fc029479b8b"; - sha256 = "1m9hixlclynph2i5q18miq077dyvhx14pfzgawrwj82j1kslz50x"; + rev = "6fb7db35f7dac7fb8f956c67ee2eea9d3fa54034"; + sha256 = "0hbzr5x9ykzrbwzfsf6rc4pbiw9m59ny3cgcx26nbi6ijbjl2fxj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kpm-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kpm-list"; sha256 = "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0"; name = "kpm-list"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kpm-list"; + homepage = "https://melpa.org/#/kpm-list"; license = lib.licenses.free; }; }) {}; @@ -32613,13 +33851,13 @@ sha256 = "11axxmhdpwgrcyjz200pf5bqzjw9wz4085r8p1n2vr5gx98374fr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kroman"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kroman"; sha256 = "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7"; name = "kroman"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kroman"; + homepage = "https://melpa.org/#/kroman"; license = lib.licenses.free; }; }) {}; @@ -32634,13 +33872,13 @@ sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kurecolor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kurecolor"; sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f"; name = "kurecolor"; }; packageRequires = [ emacs s ]; meta = { - homepage = "http://melpa.org/#/kurecolor"; + homepage = "https://melpa.org/#/kurecolor"; license = lib.licenses.free; }; }) {}; @@ -32655,13 +33893,13 @@ sha256 = "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kv"; sha256 = "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb"; name = "kv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kv"; + homepage = "https://melpa.org/#/kv"; license = lib.licenses.free; }; }) {}; @@ -32676,13 +33914,34 @@ sha256 = "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kwin"; sha256 = "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki"; name = "kwin"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kwin"; + homepage = "https://melpa.org/#/kwin"; + license = lib.licenses.free; + }; + }) {}; + labburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "labburn-theme"; + version = "20160411.321"; + src = fetchFromGitHub { + owner = "ksjogo"; + repo = "labburn-theme"; + rev = "24e2cd2385cf7026512b0bd58dcb2c3442bfb8dd"; + sha256 = "0ldjkwfxac3lkfl5r1qgbjf74yc6k2b7f5imgcina34vd3jk0s3h"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/labburn-theme"; + sha256 = "09qqb62hfga88zka0pc27rc8i43cxi84cv1x8wj0vvzx6mvic1lm"; + name = "labburn-theme"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/labburn-theme"; license = lib.licenses.free; }; }) {}; @@ -32690,17 +33949,17 @@ pname = "lacarte"; version = "20151231.1609"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/lacarte.el"; + url = "https://www.emacswiki.org/emacs/download/lacarte.el"; sha256 = "01vs0v17l76zwyrblf9c6x0xg5fagd4qv8pr1fwfw7kl64hb9aa2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lacarte"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lacarte"; sha256 = "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9"; name = "lacarte"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lacarte"; + homepage = "https://melpa.org/#/lacarte"; license = lib.licenses.free; }; }) {}; @@ -32715,13 +33974,13 @@ sha256 = "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lang-refactor-perl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lang-refactor-perl"; sha256 = "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9"; name = "lang-refactor-perl"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lang-refactor-perl"; + homepage = "https://melpa.org/#/lang-refactor-perl"; license = lib.licenses.free; }; }) {}; @@ -32736,13 +33995,13 @@ sha256 = "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/langdoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/langdoc"; sha256 = "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7"; name = "langdoc"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/langdoc"; + homepage = "https://melpa.org/#/langdoc"; license = lib.licenses.free; }; }) {}; @@ -32757,13 +34016,13 @@ sha256 = "1rj0j4vxfwss0w6bwh591w5mbyzjg5rkbwyjaphyi6p7wq5w6np1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/langtool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/langtool"; sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw"; name = "langtool"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/langtool"; + homepage = "https://melpa.org/#/langtool"; license = lib.licenses.free; }; }) {}; @@ -32778,55 +34037,55 @@ sha256 = "1cqbdgk3sd0xbw76qrhlild9dvgds3vgldq0rcl200kh7y8l6g4k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latest-clojure-libraries"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latest-clojure-libraries"; sha256 = "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5"; name = "latest-clojure-libraries"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/latest-clojure-libraries"; + homepage = "https://melpa.org/#/latest-clojure-libraries"; license = lib.licenses.free; }; }) {}; latex-extra = callPackage ({ auctex, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-extra"; - version = "20160209.945"; + version = "20160328.1921"; src = fetchFromGitHub { owner = "Malabarba"; repo = "latex-extra"; - rev = "efb76e4bfb3282da2dcefb8e9a472f0021ab7c61"; - sha256 = "04dz7ab0bxg5j3s5qh7jdidg1x8jvy9hdp2xkm6irblxhsh64dsk"; + rev = "d5b759fa61da968c3ca998ba0d2ef4a73647e5fd"; + sha256 = "07aavdr1dlw8hca27l8a0i8cs5ga1wqqdf1v1iyvjz61vygld77a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-extra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-extra"; sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj"; name = "latex-extra"; }; packageRequires = [ auctex cl-lib ]; meta = { - homepage = "http://melpa.org/#/latex-extra"; + homepage = "https://melpa.org/#/latex-extra"; license = lib.licenses.free; }; }) {}; latex-math-preview = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-math-preview"; - version = "20160104.1858"; + version = "20160321.2359"; src = fetchFromGitLab { owner = "latex-math-preview"; repo = "latex-math-preview"; - rev = "c1c87c4c5501f98b97af19f7e3454a2369265edc"; - sha256 = "118xrgrnwsmsysmframf6bmb0gkrdrm3jbkgivzxs41cw92fhbzw"; + rev = "2c7a526a4e46f7154befc9009b131dfbab22ac03"; + sha256 = "0cxmvadkiqhvhmvmx3vvwxasw7wll8abhviss7wgizwqf4i2p3v4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-math-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-math-preview"; sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr"; name = "latex-math-preview"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/latex-math-preview"; + homepage = "https://melpa.org/#/latex-math-preview"; license = lib.licenses.free; }; }) {}; @@ -32840,13 +34099,13 @@ sha256 = "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-pretty-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-pretty-symbols"; sha256 = "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl"; name = "latex-pretty-symbols"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/latex-pretty-symbols"; + homepage = "https://melpa.org/#/latex-pretty-symbols"; license = lib.licenses.free; }; }) {}; @@ -32861,34 +34120,34 @@ sha256 = "1bvhrh9xfl7p474b8jcczw255d2pjmrz5b60wis0lmmxdljplrfa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-preview-pane"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-preview-pane"; sha256 = "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw"; name = "latex-preview-pane"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/latex-preview-pane"; + homepage = "https://melpa.org/#/latex-preview-pane"; license = lib.licenses.free; }; }) {}; latex-unicode-math-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-unicode-math-mode"; - version = "20160209.1117"; + version = "20160411.730"; src = fetchFromGitHub { owner = "Christoph-D"; repo = "latex-unicode-math-mode"; - rev = "71da85b55870aa870be722ced9d1f7df54b17f97"; - sha256 = "165qhh6cfrr24yg0qvpq4vk64a70z30nchkbbhhwg4f6ib7v5f5h"; + rev = "79edf60793eb6928a5b4831268bf09694fd092ec"; + sha256 = "10i4r81pm95990d4yrabzdm49gp47mqpv15h4r4sih10p1kbn83h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-unicode-math-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-unicode-math-mode"; sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr"; name = "latex-unicode-math-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/latex-unicode-math-mode"; + homepage = "https://melpa.org/#/latex-unicode-math-mode"; license = lib.licenses.free; }; }) {}; @@ -32903,13 +34162,13 @@ sha256 = "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/launch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/launch"; sha256 = "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6"; name = "launch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/launch"; + homepage = "https://melpa.org/#/launch"; license = lib.licenses.free; }; }) {}; @@ -32924,13 +34183,13 @@ sha256 = "154z7bhb7qagvl3dlgrlsxdg4chz2863ijglg47xs3yhjp5ypanj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/launchctl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/launchctl"; sha256 = "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9"; name = "launchctl"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/launchctl"; + homepage = "https://melpa.org/#/launchctl"; license = lib.licenses.free; }; }) {}; @@ -32945,13 +34204,13 @@ sha256 = "1mg923rs2dk104bcr461dif3mg42r081ii8ipnnr588w7il0xh7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lavender-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lavender-theme"; sha256 = "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1"; name = "lavender-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/lavender-theme"; + homepage = "https://melpa.org/#/lavender-theme"; license = lib.licenses.free; }; }) {}; @@ -32966,34 +34225,34 @@ sha256 = "03mv2r6k9syr7bk4vmdafmpa8kz19hv5h68ahj2bmdcmwlvwhkf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ldap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ldap-mode"; sha256 = "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq"; name = "ldap-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ldap-mode"; + homepage = "https://melpa.org/#/ldap-mode"; license = lib.licenses.free; }; }) {}; ledger-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ledger-mode"; - version = "20160111.2034"; + version = "20160228.1934"; src = fetchFromGitHub { owner = "ledger"; repo = "ledger"; - rev = "b7f84d69001f75a18807772dee514f5918e3a926"; - sha256 = "0vm32jv36s6kprmqbij5rpjg9djj3qsla4gpbpm8nycfg73bgylw"; + rev = "b08c03f05e2cfe7c4071a51075e83221edb24c33"; + sha256 = "0g0lz66lclr8fjlv6rr86l3sx3ib6s78ryvzffc3yy7pwz4xl0gx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ledger-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ledger-mode"; sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s"; name = "ledger-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ledger-mode"; + homepage = "https://melpa.org/#/ledger-mode"; license = lib.licenses.free; }; }) {}; @@ -33008,31 +34267,34 @@ sha256 = "0yrrlwmxg1wy65bqyacjpzd5ksljgp41x4zyizl7h0zx9rmqcdvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/leerzeichen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/leerzeichen"; sha256 = "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp"; name = "leerzeichen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/leerzeichen"; + homepage = "https://melpa.org/#/leerzeichen"; license = lib.licenses.free; }; }) {}; - legalese = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + legalese = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "legalese"; - version = "20100119.1548"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/legalese.el"; - sha256 = "0vjf2f5kpmgnw7904jsv2wnn6dcv654v7h1v917wmj72sy941xml"; + version = "20150820.1224"; + src = fetchFromGitHub { + owner = "jorgenschaefer"; + repo = "legalese"; + rev = "ec23e69d18329456beed9546a1d6c72f96db91cf"; + sha256 = "05zpc8b2pyjz76fvmgr7zkl56g6nf6hi4nmxdg6gkw8fx6p8i19f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/legalese"; - sha256 = "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/legalese"; + sha256 = "18rkvfknaqwkmhsjpgrf2hknrb2zj61aw8rb4907gsbs9rciqpdd"; name = "legalese"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/legalese"; + homepage = "https://melpa.org/#/legalese"; license = lib.licenses.free; }; }) {}; @@ -33047,13 +34309,13 @@ sha256 = "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lemon-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lemon-mode"; sha256 = "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5"; name = "lemon-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lemon-mode"; + homepage = "https://melpa.org/#/lemon-mode"; license = lib.licenses.free; }; }) {}; @@ -33068,13 +34330,13 @@ sha256 = "0ab84qiqaz3swiraks8lx0y1kzwylpy9wz2104xgnpwnc5169z65"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lenlen-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lenlen-theme"; sha256 = "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9"; name = "lenlen-theme"; }; packageRequires = [ color-theme-solarized ]; meta = { - homepage = "http://melpa.org/#/lenlen-theme"; + homepage = "https://melpa.org/#/lenlen-theme"; license = lib.licenses.free; }; }) {}; @@ -33089,13 +34351,13 @@ sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lentic"; sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m"; name = "lentic"; }; packageRequires = [ dash emacs f m-buffer s ]; meta = { - homepage = "http://melpa.org/#/lentic"; + homepage = "https://melpa.org/#/lentic"; license = lib.licenses.free; }; }) {}; @@ -33110,13 +34372,13 @@ sha256 = "0c6wkfz6sdcs4aglvx6h3slhma2vbj7idckwzvp8ji6s7p1mavlv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lentic-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lentic-server"; sha256 = "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56"; name = "lentic-server"; }; packageRequires = [ lentic web-server ]; meta = { - homepage = "http://melpa.org/#/lentic-server"; + homepage = "https://melpa.org/#/lentic-server"; license = lib.licenses.free; }; }) {}; @@ -33131,13 +34393,13 @@ sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/less-css-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/less-css-mode"; sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8"; name = "less-css-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/less-css-mode"; + homepage = "https://melpa.org/#/less-css-mode"; license = lib.licenses.free; }; }) {}; @@ -33152,34 +34414,34 @@ sha256 = "06hggcbz98qhfbvp0fxn89j98d0mmki4wc4k8kfzp5fhg071chbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/letcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/letcheck"; sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2"; name = "letcheck"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/letcheck"; + homepage = "https://melpa.org/#/letcheck"; license = lib.licenses.free; }; }) {}; leuven-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "leuven-theme"; - version = "20160207.1243"; + version = "20160319.1019"; src = fetchFromGitHub { owner = "fniessen"; repo = "emacs-leuven-theme"; - rev = "ea5c7891573f9fefe937801b3e6365218893958d"; - sha256 = "15qixxvg0az3z8q8plrwyind40acr1wv392q81vlad0ngvl81v4r"; + rev = "b49a9a10012e262cb8949c4ebfd7312caa2e5eff"; + sha256 = "1av1dpi1spddb1w0q370qq8zi5rjfr1d9a0f0xqy877i66wc51xf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/leuven-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/leuven-theme"; sha256 = "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a"; name = "leuven-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/leuven-theme"; + homepage = "https://melpa.org/#/leuven-theme"; license = lib.licenses.free; }; }) {}; @@ -33187,17 +34449,17 @@ pname = "levenshtein"; version = "20051013.1256"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/levenshtein.el"; + url = "https://www.emacswiki.org/emacs/download/levenshtein.el"; sha256 = "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/levenshtein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/levenshtein"; sha256 = "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2"; name = "levenshtein"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/levenshtein"; + homepage = "https://melpa.org/#/levenshtein"; license = lib.licenses.free; }; }) {}; @@ -33212,34 +34474,34 @@ sha256 = "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lexbind-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lexbind-mode"; sha256 = "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl"; name = "lexbind-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lexbind-mode"; + homepage = "https://melpa.org/#/lexbind-mode"; license = lib.licenses.free; }; }) {}; lfe-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lfe-mode"; - version = "20151227.2031"; + version = "20160422.1406"; src = fetchFromGitHub { owner = "rvirding"; repo = "lfe"; - rev = "f0c613e6ebe9cd185782de224dfb5c1f261403cc"; - sha256 = "0bqqgjzx8wj9sbdc146crmmskm9jmnmbp858kd67bnzdhpw3jf6k"; + rev = "0406467fc129bebfb72e36b20839007cd09d7cf9"; + sha256 = "1wysncb3bs795wj1ysq206im14zwc04460pb329vlwzvl9hygmx7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lfe-mode"; - sha256 = "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lfe-mode"; + sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs"; name = "lfe-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lfe-mode"; + homepage = "https://melpa.org/#/lfe-mode"; license = lib.licenses.free; }; }) {}; @@ -33247,17 +34509,17 @@ pname = "lib-requires"; version = "20151231.1610"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/lib-requires.el"; + url = "https://www.emacswiki.org/emacs/download/lib-requires.el"; sha256 = "077cy2clllrvabw44wb1pzcqz97r3y92j7cb9lnhd9pix0wpcq6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lib-requires"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lib-requires"; sha256 = "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx"; name = "lib-requires"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lib-requires"; + homepage = "https://melpa.org/#/lib-requires"; license = lib.licenses.free; }; }) {}; @@ -33272,13 +34534,13 @@ sha256 = "039awlam3nrgkxrarcapfyc2myvc77aw7whrkcsjjybzylpzv0pr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/libmpdee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/libmpdee"; sha256 = "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0"; name = "libmpdee"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/libmpdee"; + homepage = "https://melpa.org/#/libmpdee"; license = lib.licenses.free; }; }) {}; @@ -33293,13 +34555,13 @@ sha256 = "11c3vmxyddx7zm8fpxmzhq2xygyijbszinfiwllgb4l738bxwljb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lice"; sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x"; name = "lice"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lice"; + homepage = "https://melpa.org/#/lice"; license = lib.licenses.free; }; }) {}; @@ -33314,13 +34576,13 @@ sha256 = "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/light-soap-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/light-soap-theme"; sha256 = "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk"; name = "light-soap-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/light-soap-theme"; + homepage = "https://melpa.org/#/light-soap-theme"; license = lib.licenses.free; }; }) {}; @@ -33335,13 +34597,13 @@ sha256 = "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lingr"; sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff"; name = "lingr"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lingr"; + homepage = "https://melpa.org/#/lingr"; license = lib.licenses.free; }; }) {}; @@ -33356,34 +34618,34 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/link"; sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8"; name = "link"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/link"; + homepage = "https://melpa.org/#/link"; license = lib.licenses.free; }; }) {}; - link-hint = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + link-hint = callPackage ({ avy, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "link-hint"; - version = "20160128.1454"; + version = "20160413.18"; src = fetchFromGitHub { owner = "noctuid"; repo = "link-hint.el"; - rev = "a34fcdfef646e3f9861fc5513e0d8ab46ef720e2"; - sha256 = "1glwsc1a3nhw7xwqlf1pgswgnwkvfy2a6a0k0lxshdajxiayyh7d"; + rev = "64afe6492609144d0d4edded349e6c1a299acd7f"; + sha256 = "0xkpnp5rccxf8184c4hpi3zlik5l89s64yizj0vwc2z73xah8alq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/link-hint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/link-hint"; sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89"; name = "link-hint"; }; - packageRequires = [ avy emacs ]; + packageRequires = [ avy cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/link-hint"; + homepage = "https://melpa.org/#/link-hint"; license = lib.licenses.free; }; }) {}; @@ -33398,13 +34660,13 @@ sha256 = "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/linphone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/linphone"; sha256 = "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7"; name = "linphone"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/linphone"; + homepage = "https://melpa.org/#/linphone"; license = lib.licenses.free; }; }) {}; @@ -33419,13 +34681,13 @@ sha256 = "1pvgp76n2qnm01l5f9mkb9yqwfxag9x23wwqbsna66rmvsag69w0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/linum-off"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/linum-off"; sha256 = "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay"; name = "linum-off"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/linum-off"; + homepage = "https://melpa.org/#/linum-off"; license = lib.licenses.free; }; }) {}; @@ -33440,13 +34702,34 @@ sha256 = "01r8vbblpqfyfafmgbcw02f371j6c2g940bwmvi54rmjf9kjd6h7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/linum-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/linum-relative"; sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj"; name = "linum-relative"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/linum-relative"; + homepage = "https://melpa.org/#/linum-relative"; + license = lib.licenses.free; + }; + }) {}; + liso-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "liso-theme"; + version = "20160410.1529"; + src = fetchFromGitHub { + owner = "caisah"; + repo = "liso-theme"; + rev = "844688245eb860d23043455e165ee24503454c81"; + sha256 = "01ycjy3amzbplp3zf0x5fahsja92gyg2252xhzcyiazmhaz7gkrd"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/liso-theme"; + sha256 = "014a71dnhnr0dr36sl2h8ffp6il9nasij31ahqz0bjgn4r16s5gy"; + name = "liso-theme"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/liso-theme"; license = lib.licenses.free; }; }) {}; @@ -33461,13 +34744,13 @@ sha256 = "1r2yhjfby4mibbr7d14m1rifchdy7bvwy50xz2wx4004zqhjmnjd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lisp-extra-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lisp-extra-font-lock"; sha256 = "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk"; name = "lisp-extra-font-lock"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lisp-extra-font-lock"; + homepage = "https://melpa.org/#/lisp-extra-font-lock"; license = lib.licenses.free; }; }) {}; @@ -33475,38 +34758,38 @@ pname = "lispxmp"; version = "20130824.707"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/lispxmp.el"; + url = "https://www.emacswiki.org/emacs/download/lispxmp.el"; sha256 = "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lispxmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lispxmp"; sha256 = "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4"; name = "lispxmp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lispxmp"; + homepage = "https://melpa.org/#/lispxmp"; license = lib.licenses.free; }; }) {}; lispy = callPackage ({ ace-window, emacs, fetchFromGitHub, fetchurl, hydra, iedit, lib, melpaBuild, swiper }: melpaBuild { pname = "lispy"; - version = "20160218.432"; + version = "20160424.1244"; src = fetchFromGitHub { owner = "abo-abo"; repo = "lispy"; - rev = "91c05e6bfb7dbabfee08be9dbe3ad32e86aae1e3"; - sha256 = "1gi6f1kpjjj5ik4fxmycj53lk7j4ppmv7jrwhwfn97nj4p5kd43s"; + rev = "c70eca49a451fc58b308f2c7a4b991367a5eb633"; + sha256 = "18hcjnra7ibmaavy883gs1v6ybi6fb1i08brmc6y6gjk84grm4jp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lispy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lispy"; sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g"; name = "lispy"; }; packageRequires = [ ace-window emacs hydra iedit swiper ]; meta = { - homepage = "http://melpa.org/#/lispy"; + homepage = "https://melpa.org/#/lispy"; license = lib.licenses.free; }; }) {}; @@ -33521,13 +34804,13 @@ sha256 = "0n0mk01h9c3f24gzpws5xf6syrdwkq4kzs9mgwl74x9l0x904rgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lispyscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lispyscript-mode"; sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr"; name = "lispyscript-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lispyscript-mode"; + homepage = "https://melpa.org/#/lispyscript-mode"; license = lib.licenses.free; }; }) {}; @@ -33542,13 +34825,13 @@ sha256 = "1szbs16jlxfj71986dbg0d3j5raaxcwz0xq5ar352731r5mdcqw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-environment"; sha256 = "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h"; name = "list-environment"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/list-environment"; + homepage = "https://melpa.org/#/list-environment"; license = lib.licenses.free; }; }) {}; @@ -33563,13 +34846,13 @@ sha256 = "02l7q5376ydz6a8i9x74bsx5bbxz8xkasmv1lzvf79d3jbg28l1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-packages-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-packages-ext"; sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk"; name = "list-packages-ext"; }; packageRequires = [ ht persistent-soft s ]; meta = { - homepage = "http://melpa.org/#/list-packages-ext"; + homepage = "https://melpa.org/#/list-packages-ext"; license = lib.licenses.free; }; }) {}; @@ -33578,35 +34861,38 @@ pname = "list-processes-plus"; version = "20131117.1335"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/list-processes+.el"; + url = "https://www.emacswiki.org/emacs/download/list-processes+.el"; sha256 = "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-processes+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-processes+"; sha256 = "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky"; name = "list-processes-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/list-processes+"; + homepage = "https://melpa.org/#/list-processes+"; license = lib.licenses.free; }; }) {}; - list-register = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + list-register = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "list-register"; - version = "20130824.700"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/list-register.el"; - sha256 = "1sv1x2bc1xg7z3q4r9pbvjspj041q4zn883w9m071h7dgx8i9a6l"; + version = "20091203.1215"; + src = fetchFromGitHub { + owner = "emacsmirror"; + repo = "list-register"; + rev = "f8bec5dc3765174de1089549947d9ca9a1cdbe5f"; + sha256 = "1pr7vmjmyildg44n7psg0zmj8a3kfsw5xmgh600fhs95wqxn3sag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-register"; - sha256 = "06q7q3j9qvqbp25cx9as2ckmgcz2myfvi2n34jp60v3ayhna79r4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-register"; + sha256 = "0kza9xfhmxc8qia5yixx5z2y9j4wb1530rcvgxn545b903fs55kv"; name = "list-register"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/list-register"; + homepage = "https://melpa.org/#/list-register"; license = lib.licenses.free; }; }) {}; @@ -33621,34 +34907,34 @@ sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-unicode-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-unicode-display"; sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha"; name = "list-unicode-display"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/list-unicode-display"; + homepage = "https://melpa.org/#/list-unicode-display"; license = lib.licenses.free; }; }) {}; list-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-utils"; - version = "20140508.1541"; + version = "20160414.902"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "list-utils"; - rev = "36ade42f7cac835d1b8e3dcaf6beeba55ce89832"; - sha256 = "0b6pnkhm5hnim2lpari93la08ic8qyh4nv0d7mw0cyfyk8phzzvn"; + rev = "acf18aca1131a90f8d673974673e3c5d8fdc6a86"; + sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-utils"; sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3"; name = "list-utils"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/list-utils"; + homepage = "https://melpa.org/#/list-utils"; license = lib.licenses.free; }; }) {}; @@ -33663,13 +34949,13 @@ sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lit-mode"; sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59"; name = "lit-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lit-mode"; + homepage = "https://melpa.org/#/lit-mode"; license = lib.licenses.free; }; }) {}; @@ -33684,13 +34970,13 @@ sha256 = "1nbz119ldwjvkm3xd9m0dx820lc177frz5mn585fsd7kqdbkam99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/litable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/litable"; sha256 = "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji"; name = "litable"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/litable"; + homepage = "https://melpa.org/#/litable"; license = lib.licenses.free; }; }) {}; @@ -33705,13 +34991,13 @@ sha256 = "1pxcm4dxb0mggjzcv6r0a34qwq6jyih1afplysh01wk5p3nqlpyk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/litecoin-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/litecoin-ticker"; sha256 = "14gak0av8wljmyq9lcf44dc2bvlfjb86filanqh0wkf2swpbdw85"; name = "litecoin-ticker"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/litecoin-ticker"; + homepage = "https://melpa.org/#/litecoin-ticker"; license = lib.licenses.free; }; }) {}; @@ -33726,13 +35012,13 @@ sha256 = "1wxysnsigjw40ykdwngg0gqfaag0dx6zg029i2zx25kl3gr1lflc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/literate-coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/literate-coffee-mode"; sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40"; name = "literate-coffee-mode"; }; packageRequires = [ coffee-mode ]; meta = { - homepage = "http://melpa.org/#/literate-coffee-mode"; + homepage = "https://melpa.org/#/literate-coffee-mode"; license = lib.licenses.free; }; }) {}; @@ -33747,13 +35033,13 @@ sha256 = "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/literate-starter-kit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/literate-starter-kit"; sha256 = "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy"; name = "literate-starter-kit"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/literate-starter-kit"; + homepage = "https://melpa.org/#/literate-starter-kit"; license = lib.licenses.free; }; }) {}; @@ -33768,52 +35054,55 @@ sha256 = "1j0qa96vlsqybhp0082a466qb1hd2b0621306brl9pfl5srf5jsj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/live-code-talks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/live-code-talks"; sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma"; name = "live-code-talks"; }; packageRequires = [ cl-lib emacs narrowed-page-navigation ]; meta = { - homepage = "http://melpa.org/#/live-code-talks"; + homepage = "https://melpa.org/#/live-code-talks"; license = lib.licenses.free; }; }) {}; live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "live-py-mode"; - version = "20160204.1914"; + version = "20160329.2335"; src = fetchFromGitHub { owner = "donkirkby"; repo = "live-py-plugin"; - rev = "185babbba069742f81ec39cc0fb3fb542b457921"; - sha256 = "1w3598ivxcffqfa8147sp3if5scnx3w88a5syf49afvfca2hvd0b"; + rev = "f040dab8f3f09c3cc68f5ffaa06df92b50422c8f"; + sha256 = "03ickn42s7a4rxx6p596l13nsh1vgq2s3194bgd6gbm3i0f3mlhy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/live-py-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/live-py-mode"; sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq"; name = "live-py-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/live-py-mode"; + homepage = "https://melpa.org/#/live-py-mode"; license = lib.licenses.free; }; }) {}; - lively = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + lively = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "lively"; - version = "20120728.913"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/lively.el"; - sha256 = "1z9b0arn7vby4fkwzgj3ml537lh94gvf61vs03cqfkc95lv14r76"; + version = "20160208.1235"; + src = fetchFromGitHub { + owner = "emacsorphanage"; + repo = "lively"; + rev = "12df5ccaec03670de87c01b0b4cd3e2b96e0738a"; + sha256 = "1qxw7i23z6c4yimrzpaqna8j39rashgbswdv4m0x4qg4sqc7szdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lively"; - sha256 = "1wjd6kfnknhw9lc2p9iipaxfm9phpkqqmjw43bhc70ybsq1xaln7"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lively"; + sha256 = "0qnyqlhqmmfq2f47zmy29hn6wqrx5yvsax8kn63nmxw380gw1z18"; name = "lively"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lively"; + homepage = "https://melpa.org/#/lively"; license = lib.licenses.free; }; }) {}; @@ -33828,13 +35117,13 @@ sha256 = "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/livescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/livescript-mode"; sha256 = "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj"; name = "livescript-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/livescript-mode"; + homepage = "https://melpa.org/#/livescript-mode"; license = lib.licenses.free; }; }) {}; @@ -33849,13 +35138,13 @@ sha256 = "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/livid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/livid-mode"; sha256 = "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d"; name = "livid-mode"; }; packageRequires = [ s skewer-mode ]; meta = { - homepage = "http://melpa.org/#/livid-mode"; + homepage = "https://melpa.org/#/livid-mode"; license = lib.licenses.free; }; }) {}; @@ -33865,17 +35154,38 @@ version = "20150910.844"; src = fetchgit { url = "http://llvm.org/git/llvm"; - rev = "b51e7cd7a3a0d1323325623369d6893340fa526e"; - sha256 = "222ae816ac005033cad4164b6f530b2d824dba86ca78b20f79acd4f74cb2d6df"; + rev = "5571fd88f171cbeba3f7d0eaaf4ea67b9e02b1de"; + sha256 = "0d5djnz6nn6h5p2vfw9sv441rq6cmz9lswxmqm87b0sbikzk7sxc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/553e27a3523ade9dc4951086d9340e8240d5d943/recipes/llvm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/llvm-mode"; sha256 = "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7"; name = "llvm-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/llvm-mode"; + homepage = "https://melpa.org/#/llvm-mode"; + license = lib.licenses.free; + }; + }) {}; + load-relative = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "load-relative"; + version = "20150224.1922"; + src = fetchFromGitHub { + owner = "rocky"; + repo = "emacs-load-relative"; + rev = "9514dcd0130666d1ec583fd4df5f2d578b19df33"; + sha256 = "0zf7f84g1022j2ha5pxy6ibg3i0blik00lv9s9sm3crdfcn35jik"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/load-relative"; + sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay"; + name = "load-relative"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/load-relative"; license = lib.licenses.free; }; }) {}; @@ -33890,13 +35200,13 @@ sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/load-theme-buffer-local"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/load-theme-buffer-local"; sha256 = "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4"; name = "load-theme-buffer-local"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/load-theme-buffer-local"; + homepage = "https://melpa.org/#/load-theme-buffer-local"; license = lib.licenses.free; }; }) {}; @@ -33911,13 +35221,13 @@ sha256 = "0i0ainawjvfl3qix329hx01x7rxyfin2xgpjk7y5dgmh4p3xhv94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/loc-changes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/loc-changes"; sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh"; name = "loc-changes"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/loc-changes"; + homepage = "https://melpa.org/#/loc-changes"; license = lib.licenses.free; }; }) {}; @@ -33932,13 +35242,13 @@ sha256 = "1npz90zf91wqf35bqd3zmkh0b538i69w8ygc78x5w2x5005aqr0p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/loccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/loccur"; sha256 = "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h"; name = "loccur"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/loccur"; + homepage = "https://melpa.org/#/loccur"; license = lib.licenses.free; }; }) {}; @@ -33953,13 +35263,13 @@ sha256 = "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lodgeit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lodgeit"; sha256 = "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq"; name = "lodgeit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lodgeit"; + homepage = "https://melpa.org/#/lodgeit"; license = lib.licenses.free; }; }) {}; @@ -33974,13 +35284,13 @@ sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/log4e"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/log4e"; sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34"; name = "log4e"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/log4e"; + homepage = "https://melpa.org/#/log4e"; license = lib.licenses.free; }; }) {}; @@ -33991,16 +35301,16 @@ src = fetchgit { url = "git://git.code.sf.net/p/log4j-mode/code"; rev = "26171b1e723502055e085393b0ecdcb6db406010"; - sha256 = "c552abe449a7288210e8490070dc58e037d7d9571633d316dc6b91799119a697"; + sha256 = "15x6368pk4bbvhbd6cqnazcxfdz0b3f70029x0884a5797janln5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/log4j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/log4j-mode"; sha256 = "06lam4iqxlbl9ib2n2db2nj6jbjzrw2ak8r99n6w4s3fny1q3yxx"; name = "log4j-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/log4j-mode"; + homepage = "https://melpa.org/#/log4j-mode"; license = lib.licenses.free; }; }) {}; @@ -34015,13 +35325,13 @@ sha256 = "0lj3i9i3mg17xws13gzx8myc6d7djgsj47yx4kaq5hycgkni1p7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logalimacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logalimacs"; sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6"; name = "logalimacs"; }; packageRequires = [ popup popwin stem ]; meta = { - homepage = "http://melpa.org/#/logalimacs"; + homepage = "https://melpa.org/#/logalimacs"; license = lib.licenses.free; }; }) {}; @@ -34036,13 +35346,13 @@ sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logito"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logito"; sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l"; name = "logito"; }; packageRequires = [ eieio ]; meta = { - homepage = "http://melpa.org/#/logito"; + homepage = "https://melpa.org/#/logito"; license = lib.licenses.free; }; }) {}; @@ -34057,34 +35367,34 @@ sha256 = "05px3zc3is7k2jmh7mal0al5zx5cqvn1bzmhgqq02pp6lwsx5xqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logstash-conf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logstash-conf"; sha256 = "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh"; name = "logstash-conf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/logstash-conf"; + homepage = "https://melpa.org/#/logstash-conf"; license = lib.licenses.free; }; }) {}; logview = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "logview"; - version = "20151030.1649"; + version = "20160306.1455"; src = fetchFromGitHub { owner = "doublep"; repo = "logview"; - rev = "03b2f0fc325a557ccee0dbcb9226a1d733f21c84"; - sha256 = "1wglgjf45rl4rl5zp1p1z318p2d1hy1w77m65wwg35v6pkl1mikr"; + rev = "4008fc5085a9f399e64e87b79220949b7b88b0ae"; + sha256 = "14mrj3c8b5dhcl262dd6nh8zfyqgmvl75lyd7319jzwlliyxz673"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logview"; sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh"; name = "logview"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/logview"; + homepage = "https://melpa.org/#/logview"; license = lib.licenses.free; }; }) {}; @@ -34099,13 +35409,13 @@ sha256 = "0pyfgywmmnlz1arvdxwyw96gr6xcg2sp3bqjli8xfcl8i0nww4kb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lolcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lolcode-mode"; sha256 = "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw"; name = "lolcode-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lolcode-mode"; + homepage = "https://melpa.org/#/lolcode-mode"; license = lib.licenses.free; }; }) {}; @@ -34120,13 +35430,13 @@ sha256 = "0w9pbjcp4d2w3qb3nnyzq2d0d9f0pgz5lyzapidxa9z1xcj51ccj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/look-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/look-dired"; sha256 = "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd"; name = "look-dired"; }; packageRequires = [ look-mode ]; meta = { - homepage = "http://melpa.org/#/look-dired"; + homepage = "https://melpa.org/#/look-dired"; license = lib.licenses.free; }; }) {}; @@ -34134,17 +35444,17 @@ pname = "look-mode"; version = "20151211.1226"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/look-mode.el"; + url = "https://www.emacswiki.org/emacs/download/look-mode.el"; sha256 = "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/look-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/look-mode"; sha256 = "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj"; name = "look-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/look-mode"; + homepage = "https://melpa.org/#/look-mode"; license = lib.licenses.free; }; }) {}; @@ -34159,13 +35469,13 @@ sha256 = "1wmd7s3dk9krgmhs4f92mig18vx6y551n45ai7cvj92f4fbrsd08"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/loop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/loop"; sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar"; name = "loop"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/loop"; + homepage = "https://melpa.org/#/loop"; license = lib.licenses.free; }; }) {}; @@ -34180,13 +35490,13 @@ sha256 = "0grzl4kqpc1x6569yfh9xdzzbgmhcskxwk6f7scjpl32acr88cmx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lorem-ipsum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lorem-ipsum"; sha256 = "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h"; name = "lorem-ipsum"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lorem-ipsum"; + homepage = "https://melpa.org/#/lorem-ipsum"; license = lib.licenses.free; }; }) {}; @@ -34201,13 +35511,13 @@ sha256 = "179r4pz3hlb5p6bjfhdikkx1zvh09ln5dbw3c3rmlyww1q7v26yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/love-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/love-minor-mode"; sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m"; name = "love-minor-mode"; }; packageRequires = [ lua-mode ]; meta = { - homepage = "http://melpa.org/#/love-minor-mode"; + homepage = "https://melpa.org/#/love-minor-mode"; license = lib.licenses.free; }; }) {}; @@ -34222,13 +35532,13 @@ sha256 = "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lua-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lua-mode"; sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94"; name = "lua-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lua-mode"; + homepage = "https://melpa.org/#/lua-mode"; license = lib.licenses.free; }; }) {}; @@ -34243,13 +35553,13 @@ sha256 = "0mv73s89n59m44szc37086wq55py5sx0lc0jxncfybawhsqyd0ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lush-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lush-theme"; sha256 = "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p"; name = "lush-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/lush-theme"; + homepage = "https://melpa.org/#/lush-theme"; license = lib.licenses.free; }; }) {}; @@ -34264,13 +35574,13 @@ sha256 = "1r1xfn0dyc4m49064g9n6hpwn4r763kpbg3dgprsv30i5ska61qa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lusty-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lusty-explorer"; sha256 = "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps"; name = "lusty-explorer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lusty-explorer"; + homepage = "https://melpa.org/#/lusty-explorer"; license = lib.licenses.free; }; }) {}; @@ -34285,13 +35595,13 @@ sha256 = "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lxc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lxc"; sha256 = "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka"; name = "lxc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lxc"; + homepage = "https://melpa.org/#/lxc"; license = lib.licenses.free; }; }) {}; @@ -34306,13 +35616,13 @@ sha256 = "1rrfvshl6zbsrswg5hrvq1p0rd9vacqwbr4s44kln7vg4ybcgr24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/m-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/m-buffer"; sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc"; name = "m-buffer"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/m-buffer"; + homepage = "https://melpa.org/#/m-buffer"; license = lib.licenses.free; }; }) {}; @@ -34327,13 +35637,13 @@ sha256 = "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/macro-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/macro-math"; sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00"; name = "macro-math"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/macro-math"; + homepage = "https://melpa.org/#/macro-math"; license = lib.licenses.free; }; }) {}; @@ -34341,17 +35651,17 @@ pname = "macros-plus"; version = "20151231.1619"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/macros+.el"; + url = "https://www.emacswiki.org/emacs/download/macros+.el"; sha256 = "07iw9iarz6z9n6vnhqqljfjpvq6vb97ca2hwj9v0k5k8mafdqg7d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/macros+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/macros+"; sha256 = "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi"; name = "macros-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/macros+"; + homepage = "https://melpa.org/#/macros+"; license = lib.licenses.free; }; }) {}; @@ -34366,13 +35676,13 @@ sha256 = "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/macrostep"; sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c"; name = "macrostep"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/macrostep"; + homepage = "https://melpa.org/#/macrostep"; license = lib.licenses.free; }; }) {}; @@ -34387,13 +35697,13 @@ sha256 = "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mag-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mag-menu"; sha256 = "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2"; name = "mag-menu"; }; packageRequires = [ splitter ]; meta = { - homepage = "http://melpa.org/#/mag-menu"; + homepage = "https://melpa.org/#/mag-menu"; license = lib.licenses.free; }; }) {}; @@ -34408,13 +35718,13 @@ sha256 = "1km5g9g1jmyx1r3fhd9w8091xainmmvmhi6bzqr1l4nx138wwf2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magic-filetype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magic-filetype"; sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg"; name = "magic-filetype"; }; packageRequires = [ emacs s ]; meta = { - homepage = "http://melpa.org/#/magic-filetype"; + homepage = "https://melpa.org/#/magic-filetype"; license = lib.licenses.free; }; }) {}; @@ -34429,28 +35739,28 @@ sha256 = "1gmhb8g1pl4qqk1d32hlvmhx2jqfsn3hkc4lkzhgk1n3qzfrq4hf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magic-latex-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magic-latex-buffer"; sha256 = "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8"; name = "magic-latex-buffer"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/magic-latex-buffer"; + homepage = "https://melpa.org/#/magic-latex-buffer"; license = lib.licenses.free; }; }) {}; magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }: melpaBuild { pname = "magit"; - version = "20160219.1702"; + version = "20160425.630"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "08c61ea85ca62e8cc04c4e8a0a55a5d947a8d01f"; - sha256 = "18jk5bl30kncbc5n7sra5i0n4d57c2nd348kmw154xq1dc7w8b64"; + rev = "d1f678316f2c27e9677760938757b38168e36ebc"; + sha256 = "01pcx8bx07vqzd3b3rb3y4hgv8fhrlal7ayn0f70nr01f3v0gfl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit"; sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q"; name = "magit"; }; @@ -34463,7 +35773,7 @@ with-editor ]; meta = { - homepage = "http://melpa.org/#/magit"; + homepage = "https://melpa.org/#/magit"; license = lib.licenses.free; }; }) {}; @@ -34474,17 +35784,17 @@ src = fetchFromGitHub { owner = "magit"; repo = "magit-annex"; - rev = "db655ed50f38af8940e808afc30447746e2c648a"; - sha256 = "18xvcw6rbkzrvk7b9cl42fdcaphnx08klnss1vw1b7q9ijbinpbp"; + rev = "8c8ff39e640c6bd02cf094830ca52ab2c5a74e22"; + sha256 = "0fc8g1lba8pfd04i084djfn11c1yqf2rildf7w5jr9l0cryv6f7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-annex"; sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys"; name = "magit-annex"; }; packageRequires = [ cl-lib magit ]; meta = { - homepage = "http://melpa.org/#/magit-annex"; + homepage = "https://melpa.org/#/magit-annex"; license = lib.licenses.free; }; }) {}; @@ -34499,13 +35809,13 @@ sha256 = "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-filenotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-filenotify"; sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7"; name = "magit-filenotify"; }; packageRequires = [ emacs magit ]; meta = { - homepage = "http://melpa.org/#/magit-filenotify"; + homepage = "https://melpa.org/#/magit-filenotify"; license = lib.licenses.free; }; }) {}; @@ -34514,145 +35824,166 @@ pname = "magit-find-file"; version = "20150702.330"; src = fetchFromGitHub { - owner = "bradleywright"; + owner = "bradwright"; repo = "magit-find-file.el"; rev = "c3ea91bab37d10a814a829728ec972811f728d60"; sha256 = "1j3jsrp0qpaa2xd98d1g9z0zc4b93knwajrlnlsc7l6g0vlfsddb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-find-file"; - sha256 = "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-find-file"; + sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik"; name = "magit-find-file"; }; packageRequires = [ dash magit ]; meta = { - homepage = "http://melpa.org/#/magit-find-file"; + homepage = "https://melpa.org/#/magit-find-file"; license = lib.licenses.free; }; }) {}; magit-gerrit = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-gerrit"; - version = "20160128.2126"; + version = "20160226.330"; src = fetchFromGitHub { owner = "terranpro"; repo = "magit-gerrit"; - rev = "04fc4b7ad7366db9559618ace1a61a4e571dde66"; - sha256 = "0f8bcrvnffpcfxgxwp3rvrd4m0apdc7k93952l4v1mqc762lql1s"; + rev = "ece6f369694aca17f3ac166ed2801b432acfe20d"; + sha256 = "0mms0gxv9a3ns8lk5k2wjibm3088y1cmpr3axjdh6ppv7r5wdvii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gerrit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gerrit"; sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4"; name = "magit-gerrit"; }; packageRequires = [ magit ]; meta = { - homepage = "http://melpa.org/#/magit-gerrit"; + homepage = "https://melpa.org/#/magit-gerrit"; license = lib.licenses.free; }; }) {}; magit-gh-pulls = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, magit, melpaBuild, pcache, s }: melpaBuild { pname = "magit-gh-pulls"; - version = "20160215.432"; + version = "20160413.1651"; src = fetchFromGitHub { owner = "sigma"; repo = "magit-gh-pulls"; - rev = "323dbd8f67e3cc307da12e93b1799583902d46a5"; - sha256 = "08742hdjzcgl12g2i7f37fnwx7mil28i3kdh96wir9pci2jvjcxw"; + rev = "a0ceca0b0bf2d782a039fa07848b8da5abd7f2bb"; + sha256 = "0j2gj7lnbwzhbhhccsq4gws7gkzlafz25bp47907rf7a3vq8714a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gh-pulls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gh-pulls"; sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d"; name = "magit-gh-pulls"; }; packageRequires = [ emacs gh magit pcache s ]; meta = { - homepage = "http://melpa.org/#/magit-gh-pulls"; + homepage = "https://melpa.org/#/magit-gh-pulls"; license = lib.licenses.free; }; }) {}; magit-gitflow = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild }: melpaBuild { pname = "magit-gitflow"; - version = "20160208.1504"; + version = "20160318.900"; src = fetchFromGitHub { owner = "jtatarik"; repo = "magit-gitflow"; - rev = "46dc3f20b6f6d5e91e9765da372c909e9cc7b355"; - sha256 = "1ar9gdp4svymibr9arrlxil1xm1x41gxinlifdb8lgpmawb62d9w"; + rev = "e65ac501b603f245737b0fb73e71520356924f3f"; + sha256 = "0g9wqd4dbd0spal7ss9k679nak02hr1z0mgq6k4g5nkgngwn6l2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gitflow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gitflow"; sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf"; name = "magit-gitflow"; }; packageRequires = [ magit magit-popup ]; meta = { - homepage = "http://melpa.org/#/magit-gitflow"; + homepage = "https://melpa.org/#/magit-gitflow"; + license = lib.licenses.free; + }; + }) {}; + magit-p4 = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild, p4 }: + melpaBuild { + pname = "magit-p4"; + version = "20160311.1109"; + src = fetchFromGitHub { + owner = "qoocku"; + repo = "magit-p4"; + rev = "14e40cba11e73fae3bc300dbdb65274ebf1278b4"; + sha256 = "01ifl1bg3sd5d4b5ms9kyw074as8bkzqpwhxppp79ml46vp1np2x"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-p4"; + sha256 = "19p7h3a21jjr2h52ika14lyczdv6z36gl7hk1v17bffffac8q069"; + name = "magit-p4"; + }; + packageRequires = [ cl-lib magit magit-popup p4 ]; + meta = { + homepage = "https://melpa.org/#/magit-p4"; license = lib.licenses.free; }; }) {}; magit-popup = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "magit-popup"; - version = "20160130.849"; + version = "20160425.630"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "08c61ea85ca62e8cc04c4e8a0a55a5d947a8d01f"; - sha256 = "18jk5bl30kncbc5n7sra5i0n4d57c2nd348kmw154xq1dc7w8b64"; + rev = "d1f678316f2c27e9677760938757b38168e36ebc"; + sha256 = "01pcx8bx07vqzd3b3rb3y4hgv8fhrlal7ayn0f70nr01f3v0gfl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-popup"; sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj"; name = "magit-popup"; }; packageRequires = [ async dash emacs ]; meta = { - homepage = "http://melpa.org/#/magit-popup"; + homepage = "https://melpa.org/#/magit-popup"; license = lib.licenses.free; }; }) {}; magit-rockstar = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-rockstar"; - version = "20160117.1858"; + version = "20160424.632"; src = fetchFromGitHub { owner = "tarsius"; repo = "magit-rockstar"; - rev = "6d572b9371c366814b3b071aa6301e503a47fbdd"; - sha256 = "1pqbrrp4366kwfk1d32h2lb70id32ynfc03i7m2832w97f1xp16c"; + rev = "16b576c45d5ce1ffda80f0db5d779b9c548a5adb"; + sha256 = "1wxk7h1v123h4m20fk5h70an17zzkfr437xyqjpcy085qqz679jr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-rockstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-rockstar"; sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n"; name = "magit-rockstar"; }; packageRequires = [ dash magit ]; meta = { - homepage = "http://melpa.org/#/magit-rockstar"; + homepage = "https://melpa.org/#/magit-rockstar"; license = lib.licenses.free; }; }) {}; magit-stgit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-stgit"; - version = "20160217.947"; + version = "20160224.903"; src = fetchFromGitHub { owner = "magit"; repo = "magit-stgit"; - rev = "082a2e89eb769ffb95fb3895c9b32163e4c476ae"; - sha256 = "1xkzgakm83djf91a5n3cbid0k15439lfgmq8hw0vmb3vb2fz3h9b"; + rev = "9d13effdbc213a0c8dcce78e1825011631fa0652"; + sha256 = "163a1rddl54jgxm5dygnbp1pz1as4hhjszan1rcabvzcfnfdpakj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-stgit"; sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv"; name = "magit-stgit"; }; packageRequires = [ emacs magit ]; meta = { - homepage = "http://melpa.org/#/magit-stgit"; + homepage = "https://melpa.org/#/magit-stgit"; license = lib.licenses.free; }; }) {}; @@ -34667,55 +35998,55 @@ sha256 = "0r3nkrisyjawjwbm74yi6fqiwcqzlfkypsdscfhii0q50ky8plph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-svn"; sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0"; name = "magit-svn"; }; packageRequires = [ emacs magit ]; meta = { - homepage = "http://melpa.org/#/magit-svn"; + homepage = "https://melpa.org/#/magit-svn"; license = lib.licenses.free; }; }) {}; magit-topgit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-topgit"; - version = "20160215.1039"; + version = "20160313.1454"; src = fetchFromGitHub { owner = "magit"; repo = "magit-topgit"; - rev = "baa503babf7e15bfb448122f5213398a8b4ef8a1"; - sha256 = "1qwq51b4ihk6nfa00fzzv4qkkxf1vpxh5l69bxrgwgyqbxvci0c6"; + rev = "243fdfa7ce62dce4efd01b6b818a2791868db2f0"; + sha256 = "06fbjv3zd92lvg4xjsp9l4jkxx2glhng3ys3s9jmvy5y49pymwb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-topgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-topgit"; sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i"; name = "magit-topgit"; }; packageRequires = [ emacs magit ]; meta = { - homepage = "http://melpa.org/#/magit-topgit"; + homepage = "https://melpa.org/#/magit-topgit"; license = lib.licenses.free; }; }) {}; magma-mode = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "magma-mode"; - version = "20150923.340"; + version = "20160304.608"; src = fetchFromGitHub { owner = "ThibautVerron"; repo = "magma-mode"; - rev = "4c858609b0f36c6f8b395441920c9510dcbddca8"; - sha256 = "0v3ikqv2m5hcg1rkfbw58a9w4y6sk51bblp0k2h0srcvim6sqlpm"; + rev = "528c96a269980dcc6b65e2e973510ff07e6b9fc4"; + sha256 = "1pq6ckxp3dcb2f6xfsd4jwd43r9d0920m30ammp39glgc39p9lsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magma-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magma-mode"; sha256 = "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc"; name = "magma-mode"; }; packageRequires = [ cl-lib dash f ]; meta = { - homepage = "http://melpa.org/#/magma-mode"; + homepage = "https://melpa.org/#/magma-mode"; license = lib.licenses.free; }; }) {}; @@ -34730,13 +36061,13 @@ sha256 = "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magnatune"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magnatune"; sha256 = "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d"; name = "magnatune"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/magnatune"; + homepage = "https://melpa.org/#/magnatune"; license = lib.licenses.free; }; }) {}; @@ -34745,40 +36076,40 @@ pname = "main-line"; version = "20151120.2006"; src = fetchFromGitHub { - owner = "jasonm23"; + owner = "emacsfodder"; repo = "emacs-mainline"; rev = "0e88f91e49ef27cb77d74f6a8d8140063549d67f"; sha256 = "06sjwl0bk648wnnrmyh6qgnlqmxypjmy0gkfl6kpv01r8vh7x2q5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/main-line"; - sha256 = "0c9c5kmixvhk9il8hsxzf2k14fggb9b9mw59g8q3hgpn5g7kgpkv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/main-line"; + sha256 = "06rihx9h2h8ayrirbx74d9qdf26laz9yxffvxyldzm9hymlbzadd"; name = "main-line"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/main-line"; + homepage = "https://melpa.org/#/main-line"; license = lib.licenses.free; }; }) {}; majapahit-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "majapahit-theme"; - version = "20160203.829"; + version = "20160412.632"; src = fetchFromGitLab { owner = "franksn"; repo = "majapahit-theme"; - rev = "ccb069c3dc632e27e416716aaf705c1a215ead70"; - sha256 = "1wwc9byjihpdm08a0c0mzbw2r55lhr7c4k0gbcl05hygphymwng7"; + rev = "017b6072560a6e3a4a9bd17652a9a9995cb53d52"; + sha256 = "1s4sm59wz03yz4srqzav7myq6p0gmijw5zj2kbpvxfanlr8b2rb1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/majapahit-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/majapahit-theme"; sha256 = "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s"; name = "majapahit-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/majapahit-theme"; + homepage = "https://melpa.org/#/majapahit-theme"; license = lib.licenses.free; }; }) {}; @@ -34793,13 +36124,13 @@ sha256 = "1ky3scyjb69wi76xg6a8qx4ja6lr6mk530bv5gmhj7fxbq8b3x5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/make-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/make-color"; sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k"; name = "make-color"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/make-color"; + homepage = "https://melpa.org/#/make-color"; license = lib.licenses.free; }; }) {}; @@ -34814,13 +36145,13 @@ sha256 = "00j5n9pil1qik4mrzvam4rp6213w8jm4qw7c4z8sxpq57xa0b679"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/make-it-so"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/make-it-so"; sha256 = "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73"; name = "make-it-so"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/make-it-so"; + homepage = "https://melpa.org/#/make-it-so"; license = lib.licenses.free; }; }) {}; @@ -34835,13 +36166,13 @@ sha256 = "0w3kar52yf8clf9801c4jzfrixi10clc8fs8ni2d4pzhdwwca2zw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maker-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maker-mode"; sha256 = "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a"; name = "maker-mode"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/maker-mode"; + homepage = "https://melpa.org/#/maker-mode"; license = lib.licenses.free; }; }) {}; @@ -34856,13 +36187,13 @@ sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/makey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/makey"; sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4"; name = "makey"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/makey"; + homepage = "https://melpa.org/#/makey"; license = lib.licenses.free; }; }) {}; @@ -34877,34 +36208,34 @@ sha256 = "0hlxs9gi2vml2id9q0r1r0xdm0zshjzc1w3phjf2ab0aa3hl5k6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/malabar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/malabar-mode"; sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk"; name = "malabar-mode"; }; packageRequires = [ fringe-helper groovy-mode ]; meta = { - homepage = "http://melpa.org/#/malabar-mode"; + homepage = "https://melpa.org/#/malabar-mode"; license = lib.licenses.free; }; }) {}; malinka = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, rtags, s }: melpaBuild { pname = "malinka"; - version = "20151107.216"; + version = "20160402.329"; src = fetchFromGitHub { owner = "LefterisJP"; repo = "malinka"; - rev = "cd451d32dcdfa3e6b34f47c6956ff310de8a9a06"; - sha256 = "1a22xkhnmpfffllarsjdw10n5cd3nwifcl1iv98kb4j4x96kd4xg"; + rev = "bfb25297fd2dc13813da593305906e18bbedbebe"; + sha256 = "04j7x7kkilfrk4i76aizkdhmghi9a5hc63mj6mhm8x0v1c4f15lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/malinka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/malinka"; sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp"; name = "malinka"; }; packageRequires = [ cl-lib dash f projectile rtags s ]; meta = { - homepage = "http://melpa.org/#/malinka"; + homepage = "https://melpa.org/#/malinka"; license = lib.licenses.free; }; }) {}; @@ -34919,13 +36250,13 @@ sha256 = "18x3cssfn81k8hg4frj7dhzphg784321z51wbbvn3bjhq7s6j3a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mallard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mallard-mode"; sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd"; name = "mallard-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mallard-mode"; + homepage = "https://melpa.org/#/mallard-mode"; license = lib.licenses.free; }; }) {}; @@ -34940,13 +36271,13 @@ sha256 = "0qk7i47nmyp4llwp6x0i1i5dk82ck26iyz1sjvvlihaw8a5akny2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mallard-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mallard-snippets"; sha256 = "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8"; name = "mallard-snippets"; }; packageRequires = [ mallard-mode yasnippet ]; meta = { - homepage = "http://melpa.org/#/mallard-snippets"; + homepage = "https://melpa.org/#/mallard-snippets"; license = lib.licenses.free; }; }) {}; @@ -34961,13 +36292,13 @@ sha256 = "1lfq4hsq2n33l58ja5kzy6bwk9jxbcdsg6y8gqlk71lcslzqldrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/man-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/man-commands"; sha256 = "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq"; name = "man-commands"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/man-commands"; + homepage = "https://melpa.org/#/man-commands"; license = lib.licenses.free; }; }) {}; @@ -34982,34 +36313,34 @@ sha256 = "10wl7kc76dyijrmdlcl5cx821jg7clsj35r22955mbbgh7zl1x07"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/manage-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/manage-minor-mode"; sha256 = "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6"; name = "manage-minor-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/manage-minor-mode"; + homepage = "https://melpa.org/#/manage-minor-mode"; license = lib.licenses.free; }; }) {}; mandoku = callPackage ({ fetchFromGitHub, fetchurl, git, github-clone, lib, magit, melpaBuild, org }: melpaBuild { pname = "mandoku"; - version = "20160126.2226"; + version = "20160417.539"; src = fetchFromGitHub { owner = "mandoku"; repo = "mandoku"; - rev = "b1ac72baebc4df601fb94e40922d4f95719de1ef"; - sha256 = "0065fxw0zc7vbxcl37nl8v5cgxcr3gzx3k1n16gpw7fgbdp060d4"; + rev = "977dcc41e90465c8d1a35f07289d8631b389495f"; + sha256 = "0mqvbniz9qwi2cawyrgi8a99mwpvi7n5pbxgqh5bw844y54yfhnd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mandoku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mandoku"; sha256 = "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv"; name = "mandoku"; }; packageRequires = [ git github-clone magit org ]; meta = { - homepage = "http://melpa.org/#/mandoku"; + homepage = "https://melpa.org/#/mandoku"; license = lib.licenses.free; }; }) {}; @@ -35024,13 +36355,13 @@ sha256 = "0pd6bh7wrrh59blp86a2jl2vi4qkzx49z0hy7dkc71ccg0wjsgz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/map-progress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/map-progress"; sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7"; name = "map-progress"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/map-progress"; + homepage = "https://melpa.org/#/map-progress"; license = lib.licenses.free; }; }) {}; @@ -35045,34 +36376,34 @@ sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/map-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/map-regexp"; sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj"; name = "map-regexp"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/map-regexp"; + homepage = "https://melpa.org/#/map-regexp"; license = lib.licenses.free; }; }) {}; marcopolo = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }: melpaBuild { pname = "marcopolo"; - version = "20150326.1118"; + version = "20160421.504"; src = fetchFromGitHub { owner = "nlamirault"; repo = "marcopolo"; - rev = "ce6ad40d7feab0568924e3bd9659b76e3eecd55e"; - sha256 = "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh"; + rev = "85db828f2bb4346a811b3326349b1c6d0aae4601"; + sha256 = "1qf724y1zq3z6fzm23qhwjl2knhs49nbz0vizwf8g9s51bk6bny2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marcopolo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marcopolo"; sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0"; name = "marcopolo"; }; packageRequires = [ dash pkg-info request s ]; meta = { - homepage = "http://melpa.org/#/marcopolo"; + homepage = "https://melpa.org/#/marcopolo"; license = lib.licenses.free; }; }) {}; @@ -35087,13 +36418,13 @@ sha256 = "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mark-multiple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mark-multiple"; sha256 = "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4"; name = "mark-multiple"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mark-multiple"; + homepage = "https://melpa.org/#/mark-multiple"; license = lib.licenses.free; }; }) {}; @@ -35108,34 +36439,34 @@ sha256 = "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mark-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mark-tools"; sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq"; name = "mark-tools"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mark-tools"; + homepage = "https://melpa.org/#/mark-tools"; license = lib.licenses.free; }; }) {}; - markdown-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + markdown-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markdown-mode"; - version = "20160219.1113"; + version = "20160409.850"; src = fetchFromGitHub { owner = "jrblevin"; repo = "markdown-mode"; - rev = "3e88d58ab783f4c9c8b932b1b30a2742ddda2c50"; - sha256 = "1zmq7g9rlf3n36rrgarbw3xwn4zrhc1qg9ammfp08n9pd0vahy77"; + rev = "f3928b79dc2afa471f2093ef123377ba04b5350b"; + sha256 = "0dx084n2l93hss161z3v87rjpfhv03cmn0hylnsv81hfim8iwi5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-mode"; sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14"; name = "markdown-mode"; }; - packageRequires = [ cl-lib ]; + packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/markdown-mode"; + homepage = "https://melpa.org/#/markdown-mode"; license = lib.licenses.free; }; }) {}; @@ -35150,13 +36481,13 @@ sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-mode+"; sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00"; name = "markdown-mode-plus"; }; packageRequires = [ markdown-mode ]; meta = { - homepage = "http://melpa.org/#/markdown-mode+"; + homepage = "https://melpa.org/#/markdown-mode+"; license = lib.licenses.free; }; }) {}; @@ -35171,13 +36502,13 @@ sha256 = "1i5gr3j9dq41p2zl4bfyvzv6i5z7hgrxzrycmbdc3s7nja36k9z4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-preview-eww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-preview-eww"; sha256 = "0j6924f84is41dspib68y5lnz1f8nm7pqyhv47alxra50cjrpxnx"; name = "markdown-preview-eww"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/markdown-preview-eww"; + homepage = "https://melpa.org/#/markdown-preview-eww"; license = lib.licenses.free; }; }) {}; @@ -35192,34 +36523,34 @@ sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-preview-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-preview-mode"; sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg"; name = "markdown-preview-mode"; }; packageRequires = [ cl-lib markdown-mode websocket ]; meta = { - homepage = "http://melpa.org/#/markdown-preview-mode"; + homepage = "https://melpa.org/#/markdown-preview-mode"; license = lib.licenses.free; }; }) {}; markdown-toc = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, s }: melpaBuild { pname = "markdown-toc"; - version = "20160207.1058"; + version = "20160227.508"; src = fetchFromGitHub { owner = "ardumont"; repo = "markdown-toc"; - rev = "ddaba5fde8e15dad74ebc20abc71c7766c8fd980"; - sha256 = "17ninp3hpy8k1r6a4mz28dbk4kwg3myhzny2r7mix50rbvcf0y8n"; + rev = "c5d44470f8fb0f61bc96e58dec998010edcc0e95"; + sha256 = "0l687bna8rrc49y1fyn1ldjcwh290qgvi3p86c63yj4xy24fmdm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-toc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-toc"; sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv"; name = "markdown-toc"; }; packageRequires = [ dash markdown-mode s ]; meta = { - homepage = "http://melpa.org/#/markdown-toc"; + homepage = "https://melpa.org/#/markdown-toc"; license = lib.licenses.free; }; }) {}; @@ -35234,13 +36565,13 @@ sha256 = "1i95b15mvkkki2iq8hysdr7jr1d5nix9jjkh7jz0alvaybqlsnqi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markup"; sha256 = "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf"; name = "markup"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/markup"; + homepage = "https://melpa.org/#/markup"; license = lib.licenses.free; }; }) {}; @@ -35255,13 +36586,13 @@ sha256 = "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markup-faces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markup-faces"; sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq"; name = "markup-faces"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/markup-faces"; + homepage = "https://melpa.org/#/markup-faces"; license = lib.licenses.free; }; }) {}; @@ -35276,13 +36607,13 @@ sha256 = "1ygznmqb3fqy94p8qi71i223m7cpw3f596pkls2ybjlbpb4psjcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marmalade"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marmalade"; sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s"; name = "marmalade"; }; packageRequires = [ furl ]; meta = { - homepage = "http://melpa.org/#/marmalade"; + homepage = "https://melpa.org/#/marmalade"; license = lib.licenses.free; }; }) {}; @@ -35297,13 +36628,13 @@ sha256 = "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marmalade-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marmalade-client"; sha256 = "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq"; name = "marmalade-client"; }; packageRequires = [ gh kv web ]; meta = { - homepage = "http://melpa.org/#/marmalade-client"; + homepage = "https://melpa.org/#/marmalade-client"; license = lib.licenses.free; }; }) {}; @@ -35318,55 +36649,55 @@ sha256 = "0fwhhzfd6vgpaf5mrw90hvm35j2kzhk9h3gbrwd7y7q08nrmsx9p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marshal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marshal"; sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl"; name = "marshal"; }; packageRequires = [ eieio json ]; meta = { - homepage = "http://melpa.org/#/marshal"; + homepage = "https://melpa.org/#/marshal"; license = lib.licenses.free; }; }) {}; material-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "material-theme"; - version = "20160212.154"; + version = "20160302.1534"; src = fetchFromGitHub { owner = "cpaulik"; repo = "emacs-material-theme"; - rev = "3bdb927099e58a71fac0f73b80bf223342b31cc8"; - sha256 = "108n2w8f0vsazw8wl50af8cb8amyb1qrg30nxwfwqgvi8d8iba4f"; + rev = "149ef120a2f5c3af72b040261dd455baea7ceb2a"; + sha256 = "0qw7m82gx2dqcrs5ycg0hn7y9qjzmkp5afdlx5ddxc2igp2a5q7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/material-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/material-theme"; sha256 = "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq"; name = "material-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/material-theme"; + homepage = "https://melpa.org/#/material-theme"; license = lib.licenses.free; }; }) {}; math-symbol-lists = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "math-symbol-lists"; - version = "20151215.1243"; + version = "20160302.1631"; src = fetchFromGitHub { owner = "vspinu"; repo = "math-symbol-lists"; - rev = "56319989e7ac6bd625b46e8a28f8005077b5957b"; - sha256 = "186gb83y3g1q7d0sdrxqz22nr62qq6fy7m74qwirlsf7vnnm4gpx"; + rev = "5bf2a050127228fda36ab6c492806f1f0f8af686"; + sha256 = "1cpwa5cwnkxf4n1bd4cji3v9wdp057jdw7vckr02ra3s9s2ay5n3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/math-symbol-lists"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/math-symbol-lists"; sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27"; name = "math-symbol-lists"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/math-symbol-lists"; + homepage = "https://melpa.org/#/math-symbol-lists"; license = lib.licenses.free; }; }) {}; @@ -35381,73 +36712,74 @@ sha256 = "1chyxi096krjbi9zgbrnrkvwgmn4wygnia9m57m0jh4arlbm28la"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/math-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/math-symbols"; sha256 = "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx"; name = "math-symbols"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/math-symbols"; + homepage = "https://melpa.org/#/math-symbols"; license = lib.licenses.free; }; }) {}; matlab-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "matlab-mode"; - version = "20160210.427"; + version = "20160416.234"; src = fetchgit { url = "git://git.code.sf.net/p/matlab-emacs/src"; - rev = "e08bf6d49b9c1a325dd0e3bb71881b65c6348d66"; - sha256 = "787c5ea50aa906d387c7cef39d44a86cd0d6998e391239bd0ff30a47fd75681d"; + rev = "4e052dea36a6bbdf81c8ada5be5eca3297f54bd6"; + sha256 = "0pwbq6hpvd4n9aw94dfpzynli6xc8r21q6kjpiwpfmyvag0lvyg9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/matlab-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/matlab-mode"; sha256 = "1bybc5xv5hbjh8afmh03qda5g3m2wcgsk6lgj6jkyyxzdfxqkrck"; name = "matlab-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/matlab-mode"; + homepage = "https://melpa.org/#/matlab-mode"; license = lib.licenses.free; }; }) {}; matrix-client = callPackage ({ fetchgit, fetchurl, json ? null, lib, melpaBuild, request }: melpaBuild { pname = "matrix-client"; - version = "20160205.1800"; + version = "20160424.2359"; src = fetchgit { url = "git://fort.kickass.systems/personal/rrix/pub/matrix.el"; - rev = "3b00bd20739268d60a029bae580372d7f4cdecd4"; - sha256 = "006b30332ec67e837b6d822fd926adc7ea3afb9073fa9c5dac05292a3c13af01"; + rev = "087e5520a3a1f9a8fcaa1ce61b4c06bc55a63605"; + sha256 = "0z79l8md683vvc51fz0nmbazb6i7hklkm0asglflr96pldil50l8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/matrix-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/matrix-client"; sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6"; name = "matrix-client"; }; packageRequires = [ json request ]; meta = { - homepage = "http://melpa.org/#/matrix-client"; + homepage = "https://melpa.org/#/matrix-client"; license = lib.licenses.free; }; }) {}; - maude-mode = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: + maude-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "maude-mode"; - version = "20140212.502"; - src = fetchsvn { - url = "svn://svn.code.sf.net/p/maude-mode/code/trunk"; - rev = "63"; - sha256 = "06k07qvhm2mbqasn72649lx3pwzb0r466854a18g6lciwhiww7vy"; + version = "20160222.1007"; + src = fetchFromGitHub { + owner = "rudi"; + repo = "maude-mode"; + rev = "c9543bb8a172fa77af592388e7f520a4a6d38987"; + sha256 = "1sn9bdaq3mf2vss5gzmxhnp9fz43cakxh36qjdgqrvx302nlnv52"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maude-mode"; - sha256 = "04b6q328hj0w33z4c50nqyark0pn5sqi0s8096m9di4rjwxaw0ma"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maude-mode"; + sha256 = "1w5v3r905xkwchkm2gzvzpswba5p2m7hqpyg9fzq2ldlr8kk7ah3"; name = "maude-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/maude-mode"; + homepage = "https://melpa.org/#/maude-mode"; license = lib.licenses.free; }; }) {}; @@ -35462,13 +36794,13 @@ sha256 = "1xn2yyr8mr90cynbxgv0h5v180pzf0ydnjr9spg34mrdicqlki6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maven-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maven-test-mode"; sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm"; name = "maven-test-mode"; }; packageRequires = [ emacs s ]; meta = { - homepage = "http://melpa.org/#/maven-test-mode"; + homepage = "https://melpa.org/#/maven-test-mode"; license = lib.licenses.free; }; }) {}; @@ -35483,13 +36815,13 @@ sha256 = "0g9kpsg6623nmxnshj49q8k952xybrkmqqy6m892m8wnm22pjdz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maxframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maxframe"; sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj"; name = "maxframe"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/maxframe"; + homepage = "https://melpa.org/#/maxframe"; license = lib.licenses.free; }; }) {}; @@ -35497,17 +36829,17 @@ pname = "mb-depth-plus"; version = "20151231.1621"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/mb-depth+.el"; + url = "https://www.emacswiki.org/emacs/download/mb-depth+.el"; sha256 = "0w8clp96jblsc9v87404zpc280ms0d644in34jdgjc5r33f4i0g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mb-depth+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mb-depth+"; sha256 = "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w"; name = "mb-depth-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mb-depth+"; + homepage = "https://melpa.org/#/mb-depth+"; license = lib.licenses.free; }; }) {}; @@ -35518,17 +36850,17 @@ src = fetchFromGitHub { owner = "dochang"; repo = "mb-url"; - rev = "e1d9af92f8f3c4fc96760558ee1a4df7bbbc537c"; - sha256 = "1qd4vya49sy7iwcpnyd91d0zx3niwsavhdcq6387rsb0j64hwybl"; + rev = "0ffd1a67161ebbe10fa6ad8064343eead2f79eae"; + sha256 = "1g90f8ysj35bw9686gb3sczxqg3ilj3a7xnfskrkbp2llpvd5y43"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mb-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mb-url"; sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h"; name = "mb-url"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/mb-url"; + homepage = "https://melpa.org/#/mb-url"; license = lib.licenses.free; }; }) {}; @@ -35543,13 +36875,13 @@ sha256 = "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mbe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mbe"; sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3"; name = "mbe"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/mbe"; + homepage = "https://melpa.org/#/mbe"; license = lib.licenses.free; }; }) {}; @@ -35564,13 +36896,13 @@ sha256 = "1vr85fdlb4zwgid1v00ndppla9fqqk25g2x2f5alm69pfqssr75z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mbo70s-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mbo70s-theme"; sha256 = "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb"; name = "mbo70s-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/mbo70s-theme"; + homepage = "https://melpa.org/#/mbo70s-theme"; license = lib.licenses.free; }; }) {}; @@ -35585,13 +36917,13 @@ sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mc-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mc-extras"; sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym"; name = "mc-extras"; }; packageRequires = [ multiple-cursors ]; meta = { - homepage = "http://melpa.org/#/mc-extras"; + homepage = "https://melpa.org/#/mc-extras"; license = lib.licenses.free; }; }) {}; @@ -35606,13 +36938,13 @@ sha256 = "1j8gp3byanf1mq8sc4hv838rgcywlv35d8q1vjwzsjaznvz8hvc3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/md-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/md-readme"; sha256 = "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3"; name = "md-readme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/md-readme"; + homepage = "https://melpa.org/#/md-readme"; license = lib.licenses.free; }; }) {}; @@ -35627,34 +36959,34 @@ sha256 = "136lh39hakwx46rd1gsmsfhsj78mrpamid766v2vjx9rkkprk0zv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/meacupla-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/meacupla-theme"; sha256 = "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d"; name = "meacupla-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/meacupla-theme"; + homepage = "https://melpa.org/#/meacupla-theme"; license = lib.licenses.free; }; }) {}; mediawiki = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mediawiki"; - version = "20160123.2037"; + version = "20160425.902"; src = fetchFromGitHub { owner = "hexmode"; repo = "mediawiki-el"; - rev = "e5e2905f1f81228c34f7ce531246bbdc07c5122c"; - sha256 = "0f0p6ppgj1w0gfyja9hbah6wsw7glx9ybpbs6kn7lwm0ir9rd33s"; + rev = "40387ad7ae03f1589846518d7361c19774bcc4e3"; + sha256 = "0kzmvsbzqrkrlnr5sf1xwazm9zyzbrflb4d1jrkp206q9yk439cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mediawiki"; sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6"; name = "mediawiki"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mediawiki"; + homepage = "https://melpa.org/#/mediawiki"; license = lib.licenses.free; }; }) {}; @@ -35669,13 +37001,13 @@ sha256 = "0bilwhvprzk634sk5hnxilrvrl0yv593swzznch0p38hqxl585ld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mellow-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mellow-theme"; sha256 = "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0"; name = "mellow-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/mellow-theme"; + homepage = "https://melpa.org/#/mellow-theme"; license = lib.licenses.free; }; }) {}; @@ -35690,13 +37022,13 @@ sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/melpa-upstream-visit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/melpa-upstream-visit"; sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf"; name = "melpa-upstream-visit"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/melpa-upstream-visit"; + homepage = "https://melpa.org/#/melpa-upstream-visit"; license = lib.licenses.free; }; }) {}; @@ -35711,13 +37043,13 @@ sha256 = "0pjqax3pi6pb650yb8iwa4brwwl6cdka7jym3cfkpppyy782dm0q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/memento"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/memento"; sha256 = "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8"; name = "memento"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/memento"; + homepage = "https://melpa.org/#/memento"; license = lib.licenses.free; }; }) {}; @@ -35732,13 +37064,13 @@ sha256 = "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/memoize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/memoize"; sha256 = "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6"; name = "memoize"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/memoize"; + homepage = "https://melpa.org/#/memoize"; license = lib.licenses.free; }; }) {}; @@ -35753,13 +37085,13 @@ sha256 = "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/memolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/memolist"; sha256 = "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh"; name = "memolist"; }; packageRequires = [ ag markdown-mode ]; meta = { - homepage = "http://melpa.org/#/memolist"; + homepage = "https://melpa.org/#/memolist"; license = lib.licenses.free; }; }) {}; @@ -35774,13 +37106,13 @@ sha256 = "11hyydc13jdai6lkxx8nqf8xljh0gx7fcmywhik4f1hf3pdv7i2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mentor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mentor"; sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s"; name = "mentor"; }; packageRequires = [ xml-rpc ]; meta = { - homepage = "http://melpa.org/#/mentor"; + homepage = "https://melpa.org/#/mentor"; license = lib.licenses.free; }; }) {}; @@ -35788,38 +37120,38 @@ pname = "menu-bar-plus"; version = "20151231.1622"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/menu-bar+.el"; + url = "https://www.emacswiki.org/emacs/download/menu-bar+.el"; sha256 = "1i96s0z0q9z2ws2b1lz1n50j6hih9y4rsy7mwx0k8a4ikll0gx82"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/menu-bar+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/menu-bar+"; sha256 = "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90"; name = "menu-bar-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/menu-bar+"; + homepage = "https://melpa.org/#/menu-bar+"; license = lib.licenses.free; }; }) {}; merlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "merlin"; - version = "20151228.934"; + version = "20160229.828"; src = fetchFromGitHub { owner = "the-lambda-church"; repo = "merlin"; - rev = "a532512e15b10d04ffd8281ac5406160f2764005"; - sha256 = "1amb375dpy5al1ddh2ln9l1lw6xqfjigld6y5k7vvh730zild824"; + rev = "708b083ac8081c5b07e8bfb6e179a0c6e7d171ac"; + sha256 = "09yjgf3li4hgljcrwlg195wa6a8l7zm8ia1slbpsrjgwnc15wqrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/merlin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/merlin"; sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp"; name = "merlin"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/merlin"; + homepage = "https://melpa.org/#/merlin"; license = lib.licenses.free; }; }) {}; @@ -35827,17 +37159,17 @@ pname = "message-x"; version = "20151029.918"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/message-x.el"; + url = "https://www.emacswiki.org/emacs/download/message-x.el"; sha256 = "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/message-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/message-x"; sha256 = "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj"; name = "message-x"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/message-x"; + homepage = "https://melpa.org/#/message-x"; license = lib.licenses.free; }; }) {}; @@ -35852,34 +37184,34 @@ sha256 = "1x425ah3ymjyp3pxvyzyp4gd8zrjx8lgdzprml8qvf1yk82iv45l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/meta-presenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/meta-presenter"; sha256 = "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d"; name = "meta-presenter"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/meta-presenter"; + homepage = "https://melpa.org/#/meta-presenter"; license = lib.licenses.free; }; }) {}; metafmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "metafmt"; - version = "20160127.359"; + version = "20160221.1055"; src = fetchFromGitHub { owner = "lvillani"; repo = "metafmt"; - rev = "19dc36b3d085bba6f8e59ddbb1cbb7e2c085c461"; - sha256 = "0zxal6alf99a2zfzizckibp5iwdk9kklfhml2r0r3wfvswb0rb3z"; + rev = "bd20fc67d0affd48c1199315b7da06a7182e7d76"; + sha256 = "0n4nv1s25z70xfy3bl1wy467abz3agj4qmpx4rwdwzbarnqp9ps3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/metafmt"; - sha256 = "0vx1xrjr10nd90cr6ppgd3kc3c8bhkg3m4clnb50zagkpfqsy9ma"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/metafmt"; + sha256 = "1ca102al7r3k2g92b4jkqv53crnmxy3z7cz31w1rprf41s69mn75"; name = "metafmt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/metafmt"; + homepage = "https://melpa.org/#/metafmt"; license = lib.licenses.free; }; }) {}; @@ -35894,13 +37226,13 @@ sha256 = "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/metascript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/metascript-mode"; sha256 = "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn"; name = "metascript-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/metascript-mode"; + homepage = "https://melpa.org/#/metascript-mode"; license = lib.licenses.free; }; }) {}; @@ -35910,18 +37242,18 @@ version = "20141130.805"; src = fetchFromGitHub { owner = "punchagan"; - repo = "metaweblog.el"; + repo = "metaweblog"; rev = "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb"; sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/metaweblog"; - sha256 = "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/metaweblog"; + sha256 = "10kwqnfafby4ap0572mfkkdssr13y9p2gl9z3nmxqjjy04fkfi8b"; name = "metaweblog"; }; packageRequires = [ xml-rpc ]; meta = { - homepage = "http://melpa.org/#/metaweblog"; + homepage = "https://melpa.org/#/metaweblog"; license = lib.licenses.free; }; }) {}; @@ -35936,13 +37268,13 @@ sha256 = "1rkipcv53p7zra3gbjc77ywyxn8d1kx2gniyfqq16d2p2jw0lbzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mew"; sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk"; name = "mew"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mew"; + homepage = "https://melpa.org/#/mew"; license = lib.licenses.free; }; }) {}; @@ -35957,13 +37289,13 @@ sha256 = "0bhllmyk1r9y63jw5gx10v09791w33lc54qs31gcxbnss094l6py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mexican-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mexican-holidays"; sha256 = "0awf4vv6mbp1xr92nsgdn513g4adqhp21k12q4fbm85b2l3jlspb"; name = "mexican-holidays"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mexican-holidays"; + homepage = "https://melpa.org/#/mexican-holidays"; license = lib.licenses.free; }; }) {}; @@ -35978,31 +37310,55 @@ sha256 = "0ahbf4cd9q65xrvsc1clym3swdwwsl8llccrl5l1qgxqx5xg61hv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mhc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mhc"; sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql"; name = "mhc"; }; packageRequires = [ calfw ]; meta = { - homepage = "http://melpa.org/#/mhc"; + homepage = "https://melpa.org/#/mhc"; license = lib.licenses.free; }; }) {}; - mic-paren = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + mic-paren = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "mic-paren"; - version = "20140714.219"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/mic-paren.el"; - sha256 = "1ibim60fx0srmvchwbb2s04dmcc7mv7zyg1vqavas24ya2gmixc5"; + version = "20150110.2016"; + src = fetchFromGitHub { + owner = "emacsmirror"; + repo = "mic-paren"; + rev = "d0332fae515af2fa461d19afa7f933588afc327f"; + sha256 = "0l7xfana2cb894w5qi6wwx7w9k89c3i8k40fpsd93sm3hgi5ryii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mic-paren"; - sha256 = "1kdmp0wd7838nk58lby8gx91pjan47lq3izk4vdb2vm0h0iq57sa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mic-paren"; + sha256 = "042dzp0nal18nxq94qlwwksh0nnypsyc0yykmc6l3kayp9pv4hw7"; name = "mic-paren"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mic-paren"; + homepage = "https://melpa.org/#/mic-paren"; + license = lib.licenses.free; + }; + }) {}; + micgoline = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline }: + melpaBuild { + pname = "micgoline"; + version = "20160414.2226"; + src = fetchFromGitHub { + owner = "yzprofile"; + repo = "micgoline"; + rev = "837504263bb1711203b0f7efecd6b7b5f272fae0"; + sha256 = "0r6l6iqn5z9wp4w58flnls7kk6300qlxyy04fw0np00nvwsy4qvp"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/micgoline"; + sha256 = "0xixcy006my2s0wn0isiag0b4rm38kswa5m0xnhg5n30qjjfzf4i"; + name = "micgoline"; + }; + packageRequires = [ emacs powerline ]; + meta = { + homepage = "https://melpa.org/#/micgoline"; license = lib.licenses.free; }; }) {}; @@ -36017,13 +37373,13 @@ sha256 = "1cigsr0hkbi1860w38k2j8fw6j4w43pgv2bpkmdsifbqy6l8grpg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/midje-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/midje-mode"; sha256 = "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3"; name = "midje-mode"; }; packageRequires = [ cider clojure-mode ]; meta = { - homepage = "http://melpa.org/#/midje-mode"; + homepage = "https://melpa.org/#/midje-mode"; license = lib.licenses.free; }; }) {}; @@ -36038,13 +37394,13 @@ sha256 = "1az4mnmanhz9ga0g46jf33w8axcw8lnrb9lmszajwv7y5j9nk7yr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/migemo"; sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr"; name = "migemo"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/migemo"; + homepage = "https://melpa.org/#/migemo"; license = lib.licenses.free; }; }) {}; @@ -36059,13 +37415,13 @@ sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/milkode"; sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh"; name = "milkode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/milkode"; + homepage = "https://melpa.org/#/milkode"; license = lib.licenses.free; }; }) {}; @@ -36079,34 +37435,34 @@ sha256 = "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minesweeper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minesweeper"; sha256 = "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag"; name = "minesweeper"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/minesweeper"; + homepage = "https://melpa.org/#/minesweeper"; license = lib.licenses.free; }; }) {}; mingus = callPackage ({ fetchFromGitHub, fetchurl, lib, libmpdee, melpaBuild }: melpaBuild { pname = "mingus"; - version = "20160206.310"; + version = "20160321.1117"; src = fetchFromGitHub { owner = "pft"; repo = "mingus"; - rev = "8c8b3ba4d9295f2eacb2d073c2405ffc2b2c0f58"; - sha256 = "0h4di0z6df28sv596hn38snvq2xv9pj1a0xwbsifxj4nrzglq1fc"; + rev = "940ac6e96c713eaa9dde636b6755ee34f03654ff"; + sha256 = "14dqa37z96nhmrhiczri0cyrzmjc3larw8sszvdal9prj47363sh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mingus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mingus"; sha256 = "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi"; name = "mingus"; }; packageRequires = [ libmpdee ]; meta = { - homepage = "http://melpa.org/#/mingus"; + homepage = "https://melpa.org/#/mingus"; license = lib.licenses.free; }; }) {}; @@ -36121,13 +37477,13 @@ sha256 = "1n4b039448826w2jcsv4r2iw3v2vlrsxw8dbci8wcfigmkbfc879"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minibuf-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minibuf-isearch"; sha256 = "0n36d152lc53zj9jy38b0c7hlww0z6hx94y3x2njy6cmh3p5g8nh"; name = "minibuf-isearch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/minibuf-isearch"; + homepage = "https://melpa.org/#/minibuf-isearch"; license = lib.licenses.free; }; }) {}; @@ -36142,13 +37498,13 @@ sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minibuffer-complete-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minibuffer-complete-cycle"; sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2"; name = "minibuffer-complete-cycle"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/minibuffer-complete-cycle"; + homepage = "https://melpa.org/#/minibuffer-complete-cycle"; license = lib.licenses.free; }; }) {}; @@ -36163,13 +37519,13 @@ sha256 = "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minibuffer-cua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minibuffer-cua"; sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw"; name = "minibuffer-cua"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/minibuffer-cua"; + homepage = "https://melpa.org/#/minibuffer-cua"; license = lib.licenses.free; }; }) {}; @@ -36184,13 +37540,13 @@ sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/miniedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/miniedit"; sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87"; name = "miniedit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/miniedit"; + homepage = "https://melpa.org/#/miniedit"; license = lib.licenses.free; }; }) {}; @@ -36205,13 +37561,13 @@ sha256 = "1sj5sq932w079y3vy55q5b6wybwrzz30y092iq1mpfg5xvl42sbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minimal-session-saver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minimal-session-saver"; sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i"; name = "minimal-session-saver"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/minimal-session-saver"; + homepage = "https://melpa.org/#/minimal-session-saver"; license = lib.licenses.free; }; }) {}; @@ -36226,34 +37582,34 @@ sha256 = "1iy1z2kwnbzxhz5r4gsy4zm0l3xbwy314dqxliprbl8n2m9w0lmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minimal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minimal-theme"; sha256 = "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm"; name = "minimal-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/minimal-theme"; + homepage = "https://melpa.org/#/minimal-theme"; license = lib.licenses.free; }; }) {}; minitest = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minitest"; - version = "20160111.1349"; + version = "20160422.2241"; src = fetchFromGitHub { owner = "arthurnn"; repo = "minitest-emacs"; - rev = "263d3f03cdee0b84c8e122b4eae333ffbb793cda"; - sha256 = "08sy08bzn2as4n6jydrzvn0h0xahyihr2snfr3ps25gkfwxsk4aq"; + rev = "82097e692b96860b60061ea13cdb7caadc75032f"; + sha256 = "1yvr04z5dw39mippg6ngif1j3bb6m21zizrwpsxsra7ikdb06avc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minitest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minitest"; sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw"; name = "minitest"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/minitest"; + homepage = "https://melpa.org/#/minitest"; license = lib.licenses.free; }; }) {}; @@ -36268,13 +37624,13 @@ sha256 = "0808cl5ixvmhd8pa6fc8rn7wbxzvqjgz43mz1pambj89vbkzmw1c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minizinc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minizinc-mode"; sha256 = "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c"; name = "minizinc-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/minizinc-mode"; + homepage = "https://melpa.org/#/minizinc-mode"; license = lib.licenses.free; }; }) {}; @@ -36282,17 +37638,17 @@ pname = "minor-mode-hack"; version = "20141226.1420"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/minor-mode-hack.el"; + url = "https://www.emacswiki.org/emacs/download/minor-mode-hack.el"; sha256 = "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minor-mode-hack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minor-mode-hack"; sha256 = "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj"; name = "minor-mode-hack"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/minor-mode-hack"; + homepage = "https://melpa.org/#/minor-mode-hack"; license = lib.licenses.free; }; }) {}; @@ -36307,13 +37663,13 @@ sha256 = "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mip-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mip-mode"; sha256 = "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar"; name = "mip-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mip-mode"; + homepage = "https://melpa.org/#/mip-mode"; license = lib.licenses.free; }; }) {}; @@ -36321,17 +37677,17 @@ pname = "misc-cmds"; version = "20151231.1623"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/misc-cmds.el"; + url = "https://www.emacswiki.org/emacs/download/misc-cmds.el"; sha256 = "0sc4l0prwmakxmdq22xd5mj8ddwhzrs034zmx2swi2k3s07x15id"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/misc-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/misc-cmds"; sha256 = "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl"; name = "misc-cmds"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/misc-cmds"; + homepage = "https://melpa.org/#/misc-cmds"; license = lib.licenses.free; }; }) {}; @@ -36339,17 +37695,17 @@ pname = "misc-fns"; version = "20151231.1708"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/misc-fns.el"; + url = "https://www.emacswiki.org/emacs/download/misc-fns.el"; sha256 = "1mksmxy741sv7d5lr9wlj4klb0sg06bg5z1zpd5hj0bd4b3mx7x0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/misc-fns"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/misc-fns"; sha256 = "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam"; name = "misc-fns"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/misc-fns"; + homepage = "https://melpa.org/#/misc-fns"; license = lib.licenses.free; }; }) {}; @@ -36364,13 +37720,13 @@ sha256 = "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mkdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mkdown"; sha256 = "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1"; name = "mkdown"; }; packageRequires = [ markdown-mode ]; meta = { - homepage = "http://melpa.org/#/mkdown"; + homepage = "https://melpa.org/#/mkdown"; license = lib.licenses.free; }; }) {}; @@ -36385,13 +37741,13 @@ sha256 = "1lcc2p9qz70kpykgx82isv0qiqlsajp4vvcj6bvag92d7h9yk9bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmm-jinja2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmm-jinja2"; sha256 = "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z"; name = "mmm-jinja2"; }; packageRequires = [ mmm-mode ]; meta = { - homepage = "http://melpa.org/#/mmm-jinja2"; + homepage = "https://melpa.org/#/mmm-jinja2"; license = lib.licenses.free; }; }) {}; @@ -36405,13 +37761,13 @@ sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmm-mako"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmm-mako"; sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn"; name = "mmm-mako"; }; packageRequires = [ mmm-mode ]; meta = { - homepage = "http://melpa.org/#/mmm-mako"; + homepage = "https://melpa.org/#/mmm-mako"; license = lib.licenses.free; }; }) {}; @@ -36426,13 +37782,13 @@ sha256 = "04rapmqblfjvmdccm9kqi8gn0him1x2q7hjwsyb8mg4lwxcd7qp9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmm-mode"; sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw"; name = "mmm-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mmm-mode"; + homepage = "https://melpa.org/#/mmm-mode"; license = lib.licenses.free; }; }) {}; @@ -36447,13 +37803,13 @@ sha256 = "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmt"; sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq"; name = "mmt"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/mmt"; + homepage = "https://melpa.org/#/mmt"; license = lib.licenses.free; }; }) {}; @@ -36468,13 +37824,13 @@ sha256 = "1dh92hzpicfvrlg6swrw4igwb771xbsmsf7hxp1a4iry4w8dk398"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mo-git-blame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mo-git-blame"; sha256 = "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x"; name = "mo-git-blame"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mo-git-blame"; + homepage = "https://melpa.org/#/mo-git-blame"; license = lib.licenses.free; }; }) {}; @@ -36489,13 +37845,13 @@ sha256 = "0k0scl9z35d8x4ikxm2db1frpbx151p2m181fa1armxbd9lbfvnn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mo-vi-ment-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mo-vi-ment-mode"; sha256 = "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7"; name = "mo-vi-ment-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mo-vi-ment-mode"; + homepage = "https://melpa.org/#/mo-vi-ment-mode"; license = lib.licenses.free; }; }) {}; @@ -36510,34 +37866,34 @@ sha256 = "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mobdebug-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mobdebug-mode"; sha256 = "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8"; name = "mobdebug-mode"; }; packageRequires = [ emacs lua-mode ]; meta = { - homepage = "http://melpa.org/#/mobdebug-mode"; + homepage = "https://melpa.org/#/mobdebug-mode"; license = lib.licenses.free; }; }) {}; mocha = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: melpaBuild { pname = "mocha"; - version = "20160203.1808"; + version = "20160223.2255"; src = fetchFromGitHub { owner = "scottaj"; repo = "mocha.el"; - rev = "811772fd498c7cff4c25ba4a6977973d8187e23c"; - sha256 = "1jyqj7qdpaf0p8d7csc24ch0kgg3vfigadn118gh84xvr1brvvwk"; + rev = "2417d16bb0a28a392cec41fe904236728ff35dcb"; + sha256 = "1xhmmdwbypjwdcp0bciy1dqxy6nmslyiybdysgb5ii6man512wgd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mocha"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mocha"; sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx"; name = "mocha"; }; packageRequires = [ js2-mode ]; meta = { - homepage = "http://melpa.org/#/mocha"; + homepage = "https://melpa.org/#/mocha"; license = lib.licenses.free; }; }) {}; @@ -36552,13 +37908,13 @@ sha256 = "1f8h5c9vvwynq92b1ii5hdpqmf52l5j443ir5hdbiigq30wkwlhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mocha-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mocha-snippets"; sha256 = "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds"; name = "mocha-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/mocha-snippets"; + homepage = "https://melpa.org/#/mocha-snippets"; license = lib.licenses.free; }; }) {}; @@ -36573,13 +37929,13 @@ sha256 = "0dngznaraphpc5amn9n120la7ga3rj7h67pnnal6qwflh5rqcmss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mocker"; sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3"; name = "mocker"; }; packageRequires = [ eieio el-x ]; meta = { - homepage = "http://melpa.org/#/mocker"; + homepage = "https://melpa.org/#/mocker"; license = lib.licenses.free; }; }) {}; @@ -36594,33 +37950,34 @@ sha256 = "0r24186d1q9436h3qhqz1z8q978d01an0dvpvzirf4x9ickrib3k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/modalka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/modalka"; sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c"; name = "modalka"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/modalka"; + homepage = "https://melpa.org/#/modalka"; license = lib.licenses.free; }; }) {}; - mode-icons = callPackage ({ cl-lib ? null, emacs, fetchgit, fetchurl, lib, melpaBuild }: + mode-icons = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mode-icons"; - version = "20160221.803"; - src = fetchgit { - url = "git://ryuslash.org/mode-icons.git"; - rev = "d2c9926a8e79e13ef9942fe96b8109add24a9978"; - sha256 = "cb98bc1e199688337efd03bbd18a340514740257f9ede19089f01f5ad6e69b74"; + version = "20160425.425"; + src = fetchFromGitHub { + owner = "ryuslash"; + repo = "mode-icons"; + rev = "26625e0dfa78305863eff1551c04735d9e0d241c"; + sha256 = "067dmkzkrdbgvwmrxw7pgjdjln5vii2r79i3xcqxjn5xjvsii47x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mode-icons"; - sha256 = "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mode-icons"; + sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf"; name = "mode-icons"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/mode-icons"; + homepage = "https://melpa.org/#/mode-icons"; license = lib.licenses.free; }; }) {}; @@ -36635,13 +37992,13 @@ sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mode-line-debug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mode-line-debug"; sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd"; name = "mode-line-debug"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mode-line-debug"; + homepage = "https://melpa.org/#/mode-line-debug"; license = lib.licenses.free; }; }) {}; @@ -36649,17 +38006,17 @@ pname = "modeline-char"; version = "20151231.1719"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/modeline-char.el"; + url = "https://www.emacswiki.org/emacs/download/modeline-char.el"; sha256 = "1dlprk1jlfw7b7vnxi0d0mf85737wkjc5fkvycx8nawngb2fqhbw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/modeline-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/modeline-char"; sha256 = "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp"; name = "modeline-char"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/modeline-char"; + homepage = "https://melpa.org/#/modeline-char"; license = lib.licenses.free; }; }) {}; @@ -36667,17 +38024,17 @@ pname = "modeline-posn"; version = "20160112.849"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/modeline-posn.el"; + url = "https://www.emacswiki.org/emacs/download/modeline-posn.el"; sha256 = "1r4zq355h570hk7qq0ik121bwsr4hjnhacal4d4h119d11gq2p8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/modeline-posn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/modeline-posn"; sha256 = "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk"; name = "modeline-posn"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/modeline-posn"; + homepage = "https://melpa.org/#/modeline-posn"; license = lib.licenses.free; }; }) {}; @@ -36692,34 +38049,34 @@ sha256 = "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/modtime-skip-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/modtime-skip-mode"; sha256 = "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28"; name = "modtime-skip-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/modtime-skip-mode"; + homepage = "https://melpa.org/#/modtime-skip-mode"; license = lib.licenses.free; }; }) {}; moe-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "moe-theme"; - version = "20160216.2021"; + version = "20160322.315"; src = fetchFromGitHub { owner = "kuanyui"; repo = "moe-theme.el"; - rev = "b6dcf5f5dc822bee8e6d6b6a79ae6889910ed247"; - sha256 = "05lh052dnwdpf6iqypipa8yjhl9mwka3h77d4pnfwq8wdz7ywp12"; + rev = "d7c4aa29ca55a394e6ebf698fda93215c0df1123"; + sha256 = "1567k0zacdf9zlmypb8fywz49n37hm8p60vrq2jqql8n8nq325gq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/moe-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/moe-theme"; sha256 = "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6"; name = "moe-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/moe-theme"; + homepage = "https://melpa.org/#/moe-theme"; license = lib.licenses.free; }; }) {}; @@ -36734,13 +38091,13 @@ sha256 = "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/molokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/molokai-theme"; sha256 = "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf"; name = "molokai-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/molokai-theme"; + homepage = "https://melpa.org/#/molokai-theme"; license = lib.licenses.free; }; }) {}; @@ -36755,34 +38112,34 @@ sha256 = "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mongo"; sha256 = "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai"; name = "mongo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mongo"; + homepage = "https://melpa.org/#/mongo"; license = lib.licenses.free; }; }) {}; monky = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monky"; - version = "20150404.218"; + version = "20160315.2251"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "monky"; - rev = "48c0200910739b6521f26f6423b2bfb8c38b4482"; - sha256 = "0ddkcb5rzpcqpsrwkhvm9kzpx2mlrrsp7psljkz5q5qfvy3wdagh"; + rev = "988571711a350d0cedff8ff394c6ffa0e0042cc5"; + sha256 = "1p9p0yp68wb7f1qf0c02fk7ayb7dw6gv57368ksa6nw76w58hhfm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monky"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monky"; sha256 = "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz"; name = "monky"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/monky"; + homepage = "https://melpa.org/#/monky"; license = lib.licenses.free; }; }) {}; @@ -36797,55 +38154,55 @@ sha256 = "1sxhpvxapzgrwvzibkg7zd3ppmfcz5rhrbvg73b8rggjg4m5snyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monochrome-theme"; sha256 = "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9"; name = "monochrome-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/monochrome-theme"; + homepage = "https://melpa.org/#/monochrome-theme"; license = lib.licenses.free; }; }) {}; monokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monokai-theme"; - version = "20160104.1512"; + version = "20160419.1644"; src = fetchFromGitHub { owner = "oneKelvinSmith"; repo = "monokai-emacs"; - rev = "8bd39a186bf4e1bd4ce115aef39b2831561ba28b"; - sha256 = "0rszr7p5v47s66kj872mz68apkbykhl51lp4v1apwj1ay32lbx9h"; + rev = "8683dceadcb4072bb33723bd1d4b1fa6555810a1"; + sha256 = "0djgxmd1nqfhyxzag3hq1q7lhsgx5d8cid11i64il9rpiqfyysip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monokai-theme"; sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a"; name = "monokai-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/monokai-theme"; + homepage = "https://melpa.org/#/monokai-theme"; license = lib.licenses.free; }; }) {}; monroe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monroe"; - version = "20141111.307"; + version = "20160421.640"; src = fetchFromGitHub { owner = "sanel"; repo = "monroe"; - rev = "7f42a0139a8030407da736ddb0f67132634b70c0"; - sha256 = "1z1gyknxscvk2qpfcrgzymf9w5m8jcnj525q852b8s6yf5fnffmh"; + rev = "f497e134f754ee62178eb41844fce3ffe204d50a"; + sha256 = "0jac2i5hwdi65rrif0xq86wsimxlpwcfbzsv7fjhc5f16bs6dmnk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monroe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monroe"; sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig"; name = "monroe"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/monroe"; + homepage = "https://melpa.org/#/monroe"; license = lib.licenses.free; }; }) {}; @@ -36860,13 +38217,13 @@ sha256 = "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/morlock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/morlock"; sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna"; name = "morlock"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/morlock"; + homepage = "https://melpa.org/#/morlock"; license = lib.licenses.free; }; }) {}; @@ -36881,13 +38238,13 @@ sha256 = "10mf96r75558scn71pri71aa8nhp6hmnb5rwjxlh5dlf80r5dfd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mote-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mote-mode"; sha256 = "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9"; name = "mote-mode"; }; packageRequires = [ ruby-mode ]; meta = { - homepage = "http://melpa.org/#/mote-mode"; + homepage = "https://melpa.org/#/mote-mode"; license = lib.licenses.free; }; }) {}; @@ -36902,13 +38259,13 @@ sha256 = "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/motion-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/motion-mode"; sha256 = "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0"; name = "motion-mode"; }; packageRequires = [ flymake-cursor flymake-easy ]; meta = { - homepage = "http://melpa.org/#/motion-mode"; + homepage = "https://melpa.org/#/motion-mode"; license = lib.licenses.free; }; }) {}; @@ -36916,17 +38273,17 @@ pname = "mouse-plus"; version = "20151231.1725"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/mouse+.el"; + url = "https://www.emacswiki.org/emacs/download/mouse+.el"; sha256 = "0rakxcpqdx175hic3ykwbd5if53dvvf0sxhq0gplpsybpqvkimyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mouse+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mouse+"; sha256 = "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8"; name = "mouse-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mouse+"; + homepage = "https://melpa.org/#/mouse+"; license = lib.licenses.free; }; }) {}; @@ -36941,13 +38298,13 @@ sha256 = "05pzplb3gmlnlvn2azbxdlf4vrkvk8fc9dkgi2nq4shysnh4c9v7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mouse-slider-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mouse-slider-mode"; sha256 = "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy"; name = "mouse-slider-mode"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/mouse-slider-mode"; + homepage = "https://melpa.org/#/mouse-slider-mode"; license = lib.licenses.free; }; }) {}; @@ -36955,17 +38312,17 @@ pname = "mouse3"; version = "20151231.1726"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/mouse3.el"; + url = "https://www.emacswiki.org/emacs/download/mouse3.el"; sha256 = "1831jpi06hi5v2jdjgs83jma7fp8xiqdmvvwxfyp2zpbfwi1lkb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mouse3"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mouse3"; sha256 = "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777"; name = "mouse3"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mouse3"; + homepage = "https://melpa.org/#/mouse3"; license = lib.licenses.free; }; }) {}; @@ -36980,13 +38337,13 @@ sha256 = "0baynb6gq04rxh10l6rn0myrhg7c7fwqaryiiyddp4jy7llf83c8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/move-dup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/move-dup"; sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f"; name = "move-dup"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/move-dup"; + homepage = "https://melpa.org/#/move-dup"; license = lib.licenses.free; }; }) {}; @@ -37001,13 +38358,13 @@ sha256 = "0f7gwwkyxk9rv6rhpc88w8vz4x0ww6r9cxmy7bs9lqsf8a7y2095"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/move-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/move-text"; sha256 = "04bfrkanafmbrdyw06ciw9kiyn7h3kpikxk3clx2gc04jl67hzgy"; name = "move-text"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/move-text"; + homepage = "https://melpa.org/#/move-text"; license = lib.licenses.free; }; }) {}; @@ -37022,13 +38379,13 @@ sha256 = "179mc70x3dvj0cz6yyhs00ndh0xvk71gmiscln9y0f1ngxr5h338"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mowedline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mowedline"; sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb"; name = "mowedline"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mowedline"; + homepage = "https://melpa.org/#/mowedline"; license = lib.licenses.free; }; }) {}; @@ -37043,13 +38400,13 @@ sha256 = "1g06i3d8xv8ja6nfww4k60l3467xr1s9xsk7i6dbicq0lf8559h9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/moz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/moz"; sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi"; name = "moz"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/moz"; + homepage = "https://melpa.org/#/moz"; license = lib.licenses.free; }; }) {}; @@ -37064,13 +38421,13 @@ sha256 = "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/moz-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/moz-controller"; sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd"; name = "moz-controller"; }; packageRequires = [ moz ]; meta = { - homepage = "http://melpa.org/#/moz-controller"; + homepage = "https://melpa.org/#/moz-controller"; license = lib.licenses.free; }; }) {}; @@ -37081,38 +38438,38 @@ src = fetchFromGitHub { owner = "google"; repo = "mozc"; - rev = "80c7fb819873621addab82767100d3dfba703063"; - sha256 = "10674ch2svx8w1hh59whac579hsf3bcgimsasalidkw3cd9w69d3"; + rev = "0ccaad35074f21caeb3732348b71b60af6b2a461"; + sha256 = "1l1qds7mzn7cx0ijdwcdihqbmidwh16a96v4la9ris07k5fxqiph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/553e27a3523ade9dc4951086d9340e8240d5d943/recipes/mozc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mozc"; sha256 = "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba"; name = "mozc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mozc"; + homepage = "https://melpa.org/#/mozc"; license = lib.licenses.free; }; }) {}; mozc-im = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }: melpaBuild { pname = "mozc-im"; - version = "20150419.649"; + version = "20160411.1922"; src = fetchFromGitHub { owner = "d5884"; repo = "mozc-im"; - rev = "eaba71ee15d0822631e2023e2ee244e98782cb2d"; - sha256 = "03j5fy2xw204807wi7ivwcqlgkh1f7msshh5yrk6c7qdpp08062r"; + rev = "df614a1076c28a11551fb3e822868bae47e855a5"; + sha256 = "0cpcldizgyr125j7lzkl8l6jw1hc3fb12cwgkpjrl6pjpr80vb15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mozc-im"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mozc-im"; sha256 = "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10"; name = "mozc-im"; }; packageRequires = [ mozc ]; meta = { - homepage = "http://melpa.org/#/mozc-im"; + homepage = "https://melpa.org/#/mozc-im"; license = lib.licenses.free; }; }) {}; @@ -37127,13 +38484,34 @@ sha256 = "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mozc-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mozc-popup"; sha256 = "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687"; name = "mozc-popup"; }; packageRequires = [ mozc popup ]; meta = { - homepage = "http://melpa.org/#/mozc-popup"; + homepage = "https://melpa.org/#/mozc-popup"; + license = lib.licenses.free; + }; + }) {}; + mozc-temp = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }: + melpaBuild { + pname = "mozc-temp"; + version = "20160228.240"; + src = fetchFromGitHub { + owner = "HKey"; + repo = "mozc-temp"; + rev = "9d6b645eff901ea79dbc43a55d5a97ead3f4bad7"; + sha256 = "1vwciy6hcbcyid41bykibx6ii1y9ln7kdxn7cjwfjrgd3kl9wg19"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mozc-temp"; + sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d"; + name = "mozc-temp"; + }; + packageRequires = [ dash emacs mozc ]; + meta = { + homepage = "https://melpa.org/#/mozc-temp"; license = lib.licenses.free; }; }) {}; @@ -37148,13 +38526,13 @@ sha256 = "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mpages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mpages"; sha256 = "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs"; name = "mpages"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mpages"; + homepage = "https://melpa.org/#/mpages"; license = lib.licenses.free; }; }) {}; @@ -37169,13 +38547,13 @@ sha256 = "09731mwm23b6ic53366lnxy2p7dfd245yh75gaf6ijfa22jks7gb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mpg123"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mpg123"; sha256 = "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8"; name = "mpg123"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mpg123"; + homepage = "https://melpa.org/#/mpg123"; license = lib.licenses.free; }; }) {}; @@ -37190,13 +38568,13 @@ sha256 = "193j90sgn1zgl00mji86wll4djj57vk5arhwbmhhf5b1qx3wpbhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mpv"; sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l"; name = "mpv"; }; packageRequires = [ cl-lib emacs json names org ]; meta = { - homepage = "http://melpa.org/#/mpv"; + homepage = "https://melpa.org/#/mpv"; license = lib.licenses.free; }; }) {}; @@ -37211,13 +38589,13 @@ sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/msvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/msvc"; sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3"; name = "msvc"; }; packageRequires = [ ac-clang cedet cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/msvc"; + homepage = "https://melpa.org/#/msvc"; license = lib.licenses.free; }; }) {}; @@ -37232,13 +38610,13 @@ sha256 = "1gxspy50gh7j4sysvr17fvvp8p417ww39ii5dy0fxncfwczdsa19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mu-cite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mu-cite"; sha256 = "0ap21sw4r2x774q2np6rhrxh2m2rf3f6ak3k71iar159chx32y6q"; name = "mu-cite"; }; packageRequires = [ flim ]; meta = { - homepage = "http://melpa.org/#/mu-cite"; + homepage = "https://melpa.org/#/mu-cite"; license = lib.licenses.free; }; }) {}; @@ -37253,13 +38631,13 @@ sha256 = "0klnpbb47l3s8cdv1ikldiqw83mggxcbnhlvs3g13a36vx6cxxp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mu4e-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mu4e-alert"; sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm"; name = "mu4e-alert"; }; packageRequires = [ alert emacs ht s ]; meta = { - homepage = "http://melpa.org/#/mu4e-alert"; + homepage = "https://melpa.org/#/mu4e-alert"; license = lib.licenses.free; }; }) {}; @@ -37274,13 +38652,13 @@ sha256 = "1cvpzs65fjmhdza1vi2lpk68vkvivb0igrpgm42andi42gc6k50b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mu4e-maildirs-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mu4e-maildirs-extension"; sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi"; name = "mu4e-maildirs-extension"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/mu4e-maildirs-extension"; + homepage = "https://melpa.org/#/mu4e-maildirs-extension"; license = lib.licenses.free; }; }) {}; @@ -37295,34 +38673,34 @@ sha256 = "0f5hc6mgq0hg1wwnvqd4fp7ck58lcavvgqjggz9zlhrjgkmynjxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi"; sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig"; name = "multi"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/multi"; + homepage = "https://melpa.org/#/multi"; license = lib.licenses.free; }; }) {}; - multi-compile = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + multi-compile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-compile"; - version = "20160215.1419"; + version = "20160306.1623"; src = fetchFromGitHub { owner = "ReanGD"; repo = "emacs-multi-compile"; - rev = "ac128d246971fb43a1c33d4cdf3e3bd1557f37cf"; - sha256 = "10fnps2mw2n8y456qxsxqx4cmlhk0fag9p0c6kwx78mwz8akk07w"; + rev = "bd0331854774e7a269ce8a7dd49580cd397c0ec2"; + sha256 = "1aswpv1m02n26620hgkcfd38f06bzmmijlr9rs5krv6snq5gdb8g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-compile"; sha256 = "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz"; name = "multi-compile"; }; - packageRequires = [ emacs ]; + packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/multi-compile"; + homepage = "https://melpa.org/#/multi-compile"; license = lib.licenses.free; }; }) {}; @@ -37330,17 +38708,17 @@ pname = "multi-eshell"; version = "20120608.1335"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/multi-eshell.el"; + url = "https://www.emacswiki.org/emacs/download/multi-eshell.el"; sha256 = "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-eshell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-eshell"; sha256 = "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d"; name = "multi-eshell"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/multi-eshell"; + homepage = "https://melpa.org/#/multi-eshell"; license = lib.licenses.free; }; }) {}; @@ -37355,13 +38733,13 @@ sha256 = "13rp6kbabjy9dy0x4696065yyaxlgmfnwcqq9vcw2jhbb2gl9gs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-line"; sha256 = "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp"; name = "multi-line"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/multi-line"; + homepage = "https://melpa.org/#/multi-line"; license = lib.licenses.free; }; }) {}; @@ -37375,13 +38753,13 @@ sha256 = "0lcx73vzm7zwvzzc53pfb5y16bhvq9cm9fdy63d3242s8v834z3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-project"; sha256 = "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x"; name = "multi-project"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/multi-project"; + homepage = "https://melpa.org/#/multi-project"; license = lib.licenses.free; }; }) {}; @@ -37389,17 +38767,17 @@ pname = "multi-term"; version = "20150220.720"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/multi-term.el"; + url = "https://www.emacswiki.org/emacs/download/multi-term.el"; sha256 = "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-term"; sha256 = "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx"; name = "multi-term"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/multi-term"; + homepage = "https://melpa.org/#/multi-term"; license = lib.licenses.free; }; }) {}; @@ -37414,13 +38792,13 @@ sha256 = "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-web-mode"; sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5"; name = "multi-web-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/multi-web-mode"; + homepage = "https://melpa.org/#/multi-web-mode"; license = lib.licenses.free; }; }) {}; @@ -37435,13 +38813,13 @@ sha256 = "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multicolumn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multicolumn"; sha256 = "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09"; name = "multicolumn"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/multicolumn"; + homepage = "https://melpa.org/#/multicolumn"; license = lib.licenses.free; }; }) {}; @@ -37456,34 +38834,34 @@ sha256 = "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multifiles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multifiles"; sha256 = "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz"; name = "multifiles"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/multifiles"; + homepage = "https://melpa.org/#/multifiles"; license = lib.licenses.free; }; }) {}; multiple-cursors = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multiple-cursors"; - version = "20160213.1017"; + version = "20160304.859"; src = fetchFromGitHub { owner = "magnars"; repo = "multiple-cursors.el"; - rev = "68961b4cf39b6d56d21ece0246f8c215f95cc3e1"; - sha256 = "07g03z1jx0d8gr9m30vn33jm7ym3afqcj83j499wa2hj3wqnaf9f"; + rev = "8297f1f210f263fd96dfc28e9fb43522fd102c23"; + sha256 = "065qni8q25awpa8bdajz51vx96labigq3mk4094gn1np84zxg13g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multiple-cursors"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multiple-cursors"; sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x"; name = "multiple-cursors"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/multiple-cursors"; + homepage = "https://melpa.org/#/multiple-cursors"; license = lib.licenses.free; }; }) {}; @@ -37498,13 +38876,13 @@ sha256 = "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mustache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mustache"; sha256 = "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g"; name = "mustache"; }; packageRequires = [ dash ht s ]; meta = { - homepage = "http://melpa.org/#/mustache"; + homepage = "https://melpa.org/#/mustache"; license = lib.licenses.free; }; }) {}; @@ -37519,13 +38897,13 @@ sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mustache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mustache-mode"; sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs"; name = "mustache-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mustache-mode"; + homepage = "https://melpa.org/#/mustache-mode"; license = lib.licenses.free; }; }) {}; @@ -37540,13 +38918,13 @@ sha256 = "19qd34dcfspv621p4y07zhq2pr8pwss3lcssm9sfhr6w2vmvgcr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mustang-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mustang-theme"; sha256 = "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr"; name = "mustang-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mustang-theme"; + homepage = "https://melpa.org/#/mustang-theme"; license = lib.licenses.free; }; }) {}; @@ -37561,13 +38939,13 @@ sha256 = "170qhbbvcv9dg6jzfd9r95in5m8z1k647mn0gaqflfj0hvq5hwgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mustard-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mustard-theme"; sha256 = "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik"; name = "mustard-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/mustard-theme"; + homepage = "https://melpa.org/#/mustard-theme"; license = lib.licenses.free; }; }) {}; @@ -37578,17 +38956,17 @@ src = fetchFromGitHub { owner = "p-lambert"; repo = "mutant.el"; - rev = "aff50603a70a110f4ecd7142963ef719e8c11c06"; - sha256 = "1faqbkff0v6pigsnnq2dxnzdra8q62cvlxigscwalwxd27bbz548"; + rev = "de9cdefe48c880128a8f62c6699d7416e9c8ced1"; + sha256 = "0w9blrm3596hmip8jg2hlz9sl31ci89b90jglmg4ipldgrgj3ly6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mutant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mutant"; sha256 = "0m5l5r37zb0ig96757ldyl9hbb01lknzqf08ap6dsmdwr1zayvp1"; name = "mutant"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/mutant"; + homepage = "https://melpa.org/#/mutant"; license = lib.licenses.free; }; }) {}; @@ -37596,17 +38974,17 @@ pname = "muttrc-mode"; version = "20090804.1752"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/muttrc-mode.el"; + url = "https://www.emacswiki.org/emacs/download/muttrc-mode.el"; sha256 = "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/muttrc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/muttrc-mode"; sha256 = "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn"; name = "muttrc-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/muttrc-mode"; + homepage = "https://melpa.org/#/muttrc-mode"; license = lib.licenses.free; }; }) {}; @@ -37615,19 +38993,19 @@ pname = "mvn"; version = "20160211.943"; src = fetchFromGitHub { - owner = "apgwoz"; + owner = "apg"; repo = "mvn-el"; rev = "8a65b4eb88c9801aa3bff1921b600c72dfb8791a"; sha256 = "1jg3xrk44lspxli0zr02jcsl8phj0ns7ly3dkd7rx2wgsk69ari3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mvn"; - sha256 = "1ykiz5fviq2n2474izwp0vvqanpbmxg7lzh1xbpn281kwmp0mwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mvn"; + sha256 = "0bpg9zpyfdyn9xvrbmq4gb10hd701mc49np8arlmnilphb3fdgzs"; name = "mvn"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mvn"; + homepage = "https://melpa.org/#/mvn"; license = lib.licenses.free; }; }) {}; @@ -37642,13 +39020,13 @@ sha256 = "0qdlbyq47gr65yq5ri8s9lxw4wp9fmyqc2prkh560d4hkvw60aw3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mwe-log-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mwe-log-commands"; sha256 = "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn"; name = "mwe-log-commands"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mwe-log-commands"; + homepage = "https://melpa.org/#/mwe-log-commands"; license = lib.licenses.free; }; }) {}; @@ -37663,13 +39041,13 @@ sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mwim"; sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k"; name = "mwim"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mwim"; + homepage = "https://melpa.org/#/mwim"; license = lib.licenses.free; }; }) {}; @@ -37684,13 +39062,13 @@ sha256 = "0cf0c9g9k2lk1ifi2dlw7c601sh1ycxf3fgl2hy5wliyd6l9rf86"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/myanmar-input-methods"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/myanmar-input-methods"; sha256 = "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd"; name = "myanmar-input-methods"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/myanmar-input-methods"; + homepage = "https://melpa.org/#/myanmar-input-methods"; license = lib.licenses.free; }; }) {}; @@ -37705,13 +39083,13 @@ sha256 = "0a9a6hmv8vjmp6h9mnzin9vc0sncg79v5z72pasvbrplfxijzan0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mykie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mykie"; sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj"; name = "mykie"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/mykie"; + homepage = "https://melpa.org/#/mykie"; license = lib.licenses.free; }; }) {}; @@ -37726,13 +39104,13 @@ sha256 = "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mynt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mynt-mode"; sha256 = "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b"; name = "mynt-mode"; }; packageRequires = [ virtualenvwrapper ]; meta = { - homepage = "http://melpa.org/#/mynt-mode"; + homepage = "https://melpa.org/#/mynt-mode"; license = lib.licenses.free; }; }) {}; @@ -37747,13 +39125,13 @@ sha256 = "0q5809hq22hyzxx5xr2hwwf3jh3qlpf3mkbl3fxqq93gm16plh1i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mysql2sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mysql2sqlite"; sha256 = "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd"; name = "mysql2sqlite"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mysql2sqlite"; + homepage = "https://melpa.org/#/mysql2sqlite"; license = lib.licenses.free; }; }) {}; @@ -37768,13 +39146,13 @@ sha256 = "18wqgjn38jxzsbivmf2fkcq3r1y4lffh3dbpv1jj7s9qn91pyp6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/myterminal-controls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/myterminal-controls"; sha256 = "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2"; name = "myterminal-controls"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/myterminal-controls"; + homepage = "https://melpa.org/#/myterminal-controls"; license = lib.licenses.free; }; }) {}; @@ -37789,13 +39167,13 @@ sha256 = "1lp1bx9110vqzjww94va8pdks39qvqzl8rf0p8na1q0qn06rnk9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/n3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/n3-mode"; sha256 = "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh"; name = "n3-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/n3-mode"; + homepage = "https://melpa.org/#/n3-mode"; license = lib.licenses.free; }; }) {}; @@ -37810,13 +39188,13 @@ sha256 = "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/n4js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/n4js"; sha256 = "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m"; name = "n4js"; }; packageRequires = [ cypher-mode emacs ]; meta = { - homepage = "http://melpa.org/#/n4js"; + homepage = "https://melpa.org/#/n4js"; license = lib.licenses.free; }; }) {}; @@ -37824,17 +39202,17 @@ pname = "naked"; version = "20151231.1727"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/naked.el"; + url = "https://www.emacswiki.org/emacs/download/naked.el"; sha256 = "0zq13qjqfpxjba1bhdqqxkvgxq1dxyb7hd1bpnk6cbhsxr6mr50i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/naked"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/naked"; sha256 = "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq"; name = "naked"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/naked"; + homepage = "https://melpa.org/#/naked"; license = lib.licenses.free; }; }) {}; @@ -37849,13 +39227,13 @@ sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/name-this-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/name-this-color"; sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb"; name = "name-this-color"; }; packageRequires = [ cl-lib dash emacs ]; meta = { - homepage = "http://melpa.org/#/name-this-color"; + homepage = "https://melpa.org/#/name-this-color"; license = lib.licenses.free; }; }) {}; @@ -37870,13 +39248,13 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nameframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nameframe"; sha256 = "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp"; name = "nameframe"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nameframe"; + homepage = "https://melpa.org/#/nameframe"; license = lib.licenses.free; }; }) {}; @@ -37891,13 +39269,13 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nameframe-perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nameframe-perspective"; sha256 = "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x"; name = "nameframe-perspective"; }; packageRequires = [ nameframe perspective ]; meta = { - homepage = "http://melpa.org/#/nameframe-perspective"; + homepage = "https://melpa.org/#/nameframe-perspective"; license = lib.licenses.free; }; }) {}; @@ -37912,34 +39290,34 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nameframe-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nameframe-projectile"; sha256 = "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k"; name = "nameframe-projectile"; }; packageRequires = [ nameframe projectile ]; meta = { - homepage = "http://melpa.org/#/nameframe-projectile"; + homepage = "https://melpa.org/#/nameframe-projectile"; license = lib.licenses.free; }; }) {}; nameless = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nameless"; - version = "20151014.639"; + version = "20160403.1313"; src = fetchFromGitHub { owner = "Malabarba"; repo = "Nameless"; - rev = "a3dfd7ecf9c58898241c8d1145eb8e0c875f5448"; - sha256 = "13v0v90vrc2w0wi7wmzmpql6yjbr6lpzh29kxggq9fy38lahd3ks"; + rev = "49225f379efedf228636985a92ca6fb84cfdea5a"; + sha256 = "1g8852c68ca4b4wf781aiyhbgk2a3g39jw1mijzpp0lmmnsbmmwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nameless"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nameless"; sha256 = "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq"; name = "nameless"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/nameless"; + homepage = "https://melpa.org/#/nameless"; license = lib.licenses.free; }; }) {}; @@ -37954,13 +39332,13 @@ sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/names"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/names"; sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg"; name = "names"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/names"; + homepage = "https://melpa.org/#/names"; license = lib.licenses.free; }; }) {}; @@ -37975,13 +39353,13 @@ sha256 = "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/namespaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/namespaces"; sha256 = "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr"; name = "namespaces"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/namespaces"; + homepage = "https://melpa.org/#/namespaces"; license = lib.licenses.free; }; }) {}; @@ -37996,13 +39374,13 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nand2tetris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nand2tetris"; sha256 = "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd"; name = "nand2tetris"; }; packageRequires = [ names ]; meta = { - homepage = "http://melpa.org/#/nand2tetris"; + homepage = "https://melpa.org/#/nand2tetris"; license = lib.licenses.free; }; }) {}; @@ -38017,13 +39395,13 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nand2tetris-assembler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nand2tetris-assembler"; sha256 = "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy"; name = "nand2tetris-assembler"; }; packageRequires = [ names nand2tetris ]; meta = { - homepage = "http://melpa.org/#/nand2tetris-assembler"; + homepage = "https://melpa.org/#/nand2tetris-assembler"; license = lib.licenses.free; }; }) {}; @@ -38037,13 +39415,13 @@ sha256 = "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nanowrimo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nanowrimo"; sha256 = "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31"; name = "nanowrimo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nanowrimo"; + homepage = "https://melpa.org/#/nanowrimo"; license = lib.licenses.free; }; }) {}; @@ -38058,13 +39436,13 @@ sha256 = "0mxf61ky1dd7r2qd4j7k6bdppmkilkq5l9gv257a12539wkw5yq2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/naquadah-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/naquadah-theme"; sha256 = "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1"; name = "naquadah-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/naquadah-theme"; + homepage = "https://melpa.org/#/naquadah-theme"; license = lib.licenses.free; }; }) {}; @@ -38072,17 +39450,17 @@ pname = "narrow-indirect"; version = "20151231.1739"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/narrow-indirect.el"; + url = "https://www.emacswiki.org/emacs/download/narrow-indirect.el"; sha256 = "1lyszm94pd3jxs73v7k0aaazm0sd2rpz2pphcdag7lk7k6vppd9n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/narrow-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/narrow-indirect"; sha256 = "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj"; name = "narrow-indirect"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/narrow-indirect"; + homepage = "https://melpa.org/#/narrow-indirect"; license = lib.licenses.free; }; }) {}; @@ -38097,13 +39475,13 @@ sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/narrow-reindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/narrow-reindent"; sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0"; name = "narrow-reindent"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/narrow-reindent"; + homepage = "https://melpa.org/#/narrow-reindent"; license = lib.licenses.free; }; }) {}; @@ -38118,13 +39496,13 @@ sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/narrowed-page-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/narrowed-page-navigation"; sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7"; name = "narrowed-page-navigation"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/narrowed-page-navigation"; + homepage = "https://melpa.org/#/narrowed-page-navigation"; license = lib.licenses.free; }; }) {}; @@ -38139,32 +39517,34 @@ sha256 = "19v1qp4rzqvyzrk5zaxdjhki8cjl4fg6lr4ai3vi06yf62ds9mcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nasm-mode"; sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17"; name = "nasm-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/nasm-mode"; + homepage = "https://melpa.org/#/nasm-mode"; license = lib.licenses.free; }; }) {}; - nav = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { + nav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "nav"; version = "20120507.207"; - src = fetchhg { - url = "https://code.google.com/p/emacs-nav/"; - rev = "d7f54ce8536e"; + src = fetchFromGitHub { + owner = "ijt"; + repo = "emacs-nav"; + rev = "c5eb234c063f435dbdcd1f8bdc46cfc68c973ebe"; sha256 = "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nav"; - sha256 = "036lf6iirxamlqzq3w6m0hji36l480yx5c9wnwypms85hi8hq0vl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nav"; + sha256 = "0ly1fk4ak1p8gkz3qmmxyslcjgicnfm8bpqqgndvwcznp8pvpjml"; name = "nav"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nav"; + homepage = "https://melpa.org/#/nav"; license = lib.licenses.free; }; }) {}; @@ -38179,34 +39559,34 @@ sha256 = "07wjicbvzg7cz983hv0p2qw1qlln07djigkmbqfpwvg3fk50fdyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nav-flash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nav-flash"; sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3"; name = "nav-flash"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nav-flash"; + homepage = "https://melpa.org/#/nav-flash"; license = lib.licenses.free; }; }) {}; navi-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, outorg, outshine }: melpaBuild { pname = "navi-mode"; - version = "20151203.957"; + version = "20160327.334"; src = fetchFromGitHub { owner = "tj64"; repo = "navi"; - rev = "78c0c227d06254d1aec9d8a1301b9a5a785b8b31"; - sha256 = "1yywbfa0syhb8zmn2qjjw2hxy7vz9ky3xd7kv3nz3gd2x989nb9a"; + rev = "a6b824ab2591e89e47f7399987f4fb3fa5d9306b"; + sha256 = "0vmrh8y8q7zch48iz9lk4n0b3s1b8zp3wki3906s709b5ajfvk7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/navi-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/navi-mode"; sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi"; name = "navi-mode"; }; packageRequires = [ outorg outshine ]; meta = { - homepage = "http://melpa.org/#/navi-mode"; + homepage = "https://melpa.org/#/navi-mode"; license = lib.licenses.free; }; }) {}; @@ -38221,13 +39601,13 @@ sha256 = "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/navi2ch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/navi2ch"; sha256 = "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3"; name = "navi2ch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/navi2ch"; + homepage = "https://melpa.org/#/navi2ch"; license = lib.licenses.free; }; }) {}; @@ -38242,13 +39622,13 @@ sha256 = "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/navorski"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/navorski"; sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7"; name = "navorski"; }; packageRequires = [ dash multi-term s ]; meta = { - homepage = "http://melpa.org/#/navorski"; + homepage = "https://melpa.org/#/navorski"; license = lib.licenses.free; }; }) {}; @@ -38263,13 +39643,13 @@ sha256 = "0gbv5fv401z58ycbqlivqamf5kp3x6krhi36q7q0m4gvy448xz0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ncl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ncl-mode"; sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9"; name = "ncl-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ncl-mode"; + homepage = "https://melpa.org/#/ncl-mode"; license = lib.licenses.free; }; }) {}; @@ -38284,13 +39664,13 @@ sha256 = "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nclip"; sha256 = "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw"; name = "nclip"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nclip"; + homepage = "https://melpa.org/#/nclip"; license = lib.licenses.free; }; }) {}; @@ -38301,38 +39681,38 @@ src = fetchFromGitHub { owner = "rsdn"; repo = "nemerle"; - rev = "0be91a256921594bb81c76d813cd41a2a3a78ce7"; - sha256 = "15akpl5b3k37hsiw364hn38901gplai6sjc1j563w8ygnfans6vn"; + rev = "a3000868469dacc44893207e8eec3c836e78b9ea"; + sha256 = "0xij6gqa6xmjz041vmi4k1xfp7bsp51vk4x6mdy4rv7556sznrrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/nemerle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nemerle"; sha256 = "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6"; name = "nemerle"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nemerle"; + homepage = "https://melpa.org/#/nemerle"; license = lib.licenses.free; }; }) {}; neotree = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "neotree"; - version = "20160214.732"; + version = "20160306.930"; src = fetchFromGitHub { owner = "jaypei"; repo = "emacs-neotree"; - rev = "c61f21aeb7ec42af4f3687d6f670a1363bea4df9"; - sha256 = "1v3ifr3ndkyxkfyg1n6yknb74313pv96yfq93k80ncxyj40ci5jl"; + rev = "543b75943b573d9c8b3a22476bdabb331306fd68"; + sha256 = "1sf8yw1vg01r4969jk1x1k4nad4q7bf1fd8vnranxvhz9md34262"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/neotree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/neotree"; sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06"; name = "neotree"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/neotree"; + homepage = "https://melpa.org/#/neotree"; license = lib.licenses.free; }; }) {}; @@ -38347,13 +39727,13 @@ sha256 = "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/netherlands-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/netherlands-holidays"; sha256 = "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf"; name = "netherlands-holidays"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/netherlands-holidays"; + homepage = "https://melpa.org/#/netherlands-holidays"; license = lib.licenses.free; }; }) {}; @@ -38368,34 +39748,34 @@ sha256 = "0p00mmid04pfsna4ify3cy0b9lx431q1r5h772hihsg4f1rs2ppy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/never-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/never-comment"; sha256 = "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s"; name = "never-comment"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/never-comment"; + homepage = "https://melpa.org/#/never-comment"; license = lib.licenses.free; }; }) {}; newlisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "newlisp-mode"; - version = "20150120.1240"; + version = "20160226.945"; src = fetchFromGitHub { owner = "kosh04"; repo = "newlisp-mode"; - rev = "7f44e7c763bd16481e78bced5ff310b8113883e5"; - sha256 = "05jwaj7wlrdpmylawv14ypwpg9qz9pqqqd1nvb94b9gbs79j86z5"; + rev = "ac23be40c81a360988ab803d365f1510733f6db4"; + sha256 = "1zzsfyqwj1k4zh30gl491ipavr9pp9djwjq3zz2q3xh7jys68w8r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/newlisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/newlisp-mode"; sha256 = "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd"; name = "newlisp-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/newlisp-mode"; + homepage = "https://melpa.org/#/newlisp-mode"; license = lib.licenses.free; }; }) {}; @@ -38410,13 +39790,13 @@ sha256 = "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nexus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nexus"; sha256 = "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd"; name = "nexus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nexus"; + homepage = "https://melpa.org/#/nexus"; license = lib.licenses.free; }; }) {}; @@ -38431,13 +39811,34 @@ sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nginx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nginx-mode"; sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c"; name = "nginx-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nginx-mode"; + homepage = "https://melpa.org/#/nginx-mode"; + license = lib.licenses.free; + }; + }) {}; + niceify-info = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "niceify-info"; + version = "20160416.744"; + src = fetchFromGitHub { + owner = "aaron-em"; + repo = "niceify-info.el"; + rev = "38df5062bc3b99d1074cab3e788b5ed66732111c"; + sha256 = "0hgrf628ris94pmvmgibkq6zmwrqkv9q70c5a2gsbdpqmfikj8m1"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/niceify-info"; + sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl"; + name = "niceify-info"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/niceify-info"; license = lib.licenses.free; }; }) {}; @@ -38452,34 +39853,34 @@ sha256 = "147vw3qlsply5h8cjmjzqr5dv9jzf9xlmhjnmcpyb1r7krh1l8xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/niflheim-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/niflheim-theme"; sha256 = "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36"; name = "niflheim-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/niflheim-theme"; + homepage = "https://melpa.org/#/niflheim-theme"; license = lib.licenses.free; }; }) {}; - nim-mode = callPackage ({ commenter, emacs, epc, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: + nim-mode = callPackage ({ commenter, company, emacs, epc, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }: melpaBuild { pname = "nim-mode"; - version = "20160219.924"; + version = "20160418.218"; src = fetchFromGitHub { owner = "nim-lang"; repo = "nim-mode"; - rev = "b75968ee3191861110d0e5a6bedca5d698e6fd44"; - sha256 = "0hag9mzy9h4nnbqggzwfn2p31m5p7vx0qqfgpm0z9qbbxcf49w00"; + rev = "78eb58a3d8d857ba41dbfe7afd745b5c6e612a55"; + sha256 = "0dmh04kss6krp2nz6i43k2ii7glpwgcw12n5mvd1k20bhp1dybm1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nim-mode"; sha256 = "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6"; name = "nim-mode"; }; - packageRequires = [ commenter emacs epc let-alist ]; + packageRequires = [ commenter company emacs epc flycheck let-alist ]; meta = { - homepage = "http://melpa.org/#/nim-mode"; + homepage = "https://melpa.org/#/nim-mode"; license = lib.licenses.free; }; }) {}; @@ -38490,17 +39891,17 @@ src = fetchFromGitHub { owner = "martine"; repo = "ninja"; - rev = "d1763746b65cc7349d4ed9478befdb651aa24589"; - sha256 = "0n64966sb8lyy4gcasmnmsjni7viabwrq1f2gwbvlbcq7mrpqvnj"; + rev = "aa79fbe25f55e4eeac384d322df8a44bbeb4fe23"; + sha256 = "0yfm81355mz4m9xjlvxfjp60s9iibcd6268s3nqi54kgxn3m82m6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ninja-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ninja-mode"; sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik"; name = "ninja-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ninja-mode"; + homepage = "https://melpa.org/#/ninja-mode"; license = lib.licenses.free; }; }) {}; @@ -38511,38 +39912,38 @@ src = fetchFromGitHub { owner = "NixOS"; repo = "nix"; - rev = "4f011bccf87a494586039a773548be94d6365467"; - sha256 = "1bly30ds9kbpq877fdqnfmpb9grdycllzx6wy4bcxy3258m7pq3d"; + rev = "c879a20850f2035cd87b1693da26cadf30affe11"; + sha256 = "03rk3g52d6kkn5i6g4vx8fl169jcrww66dyzs3ajdcgf8j3hnk2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nix-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nix-mode"; sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s"; name = "nix-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nix-mode"; + homepage = "https://melpa.org/#/nix-mode"; license = lib.licenses.free; }; }) {}; nix-sandbox = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "nix-sandbox"; - version = "20160214.418"; + version = "20160223.753"; src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; - rev = "63061d379460c53abbe88ec695a61e22feae438f"; - sha256 = "100vjppa6nipn227v871nkmjmqln2l1lv1v8in1lcjhsz4rxrhs9"; + rev = "9e84e7f93307b72a1c0decfc2eff9d4943631de3"; + sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nix-sandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nix-sandbox"; sha256 = "13zr0jbc6if2wvyiplay2gkd5548imfm38x1qy1dw6m2vhbzwp0k"; name = "nix-sandbox"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/nix-sandbox"; + homepage = "https://melpa.org/#/nix-sandbox"; license = lib.licenses.free; }; }) {}; @@ -38553,17 +39954,17 @@ src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; - rev = "63061d379460c53abbe88ec695a61e22feae438f"; - sha256 = "100vjppa6nipn227v871nkmjmqln2l1lv1v8in1lcjhsz4rxrhs9"; + rev = "9e84e7f93307b72a1c0decfc2eff9d4943631de3"; + sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nixos-options"; sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm"; name = "nixos-options"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/nixos-options"; + homepage = "https://melpa.org/#/nixos-options"; license = lib.licenses.free; }; }) {}; @@ -38578,13 +39979,13 @@ sha256 = "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nm"; sha256 = "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw"; name = "nm"; }; packageRequires = [ company emacs notmuch peg ]; meta = { - homepage = "http://melpa.org/#/nm"; + homepage = "https://melpa.org/#/nm"; license = lib.licenses.free; }; }) {}; @@ -38599,13 +40000,13 @@ sha256 = "0gzxcq0gki89dz9ad26683zhq1nif3wdz185cdplwy68z9szbdx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nnir-est"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nnir-est"; sha256 = "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv"; name = "nnir-est"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nnir-est"; + homepage = "https://melpa.org/#/nnir-est"; license = lib.licenses.free; }; }) {}; @@ -38620,13 +40021,13 @@ sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/noccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/noccur"; sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g"; name = "noccur"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/noccur"; + homepage = "https://melpa.org/#/noccur"; license = lib.licenses.free; }; }) {}; @@ -38641,13 +40042,13 @@ sha256 = "1a1pp3sd5g4wkhywb5jfchcdpjsjb0iyhk2sxvd0gpc4kk4zh6xs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/noctilux-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/noctilux-theme"; sha256 = "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp"; name = "noctilux-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/noctilux-theme"; + homepage = "https://melpa.org/#/noctilux-theme"; license = lib.licenses.free; }; }) {}; @@ -38662,13 +40063,13 @@ sha256 = "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/node-resolver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/node-resolver"; sha256 = "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh"; name = "node-resolver"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/node-resolver"; + homepage = "https://melpa.org/#/node-resolver"; license = lib.licenses.free; }; }) {}; @@ -38683,13 +40084,13 @@ sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nodejs-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nodejs-repl"; sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907"; name = "nodejs-repl"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nodejs-repl"; + homepage = "https://melpa.org/#/nodejs-repl"; license = lib.licenses.free; }; }) {}; @@ -38704,13 +40105,13 @@ sha256 = "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/noflet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/noflet"; sha256 = "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3"; name = "noflet"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/noflet"; + homepage = "https://melpa.org/#/noflet"; license = lib.licenses.free; }; }) {}; @@ -38723,32 +40124,32 @@ sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nose"; sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk"; name = "nose"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nose"; + homepage = "https://melpa.org/#/nose"; license = lib.licenses.free; }; }) {}; notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "notmuch"; - version = "20160220.652"; + version = "20160416.740"; src = fetchgit { url = "git://git.notmuchmail.org/git/notmuch"; - rev = "c689d1ff13ed48507230ca7035021ce42d3dcd64"; - sha256 = "077a58f04748f71f99da39c3609497a16dbfccf93b8ce70470eda0239d7f832b"; + rev = "1819d03c2744246ad4158c616969d4a911a988d6"; + sha256 = "07x3lg3hjsnb5wnlsikynabsrv2yqrys8xrhjjwiy265zhz3b0kc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/notmuch"; - sha256 = "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/notmuch"; + sha256 = "173d1gf5rd4nbjwg91486ibg54n3qlpwgyvkcy4d30jm4vqwqrqv"; name = "notmuch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/notmuch"; + homepage = "https://melpa.org/#/notmuch"; license = lib.licenses.free; }; }) {}; @@ -38763,13 +40164,13 @@ sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/notmuch-labeler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/notmuch-labeler"; sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0"; name = "notmuch-labeler"; }; packageRequires = [ notmuch ]; meta = { - homepage = "http://melpa.org/#/notmuch-labeler"; + homepage = "https://melpa.org/#/notmuch-labeler"; license = lib.licenses.free; }; }) {}; @@ -38777,17 +40178,17 @@ pname = "novice-plus"; version = "20151231.1740"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/novice+.el"; + url = "https://www.emacswiki.org/emacs/download/novice+.el"; sha256 = "0mmdf3z9299hbs3wr8hqgpmg74sb2xm0rxyh38sjcqmk8f310rqh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/novice+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/novice+"; sha256 = "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf"; name = "novice-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/novice+"; + homepage = "https://melpa.org/#/novice+"; license = lib.licenses.free; }; }) {}; @@ -38802,13 +40203,13 @@ sha256 = "0jahr1380919p272srym1pp16ifdz69fn1m45ppglm54q4a741d8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/noxml-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/noxml-fold"; sha256 = "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc"; name = "noxml-fold"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/noxml-fold"; + homepage = "https://melpa.org/#/noxml-fold"; license = lib.licenses.free; }; }) {}; @@ -38823,13 +40224,13 @@ sha256 = "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nrepl-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nrepl-eval-sexp-fu"; sha256 = "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j"; name = "nrepl-eval-sexp-fu"; }; packageRequires = [ highlight smartparens thingatpt ]; meta = { - homepage = "http://melpa.org/#/nrepl-eval-sexp-fu"; + homepage = "https://melpa.org/#/nrepl-eval-sexp-fu"; license = lib.licenses.free; }; }) {}; @@ -38844,13 +40245,13 @@ sha256 = "1129r3rzmfbl8nxjz71xnlyaszhhldawj467zbl36brdadp014n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nrepl-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nrepl-sync"; sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd"; name = "nrepl-sync"; }; packageRequires = [ cider ]; meta = { - homepage = "http://melpa.org/#/nrepl-sync"; + homepage = "https://melpa.org/#/nrepl-sync"; license = lib.licenses.free; }; }) {}; @@ -38865,13 +40266,13 @@ sha256 = "1w80mbwlvmpd5ff7vy84z61b27klzh9z4wa6m2g7cy674fw4r1xp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nsis-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nsis-mode"; sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l"; name = "nsis-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nsis-mode"; + homepage = "https://melpa.org/#/nsis-mode"; license = lib.licenses.free; }; }) {}; @@ -38886,13 +40287,13 @@ sha256 = "0nbmpnljl0wdkwmxzg6lqd3mand9w043qmwp727hb84gxy0j4dib"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nu-mode"; - sha256 = "0h5jaw577vgm3hfiwc2c0k1wn8zda8ps06vj6mqj952m8bqhf4i7"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nu-mode"; + sha256 = "0nzv3p62k8yyyww6idlxyi94q4d07nis7ydypar8d01jfqlrybkn"; name = "nu-mode"; }; packageRequires = [ helm undo-tree ]; meta = { - homepage = "http://melpa.org/#/nu-mode"; + homepage = "https://melpa.org/#/nu-mode"; license = lib.licenses.free; }; }) {}; @@ -38907,13 +40308,13 @@ sha256 = "045m83rdqryjpqh6y9s6x0yf9fw9xrwmxbm4qgg8ka164x9szv0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/number"; sha256 = "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf"; name = "number"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/number"; + homepage = "https://melpa.org/#/number"; license = lib.licenses.free; }; }) {}; @@ -38928,13 +40329,13 @@ sha256 = "1i0yymsx8kin28bkrgwkk9ngsmjh0gh5j4hb0k03bq4fy799f2xx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nummm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nummm-mode"; sha256 = "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0"; name = "nummm-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nummm-mode"; + homepage = "https://melpa.org/#/nummm-mode"; license = lib.licenses.free; }; }) {}; @@ -38949,34 +40350,34 @@ sha256 = "0prag0ks511ifa5mdpqmizp5n8190dxp4vdr81ld9w9xv7migpd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nvm"; sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34"; name = "nvm"; }; packageRequires = [ dash dash-functional f s ]; meta = { - homepage = "http://melpa.org/#/nvm"; + homepage = "https://melpa.org/#/nvm"; license = lib.licenses.free; }; }) {}; nyan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nyan-mode"; - version = "20151018.35"; + version = "20160425.1937"; src = fetchFromGitHub { owner = "TeMPOraL"; repo = "nyan-mode"; - rev = "eb940664cbca6165644d97989f402c8c5bd0e384"; - sha256 = "1v8ndr8hdbqhd7nca8882g05y36pigv6lj7hpxl50lr1lvp1kmmf"; + rev = "95034cefb34df3b11a547e75a4b85c423502341d"; + sha256 = "1gxwss5rr4j6pv74fadmvnhdzlhk839am15cr9bj4qm47vrr98jl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nyan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nyan-mode"; sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv"; name = "nyan-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nyan-mode"; + homepage = "https://melpa.org/#/nyan-mode"; license = lib.licenses.free; }; }) {}; @@ -38991,13 +40392,13 @@ sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nyan-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nyan-prompt"; sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb"; name = "nyan-prompt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nyan-prompt"; + homepage = "https://melpa.org/#/nyan-prompt"; license = lib.licenses.free; }; }) {}; @@ -39012,13 +40413,13 @@ sha256 = "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/o-blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/o-blog"; sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja"; name = "o-blog"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/o-blog"; + homepage = "https://melpa.org/#/o-blog"; license = lib.licenses.free; }; }) {}; @@ -39033,33 +40434,33 @@ sha256 = "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/oauth"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/oauth"; sha256 = "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz"; name = "oauth"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/oauth"; + homepage = "https://melpa.org/#/oauth"; license = lib.licenses.free; }; }) {}; ob-axiom = callPackage ({ axiom-environment, emacs, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-axiom"; - version = "20150804.1700"; + version = "20160310.1553"; src = fetchhg { url = "https://bitbucket.com/pdo/axiom-environment"; - rev = "f7b3a13f54ea"; - sha256 = "1qq0b92mf73fnx2viwzlsxr6672wkskf0vjimymyhv9aq3gw165w"; + rev = "bc294e47f51c"; + sha256 = "0z15n7cpprbhiamq26240g5bqsiw5mgyzdisi7j6hpybyk2zyl9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-axiom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-axiom"; sha256 = "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6"; name = "ob-axiom"; }; packageRequires = [ axiom-environment emacs ]; meta = { - homepage = "http://melpa.org/#/ob-axiom"; + homepage = "https://melpa.org/#/ob-axiom"; license = lib.licenses.free; }; }) {}; @@ -39074,13 +40475,34 @@ sha256 = "1nzli8wk3nd05j2z2fw511857qbawirhg8mfw21wqclkz8zqn813"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-browser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-browser"; sha256 = "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm"; name = "ob-browser"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ob-browser"; + homepage = "https://melpa.org/#/ob-browser"; + license = lib.licenses.free; + }; + }) {}; + ob-coffee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: + melpaBuild { + pname = "ob-coffee"; + version = "20160415.2236"; + src = fetchFromGitHub { + owner = "zweifisch"; + repo = "ob-coffee"; + rev = "dbfa5827df91ed1cdc5b0f3247da6b93fa632507"; + sha256 = "01l8zvnfpc1vihnpqj75xlvjkk2hkvxpb1872jdzv2k1na2ajfxm"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-coffee"; + sha256 = "16k8r9rqz4mayxl85pjdfsrz43k2hwcf8k7aff8wnic0ldzp6ivf"; + name = "ob-coffee"; + }; + packageRequires = [ org ]; + meta = { + homepage = "https://melpa.org/#/ob-coffee"; license = lib.licenses.free; }; }) {}; @@ -39095,13 +40517,34 @@ sha256 = "1xbczyqfqdig5w6jvx2kg57mk16sbiz5ysv445v83wqk0sz6nc9n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-cypher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-cypher"; sha256 = "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3"; name = "ob-cypher"; }; packageRequires = [ cypher-mode dash dash-functional s ]; meta = { - homepage = "http://melpa.org/#/ob-cypher"; + homepage = "https://melpa.org/#/ob-cypher"; + license = lib.licenses.free; + }; + }) {}; + ob-diagrams = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ob-diagrams"; + version = "20160407.737"; + src = fetchFromGitHub { + owner = "bergey"; + repo = "org-babel-diagrams"; + rev = "ed6649616325ca5b2d2109f74aded8bcb8aa5186"; + sha256 = "0kx95lvkvg6h6lhs9knlp8rwi05y8y0i8w8vs7mwm378syls0qk0"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-diagrams"; + sha256 = "1r1p9l61az1jb5m4k2dwnkp9j8xlcb588gq4mcg796vnbdscfcy2"; + name = "ob-diagrams"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/ob-diagrams"; license = lib.licenses.free; }; }) {}; @@ -39116,76 +40559,76 @@ sha256 = "0qknm1h2ijnzs1km51hqwpnv5083m9ngi3nbxd90r7d6vva5fhhk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-elixir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-elixir"; sha256 = "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi"; name = "ob-elixir"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ob-elixir"; + homepage = "https://melpa.org/#/ob-elixir"; license = lib.licenses.free; }; }) {}; - ob-go = callPackage ({ fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: + ob-go = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-go"; - version = "20151211.1801"; + version = "20160318.1452"; src = fetchFromGitHub { owner = "pope"; repo = "ob-go"; - rev = "70684286f7344eaa30c47a680a81b74b0d11ea36"; - sha256 = "0iwyldw8pfy88hvzrqmh9fbx8zj092ycl9wjf9ddji2zxnm44499"; + rev = "b1f32f888cda6c7e9601ff74d08e653a1c03868c"; + sha256 = "1pa7zclci87rd4fx731z37pdbdjabmknbr0xmdk1g92g0hjhk2rb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-go"; sha256 = "09d8jrzijf8gr08615rdmf366zgip43dxvyihy0yzhk7j0p3iahj"; name = "ob-go"; }; - packageRequires = [ go-mode ]; + packageRequires = []; meta = { - homepage = "http://melpa.org/#/ob-go"; + homepage = "https://melpa.org/#/ob-go"; license = lib.licenses.free; }; }) {}; ob-http = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ob-http"; - version = "20160210.458"; + version = "20160415.2332"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-http"; - rev = "e10b35accd4c758d781ab9f6e00b7b792dccf380"; - sha256 = "0bqr6yl1hpykpykjpfb247xnpnz510zrg9yv7nkxlrig4pjgdcx1"; + rev = "358dded7372a250b316b5e4690933231dc0fcde2"; + sha256 = "00mnpnlsd774z87ziqmaq9h4rbxmf197cm2kk4v6s15rs3np617m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-http"; sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss"; name = "ob-http"; }; packageRequires = [ cl-lib s ]; meta = { - homepage = "http://melpa.org/#/ob-http"; + homepage = "https://melpa.org/#/ob-http"; license = lib.licenses.free; }; }) {}; ob-ipython = callPackage ({ dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ob-ipython"; - version = "20151010.507"; + version = "20160424.1505"; src = fetchFromGitHub { owner = "gregsexton"; repo = "ob-ipython"; - rev = "15011a8e1694d09a74094c5361a588bf586458f6"; - sha256 = "0r5p2gr7ri4w79lmhil4fgh6g8cmxs1qp8glkbvycvlaxwrzszhs"; + rev = "a12ad0c137c3b935080d1cecb4953252cbcb8da4"; + sha256 = "071ma803l6ixg12brbc8p2bxnvl2skmr8r913pz07qh0n8k83zqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-ipython"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-ipython"; sha256 = "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186"; name = "ob-ipython"; }; packageRequires = [ dash dash-functional emacs f s ]; meta = { - homepage = "http://melpa.org/#/ob-ipython"; + homepage = "https://melpa.org/#/ob-ipython"; license = lib.licenses.free; }; }) {}; @@ -39200,13 +40643,13 @@ sha256 = "01cjwg27m0iqndkwwl0v5w8vvk270xvi81za3y5hyrmb7dq6bfy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-kotlin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-kotlin"; sha256 = "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx"; name = "ob-kotlin"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ob-kotlin"; + homepage = "https://melpa.org/#/ob-kotlin"; license = lib.licenses.free; }; }) {}; @@ -39221,13 +40664,34 @@ sha256 = "1mk7qcf4svf4yk4mimcyhbw5imq3zps2vh2zzq9gwjcn17jnplhn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-lfe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-lfe"; sha256 = "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8"; name = "ob-lfe"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ob-lfe"; + homepage = "https://melpa.org/#/ob-lfe"; + license = lib.licenses.free; + }; + }) {}; + ob-lua = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: + melpaBuild { + pname = "ob-lua"; + version = "20160411.2224"; + src = fetchFromGitHub { + owner = "stardiviner"; + repo = "ob-lua"; + rev = "1b5fd9bf529c50f8121afae0472e057daa5e95f9"; + sha256 = "11cdf5nfmn5cc1i4kqxq0hks8d19sf5rwavpfmz39xysbnr65s68"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-lua"; + sha256 = "13ailb285bs9sm9qmjrpq0wjk7sp3w019p94pzrwmzqf52y1dapg"; + name = "ob-lua"; + }; + packageRequires = [ org ]; + meta = { + homepage = "https://melpa.org/#/ob-lua"; license = lib.licenses.free; }; }) {}; @@ -39242,13 +40706,13 @@ sha256 = "0qibnn908a59jyfslsnpjanbm85f8xw9zywsqsh37nv27ncbx0hr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-mongo"; sha256 = "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907"; name = "ob-mongo"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ob-mongo"; + homepage = "https://melpa.org/#/ob-mongo"; license = lib.licenses.free; }; }) {}; @@ -39263,34 +40727,76 @@ sha256 = "14scbds1rlmii52i0zr3s0r1wmga7qysj63c2dpinhagxa36d51n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-prolog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-prolog"; sha256 = "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s"; name = "ob-prolog"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ob-prolog"; + homepage = "https://melpa.org/#/ob-prolog"; + license = lib.licenses.free; + }; + }) {}; + ob-redis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: + melpaBuild { + pname = "ob-redis"; + version = "20160411.2213"; + src = fetchFromGitHub { + owner = "stardiviner"; + repo = "ob-redis"; + rev = "244a21569499a3d8cb39f651fbf00ce26accf983"; + sha256 = "1f8qz5bwz5yd3clvjc0zw3yf9m9fh5vn2gil69ay1a2n00qwkq78"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-redis"; + sha256 = "1xsz4cc8cqx03ckpcwi7dc3l6v4c5mdbby37a9i0n5q6wd4r92mm"; + name = "ob-redis"; + }; + packageRequires = [ org ]; + meta = { + homepage = "https://melpa.org/#/ob-redis"; license = lib.licenses.free; }; }) {}; ob-restclient = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, restclient }: melpaBuild { pname = "ob-restclient"; - version = "20160201.656"; + version = "20160324.105"; src = fetchFromGitHub { owner = "alf"; repo = "ob-restclient.el"; - rev = "c2686286b7d17fc8c059c7a5b301142718fdf2de"; - sha256 = "18b5k02mnswsv6jijvh9kb5ps5r0imkvr9r3r3x8fkyjh3k4f5il"; + rev = "08b82b9ea668631968ae4fb531fd74494630f840"; + sha256 = "09zxf158sspwv7j0kjjxzlymxi9ax7xpk5d5fry2jljskgn17csv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-restclient"; sha256 = "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk"; name = "ob-restclient"; }; packageRequires = [ restclient ]; meta = { - homepage = "http://melpa.org/#/ob-restclient"; + homepage = "https://melpa.org/#/ob-restclient"; + license = lib.licenses.free; + }; + }) {}; + ob-sagemath = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, sage-shell-mode }: + melpaBuild { + pname = "ob-sagemath"; + version = "20160414.852"; + src = fetchFromGitHub { + owner = "stakemori"; + repo = "ob-sagemath"; + rev = "fec3fbabaef5f5d679ef1ccbbc39958a4d01b839"; + sha256 = "0hapjgzbd4s5jif8jdm9svl58h6a504gxc8jq57sibfcbwkjbfk4"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-sagemath"; + sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7"; + name = "ob-sagemath"; + }; + packageRequires = [ emacs s sage-shell-mode ]; + meta = { + homepage = "https://melpa.org/#/ob-sagemath"; license = lib.licenses.free; }; }) {}; @@ -39305,13 +40811,13 @@ sha256 = "1ax78ggmzz4lmaw62j0cm8l0n60nyhp6c8f02mdszvv6vnpvyncm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-scala"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-scala"; sha256 = "1cjbdfxkj5rk164wrad7r470xynfjjaa1aj130zbw9zmn36m6lza"; name = "ob-scala"; }; packageRequires = [ ensime ]; meta = { - homepage = "http://melpa.org/#/ob-scala"; + homepage = "https://melpa.org/#/ob-scala"; license = lib.licenses.free; }; }) {}; @@ -39326,34 +40832,34 @@ sha256 = "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-sml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-sml"; sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn"; name = "ob-sml"; }; packageRequires = [ sml-mode ]; meta = { - homepage = "http://melpa.org/#/ob-sml"; + homepage = "https://melpa.org/#/ob-sml"; license = lib.licenses.free; }; }) {}; ob-translate = callPackage ({ fetchFromGitHub, fetchurl, google-translate, lib, melpaBuild, org }: melpaBuild { pname = "ob-translate"; - version = "20130718.929"; + version = "20160411.324"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "ob-translate"; - rev = "c068f8710ec3019a345b7dc5a5433bee23c87afb"; - sha256 = "1yaqs6zcx8228pwzsm19h6272bw9lhib6xz5xzzq8x8n54l81225"; + rev = "bba3bd1e2dbb5c672543129460c2713f78b26120"; + sha256 = "086z3smcfn5g599967vmxj3akppyqk9d64acm8zzj76zj29xfk1k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-translate"; sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz"; name = "ob-translate"; }; packageRequires = [ google-translate org ]; meta = { - homepage = "http://melpa.org/#/ob-translate"; + homepage = "https://melpa.org/#/ob-translate"; license = lib.licenses.free; }; }) {}; @@ -39368,13 +40874,13 @@ sha256 = "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-typescript"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-typescript"; sha256 = "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p"; name = "ob-typescript"; }; packageRequires = [ emacs org ]; meta = { - homepage = "http://melpa.org/#/ob-typescript"; + homepage = "https://melpa.org/#/ob-typescript"; license = lib.licenses.free; }; }) {}; @@ -39389,13 +40895,13 @@ sha256 = "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/oberon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/oberon"; sha256 = "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv"; name = "oberon"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/oberon"; + homepage = "https://melpa.org/#/oberon"; license = lib.licenses.free; }; }) {}; @@ -39410,13 +40916,13 @@ sha256 = "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/objc-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/objc-font-lock"; sha256 = "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6"; name = "objc-font-lock"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/objc-font-lock"; + homepage = "https://melpa.org/#/objc-font-lock"; license = lib.licenses.free; }; }) {}; @@ -39431,13 +40937,13 @@ sha256 = "00v21iw9wwxap8jhg9035cp47fm5v2djmldq6nprv860m01xlwh1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/obsidian-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/obsidian-theme"; sha256 = "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr"; name = "obsidian-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/obsidian-theme"; + homepage = "https://melpa.org/#/obsidian-theme"; license = lib.licenses.free; }; }) {}; @@ -39452,13 +40958,13 @@ sha256 = "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/occidental-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/occidental-theme"; sha256 = "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b"; name = "occidental-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/occidental-theme"; + homepage = "https://melpa.org/#/occidental-theme"; license = lib.licenses.free; }; }) {}; @@ -39473,13 +40979,13 @@ sha256 = "1v1c2481v2xgnw8kgbbqhqkdd41lzvki9hm3iypbf3n0jxz8nnzy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/occur-context-resize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/occur-context-resize"; sha256 = "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri"; name = "occur-context-resize"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/occur-context-resize"; + homepage = "https://melpa.org/#/occur-context-resize"; license = lib.licenses.free; }; }) {}; @@ -39494,13 +41000,13 @@ sha256 = "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/occur-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/occur-x"; sha256 = "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g"; name = "occur-x"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/occur-x"; + homepage = "https://melpa.org/#/occur-x"; license = lib.licenses.free; }; }) {}; @@ -39515,13 +41021,13 @@ sha256 = "155gmls6cz3zf4lcj89kzb96y7k0glx0f659jg5z0skgxq79hf48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ocodo-svg-modelines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ocodo-svg-modelines"; sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay"; name = "ocodo-svg-modelines"; }; packageRequires = [ svg-mode-line-themes ]; meta = { - homepage = "http://melpa.org/#/ocodo-svg-modelines"; + homepage = "https://melpa.org/#/ocodo-svg-modelines"; license = lib.licenses.free; }; }) {}; @@ -39536,13 +41042,13 @@ sha256 = "00fm6xg3q7d0vrx5wdg9badv587g4v9k3szwj00wscn9jb0bjhd3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ocp-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ocp-indent"; sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw"; name = "ocp-indent"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ocp-indent"; + homepage = "https://melpa.org/#/ocp-indent"; license = lib.licenses.free; }; }) {}; @@ -39557,13 +41063,13 @@ sha256 = "0dp7dhmgrq078rjhpm1cr993qjqz7qgy2z4sn73qw6j55va7d9kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/octicons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/octicons"; sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk"; name = "octicons"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/octicons"; + homepage = "https://melpa.org/#/octicons"; license = lib.licenses.free; }; }) {}; @@ -39578,13 +41084,13 @@ sha256 = "0p9ph62vnw1r9dbvrjyw356a9bjnzh0hglssi97dr0qd6cs8whf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/octopress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/octopress"; sha256 = "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0"; name = "octopress"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/octopress"; + homepage = "https://melpa.org/#/octopress"; license = lib.licenses.free; }; }) {}; @@ -39599,13 +41105,13 @@ sha256 = "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/offlineimap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/offlineimap"; sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b"; name = "offlineimap"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/offlineimap"; + homepage = "https://melpa.org/#/offlineimap"; license = lib.licenses.free; }; }) {}; @@ -39620,34 +41126,34 @@ sha256 = "0y9fxrsxp1158fyjp4f69r7g2s7b6nbxlsmsb8clwqc8pmmg2z82"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/oldlace-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/oldlace-theme"; sha256 = "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8"; name = "oldlace-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/oldlace-theme"; + homepage = "https://melpa.org/#/oldlace-theme"; license = lib.licenses.free; }; }) {}; olivetti = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "olivetti"; - version = "20160105.555"; + version = "20160412.2322"; src = fetchFromGitHub { owner = "rnkn"; repo = "olivetti"; - rev = "ef3d85e65d46370702e04359cc22068678336d0c"; - sha256 = "1mh4dlx5j2zwv7zx8x52vl6h38jr41ly5bn6zqsncnafd1a8l7x7"; + rev = "4095b761e12352a0862e6fadbc56483e7c756f21"; + sha256 = "1hx1yv0fd64832y15c2chz9d50hqs4ap5vry4x6745vify6mchlj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/olivetti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/olivetti"; sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd"; name = "olivetti"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/olivetti"; + homepage = "https://melpa.org/#/olivetti"; license = lib.licenses.free; }; }) {}; @@ -39662,13 +41168,13 @@ sha256 = "03szb2i2xk3nq578cz1drsddsbld03ryvykdfzmfvwcmlpaknvzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/om-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/om-mode"; sha256 = "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j"; name = "om-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/om-mode"; + homepage = "https://melpa.org/#/om-mode"; license = lib.licenses.free; }; }) {}; @@ -39683,13 +41189,13 @@ sha256 = "1925mh47n4x9v780qp5l6cksl64v9mpyb87znsg93x6sxr0cvv4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-kill"; sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k"; name = "omni-kill"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/omni-kill"; + homepage = "https://melpa.org/#/omni-kill"; license = lib.licenses.free; }; }) {}; @@ -39704,13 +41210,13 @@ sha256 = "1nvgh9wvgswcs3r958b579rsx540xrhlnafc6cmcd63z6yck19w0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-log"; sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r"; name = "omni-log"; }; packageRequires = [ dash emacs ht s ]; meta = { - homepage = "http://melpa.org/#/omni-log"; + homepage = "https://melpa.org/#/omni-log"; license = lib.licenses.free; }; }) {}; @@ -39725,13 +41231,13 @@ sha256 = "1x8af8jv4n83sl4rgj0d2rpmw9g78rknm1h523f3b1a5x4kdvsz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-quotes"; sha256 = "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs"; name = "omni-quotes"; }; packageRequires = [ dash omni-log ]; meta = { - homepage = "http://melpa.org/#/omni-quotes"; + homepage = "https://melpa.org/#/omni-quotes"; license = lib.licenses.free; }; }) {}; @@ -39746,13 +41252,13 @@ sha256 = "1icdk19vwihc8mn04yxl2brql2gssn3gxd5bv7ljdd6mn5hkw500"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-scratch"; sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9"; name = "omni-scratch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/omni-scratch"; + homepage = "https://melpa.org/#/omni-scratch"; license = lib.licenses.free; }; }) {}; @@ -39767,34 +41273,34 @@ sha256 = "1lvnkdrav7h15p8d5ayhfsjynllwp4br1vqxmw0ppxnlyq7337n5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-tags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-tags"; sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl"; name = "omni-tags"; }; packageRequires = [ cl-lib pcre2el ]; meta = { - homepage = "http://melpa.org/#/omni-tags"; + homepage = "https://melpa.org/#/omni-tags"; license = lib.licenses.free; }; }) {}; omniref = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "omniref"; - version = "20151118.221"; + version = "20160225.1624"; src = fetchFromGitHub { owner = "dotemacs"; repo = "omniref.el"; - rev = "0026e0472c7071e06cfdc24be91d3f4989ba8115"; - sha256 = "1hzvpajq58py6k7z2rwwax1c7pm65m534mq8mr9g9kxn9hqiz9n8"; + rev = "cc18a41e9717bae439d66c945788e3e19b4624ad"; + sha256 = "0d6kjggi2p937ydpvw3fr2cxy5vj46dmfqbkb7a9jdhnzxadnwh5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omniref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omniref"; sha256 = "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj"; name = "omniref"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/omniref"; + homepage = "https://melpa.org/#/omniref"; license = lib.licenses.free; }; }) {}; @@ -39809,7 +41315,7 @@ sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omnisharp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omnisharp"; sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad"; name = "omnisharp"; }; @@ -39824,28 +41330,28 @@ s ]; meta = { - homepage = "http://melpa.org/#/omnisharp"; + homepage = "https://melpa.org/#/omnisharp"; license = lib.licenses.free; }; }) {}; omtose-phellack-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "omtose-phellack-theme"; - version = "20160212.547"; + version = "20160412.628"; src = fetchFromGitHub { owner = "franksn"; repo = "omtose-phellack-theme"; - rev = "33c7f6a96bf9aaf7e46939a38e821bab9466958a"; - sha256 = "0jpxnfxgc7xpbk6894hygbr5qq6wkvy866l87jrprj8klvp2c0b9"; + rev = "ebd13c54ea6f417bada5f5734c66e351ea431f03"; + sha256 = "01cssk6dxinfy1h431cx1yq5nbk0pc5j0h3iir2anzz1kfzbzilz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omtose-phellack-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omtose-phellack-theme"; sha256 = "09nyc7sdhzy4vmngzdj6r7cv2nbbwqlcyyi2mcg5a8lml4f6fj5i"; name = "omtose-phellack-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/omtose-phellack-theme"; + homepage = "https://melpa.org/#/omtose-phellack-theme"; license = lib.licenses.free; }; }) {}; @@ -39860,34 +41366,55 @@ sha256 = "1616bdvrf1bawcqgj7balbxaw26waw81gxiw7yspnvpyb009j66y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/on-parens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/on-parens"; sha256 = "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab"; name = "on-parens"; }; packageRequires = [ dash emacs evil smartparens ]; meta = { - homepage = "http://melpa.org/#/on-parens"; + homepage = "https://melpa.org/#/on-parens"; license = lib.licenses.free; }; }) {}; on-screen = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "on-screen"; - version = "20151108.2308"; + version = "20160302.350"; src = fetchFromGitHub { owner = "michael-heerdegen"; repo = "on-screen.el"; - rev = "80b00ddef6dffad7086174c2c57f29ef28b69d27"; - sha256 = "1rksk0j9b27w913bzbq7w2ws75yi66m24ic6ljdhhbrq3z2ic7dy"; + rev = "206468aa4de299ad26c2db12b757f5ad7290912f"; + sha256 = "1rrby3mbh24qd43nsb3ymcrjxh1cz6iasf1gv0a8fmivmb4f7dyz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/on-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/on-screen"; sha256 = "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb"; name = "on-screen"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/on-screen"; + homepage = "https://melpa.org/#/on-screen"; + license = lib.licenses.free; + }; + }) {}; + one-time-pad-encrypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "one-time-pad-encrypt"; + version = "20160329.1013"; + src = fetchFromGitHub { + owner = "garvinguan"; + repo = "emacs-one-time-pad"; + rev = "87cc1f124024ce3d277299ca0ac703f182937d9f"; + sha256 = "0g2hvpnmgyy1k393prv97nqwlqc58nqf71hkrmaijw0cyy9q03nz"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/one-time-pad-encrypt"; + sha256 = "0aa7qcii7yf4527nhlwwp0hbhamhyp2xg0fsscnq2m28l5d5kmn6"; + name = "one-time-pad-encrypt"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/one-time-pad-encrypt"; license = lib.licenses.free; }; }) {}; @@ -39895,17 +41422,17 @@ pname = "oneonone"; version = "20151231.1741"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/oneonone.el"; + url = "https://www.emacswiki.org/emacs/download/oneonone.el"; sha256 = "05njigqi9061d34530d76kwsdzqgk9qxnwhn9xis64w59f5nzf1h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/oneonone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/oneonone"; sha256 = "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9"; name = "oneonone"; }; packageRequires = [ hexrgb ]; meta = { - homepage = "http://melpa.org/#/oneonone"; + homepage = "https://melpa.org/#/oneonone"; license = lib.licenses.free; }; }) {}; @@ -39920,13 +41447,13 @@ sha256 = "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/opam"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/opam"; sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa"; name = "opam"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/opam"; + homepage = "https://melpa.org/#/opam"; license = lib.licenses.free; }; }) {}; @@ -39934,17 +41461,17 @@ pname = "open-junk-file"; version = "20130131.120"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/open-junk-file.el"; + url = "https://www.emacswiki.org/emacs/download/open-junk-file.el"; sha256 = "1vjmgayksdgg54b46aqmvhd7a9arjx9p3jyrjs2z9262f6r288lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/open-junk-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/open-junk-file"; sha256 = "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di"; name = "open-junk-file"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/open-junk-file"; + homepage = "https://melpa.org/#/open-junk-file"; license = lib.licenses.free; }; }) {}; @@ -39955,17 +41482,17 @@ src = fetchFromGitHub { owner = "salmanebah"; repo = "opencl-mode"; - rev = "14109a4bb56105a9c052ae49ad4c638b4cc210b2"; - sha256 = "0n64l1jrrk60g192nn0240qcv2p9r138mi9gb38qq5k65wffbc21"; + rev = "bb39190bb4fdffa188ce4e6849853a07c682b999"; + sha256 = "094r6fx1s76m8anqqg2qrddidn1dp08kmv8p8md27yy9mm49d91n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/opencl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/opencl-mode"; sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79"; name = "opencl-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/opencl-mode"; + homepage = "https://melpa.org/#/opencl-mode"; license = lib.licenses.free; }; }) {}; @@ -39980,13 +41507,13 @@ sha256 = "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/openstack-cgit-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/openstack-cgit-browse-file"; sha256 = "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl"; name = "openstack-cgit-browse-file"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/openstack-cgit-browse-file"; + homepage = "https://melpa.org/#/openstack-cgit-browse-file"; license = lib.licenses.free; }; }) {}; @@ -39999,13 +41526,13 @@ sha256 = "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/openwith"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/openwith"; sha256 = "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi"; name = "openwith"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/openwith"; + homepage = "https://melpa.org/#/openwith"; license = lib.licenses.free; }; }) {}; @@ -40020,13 +41547,13 @@ sha256 = "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/operate-on-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/operate-on-number"; sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk"; name = "operate-on-number"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/operate-on-number"; + homepage = "https://melpa.org/#/operate-on-number"; license = lib.licenses.free; }; }) {}; @@ -40041,13 +41568,13 @@ sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-ac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-ac"; sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr"; name = "org-ac"; }; packageRequires = [ auto-complete-pcmp log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/org-ac"; + homepage = "https://melpa.org/#/org-ac"; license = lib.licenses.free; }; }) {}; @@ -40062,13 +41589,13 @@ sha256 = "15xgkm5p30qfghyhkjivh5n4770794qf4pza462vb0xl5v6kffbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-agenda-property"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-agenda-property"; sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk"; name = "org-agenda-property"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/org-agenda-property"; + homepage = "https://melpa.org/#/org-agenda-property"; license = lib.licenses.free; }; }) {}; @@ -40083,13 +41610,13 @@ sha256 = "0yzvir2gmyv9k43q3sf37lc9xcmfyaj5wh825xax7305j3b2hhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-alert"; sha256 = "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152"; name = "org-alert"; }; packageRequires = [ alert dash s ]; meta = { - homepage = "http://melpa.org/#/org-alert"; + homepage = "https://melpa.org/#/org-alert"; license = lib.licenses.free; }; }) {}; @@ -40104,13 +41631,13 @@ sha256 = "0f4ja4m1r6bbgachipswb2001ryg8cqcxjvwmnab951mw0cbg7v4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-attach-screenshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-attach-screenshot"; sha256 = "0108kahyd499q87wzvirv5d6p7jrb7ckz8r96pwqzgflj3njbnmn"; name = "org-attach-screenshot"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-attach-screenshot"; + homepage = "https://melpa.org/#/org-attach-screenshot"; license = lib.licenses.free; }; }) {}; @@ -40125,13 +41652,13 @@ sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-autolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-autolist"; sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj"; name = "org-autolist"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-autolist"; + homepage = "https://melpa.org/#/org-autolist"; license = lib.licenses.free; }; }) {}; @@ -40146,13 +41673,34 @@ sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-beautify-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-beautify-theme"; sha256 = "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq"; name = "org-beautify-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-beautify-theme"; + homepage = "https://melpa.org/#/org-beautify-theme"; + license = lib.licenses.free; + }; + }) {}; + org-bookmark-heading = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "org-bookmark-heading"; + version = "20160326.159"; + src = fetchFromGitHub { + owner = "alphapapa"; + repo = "org-bookmark-heading"; + rev = "5d8023c068049d4805e07ed220ae316ee6fbd2e8"; + sha256 = "084ij85pw53pzr220ql97544zkh23xb8gr81397asfdhc5wrzkqw"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-bookmark-heading"; + sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9"; + name = "org-bookmark-heading"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/org-bookmark-heading"; license = lib.licenses.free; }; }) {}; @@ -40167,55 +41715,55 @@ sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-bullets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-bullets"; sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75"; name = "org-bullets"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-bullets"; + homepage = "https://melpa.org/#/org-bullets"; license = lib.licenses.free; }; }) {}; org-caldav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-caldav"; - version = "20150131.352"; + version = "20160306.837"; src = fetchFromGitHub { owner = "dengste"; repo = "org-caldav"; - rev = "8aff005f431e5f677950b73f710fdf968ff4ac65"; - sha256 = "0lq2rx6wgz0aymwhw597xs2pabinhk3jpnnhjwq0jk8ggp3afqaz"; + rev = "97a70cbd478a665c24b910d8ce082059e042a64b"; + sha256 = "0fq9d1q16fs0i3x9gs8k1n98nvh971r6g5bk2bswpfbpvndgwbi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-caldav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-caldav"; sha256 = "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8"; name = "org-caldav"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/org-caldav"; + homepage = "https://melpa.org/#/org-caldav"; license = lib.licenses.free; }; }) {}; - org-cliplink = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + org-cliplink = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-cliplink"; - version = "20151229.1300"; + version = "20160319.700"; src = fetchFromGitHub { owner = "rexim"; repo = "org-cliplink"; - rev = "82f46c1355ef6cfbf884171c0410570bcc525027"; - sha256 = "1g9fanikdcbkmvbh9bp5dg3s2maawkqinjavn5158p0gy68ab240"; + rev = "d4853156961f81210ae1a6742f11ea1ee297fde6"; + sha256 = "048mcjgls405wwvn2r90cxkyw9z2nf97gif86k0gxk7yrbbkiy2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-cliplink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-cliplink"; sha256 = "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p"; name = "org-cliplink"; }; - packageRequires = []; + packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/org-cliplink"; + homepage = "https://melpa.org/#/org-cliplink"; license = lib.licenses.free; }; }) {}; @@ -40230,13 +41778,13 @@ sha256 = "0l0r44brs3fcgpjjirfrbf5cgxmsc0siqakv5mlvmr64xd1vi2lw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-clock-convenience"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-clock-convenience"; sha256 = "1zis0fp7q253qfxypm7a69zb3w8jb4cbrbj2rk34d1jisvnn4irw"; name = "org-clock-convenience"; }; packageRequires = [ cl-lib emacs org ]; meta = { - homepage = "http://melpa.org/#/org-clock-convenience"; + homepage = "https://melpa.org/#/org-clock-convenience"; license = lib.licenses.free; }; }) {}; @@ -40251,13 +41799,13 @@ sha256 = "0q4v216ihhwv8rlb9xc8xy7nj1p058xabfflglhgcd7mfjrsyayx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-context"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-context"; sha256 = "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz"; name = "org-context"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-context"; + homepage = "https://melpa.org/#/org-context"; license = lib.licenses.free; }; }) {}; @@ -40266,19 +41814,19 @@ pname = "org-cua-dwim"; version = "20120202.2334"; src = fetchFromGitHub { - owner = "mlf176f2"; + owner = "mattfidler"; repo = "org-cua-dwim.el"; rev = "a55d6c7009fc0b22f1110c07de629acc955c85e4"; sha256 = "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-cua-dwim"; - sha256 = "0p7v564p8n1hm7rzlrbm2pnhyha8aif2r9g7g4kg0iqln89f5yhc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-cua-dwim"; + sha256 = "0ib3m41b4lh0p0xxhsmfv42qs00xm2cfwwl2cgfdjjp1s57p19xy"; name = "org-cua-dwim"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-cua-dwim"; + homepage = "https://melpa.org/#/org-cua-dwim"; license = lib.licenses.free; }; }) {}; @@ -40293,13 +41841,13 @@ sha256 = "1nqfi139cag3ll8wxk8rh59hay97vi8i0mlgnams4jla285zydj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-dashboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-dashboard"; sha256 = "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5"; name = "org-dashboard"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/org-dashboard"; + homepage = "https://melpa.org/#/org-dashboard"; license = lib.licenses.free; }; }) {}; @@ -40314,13 +41862,13 @@ sha256 = "1wrgqdrfdxc1vrcr6dsa8dcxrwj6zgjr9h1fzilwnxlzfvdilnsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-doing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-doing"; sha256 = "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j"; name = "org-doing"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-doing"; + homepage = "https://melpa.org/#/org-doing"; license = lib.licenses.free; }; }) {}; @@ -40335,55 +41883,55 @@ sha256 = "15zrnd168n4pwa1bj5fz79hcrgw61braf0b095rsfhjh5w2sasy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-dotemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-dotemacs"; sha256 = "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4"; name = "org-dotemacs"; }; packageRequires = [ cl-lib org ]; meta = { - homepage = "http://melpa.org/#/org-dotemacs"; + homepage = "https://melpa.org/#/org-dotemacs"; license = lib.licenses.free; }; }) {}; org-download = callPackage ({ async, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-download"; - version = "20151030.916"; + version = "20160411.910"; src = fetchFromGitHub { owner = "abo-abo"; repo = "org-download"; - rev = "501920e273b32f96dfbafcf769d330296a612847"; - sha256 = "12k3iqzmj92cvi0d99mn3ylxj00p2f2f8049dd2nxnp1gxs2k4dq"; + rev = "39e810e114553fdf09785d2a81923103f689e907"; + sha256 = "02344qyhz4bjz0rg4lmmqpn43lf03ag5v384ppczqks61rq7zpq9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-download"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-download"; sha256 = "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi"; name = "org-download"; }; packageRequires = [ async ]; meta = { - homepage = "http://melpa.org/#/org-download"; + homepage = "https://melpa.org/#/org-download"; license = lib.licenses.free; }; }) {}; org-dp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-dp"; - version = "20160206.402"; + version = "20160326.803"; src = fetchFromGitHub { owner = "tj64"; repo = "org-dp"; - rev = "ffd4a133f5b39235eaa00e4eb29fba9e8f72750c"; - sha256 = "1a1j654n0if9yh74j7xwrjmsi3aiy1bw7nzzbqda1zd7qbr6r253"; + rev = "d9a18e8fb04c94d5d35236b37ee7db0afcb7d580"; + sha256 = "0misv6g1cql7qc3xhy56cn79pzvn811fvhvivvq0bdx4g0hpp2fg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-dp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-dp"; sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq"; name = "org-dp"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/org-dp"; + homepage = "https://melpa.org/#/org-dp"; license = lib.licenses.free; }; }) {}; @@ -40398,13 +41946,13 @@ sha256 = "0m5c9x0vazciq6czpg5y9nr5yzjf6nl0qp5cfajv49cw2h0cwqyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-drill-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-drill-table"; sha256 = "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69"; name = "org-drill-table"; }; packageRequires = [ cl-lib dash emacs org-plus-contrib s ]; meta = { - homepage = "http://melpa.org/#/org-drill-table"; + homepage = "https://melpa.org/#/org-drill-table"; license = lib.licenses.free; }; }) {}; @@ -40419,13 +41967,13 @@ sha256 = "0jjdsng7fm4wbhvd9naqzdfsmkvj1sf1d9rikprg1pd58azv6idx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-dropbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-dropbox"; sha256 = "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln"; name = "org-dropbox"; }; packageRequires = [ dash emacs names ]; meta = { - homepage = "http://melpa.org/#/org-dropbox"; + homepage = "https://melpa.org/#/org-dropbox"; license = lib.licenses.free; }; }) {}; @@ -40440,13 +41988,13 @@ sha256 = "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-ehtml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-ehtml"; sha256 = "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw"; name = "org-ehtml"; }; packageRequires = [ emacs web-server ]; meta = { - homepage = "http://melpa.org/#/org-ehtml"; + homepage = "https://melpa.org/#/org-ehtml"; license = lib.licenses.free; }; }) {}; @@ -40461,34 +42009,34 @@ sha256 = "0va8wm319vvw7w0j102mx656icy3fi4mz3b6bxira6z6xl9b92s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-elisp-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-elisp-help"; sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h"; name = "org-elisp-help"; }; packageRequires = [ cl-lib org ]; meta = { - homepage = "http://melpa.org/#/org-elisp-help"; + homepage = "https://melpa.org/#/org-elisp-help"; license = lib.licenses.free; }; }) {}; - org-eww = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: + org-eww = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-eww"; - version = "20160104.836"; + version = "20160425.751"; src = fetchFromGitHub { owner = "lujun9972"; repo = "org-eww"; - rev = "c0d3b141780c2e12d2dc4877a5f1c99897dff33a"; - sha256 = "1mpdk34l08m53r7dk8qaza7kvscy9jxv7bjwc232s1xhgy3mcin5"; + rev = "c6b53bfd0464ab61926ec51f74a57ba26ca314b0"; + sha256 = "0bcwxly77yc2i4x1lz4584k6pd9gx1mawci8ibsxcmjvgzch6x84"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-eww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-eww"; sha256 = "132asshgfpphjckd5vz1vcs18lj55mrqs1l4ggfa89rc6aj8xrca"; name = "org-eww"; }; - packageRequires = [ emacs org ]; + packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-eww"; + homepage = "https://melpa.org/#/org-eww"; license = lib.licenses.free; }; }) {}; @@ -40499,37 +42047,37 @@ src = fetchgit { url = "http://repo.or.cz/r/org-fstree.git"; rev = "24e305c6443be9f45198185772eecfddc390a9ce"; - sha256 = "35000fb42e317ec1a6e6c7b448bfdec7ecf65fd9f5ab4723062513c3a4acba79"; + sha256 = "0ydsmjjc64r50qilgazmv5gzdv67vszlid67wskc2zii5ss0y01m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-fstree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-fstree"; sha256 = "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz"; name = "org-fstree"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-fstree"; + homepage = "https://melpa.org/#/org-fstree"; license = lib.licenses.free; }; }) {}; org-gcal = callPackage ({ alert, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, request-deferred }: melpaBuild { pname = "org-gcal"; - version = "20151230.324"; + version = "20160307.1406"; src = fetchFromGitHub { owner = "myuhe"; repo = "org-gcal.el"; - rev = "496a04affbeaf21ac78dd29ea4f9c8f3b9e8fc8a"; - sha256 = "0r5w85bflmky3xzwqr7g7x7srdm43i93vg0gqnhh6k0ldy7ypc06"; + rev = "51fae3a77fab26f81705e9cdcfc62a524ea902e0"; + sha256 = "1di32pvkqbd90f4j4d07gdbba6d0fzyhw5lsynz7cl6yrh5y9cpr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-gcal"; sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q"; name = "org-gcal"; }; packageRequires = [ alert cl-lib emacs org request-deferred ]; meta = { - homepage = "http://melpa.org/#/org-gcal"; + homepage = "https://melpa.org/#/org-gcal"; license = lib.licenses.free; }; }) {}; @@ -40544,13 +42092,13 @@ sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-gnome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-gnome"; sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v"; name = "org-gnome"; }; packageRequires = [ alert gnome-calendar telepathy ]; meta = { - homepage = "http://melpa.org/#/org-gnome"; + homepage = "https://melpa.org/#/org-gnome"; license = lib.licenses.free; }; }) {}; @@ -40565,13 +42113,13 @@ sha256 = "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-grep"; sha256 = "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz"; name = "org-grep"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/org-grep"; + homepage = "https://melpa.org/#/org-grep"; license = lib.licenses.free; }; }) {}; @@ -40586,13 +42134,13 @@ sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-if"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-if"; sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96"; name = "org-if"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-if"; + homepage = "https://melpa.org/#/org-if"; license = lib.licenses.free; }; }) {}; @@ -40607,13 +42155,13 @@ sha256 = "1n7l70pl9x6mh7dyyiihg4zi1advzlaq2x7vivhas1i2120884i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-iv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-iv"; sha256 = "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx"; name = "org-iv"; }; packageRequires = [ cl-lib impatient-mode org ]; meta = { - homepage = "http://melpa.org/#/org-iv"; + homepage = "https://melpa.org/#/org-iv"; license = lib.licenses.free; }; }) {}; @@ -40628,13 +42176,13 @@ sha256 = "0whv8nsla93194jjpxrhlr6g230spdxbac8ibmzmyad075vx97z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-jekyll"; sha256 = "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i"; name = "org-jekyll"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/org-jekyll"; + homepage = "https://melpa.org/#/org-jekyll"; license = lib.licenses.free; }; }) {}; @@ -40649,13 +42197,13 @@ sha256 = "0b5f8qkyzh4jwj3kvbaj3m4dpjbvh1fql7v1nb9bi5n7iwkv3lxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-jira"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-jira"; sha256 = "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm"; name = "org-jira"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-jira"; + homepage = "https://melpa.org/#/org-jira"; license = lib.licenses.free; }; }) {}; @@ -40665,18 +42213,18 @@ version = "20151228.803"; src = fetchFromGitHub { owner = "bastibe"; - repo = "emacs-journal"; + repo = "org-journal"; rev = "0ddd54c1112b077d0061f22dfa9c187e0ec7cb1b"; sha256 = "15swkzq5v9jnpmsziy8mj9rkriilxrm1c24lbfg0a4pwax5nkzp9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-journal"; - sha256 = "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-journal"; + sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b"; name = "org-journal"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-journal"; + homepage = "https://melpa.org/#/org-journal"; license = lib.licenses.free; }; }) {}; @@ -40691,13 +42239,13 @@ sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-link-travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-link-travis"; sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs"; name = "org-link-travis"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/org-link-travis"; + homepage = "https://melpa.org/#/org-link-travis"; license = lib.licenses.free; }; }) {}; @@ -40712,13 +42260,13 @@ sha256 = "0lqxzmjxs80z3z90f66f3zfrdajiamdcwpvfv5j2w40js9xz4x37"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-linkany"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-linkany"; sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c"; name = "org-linkany"; }; packageRequires = [ log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/org-linkany"; + homepage = "https://melpa.org/#/org-linkany"; license = lib.licenses.free; }; }) {}; @@ -40728,17 +42276,17 @@ version = "20140107.719"; src = fetchgit { url = "git://orgmode.org/org-mode.git"; - rev = "2b3c72e231de4bd5f9f1d3ddfeff45c1edd901dd"; - sha256 = "096532e2cd59fe5d54ffe34f8767e007fc0f6e2c422ea9e3cc68e8a671df07d7"; + rev = "ce748a7ed5fd7b9b57c0a0e8cdcc65a28c8ee06a"; + sha256 = "16vy6nd3wdqlkyk4dkav5a66xh9q9qfmh03a6j8dbx1wxy9y8g09"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-mac-iCal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-mac-iCal"; sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw"; name = "org-mac-iCal"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-mac-iCal"; + homepage = "https://melpa.org/#/org-mac-iCal"; license = lib.licenses.free; }; }) {}; @@ -40748,17 +42296,17 @@ version = "20160109.1643"; src = fetchgit { url = "git://orgmode.org/org-mode.git"; - rev = "2b3c72e231de4bd5f9f1d3ddfeff45c1edd901dd"; - sha256 = "096532e2cd59fe5d54ffe34f8767e007fc0f6e2c422ea9e3cc68e8a671df07d7"; + rev = "ce748a7ed5fd7b9b57c0a0e8cdcc65a28c8ee06a"; + sha256 = "16vy6nd3wdqlkyk4dkav5a66xh9q9qfmh03a6j8dbx1wxy9y8g09"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-mac-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-mac-link"; sha256 = "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw"; name = "org-mac-link"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-mac-link"; + homepage = "https://melpa.org/#/org-mac-link"; license = lib.licenses.free; }; }) {}; @@ -40773,13 +42321,13 @@ sha256 = "0d22q57mizw70qxbvwi4yz15jg86icqq1z963rliwss3wgpirndh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-mobile-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-mobile-sync"; sha256 = "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj"; name = "org-mobile-sync"; }; packageRequires = [ emacs org ]; meta = { - homepage = "http://melpa.org/#/org-mobile-sync"; + homepage = "https://melpa.org/#/org-mobile-sync"; license = lib.licenses.free; }; }) {}; @@ -40794,13 +42342,13 @@ sha256 = "0zbpzm9lni6z180s7n52x8s5by5zkq2nlhx82l2h9i7in9y4r6c3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-multiple-keymap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-multiple-keymap"; sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f"; name = "org-multiple-keymap"; }; packageRequires = [ cl-lib emacs org ]; meta = { - homepage = "http://melpa.org/#/org-multiple-keymap"; + homepage = "https://melpa.org/#/org-multiple-keymap"; license = lib.licenses.free; }; }) {}; @@ -40815,13 +42363,13 @@ sha256 = "132jv1zvp3yp4pa4ysl0n3a81d39cdi3nqfziz1ha1pl10qbn6wr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-octopress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-octopress"; sha256 = "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw"; name = "org-octopress"; }; packageRequires = [ ctable org orglue ]; meta = { - homepage = "http://melpa.org/#/org-octopress"; + homepage = "https://melpa.org/#/org-octopress"; license = lib.licenses.free; }; }) {}; @@ -40836,34 +42384,43 @@ sha256 = "10dddbs9jppqqzwwv5y6pj2szdkw3223gvzzd4pzn9biv5d9kzsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-outlook"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-outlook"; sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9"; name = "org-outlook"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-outlook"; + homepage = "https://melpa.org/#/org-outlook"; license = lib.licenses.free; }; }) {}; - org-page = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, ht, htmlize, lib, melpaBuild, mustache, org, simple-httpd }: + org-page = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, git, ht, htmlize, lib, melpaBuild, mustache, org, simple-httpd }: melpaBuild { pname = "org-page"; - version = "20160216.647"; + version = "20160413.529"; src = fetchFromGitHub { owner = "kelvinh"; repo = "org-page"; - rev = "268761d12b1bd0905cd767efa3513d2b6df01aaf"; - sha256 = "1mnghhc07727fcp0vd8qjm2v7amv5mv6357l5cjjs4c24qchxiy0"; + rev = "5bf99d7c0d6e53cbbab12990fb4b778fdfc1446a"; + sha256 = "1w853v4fsrvgczl2rvmy3dv9shyhv8f4bc0gqnk4r5ihmgf46a1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-page"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-page"; sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v"; name = "org-page"; }; - packageRequires = [ cl-lib dash ht htmlize mustache org simple-httpd ]; + packageRequires = [ + cl-lib + dash + git + ht + htmlize + mustache + org + simple-httpd + ]; meta = { - homepage = "http://melpa.org/#/org-page"; + homepage = "https://melpa.org/#/org-page"; license = lib.licenses.free; }; }) {}; @@ -40878,34 +42435,33 @@ sha256 = "022qqas919aziq4scs5j1wdbvd0qyw8kkirn2vzfb5k2fjl8z7iq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-pandoc"; sha256 = "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v"; name = "org-pandoc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-pandoc"; + homepage = "https://melpa.org/#/org-pandoc"; license = lib.licenses.free; }; }) {}; - org-password-manager = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org, s }: + org-password-manager = callPackage ({ fetchgit, fetchurl, lib, melpaBuild, org, s }: melpaBuild { pname = "org-password-manager"; version = "20150729.1715"; - src = fetchFromGitHub { - owner = "leafac"; - repo = "org-password-manager"; - rev = "85b61fb513cee8f4311998c4fc22f981c47ccefa"; - sha256 = "0b02d6x8kmq5h3x2fk1cl59jq10c1wy6xmmcsrn37di8bpygdwhy"; + src = fetchgit { + url = "https://git.leafac.com/leafac/org-password-manager"; + rev = "200aff149a8a089e352316d5ed438f919932e4e9"; + sha256 = "0j193rllhm5n65qyirj99ifxhzk5y5z003g6qpr1261mylycngp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-password-manager"; - sha256 = "1l3h0qhv0ad9l933d47as8y3h9x94zw315ax4qsgiw3046nzkdwv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-password-manager"; + sha256 = "021yhp417b9c8cjh8ynmz2fqyplpr2qvc0djxf74kd8lhn4pl397"; name = "org-password-manager"; }; packageRequires = [ org s ]; meta = { - homepage = "http://melpa.org/#/org-password-manager"; + homepage = "https://melpa.org/#/org-password-manager"; license = lib.licenses.free; }; }) {}; @@ -40920,13 +42476,13 @@ sha256 = "16z44kdsg8w1p27fsi72k8wqr35xbb0777rq7h7swv6j2jn1b6hc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-pdfview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-pdfview"; sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab"; name = "org-pdfview"; }; packageRequires = [ org pdf-tools ]; meta = { - homepage = "http://melpa.org/#/org-pdfview"; + homepage = "https://melpa.org/#/org-pdfview"; license = lib.licenses.free; }; }) {}; @@ -40941,13 +42497,13 @@ sha256 = "015idpk66835jdg1sbvpksyr07xk4vn17z8cng2qw87fss688ihb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-pomodoro"; sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27"; name = "org-pomodoro"; }; packageRequires = [ alert cl-lib ]; meta = { - homepage = "http://melpa.org/#/org-pomodoro"; + homepage = "https://melpa.org/#/org-pomodoro"; license = lib.licenses.free; }; }) {}; @@ -40962,34 +42518,34 @@ sha256 = "1n9magg7r7xnw16d43fh6nzjf42s70l3mxq6ph727zi4lz5ngmfm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-present"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-present"; sha256 = "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7"; name = "org-present"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/org-present"; + homepage = "https://melpa.org/#/org-present"; license = lib.licenses.free; }; }) {}; org-projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "org-projectile"; - version = "20160101.1750"; + version = "20160324.959"; src = fetchFromGitHub { owner = "IvanMalison"; repo = "org-projectile"; - rev = "863712082708ed2c6f9e22e0de7e4e7e20629b30"; - sha256 = "1jxw9r1mn9zf0vlvy89w9w6v6mhl8i210hkx86c9vcrkpcrpzmvi"; + rev = "8c79a5f9f039ba607d5cf9fc3fa97118e0d1bc0f"; + sha256 = "1cxg4qci0k2nrafhipsb223ania29n9w4h33z6n62wk2q5yp1yhr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-projectile"; sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm"; name = "org-projectile"; }; packageRequires = [ dash projectile ]; meta = { - homepage = "http://melpa.org/#/org-projectile"; + homepage = "https://melpa.org/#/org-projectile"; license = lib.licenses.free; }; }) {}; @@ -41004,13 +42560,13 @@ sha256 = "1jzp65sf1am6pz533kg1z666h4jlynvjyx1mf24gyksiiwdhypsy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-protocol-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-protocol-jekyll"; sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs"; name = "org-protocol-jekyll"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/org-protocol-jekyll"; + homepage = "https://melpa.org/#/org-protocol-jekyll"; license = lib.licenses.free; }; }) {}; @@ -41025,13 +42581,13 @@ sha256 = "06apaa8pjrw14g2gyjpxjd6bjv1w0md4vl5jx78krcyr0bcc08mx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-random-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-random-todo"; sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr"; name = "org-random-todo"; }; packageRequires = [ alert emacs ]; meta = { - homepage = "http://melpa.org/#/org-random-todo"; + homepage = "https://melpa.org/#/org-random-todo"; license = lib.licenses.free; }; }) {}; @@ -41046,7 +42602,7 @@ sha256 = "1q3s12s0ll7jhrnd3adkaxv7ff69ppprv0pyl5f6gy8y51y63k8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-readme"; sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh"; name = "org-readme"; }; @@ -41058,7 +42614,7 @@ yaoddmuse ]; meta = { - homepage = "http://melpa.org/#/org-readme"; + homepage = "https://melpa.org/#/org-readme"; license = lib.licenses.free; }; }) {}; @@ -41073,55 +42629,55 @@ sha256 = "0q26knckq213r885i5947970qagjmb7ybs4ag0ignls4dzbqlbmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-redmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-redmine"; sha256 = "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv"; name = "org-redmine"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-redmine"; + homepage = "https://melpa.org/#/org-redmine"; license = lib.licenses.free; }; }) {}; org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, hydra, key-chord, lib, melpaBuild, s }: melpaBuild { pname = "org-ref"; - version = "20160221.1737"; + version = "20160426.958"; src = fetchFromGitHub { owner = "jkitchin"; repo = "org-ref"; - rev = "d336811c11844c0f5dcf62fa4f2d398c174e463d"; - sha256 = "1xnwpl28d742406fhrwl39r9l9z3wbapjz556zc9km376f7sx9d8"; + rev = "ff3aef81d7b2df9e19512cfe62152fe035f769a6"; + sha256 = "126rah7709mcfl40s2lp8h26h0xkh5m134r230n8f26ha81fw2q6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-ref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-ref"; sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08"; name = "org-ref"; }; packageRequires = [ dash emacs f helm helm-bibtex hydra key-chord s ]; meta = { - homepage = "http://melpa.org/#/org-ref"; + homepage = "https://melpa.org/#/org-ref"; license = lib.licenses.free; }; }) {}; org-repo-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-repo-todo"; - version = "20141204.1541"; + version = "20160307.1229"; src = fetchFromGitHub { owner = "waymondo"; repo = "org-repo-todo"; - rev = "904a26089d87db59a40421d6f857b189e70dfbe3"; - sha256 = "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9"; + rev = "b164bacefcd3c55dd40cd1a9e91ffefd315b400d"; + sha256 = "0as82hf81czks9fcmhy9wjwl8d4mbylrm13c02y8abp0am41r28f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-repo-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-repo-todo"; sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1"; name = "org-repo-todo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-repo-todo"; + homepage = "https://melpa.org/#/org-repo-todo"; license = lib.licenses.free; }; }) {}; @@ -41136,13 +42692,13 @@ sha256 = "1hn8y9933x5x6lxpijcqx97p3hln69ahabqdsl2bmzda3mxm4bn2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-rtm"; sha256 = "1paiy5zmdlxb3a1cjk9d30mqbl60bkairw6xkix2qw36p07jwlj5"; name = "org-rtm"; }; packageRequires = [ rtm ]; meta = { - homepage = "http://melpa.org/#/org-rtm"; + homepage = "https://melpa.org/#/org-rtm"; license = lib.licenses.free; }; }) {}; @@ -41157,13 +42713,13 @@ sha256 = "14zn0b8qs740ls1069kg2lwm0b9yc4qv525fg8km0hgi0yp8qw7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-sync"; sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad"; name = "org-sync"; }; packageRequires = [ cl-lib emacs org ]; meta = { - homepage = "http://melpa.org/#/org-sync"; + homepage = "https://melpa.org/#/org-sync"; license = lib.licenses.free; }; }) {}; @@ -41178,34 +42734,34 @@ sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-table-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-table-comment"; sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz"; name = "org-table-comment"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-table-comment"; + homepage = "https://melpa.org/#/org-table-comment"; license = lib.licenses.free; }; }) {}; org-tfl = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-tfl"; - version = "20160131.1444"; + version = "20160407.1640"; src = fetchFromGitHub { owner = "storax"; repo = "org-tfl"; - rev = "c9e024ac55d9e0c61a273e75bd68981a623c9ab2"; - sha256 = "1x241jaw726zjsplwf6svbvr8af09k6kqj7icpvcbyayivkbhxy2"; + rev = "308251618e215eb78d5436e7412a0c14216fa890"; + sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tfl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tfl"; sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf"; name = "org-tfl"; }; packageRequires = [ cl-lib emacs org ]; meta = { - homepage = "http://melpa.org/#/org-tfl"; + homepage = "https://melpa.org/#/org-tfl"; license = lib.licenses.free; }; }) {}; @@ -41220,13 +42776,13 @@ sha256 = "1apd5yyr12skagma7xpzrh22rhplmhhv0pma4zf5b0i6nkxy06j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-themis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-themis"; sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln"; name = "org-themis"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/org-themis"; + homepage = "https://melpa.org/#/org-themis"; license = lib.licenses.free; }; }) {}; @@ -41241,13 +42797,13 @@ sha256 = "04adkz950vvwyzy3da468nnqsknpr5kw5369w2yqhnph16cwwfxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-time-budgets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-time-budgets"; sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah"; name = "org-time-budgets"; }; packageRequires = [ alert cl-lib ]; meta = { - homepage = "http://melpa.org/#/org-time-budgets"; + homepage = "https://melpa.org/#/org-time-budgets"; license = lib.licenses.free; }; }) {}; @@ -41262,34 +42818,34 @@ sha256 = "014337wimvzy0rxh2p2c647ly215zcyhgym2hcljkdriv15cafna"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-toodledo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-toodledo"; sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3"; name = "org-toodledo"; }; packageRequires = [ cl-lib emacs request-deferred ]; meta = { - homepage = "http://melpa.org/#/org-toodledo"; + homepage = "https://melpa.org/#/org-toodledo"; license = lib.licenses.free; }; }) {}; org-tracktable = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-tracktable"; - version = "20151129.1441"; + version = "20160420.845"; src = fetchFromGitHub { owner = "tty-tourist"; repo = "org-tracktable"; - rev = "28ef6772cdcf436cf38095f15c6bb681473180ce"; - sha256 = "053wf36lq9piyzq7rv2lid34zanj6l9fvawp3r3nsniy5nlfckqx"; + rev = "2a2a81ffc2807b80559bdae5840a9b7529c8fd3f"; + sha256 = "0jh9i41zqs9rvghfjhp5nl2ycav1pj1yv2hsr6skwqdpkwggvvmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tracktable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tracktable"; sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00"; name = "org-tracktable"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/org-tracktable"; + homepage = "https://melpa.org/#/org-tracktable"; license = lib.licenses.free; }; }) {}; @@ -41304,13 +42860,13 @@ sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-transform-tree-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-transform-tree-table"; sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r"; name = "org-transform-tree-table"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/org-transform-tree-table"; + homepage = "https://melpa.org/#/org-transform-tree-table"; license = lib.licenses.free; }; }) {}; @@ -41325,28 +42881,28 @@ sha256 = "19id53sjv0r0xnm3l8d694s27dxlmdfm9dal57zlf60s5lg8hykq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tree-slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tree-slide"; sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn"; name = "org-tree-slide"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-tree-slide"; + homepage = "https://melpa.org/#/org-tree-slide"; license = lib.licenses.free; }; }) {}; org-trello = callPackage ({ dash, dash-functional, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred, s }: melpaBuild { pname = "org-trello"; - version = "20160213.1307"; + version = "20160301.1141"; src = fetchFromGitHub { owner = "org-trello"; repo = "org-trello"; - rev = "1ecb8f4f1dd41c8f41073c13a9557c0c583d7c88"; - sha256 = "0pinp7485mwi99f8qx8xhcdymn5yyd7irxh514j3f23n4b90hk4l"; + rev = "321a74585bceafdd82f96433e014f13b4f3fa674"; + sha256 = "061nf6gwrzi36q3m3b1hn4bj33a6q4yic3fxdxxwvwrzi42bl74a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-trello"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-trello"; sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i"; name = "org-trello"; }; @@ -41359,7 +42915,7 @@ s ]; meta = { - homepage = "http://melpa.org/#/org-trello"; + homepage = "https://melpa.org/#/org-trello"; license = lib.licenses.free; }; }) {}; @@ -41374,13 +42930,13 @@ sha256 = "1m2xdp6wfg11wi7s4i675c3m5qancm8bpizcf380r6vmkcdfkrdy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-vcard"; sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl"; name = "org-vcard"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-vcard"; + homepage = "https://melpa.org/#/org-vcard"; license = lib.licenses.free; }; }) {}; @@ -41395,34 +42951,34 @@ sha256 = "08yww77697kck1ld9xcrcx8amqdh28rdc4fsavp5d3my78qk7rac"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-wc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-wc"; sha256 = "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb"; name = "org-wc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-wc"; + homepage = "https://melpa.org/#/org-wc"; license = lib.licenses.free; }; }) {}; org-webpage = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, ht, htmlize, lib, melpaBuild, mustache, org, web-server }: melpaBuild { pname = "org-webpage"; - version = "20160108.326"; + version = "20160307.226"; src = fetchFromGitHub { owner = "tumashu"; repo = "org-webpage"; - rev = "6aedac36f584e99190572ca74768095512f17503"; - sha256 = "1izf0lxycg4wh3wfki1sfy283qwgfdf8rzb365z3sk1zzijjaw6j"; + rev = "478fd463c3c406397b2e5d2d7e3bb97fb7940e01"; + sha256 = "18idnl2hx1s5hv1xm5akd35favnjnj2pxw6h00956lrapg01d1fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-webpage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-webpage"; sha256 = "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah"; name = "org-webpage"; }; packageRequires = [ cl-lib dash ht htmlize mustache org web-server ]; meta = { - homepage = "http://melpa.org/#/org-webpage"; + homepage = "https://melpa.org/#/org-webpage"; license = lib.licenses.free; }; }) {}; @@ -41437,13 +42993,13 @@ sha256 = "1cagmwl3acanwc2nky7m61cawi0i0x703sjc6zlw968lacyw86wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-wunderlist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-wunderlist"; sha256 = "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0"; name = "org-wunderlist"; }; packageRequires = [ alert cl-lib emacs org request-deferred s ]; meta = { - homepage = "http://melpa.org/#/org-wunderlist"; + homepage = "https://melpa.org/#/org-wunderlist"; license = lib.licenses.free; }; }) {}; @@ -41454,59 +43010,80 @@ src = fetchFromGitHub { owner = "punchagan"; repo = "org2blog"; - rev = "11e4cbc8df34461b02d6d93cb2164ec16925b3a1"; - sha256 = "180mhqf56vvl6y5ff1lsy33b1xxz0zrzy826g2qllw9w5g77xxzq"; + rev = "a0262931c79f59d79993e4d0237d9dcd6693f7ef"; + sha256 = "1q7207sn949s2xf2wj6p7yb3q4kjbrbxsz0jyp7xnrg3w762g6zm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org2blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org2blog"; sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq"; name = "org2blog"; }; packageRequires = [ metaweblog org xml-rpc ]; meta = { - homepage = "http://melpa.org/#/org2blog"; + homepage = "https://melpa.org/#/org2blog"; + license = lib.licenses.free; + }; + }) {}; + org2issue = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, melpaBuild, org, ox-gfm, s }: + melpaBuild { + pname = "org2issue"; + version = "20160420.142"; + src = fetchFromGitHub { + owner = "lujun9972"; + repo = "org2issue"; + rev = "7547c528d42e9133f64927e82173083777b459f9"; + sha256 = "139y1ql7x95bmyz7sk6g3lpsivmzyz1naykayb6bhby69xr4cwb2"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org2issue"; + sha256 = "1qd5l9ga26smgp1gkc8r9ja2n974kq1jf2z876s5v0489ipa59bz"; + name = "org2issue"; + }; + packageRequires = [ emacs gh org ox-gfm s ]; + meta = { + homepage = "https://melpa.org/#/org2issue"; license = lib.licenses.free; }; }) {}; org2jekyll = callPackage ({ dash-functional, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "org2jekyll"; - version = "20150906.847"; + version = "20160418.1050"; src = fetchFromGitHub { owner = "ardumont"; repo = "org2jekyll"; - rev = "a12173b9507b3ef54dfebb5751503ba1ee93c6aa"; - sha256 = "064kw64w9snm0lbshxn8d6yd9xvyislhg37fmhq1w7vy8lm61xvf"; + rev = "35e11ffa24b140d2e247df195489fca344bd0c08"; + sha256 = "089nqbda5mg1ippqnsl5wcx9n1gpnaqhl6kz54n47kivb400bidh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org2jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org2jekyll"; sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv"; name = "org2jekyll"; }; packageRequires = [ dash-functional deferred s ]; meta = { - homepage = "http://melpa.org/#/org2jekyll"; + homepage = "https://melpa.org/#/org2jekyll"; license = lib.licenses.free; }; }) {}; organic-green-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "organic-green-theme"; - version = "20160202.820"; + version = "20160324.1444"; src = fetchFromGitHub { owner = "kostafey"; repo = "organic-green-theme"; - rev = "463c8216b33561263e0f605665ff3d705d39423a"; - sha256 = "194mcm7xlzlwm4phy3b9pz7na3sdw6galnidf8aqjk97mgw9z74r"; + rev = "bb0e4c6ddd299abb975bcb92cb1309b95cd7aa90"; + sha256 = "06n6qz6f0z5kn9r5rq44dxf3x5j2avfzixrfi8nm5r6g7bfkfa5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/organic-green-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/organic-green-theme"; sha256 = "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2"; name = "organic-green-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/organic-green-theme"; + homepage = "https://melpa.org/#/organic-green-theme"; license = lib.licenses.free; }; }) {}; @@ -41521,13 +43098,13 @@ sha256 = "0hwmr67nky9xp5xlrkp54nw6b72d29lmna28dnbgqs2i5rccbk55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgbox"; sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8"; name = "orgbox"; }; packageRequires = [ cl-lib org ]; meta = { - homepage = "http://melpa.org/#/orgbox"; + homepage = "https://melpa.org/#/orgbox"; license = lib.licenses.free; }; }) {}; @@ -41542,34 +43119,34 @@ sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgit"; sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w"; name = "orgit"; }; packageRequires = [ dash emacs magit org ]; meta = { - homepage = "http://melpa.org/#/orgit"; + homepage = "https://melpa.org/#/orgit"; license = lib.licenses.free; }; }) {}; - orglink = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: + orglink = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "orglink"; - version = "20151106.1206"; + version = "20160424.920"; src = fetchFromGitHub { owner = "tarsius"; repo = "orglink"; - rev = "8ba8c54395cd1818c4d58d5cd24712405f9810e0"; - sha256 = "12y395ld36jnlbcrfycnvr4g723w6vahfv9iqf1wr6m94ka9pz3d"; + rev = "09c564022acda5973256e71a467849637473d7e6"; + sha256 = "076q8j70vqabirri6ckl1f0y60pq4bnilds6s34mxsxz1k3z3m1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orglink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orglink"; sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b"; name = "orglink"; }; - packageRequires = [ dash org ]; + packageRequires = [ dash emacs org ]; meta = { - homepage = "http://melpa.org/#/orglink"; + homepage = "https://melpa.org/#/orglink"; license = lib.licenses.free; }; }) {}; @@ -41584,34 +43161,34 @@ sha256 = "1w0hadpslxcjn29yxl9i37sja4qf4kp7ffjpwij5hs73r518c2z6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orglue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orglue"; sha256 = "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn"; name = "orglue"; }; packageRequires = [ epic org org-mac-link ]; meta = { - homepage = "http://melpa.org/#/orglue"; + homepage = "https://melpa.org/#/orglue"; license = lib.licenses.free; }; }) {}; orgtbl-aggregate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "orgtbl-aggregate"; - version = "20150104.1018"; + version = "20160421.926"; src = fetchFromGitHub { owner = "tbanel"; repo = "orgaggregate"; - rev = "16b54b2be7cbb87aab9498c0ab7b8bca0f73cb59"; - sha256 = "0am2yfnaxwc6f2wvrg4d508pdcs88cynr32k7bgyyadwq4xq3zsg"; + rev = "a33a02ba70639cadaef5f6ea028c2fe73f76cf14"; + sha256 = "0zh8n8jb479ilmz88kj0q5wx8a9zqkfqds0rr8jbk2rqmj6j72v3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgtbl-aggregate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgtbl-aggregate"; sha256 = "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9"; name = "orgtbl-aggregate"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/orgtbl-aggregate"; + homepage = "https://melpa.org/#/orgtbl-aggregate"; license = lib.licenses.free; }; }) {}; @@ -41626,13 +43203,13 @@ sha256 = "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgtbl-ascii-plot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgtbl-ascii-plot"; sha256 = "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h"; name = "orgtbl-ascii-plot"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/orgtbl-ascii-plot"; + homepage = "https://melpa.org/#/orgtbl-ascii-plot"; license = lib.licenses.free; }; }) {}; @@ -41647,13 +43224,13 @@ sha256 = "06nc82wiha11i79izqil53dkd95fl55nb5m739gyyzvx3sksb0dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgtbl-join"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgtbl-join"; sha256 = "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1"; name = "orgtbl-join"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/orgtbl-join"; + homepage = "https://melpa.org/#/orgtbl-join"; license = lib.licenses.free; }; }) {}; @@ -41668,34 +43245,34 @@ sha256 = "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgtbl-show-header"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgtbl-show-header"; sha256 = "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k"; name = "orgtbl-show-header"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/orgtbl-show-header"; + homepage = "https://melpa.org/#/orgtbl-show-header"; license = lib.licenses.free; }; }) {}; origami = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "origami"; - version = "20150822.650"; + version = "20160313.1613"; src = fetchFromGitHub { owner = "gregsexton"; repo = "origami.el"; - rev = "56140b4d3f9f2694ab1e8869972a19bd7f3e12e1"; - sha256 = "0p53l0s8rxr8v77kj83qjrbln7nck16q0zgdp4sqmqb1121ily48"; + rev = "4e98f118c3e292c68e3739ac0f9f1b1fce0bac0e"; + sha256 = "18f5b6902zqayhhcchhsvszw1kryvhkhpc5vv0s187dkj38agsv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/origami"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/origami"; sha256 = "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr"; name = "origami"; }; packageRequires = [ dash emacs s ]; meta = { - homepage = "http://melpa.org/#/origami"; + homepage = "https://melpa.org/#/origami"; license = lib.licenses.free; }; }) {}; @@ -41710,13 +43287,13 @@ sha256 = "1iybrhp607a5rb3ynlaf8w2x9wdgdbril702z44dgcg3wxih2zy1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-browse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-browse"; sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm"; name = "osx-browse"; }; packageRequires = [ browse-url-dwim string-utils ]; meta = { - homepage = "http://melpa.org/#/osx-browse"; + homepage = "https://melpa.org/#/osx-browse"; license = lib.licenses.free; }; }) {}; @@ -41731,13 +43308,13 @@ sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-clipboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-clipboard"; sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f"; name = "osx-clipboard"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/osx-clipboard"; + homepage = "https://melpa.org/#/osx-clipboard"; license = lib.licenses.free; }; }) {}; @@ -41752,34 +43329,34 @@ sha256 = "04fh4i8mydmvq58hd60lf0dglpcjqgzpwk93wqss72kpifwh68vc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-dictionary"; sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82"; name = "osx-dictionary"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/osx-dictionary"; + homepage = "https://melpa.org/#/osx-dictionary"; license = lib.licenses.free; }; }) {}; osx-lib = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-lib"; - version = "20160125.2328"; + version = "20160402.136"; src = fetchFromGitHub { owner = "raghavgautam"; repo = "osx-lib"; - rev = "9334c0614be7dbcc3d763ff7061979643fa08b4a"; - sha256 = "0kh7mrgwalys2vmf1dyrl2cc9v58zah2r8lr43nsky8dkszrz2al"; + rev = "c4a24288ea2e69d752e6adedfdf8f7d596c757ad"; + sha256 = "1wbmqxx1qzjc5kxzkwx7c2wvq71iic1f5f29lj6ckpjn743dnb0d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-lib"; sha256 = "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4"; name = "osx-lib"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/osx-lib"; + homepage = "https://melpa.org/#/osx-lib"; license = lib.licenses.free; }; }) {}; @@ -41794,13 +43371,13 @@ sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-location"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-location"; sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c"; name = "osx-location"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/osx-location"; + homepage = "https://melpa.org/#/osx-location"; license = lib.licenses.free; }; }) {}; @@ -41815,13 +43392,13 @@ sha256 = "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-org-clock-menubar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-org-clock-menubar"; sha256 = "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6"; name = "osx-org-clock-menubar"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/osx-org-clock-menubar"; + homepage = "https://melpa.org/#/osx-org-clock-menubar"; license = lib.licenses.free; }; }) {}; @@ -41836,13 +43413,13 @@ sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-plist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-plist"; sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8"; name = "osx-plist"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/osx-plist"; + homepage = "https://melpa.org/#/osx-plist"; license = lib.licenses.free; }; }) {}; @@ -41857,13 +43434,13 @@ sha256 = "1j601gzizxjsvkw6bvih4a49iq05yfkw0ni77xbc5klc7x7s80hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-pseudo-daemon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-pseudo-daemon"; sha256 = "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8"; name = "osx-pseudo-daemon"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/osx-pseudo-daemon"; + homepage = "https://melpa.org/#/osx-pseudo-daemon"; license = lib.licenses.free; }; }) {}; @@ -41878,13 +43455,34 @@ sha256 = "1l231168bjqz6lwzs0r9vihxi53d46csrr2gq7g33lg1zm3696ah"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-trash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-trash"; sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj"; name = "osx-trash"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/osx-trash"; + homepage = "https://melpa.org/#/osx-trash"; + license = lib.licenses.free; + }; + }) {}; + otama = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "otama"; + version = "20160404.532"; + src = fetchFromGitHub { + owner = "yoshinari-nomura"; + repo = "otama"; + rev = "c114fd8006762f891bc120a7c0ea213872e7ab31"; + sha256 = "1jzyfvc25ls0l4kpxg6857ccynl1pzgxfif7bppz2nfmf99z4534"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/otama"; + sha256 = "04ffyscldb2sn2n26ixrnc07ybvl7iclv2hi1kmhr5hdgxwpyjq9"; + name = "otama"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/otama"; license = lib.licenses.free; }; }) {}; @@ -41899,13 +43497,13 @@ sha256 = "116cwlhn7s47rhivz6113lh8lvaz3bjb3ynjlbx9hyf7gq3nfnxn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outline-magic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outline-magic"; sha256 = "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f"; name = "outline-magic"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/outline-magic"; + homepage = "https://melpa.org/#/outline-magic"; license = lib.licenses.free; }; }) {}; @@ -41920,55 +43518,55 @@ sha256 = "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outlined-elisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outlined-elisp-mode"; sha256 = "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v"; name = "outlined-elisp-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/outlined-elisp-mode"; + homepage = "https://melpa.org/#/outlined-elisp-mode"; license = lib.licenses.free; }; }) {}; outorg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "outorg"; - version = "20150910.1440"; + version = "20160327.332"; src = fetchFromGitHub { owner = "tj64"; repo = "outorg"; - rev = "9d6d6f1fb8c68ee044ffba1ae1aed8146bcff1f1"; - sha256 = "0jhqpm31rsmc2r01ra48nbnd9rx9am90qk6i0qrhgfzx9q1svmj9"; + rev = "456b1500b560ead633ce723986a48c33fb52ab76"; + sha256 = "0szvynvw16vr7br95pssqkil0xnfdh46x8lgan4z9v6impdav0nf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outorg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outorg"; sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx"; name = "outorg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/outorg"; + homepage = "https://melpa.org/#/outorg"; license = lib.licenses.free; }; }) {}; outshine = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, outorg }: melpaBuild { pname = "outshine"; - version = "20160204.1546"; + version = "20160416.1046"; src = fetchFromGitHub { owner = "tj64"; repo = "outshine"; - rev = "c7764a408095b3e822b02a70b934e9049af02b3b"; - sha256 = "0bc4lq6gadmjpnag6j7vhq5bf2hgmvgnqy2nxiwnk4glrmks7imm"; + rev = "61b2df38068ebd2fd12452485916eea2914daa3b"; + sha256 = "1smfdfw0swvfbqlxi7nkrgbmfqhs0x47ky6xhgf38la1s6ivh29n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outshine"; - sha256 = "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outshine"; + sha256 = "1ajddzcrnvfgx3xa5wm0bcll9dax52syg1p521mv0ffkld63jyfl"; name = "outshine"; }; packageRequires = [ cl-lib outorg ]; meta = { - homepage = "http://melpa.org/#/outshine"; + homepage = "https://melpa.org/#/outshine"; license = lib.licenses.free; }; }) {}; @@ -41983,34 +43581,34 @@ sha256 = "1rk5pzm5wmdq68d99hhhbq8pq37bnph0dip5j2jnfj6zsw70whr2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ov"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ov"; sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb"; name = "ov"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ov"; + homepage = "https://melpa.org/#/ov"; license = lib.licenses.free; }; }) {}; - overseer = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: + overseer = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "overseer"; - version = "20150801.1202"; + version = "20160416.358"; src = fetchFromGitHub { owner = "tonini"; repo = "overseer.el"; - rev = "db27cbbb10fb9b072d638a1b345102b42b20a37d"; - sha256 = "1bfj56ackza8c1jja660v6ss9ii7prcaim5plnfqsv3k149r8qlh"; + rev = "e66033c7dd43d7180ac68e7d38892f88fffa9a1d"; + sha256 = "1s6q253nhalqbykh95ns0mnh4piasfh8i0l76k9nxvw1ksh88b4k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/overseer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/overseer"; sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg"; name = "overseer"; }; - packageRequires = [ dash emacs pkg-info ]; + packageRequires = [ dash emacs f pkg-info ]; meta = { - homepage = "http://melpa.org/#/overseer"; + homepage = "https://melpa.org/#/overseer"; license = lib.licenses.free; }; }) {}; @@ -42025,13 +43623,13 @@ sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/owdriver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/owdriver"; sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd"; name = "owdriver"; }; packageRequires = [ log4e smartrep yaxception ]; meta = { - homepage = "http://melpa.org/#/owdriver"; + homepage = "https://melpa.org/#/owdriver"; license = lib.licenses.free; }; }) {}; @@ -42046,34 +43644,34 @@ sha256 = "03ivnvqxc5xdcik4skk32fhr686yv2y5mj8w7v27dhyc0vdpfhvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-asciidoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-asciidoc"; sha256 = "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr"; name = "ox-asciidoc"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ox-asciidoc"; + homepage = "https://melpa.org/#/ox-asciidoc"; license = lib.licenses.free; }; }) {}; ox-gfm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ox-gfm"; - version = "20150604.226"; + version = "20160324.520"; src = fetchFromGitHub { owner = "larstvei"; repo = "ox-gfm"; - rev = "dc324f0f4239e151744d59e784da748d4db4f6b8"; - sha256 = "0gfkb12rn40m71xv292dn3nj3h1bnn81698pinirp0nd8p4bvnin"; + rev = "4889adc219aedfbb463aad0b98b1ff26201352e8"; + sha256 = "0hsbbsy0kyrmrcc6rkq75v5walrb8krvly5mm3vlmcahm1g4x2vb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-gfm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-gfm"; sha256 = "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q"; name = "ox-gfm"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ox-gfm"; + homepage = "https://melpa.org/#/ox-gfm"; license = lib.licenses.free; }; }) {}; @@ -42088,13 +43686,13 @@ sha256 = "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-html5slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-html5slide"; sha256 = "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn"; name = "ox-html5slide"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ox-html5slide"; + homepage = "https://melpa.org/#/ox-html5slide"; license = lib.licenses.free; }; }) {}; @@ -42109,13 +43707,13 @@ sha256 = "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-impress-js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-impress-js"; sha256 = "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l"; name = "ox-impress-js"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ox-impress-js"; + homepage = "https://melpa.org/#/ox-impress-js"; license = lib.licenses.free; }; }) {}; @@ -42130,13 +43728,34 @@ sha256 = "0p03xzldz5v8lx3ip2pgll0da00ldfxmhr6r3jahwp6692kxpr6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-ioslide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-ioslide"; sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc"; name = "ox-ioslide"; }; packageRequires = [ cl-lib emacs f makey org ]; meta = { - homepage = "http://melpa.org/#/ox-ioslide"; + homepage = "https://melpa.org/#/ox-ioslide"; + license = lib.licenses.free; + }; + }) {}; + ox-jira = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: + melpaBuild { + pname = "ox-jira"; + version = "20160426.753"; + src = fetchFromGitHub { + owner = "stig"; + repo = "ox-jira.el"; + rev = "c4b8fd30c3bc48621759c9d128644d2d386e591e"; + sha256 = "0csl9fcfwnpl6x3ld7xrlvgz6gwmgcd15a4zdc570w8vp26ra5k9"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-jira"; + sha256 = "0bm7i1ambd71xmy1y9jcdh52irgcsziwwb9d3y3rq0pnsqv5cpvp"; + name = "ox-jira"; + }; + packageRequires = [ org ]; + meta = { + homepage = "https://melpa.org/#/ox-jira"; license = lib.licenses.free; }; }) {}; @@ -42151,13 +43770,13 @@ sha256 = "0c2m02g6csg5fqizj3zqcm88q7w17kgvgi7swcx4fzz6rixnpsji"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-mediawiki"; sha256 = "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb"; name = "ox-mediawiki"; }; packageRequires = [ cl-lib s ]; meta = { - homepage = "http://melpa.org/#/ox-mediawiki"; + homepage = "https://melpa.org/#/ox-mediawiki"; license = lib.licenses.free; }; }) {}; @@ -42172,13 +43791,13 @@ sha256 = "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-nikola"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-nikola"; sha256 = "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4"; name = "ox-nikola"; }; packageRequires = [ emacs org ox-rst ]; meta = { - homepage = "http://melpa.org/#/ox-nikola"; + homepage = "https://melpa.org/#/ox-nikola"; license = lib.licenses.free; }; }) {}; @@ -42193,13 +43812,13 @@ sha256 = "0bawigwc6v5420642xlkyxdd0i82gicx69wqlnjf6lvhfvs990is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-pandoc"; sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc"; name = "ox-pandoc"; }; packageRequires = [ dash emacs ht org ]; meta = { - homepage = "http://melpa.org/#/ox-pandoc"; + homepage = "https://melpa.org/#/ox-pandoc"; license = lib.licenses.free; }; }) {}; @@ -42214,34 +43833,34 @@ sha256 = "0adj6gm39qw4ivb7csfh21qqqipcnw1sgm1xdqvrk86kbs9k1b2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-pukiwiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-pukiwiki"; sha256 = "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a"; name = "ox-pukiwiki"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ox-pukiwiki"; + homepage = "https://melpa.org/#/ox-pukiwiki"; license = lib.licenses.free; }; }) {}; ox-reveal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-reveal"; - version = "20151023.106"; + version = "20160224.2019"; src = fetchFromGitHub { owner = "yjwen"; repo = "org-reveal"; - rev = "b92d0e843f2526788caa08bda5284f23e15e09cd"; - sha256 = "196bjiij0nj19qsz95y9l44sr63673mxxj0cv6aa3ijpm48vmj9p"; + rev = "c4b6e7c3d6cb637cae65c0b1fe13755546ab690e"; + sha256 = "15yzfd3bc91lfhf64spyhm94byih6fgn8s7wknkz7znvw2fbjwzv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-reveal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-reveal"; sha256 = "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik"; name = "ox-reveal"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ox-reveal"; + homepage = "https://melpa.org/#/ox-reveal"; license = lib.licenses.free; }; }) {}; @@ -42256,13 +43875,13 @@ sha256 = "1js4n8iwimc86fp2adzhbhy4ixss1yqngjd8gq7pxgpgmnhd66x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-rst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-rst"; sha256 = "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0"; name = "ox-rst"; }; packageRequires = [ emacs org ]; meta = { - homepage = "http://melpa.org/#/ox-rst"; + homepage = "https://melpa.org/#/ox-rst"; license = lib.licenses.free; }; }) {}; @@ -42277,13 +43896,13 @@ sha256 = "1r9c4s9f7cvxxzf9h07rg75bil0295zq1inh5i4r6za5jabkr4dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-textile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-textile"; sha256 = "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4"; name = "ox-textile"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ox-textile"; + homepage = "https://melpa.org/#/ox-textile"; license = lib.licenses.free; }; }) {}; @@ -42294,17 +43913,17 @@ src = fetchFromGitHub { owner = "dfeich"; repo = "org8-wikiexporters"; - rev = "4a7028751aa6b6875466c0acee60cddee3dd2efc"; - sha256 = "1wmjmkx2nz7alhdrbbm59dsrhrhn9fm3kjsvv3lmwgqg029vi3fp"; + rev = "57538ada07d1c631cfd07410cd8f47523be54c9a"; + sha256 = "05rlfykwvfir177bvqa7nvwmzn1amhpaizfmyjzi73d78h062vcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-tiddly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-tiddly"; sha256 = "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb"; name = "ox-tiddly"; }; packageRequires = [ cl-lib org ]; meta = { - homepage = "http://melpa.org/#/ox-tiddly"; + homepage = "https://melpa.org/#/ox-tiddly"; license = lib.licenses.free; }; }) {}; @@ -42319,55 +43938,55 @@ sha256 = "0w6963jvz1sk732nh18735dxivd6nl59jd4m26ps6l4wqhqby0db"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-trac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-trac"; sha256 = "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa"; name = "ox-trac"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/ox-trac"; + homepage = "https://melpa.org/#/ox-trac"; license = lib.licenses.free; }; }) {}; ox-twbs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ox-twbs"; - version = "20160221.834"; + version = "20160307.58"; src = fetchFromGitHub { owner = "marsmining"; repo = "ox-twbs"; - rev = "38fdd35e483c9fec4a055f60c6bdf6b24e63ae5c"; - sha256 = "126afhg2v14zimh1cwm0ydgkhmhap4yrkfdcdzfssiy5kpf4p7yk"; + rev = "b55cd6b51dfe6d339d8ad018ef159d37b60acee1"; + sha256 = "0yrac13xiyfxipy5qyq56jg7151wjs3xv4gpsarx4hkrxi96apbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-twbs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-twbs"; sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx"; name = "ox-twbs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ox-twbs"; + homepage = "https://melpa.org/#/ox-twbs"; license = lib.licenses.free; }; }) {}; ox-twiki = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-twiki"; - version = "20151206.440"; + version = "20160306.1115"; src = fetchFromGitHub { owner = "dfeich"; repo = "org8-wikiexporters"; - rev = "4a7028751aa6b6875466c0acee60cddee3dd2efc"; - sha256 = "1wmjmkx2nz7alhdrbbm59dsrhrhn9fm3kjsvv3lmwgqg029vi3fp"; + rev = "57538ada07d1c631cfd07410cd8f47523be54c9a"; + sha256 = "05rlfykwvfir177bvqa7nvwmzn1amhpaizfmyjzi73d78h062vcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-twiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-twiki"; sha256 = "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0"; name = "ox-twiki"; }; packageRequires = [ cl-lib org ]; meta = { - homepage = "http://melpa.org/#/ox-twiki"; + homepage = "https://melpa.org/#/ox-twiki"; license = lib.licenses.free; }; }) {}; @@ -42382,55 +44001,55 @@ sha256 = "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/p4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/p4"; sha256 = "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc"; name = "p4"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/p4"; + homepage = "https://melpa.org/#/p4"; license = lib.licenses.free; }; }) {}; pabbrev = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pabbrev"; - version = "20150806.645"; + version = "20160320.1601"; src = fetchFromGitHub { owner = "phillord"; repo = "pabbrev"; - rev = "d28cf8632d2691dc93afbb28500126242d37961c"; - sha256 = "0cbsl184szbl486454jkn28zj4p7danp92h0zv8yscrlnyl68p0y"; + rev = "56400d5d256b42ffe45c229ea9827f026b650cf5"; + sha256 = "09bn19ydyz1hncmvyyh87gczp3lmlczpm352p0107z1gw6xmpjil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pabbrev"; sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3"; name = "pabbrev"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pabbrev"; + homepage = "https://melpa.org/#/pabbrev"; license = lib.licenses.free; }; }) {}; package-build = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-build"; - version = "20160129.1532"; + version = "20160326.2052"; src = fetchFromGitHub { owner = "melpa"; repo = "melpa"; - rev = "fdd35b0df7b71661561c155a8f7ba7c2236f3e30"; - sha256 = "0nl17brqf53pcjgrl4c608zvb82xl27xsliknkvl0zysx0kynkhm"; + rev = "e64cad81615ef3ec34fab1f438b0c55134833c97"; + sha256 = "1lvpzdg5wqnhdqhf2026mcznpyrslwmzpxzy6n3i193p3q2haqnd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-build"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-build"; sha256 = "0618z43j6628jjj448hcigvsfwcs7p0n4bbcmqscrb6p59b7n4wx"; name = "package-build"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/package-build"; + homepage = "https://melpa.org/#/package-build"; license = lib.licenses.free; }; }) {}; @@ -42445,13 +44064,13 @@ sha256 = "0i7f8ambcrhyqq15xwlk31jjdcii2hr37y45va8m5w6n9mkpz8c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-filter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-filter"; sha256 = "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm"; name = "package-filter"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/package-filter"; + homepage = "https://melpa.org/#/package-filter"; license = lib.licenses.free; }; }) {}; @@ -42466,13 +44085,13 @@ sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package+"; sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn"; name = "package-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/package+"; + homepage = "https://melpa.org/#/package+"; license = lib.licenses.free; }; }) {}; @@ -42487,55 +44106,55 @@ sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-safe-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-safe-delete"; sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw"; name = "package-safe-delete"; }; packageRequires = [ emacs epl ]; meta = { - homepage = "http://melpa.org/#/package-safe-delete"; + homepage = "https://melpa.org/#/package-safe-delete"; license = lib.licenses.free; }; }) {}; - package-utils = callPackage ({ epl, fetchFromGitHub, fetchurl, lib, melpaBuild }: + package-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-utils"; - version = "20150126.606"; + version = "20160307.320"; src = fetchFromGitHub { owner = "Silex"; repo = "package-utils"; - rev = "4a56f411f98fd455556a3f1d6c16a577a22057a2"; - sha256 = "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa"; + rev = "68789a94c764dddd247ba62c47107b20ead59db7"; + sha256 = "1pcpr8ls0sqph098lrb6n8fbsm8rq8imglfx3m8zzyw78q9hwcjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-utils"; sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; name = "package-utils"; }; - packageRequires = [ epl ]; + packageRequires = []; meta = { - homepage = "http://melpa.org/#/package-utils"; + homepage = "https://melpa.org/#/package-utils"; license = lib.licenses.free; }; }) {}; packed = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "packed"; - version = "20160209.1105"; + version = "20160409.1151"; src = fetchFromGitHub { owner = "tarsius"; repo = "packed"; - rev = "a6ed874d4c637ec62ed7d1e56a079d9e1b035bbb"; - sha256 = "0phs3ycp2vak95b3n0ppzlq4z83vf5q04cf3ms23qhsyr2y4y04v"; + rev = "4b278931c3694c467e5aaa0246956227806065a0"; + sha256 = "1zzm43x0y90j4cr4zpwn3fs8apl7n0jhl6qlfkcbar7bb62pi66q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/packed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/packed"; sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z"; name = "packed"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/packed"; + homepage = "https://melpa.org/#/packed"; license = lib.licenses.free; }; }) {}; @@ -42550,13 +44169,13 @@ sha256 = "0zx72qbqy2n1r6mjylw67zb6nnchp2b49vsdyl0k5bdaq2xyqv6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pacmacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pacmacs"; sha256 = "0w0r6z365jrglpbifb94w6c22wqi9x93qgkss9pn820hrndqbqxy"; name = "pacmacs"; }; packageRequires = [ cl-lib dash dash-functional emacs f ]; meta = { - homepage = "http://melpa.org/#/pacmacs"; + homepage = "https://melpa.org/#/pacmacs"; license = lib.licenses.free; }; }) {}; @@ -42571,13 +44190,13 @@ sha256 = "0mqd18w98p6z0i08xx7jga10ljh9360x6sqfyvfq6bjfi2jvxdbk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/page-break-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/page-break-lines"; sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7"; name = "page-break-lines"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/page-break-lines"; + homepage = "https://melpa.org/#/page-break-lines"; license = lib.licenses.free; }; }) {}; @@ -42592,13 +44211,13 @@ sha256 = "1dq5ibz7rx9a7gm9zq2pz4c1sxgrm59yibyq92bvmi68lvf2q851"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pager"; sha256 = "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl"; name = "pager"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pager"; + homepage = "https://melpa.org/#/pager"; license = lib.licenses.free; }; }) {}; @@ -42613,13 +44232,13 @@ sha256 = "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pager-default-keybindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pager-default-keybindings"; sha256 = "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci"; name = "pager-default-keybindings"; }; packageRequires = [ pager ]; meta = { - homepage = "http://melpa.org/#/pager-default-keybindings"; + homepage = "https://melpa.org/#/pager-default-keybindings"; license = lib.licenses.free; }; }) {}; @@ -42627,17 +44246,17 @@ pname = "palette"; version = "20151231.1745"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/palette.el"; + url = "https://www.emacswiki.org/emacs/download/palette.el"; sha256 = "1qnv84y0s437xcsjxh0gs9rb36pydba3qfrihvz5pqs9g9w7m94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/palette"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/palette"; sha256 = "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0"; name = "palette"; }; packageRequires = [ hexrgb ]; meta = { - homepage = "http://melpa.org/#/palette"; + homepage = "https://melpa.org/#/palette"; license = lib.licenses.free; }; }) {}; @@ -42652,13 +44271,13 @@ sha256 = "1kbja107smdjqv82p84jx13jk1410c9vms89p1iy1jvn7s8g9fiq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/palimpsest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/palimpsest"; sha256 = "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk"; name = "palimpsest"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/palimpsest"; + homepage = "https://melpa.org/#/palimpsest"; license = lib.licenses.free; }; }) {}; @@ -42673,34 +44292,34 @@ sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pallet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pallet"; sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7"; name = "pallet"; }; packageRequires = [ cask dash f s ]; meta = { - homepage = "http://melpa.org/#/pallet"; + homepage = "https://melpa.org/#/pallet"; license = lib.licenses.free; }; }) {}; pandoc-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }: melpaBuild { pname = "pandoc-mode"; - version = "20160210.600"; + version = "20160406.149"; src = fetchFromGitHub { owner = "joostkremers"; repo = "pandoc-mode"; - rev = "60d3abea189467e04b5ce7dbe38d8b76ce5686cf"; - sha256 = "0g2iab5fmz85z532102lqn2wp1wgqy07bxkca95azi2gkbg0kbmj"; + rev = "cb72eefbbe3a3846cff565466686416b4871b13e"; + sha256 = "0hdrhjghr570w50ilc0q4wl89msgdlhb19p2k5m84qc8m6qdl2v0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pandoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pandoc-mode"; sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781"; name = "pandoc-mode"; }; packageRequires = [ dash hydra ]; meta = { - homepage = "http://melpa.org/#/pandoc-mode"; + homepage = "https://melpa.org/#/pandoc-mode"; license = lib.licenses.free; }; }) {}; @@ -42711,17 +44330,17 @@ src = fetchFromGitHub { owner = "coldnew"; repo = "pangu-spacing"; - rev = "4662e66d5cb72738d46d3296ac7626536fc88acb"; - sha256 = "01zc2cvkyfx80snwrm3cs8cbwgxmd56rgvvbsyq53r4q3zhdk1li"; + rev = "e3dbbe87b91ab3e368fdcbcd0761ce403020db36"; + sha256 = "0bcqc4r0v02v99llphk8s0mj38gxk87a3jqcp8v4sb9040dkm8gd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pangu-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pangu-spacing"; sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8"; name = "pangu-spacing"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pangu-spacing"; + homepage = "https://melpa.org/#/pangu-spacing"; license = lib.licenses.free; }; }) {}; @@ -42736,53 +44355,53 @@ sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paper-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paper-theme"; sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50"; name = "paper-theme"; }; packageRequires = [ emacs hexrgb ]; meta = { - homepage = "http://melpa.org/#/paper-theme"; + homepage = "https://melpa.org/#/paper-theme"; license = lib.licenses.free; }; }) {}; paradox = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, let-alist, lib, melpaBuild, seq, spinner }: melpaBuild { pname = "paradox"; - version = "20160119.2027"; + version = "20160323.1410"; src = fetchFromGitHub { owner = "Malabarba"; repo = "paradox"; - rev = "ecc0190cef9f6edb11c602374126054bcf8615f0"; - sha256 = "1s1lmnrnwm2sq4kdw1byyn03k2qzjkb9fgngn2rrc2vm4wbmx8l7"; + rev = "494608fc9032bb4fc6eb7feac641066a8c4ae174"; + sha256 = "0bbpmrprc1bzil8xh2grnivxlfbjs252717rn7rq0nccdflp4akz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paradox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paradox"; sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2"; name = "paradox"; }; packageRequires = [ emacs hydra let-alist seq spinner ]; meta = { - homepage = "http://melpa.org/#/paradox"; + homepage = "https://melpa.org/#/paradox"; license = lib.licenses.free; }; }) {}; paredit = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "paredit"; - version = "20150217.913"; + version = "20160324.1415"; src = fetchgit { url = "http://mumble.net/~campbell/git/paredit.git"; - rev = "9a696fdcce87c9d9eec4569a9929d0300ac6ae5c"; - sha256 = "34dd7d8c07c697b54ea943566e6967012f7366d6f5a21e31e3d768716bc4928f"; + rev = "2f6f67283c6c41af5a74271fc025c2e837f3d2a2"; + sha256 = "14k1xakdr58647cnq8ky73sh5j94jc6vls05jdxkbv681krdvqvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paredit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paredit"; sha256 = "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr"; name = "paredit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/paredit"; + homepage = "https://melpa.org/#/paredit"; license = lib.licenses.free; }; }) {}; @@ -42797,13 +44416,13 @@ sha256 = "1jkpb67h96sm3fnga9hrg3kwhlp3czdv66v49a9szq174zpsnrgv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paredit-everywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paredit-everywhere"; sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36"; name = "paredit-everywhere"; }; packageRequires = [ paredit ]; meta = { - homepage = "http://melpa.org/#/paredit-everywhere"; + homepage = "https://melpa.org/#/paredit-everywhere"; license = lib.licenses.free; }; }) {}; @@ -42818,13 +44437,13 @@ sha256 = "15xkanrwxh3qqay3vkfqvhzs88g7nnfv9bqk509qflyhqnvc9sxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paredit-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paredit-menu"; sha256 = "05jp4cc548x5f07k096dgizhivdpaajxq38hin831sm0p9cibm4p"; name = "paredit-menu"; }; packageRequires = [ paredit ]; meta = { - homepage = "http://melpa.org/#/paredit-menu"; + homepage = "https://melpa.org/#/paredit-menu"; license = lib.licenses.free; }; }) {}; @@ -42839,34 +44458,34 @@ sha256 = "0fds9s16c0dgq6ah98x4pv5bgwbikqwiikcxjzmk9g1m3s232fl8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paren-completer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paren-completer"; sha256 = "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x"; name = "paren-completer"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/paren-completer"; + homepage = "https://melpa.org/#/paren-completer"; license = lib.licenses.free; }; }) {}; paren-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "paren-face"; - version = "20151105.2106"; + version = "20160424.635"; src = fetchFromGitHub { owner = "tarsius"; repo = "paren-face"; - rev = "09bb594f0c9614fb336fd8b5598215cf7c2d2c7e"; - sha256 = "0ggpb58dw4dv9i0czj064a8fdcalgjqgl4cm5zsk7hcvjcmal9af"; + rev = "932cd9681be30096b766717869ad0d3180d3b637"; + sha256 = "1l0rq3k78k68ky58bv1mhya3mnl7n5wgr88n95na2lcil1dk8ghh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paren-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paren-face"; sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf"; name = "paren-face"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/paren-face"; + homepage = "https://melpa.org/#/paren-face"; license = lib.licenses.free; }; }) {}; @@ -42881,13 +44500,13 @@ sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/parent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/parent-mode"; sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig"; name = "parent-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/parent-mode"; + homepage = "https://melpa.org/#/parent-mode"; license = lib.licenses.free; }; }) {}; @@ -42902,13 +44521,13 @@ sha256 = "1z8cp1cdkxmdqislixxvncj0s1jx42i6arx48kdl5paymnnp282s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/parse-csv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/parse-csv"; sha256 = "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz"; name = "parse-csv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/parse-csv"; + homepage = "https://melpa.org/#/parse-csv"; license = lib.licenses.free; }; }) {}; @@ -42923,13 +44542,13 @@ sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/parsebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/parsebib"; sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd"; name = "parsebib"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/parsebib"; + homepage = "https://melpa.org/#/parsebib"; license = lib.licenses.free; }; }) {}; @@ -42944,13 +44563,13 @@ sha256 = "0npm5kv00fcnb5ajj76jp1dc84zxp7fgrkn472yxdq4hppvx0ixv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pass"; sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr"; name = "pass"; }; packageRequires = [ emacs f password-store ]; meta = { - homepage = "http://melpa.org/#/pass"; + homepage = "https://melpa.org/#/pass"; license = lib.licenses.free; }; }) {}; @@ -42965,13 +44584,13 @@ sha256 = "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/passthword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/passthword"; sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn"; name = "passthword"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/passthword"; + homepage = "https://melpa.org/#/passthword"; license = lib.licenses.free; }; }) {}; @@ -42986,13 +44605,13 @@ sha256 = "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/password-generator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/password-generator"; sha256 = "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb"; name = "password-generator"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/password-generator"; + homepage = "https://melpa.org/#/password-generator"; license = lib.licenses.free; }; }) {}; @@ -43003,16 +44622,16 @@ src = fetchgit { url = "http://git.zx2c4.com/password-store"; rev = "0b2f803fe61992af02b8820c400984b1f615a299"; - sha256 = "36b4cf6025f52ac74daa0026f712951ee7a45c63401cce7f2286fd533e3f9885"; + sha256 = "11cq7wz57zc649zww720cdfa9rqyjl9gf9h0m96wfapm4mhczd1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/password-store"; sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss"; name = "password-store"; }; packageRequires = [ f s ]; meta = { - homepage = "http://melpa.org/#/password-store"; + homepage = "https://melpa.org/#/password-store"; license = lib.licenses.free; }; }) {}; @@ -43027,31 +44646,34 @@ sha256 = "0921xwg3d3345hiqz4c1iyqwvfyg8rv0wggcnig7xh9qivspag4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/password-vault"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/password-vault"; sha256 = "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a"; name = "password-vault"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/password-vault"; + homepage = "https://melpa.org/#/password-vault"; license = lib.licenses.free; }; }) {}; - pastebin = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + pastebin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "pastebin"; - version = "20101125.1355"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/pastebin.el"; - sha256 = "17br64snqby465bjb0l1hzw0pcms5m2knrvb6y9gn3kir4sdi6kn"; + version = "20101125.1402"; + src = fetchFromGitHub { + owner = "nicferrier"; + repo = "elpastebin"; + rev = "8e9a829298ce0f747ab80758aa26caeb2af6cb30"; + sha256 = "1hjzpza8zmzb83sacmqcnh9a52m4x5d8xbwvcqvld1ajglv4y124"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastebin"; - sha256 = "19fgjcbxgmnm59qjkxhvy2aib5qs5d5a43hwvjdhxq2k6rn3f2gj"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastebin"; + sha256 = "0ff01vzslgdmsj1jp1m2lvnan6immd4l7vz466g1glb5nkb7qfcr"; name = "pastebin"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pastebin"; + homepage = "https://melpa.org/#/pastebin"; license = lib.licenses.free; }; }) {}; @@ -43066,13 +44688,13 @@ sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastehub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastehub"; sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v"; name = "pastehub"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pastehub"; + homepage = "https://melpa.org/#/pastehub"; license = lib.licenses.free; }; }) {}; @@ -43087,13 +44709,13 @@ sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastelmac-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastelmac-theme"; sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f"; name = "pastelmac-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/pastelmac-theme"; + homepage = "https://melpa.org/#/pastelmac-theme"; license = lib.licenses.free; }; }) {}; @@ -43104,16 +44726,16 @@ src = fetchgit { url = "https://gist.github.com/1974259.git"; rev = "854839a0b4bf8c3f6a7d947926bf41d690547002"; - sha256 = "c53b4f2c7449bf74648c091f249c33da3ddd8f621474a8901745b4e985cb26ab"; + sha256 = "1ar6rf2ykd252y8ahx0lca7xsgfs6ff287q9iij79gs9fhn4yfy5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastels-on-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastels-on-dark-theme"; sha256 = "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh"; name = "pastels-on-dark-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pastels-on-dark-theme"; + homepage = "https://melpa.org/#/pastels-on-dark-theme"; license = lib.licenses.free; }; }) {}; @@ -43128,13 +44750,34 @@ sha256 = "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/path-headerline-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/path-headerline-mode"; sha256 = "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337"; name = "path-headerline-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/path-headerline-mode"; + homepage = "https://melpa.org/#/path-headerline-mode"; + license = lib.licenses.free; + }; + }) {}; + pathify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "pathify"; + version = "20160423.346"; + src = fetchFromGitHub { + owner = "alezost"; + repo = "pathify.el"; + rev = "401b184c743694a60b3bc4273fc43de05cd5ac4b"; + sha256 = "0wsq11qffw1lx9x79law7jrz0sxm6km83gh891ic9ak2y6j5shxf"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pathify"; + sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f"; + name = "pathify"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/pathify"; license = lib.licenses.free; }; }) {}; @@ -43149,13 +44792,13 @@ sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paxedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paxedit"; sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic"; name = "paxedit"; }; packageRequires = [ cl-lib paredit ]; meta = { - homepage = "http://melpa.org/#/paxedit"; + homepage = "https://melpa.org/#/paxedit"; license = lib.licenses.free; }; }) {}; @@ -43170,13 +44813,13 @@ sha256 = "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pbcopy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pbcopy"; sha256 = "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q"; name = "pbcopy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pbcopy"; + homepage = "https://melpa.org/#/pbcopy"; license = lib.licenses.free; }; }) {}; @@ -43191,13 +44834,13 @@ sha256 = "1jj5h92qakrn9d5d88dvl43b7ppw96rm11hqg3791i6k48nx1d1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pc-bufsw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pc-bufsw"; sha256 = "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5"; name = "pc-bufsw"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pc-bufsw"; + homepage = "https://melpa.org/#/pc-bufsw"; license = lib.licenses.free; }; }) {}; @@ -43212,13 +44855,13 @@ sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcache"; sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l"; name = "pcache"; }; packageRequires = [ eieio ]; meta = { - homepage = "http://melpa.org/#/pcache"; + homepage = "https://melpa.org/#/pcache"; license = lib.licenses.free; }; }) {}; @@ -43233,13 +44876,13 @@ sha256 = "0pwx1nbgciy28rivvrgka46zihmag9ljrs40bvscgd9rkragm4zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcmpl-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcmpl-args"; sha256 = "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr"; name = "pcmpl-args"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pcmpl-args"; + homepage = "https://melpa.org/#/pcmpl-args"; license = lib.licenses.free; }; }) {}; @@ -43254,13 +44897,13 @@ sha256 = "0pspxgicc0mkypp94r0jydmkjr3ngv8y4w1xpj93kp79hnvyls0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcmpl-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcmpl-git"; sha256 = "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk"; name = "pcmpl-git"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pcmpl-git"; + homepage = "https://melpa.org/#/pcmpl-git"; license = lib.licenses.free; }; }) {}; @@ -43269,19 +44912,19 @@ pname = "pcmpl-homebrew"; version = "20150506.2052"; src = fetchFromGitHub { - owner = "kaihaosw"; + owner = "hiddenlotus"; repo = "pcmpl-homebrew"; rev = "a2b9026a1b3c8206d0eca90c491c0397fb275f94"; sha256 = "17i5j5005dhzgwzds5jj1a7d31xvbshjc139vawwz2xip5aynji4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcmpl-homebrew"; - sha256 = "1gckzcwpg4am1ryjy08aic98mbafb64wkfmnm98d64kiwbpaacly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcmpl-homebrew"; + sha256 = "11yd18s79iszp8gas97hqpa0b0whgh7dvlyci3nd4z28467p83v8"; name = "pcmpl-homebrew"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pcmpl-homebrew"; + homepage = "https://melpa.org/#/pcmpl-homebrew"; license = lib.licenses.free; }; }) {}; @@ -43290,19 +44933,19 @@ pname = "pcmpl-pip"; version = "20141024.348"; src = fetchFromGitHub { - owner = "kaihaosw"; + owner = "hiddenlotus"; repo = "pcmpl-pip"; rev = "b775bef9fa3ae9fb8015409554ecdd165c4bc325"; sha256 = "14pz15by9gp0307bcdv9h90mcr35ya89wbn3y13n7k0z5r45gn58"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcmpl-pip"; - sha256 = "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcmpl-pip"; + sha256 = "19a3np5swpqvrx133yvziqnr2pvj8zi0b725j8kxhp2bj1g1c6hr"; name = "pcmpl-pip"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pcmpl-pip"; + homepage = "https://melpa.org/#/pcmpl-pip"; license = lib.licenses.free; }; }) {}; @@ -43317,13 +44960,13 @@ sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcomplete-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcomplete-extension"; sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc"; name = "pcomplete-extension"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/pcomplete-extension"; + homepage = "https://melpa.org/#/pcomplete-extension"; license = lib.licenses.free; }; }) {}; @@ -43338,13 +44981,13 @@ sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcre2el"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcre2el"; sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3"; name = "pcre2el"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/pcre2el"; + homepage = "https://melpa.org/#/pcre2el"; license = lib.licenses.free; }; }) {}; @@ -43359,13 +45002,13 @@ sha256 = "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcsv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcsv"; sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl"; name = "pcsv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pcsv"; + homepage = "https://melpa.org/#/pcsv"; license = lib.licenses.free; }; }) {}; @@ -43380,34 +45023,34 @@ sha256 = "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pdb-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pdb-mode"; sha256 = "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy"; name = "pdb-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pdb-mode"; + homepage = "https://melpa.org/#/pdb-mode"; license = lib.licenses.free; }; }) {}; pdf-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, tablist }: melpaBuild { pname = "pdf-tools"; - version = "20160203.1257"; + version = "20160410.414"; src = fetchFromGitHub { owner = "politza"; repo = "pdf-tools"; - rev = "6b7b10a746695e22ef9aa7d29de20c05e71c7e75"; - sha256 = "1cj489dv8dw7qkczwib47n7zsdw4k53jkxcqm57a2jpv42bhxz4i"; + rev = "786fad7f95db74c06a7a569aad33acba978aad7b"; + sha256 = "00h35j1rhqqnfj7y6z3fblcq2kijnhl51h44424x0xjhydkk3kxv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pdf-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pdf-tools"; sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw"; name = "pdf-tools"; }; packageRequires = [ emacs let-alist tablist ]; meta = { - homepage = "http://melpa.org/#/pdf-tools"; + homepage = "https://melpa.org/#/pdf-tools"; license = lib.licenses.free; }; }) {}; @@ -43422,13 +45065,13 @@ sha256 = "1clvrmvijwpffigh5f29vnwcvffqk0nrvlz26158hip1z9x7nah3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/peacock-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/peacock-theme"; sha256 = "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9"; name = "peacock-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/peacock-theme"; + homepage = "https://melpa.org/#/peacock-theme"; license = lib.licenses.free; }; }) {}; @@ -43443,34 +45086,34 @@ sha256 = "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/peek-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/peek-mode"; sha256 = "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4"; name = "peek-mode"; }; packageRequires = [ elnode ]; meta = { - homepage = "http://melpa.org/#/peek-mode"; + homepage = "https://melpa.org/#/peek-mode"; license = lib.licenses.free; }; }) {}; peep-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "peep-dired"; - version = "20150518.900"; + version = "20160321.1737"; src = fetchFromGitHub { owner = "asok"; repo = "peep-dired"; - rev = "6c18727fc58e2a19638f133810e35bd5d918a559"; - sha256 = "1qi9qzcvclyw9wiamsw0z8q09hs0mfhaj2giny42nd6sqacvfr7m"; + rev = "c88a9a3050197840edfe145f11e0bb9488de32f4"; + sha256 = "1wy5qpnfri1gha2cnl6q20qar8dbl2mimpb43bnhmm2g3wgjyad6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/peep-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/peep-dired"; sha256 = "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735"; name = "peep-dired"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/peep-dired"; + homepage = "https://melpa.org/#/peep-dired"; license = lib.licenses.free; }; }) {}; @@ -43485,33 +45128,33 @@ sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/peg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/peg"; sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm"; name = "peg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/peg"; + homepage = "https://melpa.org/#/peg"; license = lib.licenses.free; }; }) {}; per-buffer-theme = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "per-buffer-theme"; - version = "20151013.1212"; + version = "20160318.1701"; src = fetchhg { url = "https://bitbucket.com/inigoserna/per-buffer-theme.el"; - rev = "2b82a04b28d0"; - sha256 = "1rh87jf0a15q35a8h00bx6k5wa931rb6gh600zbs7j4r3y8qsylf"; + rev = "9e6200da91b3"; + sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/per-buffer-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/per-buffer-theme"; sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn"; name = "per-buffer-theme"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/per-buffer-theme"; + homepage = "https://melpa.org/#/per-buffer-theme"; license = lib.licenses.free; }; }) {}; @@ -43526,13 +45169,13 @@ sha256 = "0fzypcxxd5zlkcybz0xppf09l0vf4vsfisr2y3ijsmxhg7yrwzj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/perl-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/perl-completion"; sha256 = "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b"; name = "perl-completion"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/perl-completion"; + homepage = "https://melpa.org/#/perl-completion"; license = lib.licenses.free; }; }) {}; @@ -43547,13 +45190,13 @@ sha256 = "11fs78b7ssz18wr35vxf6h4zpfj4l4vsikfzayq6hyqjnchv7b45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/perl6-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/perl6-mode"; sha256 = "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv"; name = "perl6-mode"; }; packageRequires = [ emacs pkg-info ]; meta = { - homepage = "http://melpa.org/#/perl6-mode"; + homepage = "https://melpa.org/#/perl6-mode"; license = lib.licenses.free; }; }) {}; @@ -43568,34 +45211,55 @@ sha256 = "0wg0cpqxzfgln6xdngzspsbfirn9a5jxpgk66m0fpi33215z9q26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/perlbrew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/perlbrew"; sha256 = "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8"; name = "perlbrew"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/perlbrew"; + homepage = "https://melpa.org/#/perlbrew"; + license = lib.licenses.free; + }; + }) {}; + persistent-overlays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "persistent-overlays"; + version = "20160311.1910"; + src = fetchFromGitHub { + owner = "mneilly"; + repo = "Emacs-Persistent-Overlays"; + rev = "524166fcf1dd6d69e1af3c8b36ecb15efb0b90fe"; + sha256 = "0kscx5phq84bxjwfjxqdj2jxk39jz4blw0y91vj6rw2y12k9jign"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persistent-overlays"; + sha256 = "136acbxqykvsw8a5il1zgpxr7llxmc3347847vf0jnmbzb1b472a"; + name = "persistent-overlays"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/persistent-overlays"; license = lib.licenses.free; }; }) {}; persistent-scratch = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "persistent-scratch"; - version = "20160112.339"; + version = "20160404.1115"; src = fetchFromGitHub { owner = "Fanael"; repo = "persistent-scratch"; - rev = "f0554b9edb4b05150f297b5c14a2da003209d3bf"; - sha256 = "0h05j55y3csq91a5m2fg99y4rzsh7zca7hnifb6kic5zb3nahi00"; + rev = "107cf4022bed13692e6ac6a544c06227f30e3535"; + sha256 = "0j72rqd96dz9pp9zwc88q3358m4b891dg0szmbyvs4myp3yandz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persistent-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persistent-scratch"; sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1"; name = "persistent-scratch"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/persistent-scratch"; + homepage = "https://melpa.org/#/persistent-scratch"; license = lib.licenses.free; }; }) {}; @@ -43610,34 +45274,34 @@ sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persistent-soft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persistent-soft"; sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc"; name = "persistent-soft"; }; packageRequires = [ list-utils pcache ]; meta = { - homepage = "http://melpa.org/#/persistent-soft"; + homepage = "https://melpa.org/#/persistent-soft"; license = lib.licenses.free; }; }) {}; persp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "persp-mode"; - version = "20160221.655"; + version = "20160426.109"; src = fetchFromGitHub { owner = "Bad-ptr"; repo = "persp-mode.el"; - rev = "d38deb4f09be1c945862e37d673e236bf948107b"; - sha256 = "0p18290a79ccnv7dmfqy69jhdayj3fj2q82w5y9dzv0ln641rgxr"; + rev = "6449c8511da1de2ddd1cb05bb4e1e7314c136535"; + sha256 = "0044029nrv6ricaddwg7nsz43qwnsahsy7v6k2fx38qss5cv35yr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persp-mode"; sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w"; name = "persp-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/persp-mode"; + homepage = "https://melpa.org/#/persp-mode"; license = lib.licenses.free; }; }) {}; @@ -43652,13 +45316,13 @@ sha256 = "0b9hz253m6d58dwsjsk9d1fw0ql33m9wfvyx10ncsqbr0j0s98k5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persp-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persp-projectile"; sha256 = "10l2kqjyigg98qbbpf3qf4d5bm63kkk4vp7ip8fibgj1p9gqmnxm"; name = "persp-projectile"; }; packageRequires = [ cl-lib perspective projectile ]; meta = { - homepage = "http://melpa.org/#/persp-projectile"; + homepage = "https://melpa.org/#/persp-projectile"; license = lib.licenses.free; }; }) {}; @@ -43669,17 +45333,17 @@ src = fetchFromGitHub { owner = "nex3"; repo = "perspective-el"; - rev = "add79422bf742c2d605137ba5fa02f1ec9bad9e2"; - sha256 = "1acbhnqnajk21jz0m575yq4fvdxfwjbq90nvwp7ikz690nhvjb0k"; + rev = "c075205313b23cc816c72f1f43b846ce608a22d5"; + sha256 = "11slq43p6gjvmi4pqwh76a26c2v6l1dmnihgaskn4g0s65qw3kqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/perspective"; sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml"; name = "perspective"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/perspective"; + homepage = "https://melpa.org/#/perspective"; license = lib.licenses.free; }; }) {}; @@ -43694,13 +45358,13 @@ sha256 = "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pg"; sha256 = "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji"; name = "pg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pg"; + homepage = "https://melpa.org/#/pg"; license = lib.licenses.free; }; }) {}; @@ -43715,13 +45379,13 @@ sha256 = "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pgdevenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pgdevenv"; sha256 = "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w"; name = "pgdevenv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pgdevenv"; + homepage = "https://melpa.org/#/pgdevenv"; license = lib.licenses.free; }; }) {}; @@ -43736,13 +45400,13 @@ sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ph"; sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l"; name = "ph"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ph"; + homepage = "https://melpa.org/#/ph"; license = lib.licenses.free; }; }) {}; @@ -43757,13 +45421,13 @@ sha256 = "0y77ld1cmfpv9p7yx2mlbvjm5ivsrf2j0g0h4zabfrahz22v39d4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phabricator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phabricator"; sha256 = "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c"; name = "phabricator"; }; packageRequires = [ dash emacs f projectile s ]; meta = { - homepage = "http://melpa.org/#/phabricator"; + homepage = "https://melpa.org/#/phabricator"; license = lib.licenses.free; }; }) {}; @@ -43778,13 +45442,13 @@ sha256 = "14g06ndxrqz80kdyhil6ajcqqxkfa77r1gr7vwqa9sq6jgm8dpx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-autopair"; sha256 = "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4"; name = "phi-autopair"; }; packageRequires = [ paredit ]; meta = { - homepage = "http://melpa.org/#/phi-autopair"; + homepage = "https://melpa.org/#/phi-autopair"; license = lib.licenses.free; }; }) {}; @@ -43799,13 +45463,13 @@ sha256 = "1rchxhp4kji5kbg8kzkzdbfy8sdbgbqd5g59cch7ia9agh5jvwyx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-grep"; sha256 = "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj"; name = "phi-grep"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/phi-grep"; + homepage = "https://melpa.org/#/phi-grep"; license = lib.licenses.free; }; }) {}; @@ -43820,13 +45484,13 @@ sha256 = "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-rectangle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-rectangle"; sha256 = "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy"; name = "phi-rectangle"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/phi-rectangle"; + homepage = "https://melpa.org/#/phi-rectangle"; license = lib.licenses.free; }; }) {}; @@ -43841,13 +45505,13 @@ sha256 = "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-search"; sha256 = "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g"; name = "phi-search"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/phi-search"; + homepage = "https://melpa.org/#/phi-search"; license = lib.licenses.free; }; }) {}; @@ -43862,34 +45526,34 @@ sha256 = "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-search-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-search-dired"; sha256 = "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p"; name = "phi-search-dired"; }; packageRequires = [ phi-search ]; meta = { - homepage = "http://melpa.org/#/phi-search-dired"; + homepage = "https://melpa.org/#/phi-search-dired"; license = lib.licenses.free; }; }) {}; phi-search-mc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors, phi-search }: melpaBuild { pname = "phi-search-mc"; - version = "20150218.55"; + version = "20160324.1003"; src = fetchFromGitHub { owner = "knu"; repo = "phi-search-mc.el"; - rev = "4c6d2d39feb502febb81fc98b7b5854d88150c69"; - sha256 = "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv"; + rev = "7aa671910f766437089aec26c3aa7814222d1356"; + sha256 = "0wr86ad0yl52im6b9z0b9pzmhcn39qg5m9878yfv1nbxliw40lcd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-search-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-search-mc"; sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8"; name = "phi-search-mc"; }; packageRequires = [ multiple-cursors phi-search ]; meta = { - homepage = "http://melpa.org/#/phi-search-mc"; + homepage = "https://melpa.org/#/phi-search-mc"; license = lib.licenses.free; }; }) {}; @@ -43904,13 +45568,13 @@ sha256 = "1k8hjnkinzdxy9qxldsyvj6npa2sv48m905d1cvxr8lyzpc5hikh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-search-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-search-migemo"; sha256 = "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6"; name = "phi-search-migemo"; }; packageRequires = [ migemo phi-search ]; meta = { - homepage = "http://melpa.org/#/phi-search-migemo"; + homepage = "https://melpa.org/#/phi-search-migemo"; license = lib.licenses.free; }; }) {}; @@ -43925,13 +45589,13 @@ sha256 = "1fg63g1cm9mp50sf3ldcb0pr4bvlfxx010arisxdkj102pmib2ri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phoenix-dark-mono-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phoenix-dark-mono-theme"; sha256 = "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939"; name = "phoenix-dark-mono-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/phoenix-dark-mono-theme"; + homepage = "https://melpa.org/#/phoenix-dark-mono-theme"; license = lib.licenses.free; }; }) {}; @@ -43946,13 +45610,13 @@ sha256 = "042yw44d5pwykl177sdh209drc5f17yzhq0mxrf7qhycbjs4h8cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phoenix-dark-pink-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phoenix-dark-pink-theme"; sha256 = "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr"; name = "phoenix-dark-pink-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/phoenix-dark-pink-theme"; + homepage = "https://melpa.org/#/phoenix-dark-pink-theme"; license = lib.licenses.free; }; }) {}; @@ -43967,13 +45631,13 @@ sha256 = "1l64rka9wrnwdgfgwv8xh7mq9f1937z2v3r82qcfi6il3anw4zm0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-auto-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-auto-yasnippets"; sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn"; name = "php-auto-yasnippets"; }; packageRequires = [ php-mode yasnippet ]; meta = { - homepage = "http://melpa.org/#/php-auto-yasnippets"; + homepage = "https://melpa.org/#/php-auto-yasnippets"; license = lib.licenses.free; }; }) {}; @@ -43988,13 +45652,13 @@ sha256 = "10lzbyr7z95mynz885k75n2ibsy92dh3mg3s5m69n03jnf9gv1jy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-boris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-boris"; sha256 = "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g"; name = "php-boris"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/php-boris"; + homepage = "https://melpa.org/#/php-boris"; license = lib.licenses.free; }; }) {}; @@ -44009,13 +45673,13 @@ sha256 = "1wk7vq80v97psxfg0pwy4mc6kdc61gm6h1vgl9p71ii6g6zvzcqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-boris-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-boris-minor-mode"; sha256 = "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl"; name = "php-boris-minor-mode"; }; packageRequires = [ highlight php-boris ]; meta = { - homepage = "http://melpa.org/#/php-boris-minor-mode"; + homepage = "https://melpa.org/#/php-boris-minor-mode"; license = lib.licenses.free; }; }) {}; @@ -44030,34 +45694,34 @@ sha256 = "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-eldoc"; sha256 = "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j"; name = "php-eldoc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/php-eldoc"; + homepage = "https://melpa.org/#/php-eldoc"; license = lib.licenses.free; }; }) {}; - php-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + php-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-mode"; - version = "20151002.2230"; + version = "20160413.228"; src = fetchFromGitHub { owner = "ejmr"; repo = "php-mode"; - rev = "9b1e7736ce014f26f40635af3c781127a5e32dfa"; - sha256 = "0206jv7rz9gm016lpfdwh2l0z6da25szc6hfxgcz2qvkzjpvrlr6"; + rev = "9083f3ac3f61f2cbf30f034151518860b992c782"; + sha256 = "1ybx2kb719xm4ld24kki7x5x6pygcxvnbp9dr49s8xh60g5h4b47"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-mode"; sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y"; name = "php-mode"; }; - packageRequires = []; + packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/php-mode"; + homepage = "https://melpa.org/#/php-mode"; license = lib.licenses.free; }; }) {}; @@ -44072,34 +45736,34 @@ sha256 = "0f1n0jcla157ngqshq5n8iws216ar63ynjd6743cbdrzj0v030wg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php+-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php+-mode"; sha256 = "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik"; name = "php-plus--mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/php+-mode"; + homepage = "https://melpa.org/#/php+-mode"; license = lib.licenses.free; }; }) {}; php-refactor-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-refactor-mode"; - version = "20140920.1611"; + version = "20160417.1646"; src = fetchFromGitHub { owner = "keelerm84"; repo = "php-refactor-mode.el"; - rev = "9010e5e8dde2ad3a2c7a65ff1752b5482dfd4f61"; - sha256 = "163albjkq7ldc9fki368540m7nl58qa70wfpff08gx3gsvywfnyi"; + rev = "de47bb705c58e7ac06bdb1b403697013c77306ae"; + sha256 = "01i552ch8r8i6nzw8prwxcafzrq6xnzyc4cn36w3my1xq0k2ljvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-refactor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-refactor-mode"; sha256 = "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s"; name = "php-refactor-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/php-refactor-mode"; + homepage = "https://melpa.org/#/php-refactor-mode"; license = lib.licenses.free; }; }) {}; @@ -44114,13 +45778,13 @@ sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phpcbf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phpcbf"; sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv"; name = "phpcbf"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/phpcbf"; + homepage = "https://melpa.org/#/phpcbf"; license = lib.licenses.free; }; }) {}; @@ -44135,13 +45799,13 @@ sha256 = "1zghw5nfm4a9j98vsaw4fc8r4f98s5fhgvgbnbyyxapl851fa9i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phpunit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phpunit"; sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8"; name = "phpunit"; }; packageRequires = [ f pkg-info s ]; meta = { - homepage = "http://melpa.org/#/phpunit"; + homepage = "https://melpa.org/#/phpunit"; license = lib.licenses.free; }; }) {}; @@ -44156,13 +45820,13 @@ sha256 = "053jqzl0sp3dnl4919vi30xqrdcpi9jsqx5hndj1bprf7926w11d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pianobar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pianobar"; sha256 = "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn"; name = "pianobar"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pianobar"; + homepage = "https://melpa.org/#/pianobar"; license = lib.licenses.free; }; }) {}; @@ -44177,13 +45841,13 @@ sha256 = "0p91ysyjksbravnw3l78mshay6swgb5k1zi5bbppppk8zkmdp115"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/picolisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/picolisp-mode"; sha256 = "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5"; name = "picolisp-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/picolisp-mode"; + homepage = "https://melpa.org/#/picolisp-mode"; license = lib.licenses.free; }; }) {}; @@ -44198,13 +45862,13 @@ sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pig-mode"; sha256 = "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x"; name = "pig-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pig-mode"; + homepage = "https://melpa.org/#/pig-mode"; license = lib.licenses.free; }; }) {}; @@ -44219,13 +45883,13 @@ sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pig-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pig-snippets"; sha256 = "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2"; name = "pig-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/pig-snippets"; + homepage = "https://melpa.org/#/pig-snippets"; license = lib.licenses.free; }; }) {}; @@ -44240,13 +45904,13 @@ sha256 = "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pillar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pillar"; sha256 = "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js"; name = "pillar"; }; packageRequires = [ makey ]; meta = { - homepage = "http://melpa.org/#/pillar"; + homepage = "https://melpa.org/#/pillar"; license = lib.licenses.free; }; }) {}; @@ -44261,13 +45925,13 @@ sha256 = "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pinboard-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pinboard-api"; sha256 = "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0"; name = "pinboard-api"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pinboard-api"; + homepage = "https://melpa.org/#/pinboard-api"; license = lib.licenses.free; }; }) {}; @@ -44282,13 +45946,13 @@ sha256 = "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pinot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pinot"; sha256 = "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i"; name = "pinot"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pinot"; + homepage = "https://melpa.org/#/pinot"; license = lib.licenses.free; }; }) {}; @@ -44303,13 +45967,13 @@ sha256 = "096izagfjw8cnxjq3v70x8a55npyxnr40mg1fc9b1jnqw6qwf491"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pinyin-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pinyin-search"; sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z"; name = "pinyin-search"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pinyin-search"; + homepage = "https://melpa.org/#/pinyin-search"; license = lib.licenses.free; }; }) {}; @@ -44324,13 +45988,13 @@ sha256 = "0j4h6q1s2s9dw1pp22xsajchwg8nh3x4x5qxbzf19i1xbpcghw7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pip-requirements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pip-requirements"; sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz"; name = "pip-requirements"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/pip-requirements"; + homepage = "https://melpa.org/#/pip-requirements"; license = lib.licenses.free; }; }) {}; @@ -44345,13 +46009,13 @@ sha256 = "1sbwqrk9nciqwm53sfbq3nr9f9zzpz79dmxs8yp005dk7accdlls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pivotal-tracker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pivotal-tracker"; sha256 = "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2"; name = "pivotal-tracker"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pivotal-tracker"; + homepage = "https://melpa.org/#/pivotal-tracker"; license = lib.licenses.free; }; }) {}; @@ -44366,13 +46030,13 @@ sha256 = "0nnvf2p593gn8sbyrvczyll030xgnkxn900a2hy7ia7xh0wmvddp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pixie-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pixie-mode"; sha256 = "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8"; name = "pixie-mode"; }; packageRequires = [ clojure-mode inf-clojure ]; meta = { - homepage = "http://melpa.org/#/pixie-mode"; + homepage = "https://melpa.org/#/pixie-mode"; license = lib.licenses.free; }; }) {}; @@ -44387,13 +46051,13 @@ sha256 = "18rvnvm097ca4yc1nfswdv7dfqg36insnif5kfj19aa60m9qxl09"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pixiv-novel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pixiv-novel-mode"; sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px"; name = "pixiv-novel-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pixiv-novel-mode"; + homepage = "https://melpa.org/#/pixiv-novel-mode"; license = lib.licenses.free; }; }) {}; @@ -44408,13 +46072,13 @@ sha256 = "1xkdbyhz9mgdz5zmjm4hh050klsl12w5lkckw2l77ihcxv0vjnf2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pkg-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pkg-info"; sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx"; name = "pkg-info"; }; packageRequires = [ epl ]; meta = { - homepage = "http://melpa.org/#/pkg-info"; + homepage = "https://melpa.org/#/pkg-info"; license = lib.licenses.free; }; }) {}; @@ -44429,13 +46093,13 @@ sha256 = "077vp3fxwxj7b98ydw6iyi391w3acp73qwk6615yqdylpp66m750"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pkgbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pkgbuild-mode"; sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x"; name = "pkgbuild-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pkgbuild-mode"; + homepage = "https://melpa.org/#/pkgbuild-mode"; license = lib.licenses.free; }; }) {}; @@ -44450,76 +46114,97 @@ sha256 = "0rpiyp95k14fsc5hdbnj4hs3snh0vm8a2skcplsdwkmb5j9547w1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plan9-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plan9-theme"; sha256 = "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc"; name = "plan9-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/plan9-theme"; + homepage = "https://melpa.org/#/plan9-theme"; license = lib.licenses.free; }; }) {}; planet-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "planet-theme"; - version = "20150627.951"; + version = "20160425.2258"; src = fetchFromGitHub { owner = "cmack"; repo = "emacs-planet-theme"; - rev = "e2bd6645535a3044fceafb1ce5d296cc111d5f2a"; - sha256 = "0q4zdw58yawqp9rhx04lhq0v7iaf61ydbw19gpw4an85j2hxrkzq"; + rev = "29cc5915d55b7cec9094a5faacebfbc75ce1d1b8"; + sha256 = "1aahyxmjsz9i5d22654bnmis8isbf5fydh0yy03sbiybm2hlyimi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/planet-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/planet-theme"; sha256 = "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9"; name = "planet-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/planet-theme"; + homepage = "https://melpa.org/#/planet-theme"; license = lib.licenses.free; }; }) {}; - plantuml-mode = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: + plantuml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "plantuml-mode"; - version = "20131031.1832"; + version = "20150601.131"; src = fetchFromGitHub { - owner = "wildsoul"; + owner = "zwz"; repo = "plantuml-mode"; - rev = "4bc4cdf7974c8b8956b848ef69f1a2b5767597aa"; - sha256 = "0jvs051ncpv7pwx2kr14fm1wqakabwc031xcv7lba0mx7shxzqdg"; + rev = "574f5e79605a028912bb90c03487c80b1db612e7"; + sha256 = "03nw4af1lgfppsbfq945c9pcz6ynhvpzlfdx3az83zi24b10az8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plantuml-mode"; - sha256 = "0fg313mx9jz92lf9lr5apvma9ixfz02dvyzw1phsgzawi7hai264"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plantuml-mode"; + sha256 = "14imiqfgc2j9kjr3aqwzlw8xr1w5hb8i7d4ch709qky036i3lsci"; name = "plantuml-mode"; }; - packageRequires = [ auto-complete ]; + packageRequires = []; meta = { - homepage = "http://melpa.org/#/plantuml-mode"; + homepage = "https://melpa.org/#/plantuml-mode"; license = lib.licenses.free; }; }) {}; platformio-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "platformio-mode"; - version = "20160109.2235"; + version = "20160327.2020"; src = fetchFromGitHub { - owner = "zachmassia"; - repo = "platformio-mode"; - rev = "6d12f34548f93dec3c6fe40843d87a8a67ec25c7"; - sha256 = "1k3bqv5y2xp1jl2hpf8qhs11yzhcl8k40fxqjzv7mvc0ysq9y6wb"; + owner = "ZachMassia"; + repo = "PlatformIO-Mode"; + rev = "5f7c70f6749172a822ee7dd8291ee987eee8947b"; + sha256 = "04xnk9s5mjr55y36y07k4vnsf841pg70c9wr6vcj5s16h3fhx9nw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/platformio-mode"; - sha256 = "022l20sfyfkvp6kmmqxr7gcmcdx6b1dgsakjjnx8fknrpxr5kyps"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/platformio-mode"; + sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f"; name = "platformio-mode"; }; packageRequires = [ projectile ]; meta = { - homepage = "http://melpa.org/#/platformio-mode"; + homepage = "https://melpa.org/#/platformio-mode"; + license = lib.licenses.free; + }; + }) {}; + play-routes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "play-routes-mode"; + version = "20160322.1200"; + src = fetchFromGitHub { + owner = "brocode"; + repo = "play-routes-mode"; + rev = "d7eb682cd474d90b3a3d005290cd6d4fe9f94cae"; + sha256 = "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/play-routes-mode"; + sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz"; + name = "play-routes-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/play-routes-mode"; license = lib.licenses.free; }; }) {}; @@ -44534,13 +46219,13 @@ sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plenv"; sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4"; name = "plenv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/plenv"; + homepage = "https://melpa.org/#/plenv"; license = lib.licenses.free; }; }) {}; @@ -44555,13 +46240,13 @@ sha256 = "07hspp4bkb3f5dm0l1arm0w1m04cq4glg81x4a9kf7bl601wzki2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plim-mode"; sha256 = "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi"; name = "plim-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/plim-mode"; + homepage = "https://melpa.org/#/plim-mode"; license = lib.licenses.free; }; }) {}; @@ -44576,13 +46261,13 @@ sha256 = "1r2yxa7gqr0z9fwhx38siwjpg73a93rdmnhr4h6nm6lr32vviyxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plsense"; sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va"; name = "plsense"; }; packageRequires = [ auto-complete log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/plsense"; + homepage = "https://melpa.org/#/plsense"; license = lib.licenses.free; }; }) {}; @@ -44597,13 +46282,13 @@ sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plsense-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plsense-direx"; sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j"; name = "plsense-direx"; }; packageRequires = [ direx log4e plsense yaxception ]; meta = { - homepage = "http://melpa.org/#/plsense-direx"; + homepage = "https://melpa.org/#/plsense-direx"; license = lib.licenses.free; }; }) {}; @@ -44611,17 +46296,17 @@ pname = "plsql"; version = "20121115.443"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/plsql.el"; + url = "https://www.emacswiki.org/emacs/download/plsql.el"; sha256 = "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plsql"; sha256 = "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1"; name = "plsql"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/plsql"; + homepage = "https://melpa.org/#/plsql"; license = lib.licenses.free; }; }) {}; @@ -44634,34 +46319,34 @@ sha256 = "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pmdm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pmdm"; sha256 = "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b"; name = "pmdm"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pmdm"; + homepage = "https://melpa.org/#/pmdm"; license = lib.licenses.free; }; }) {}; point-stack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "point-stack"; - version = "20140102.1423"; + version = "20141225.2310"; src = fetchFromGitHub { - owner = "mattharrison"; + owner = "dgutov"; repo = "point-stack"; - rev = "2d2a5e90988792cf49ba4c5a839ef6a1400f5a24"; - sha256 = "1p1j2kfwj7gzir7q5ls34k8764kwbnb6d0dhlw4zb4kvwlidp6c1"; + rev = "86b37666882398f4db93f3aba0ebb7b7965032cd"; + sha256 = "0nqv63yy0qpxhblzmkyvla90p9a7729fqxvhkfld9jxfqpgv1xyp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/point-stack"; - sha256 = "17z9mc49x4092axs7lq6b6z7yrrhkl8bdx5f8gq6qy5lampgyzch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/point-stack"; + sha256 = "0201gka1izqgxyivan60jbg9x1mmsw5dscxacasg97ffsciwbfr9"; name = "point-stack"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/point-stack"; + homepage = "https://melpa.org/#/point-stack"; license = lib.licenses.free; }; }) {}; @@ -44669,17 +46354,17 @@ pname = "point-undo"; version = "20100504.329"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/point-undo.el"; + url = "https://www.emacswiki.org/emacs/download/point-undo.el"; sha256 = "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/point-undo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/point-undo"; sha256 = "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k"; name = "point-undo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/point-undo"; + homepage = "https://melpa.org/#/point-undo"; license = lib.licenses.free; }; }) {}; @@ -44694,34 +46379,34 @@ sha256 = "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pointback"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pointback"; sha256 = "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4"; name = "pointback"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pointback"; + homepage = "https://melpa.org/#/pointback"; license = lib.licenses.free; }; }) {}; polymode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "polymode"; - version = "20160217.1428"; + version = "20160413.1600"; src = fetchFromGitHub { - owner = "vitoshka"; + owner = "vspinu"; repo = "polymode"; - rev = "e90497a1e44adb95ec3cd761a95a47e4775849ee"; - sha256 = "0cg7pgzd19pq9m6gbj6pl2cnaq2impjbnss2w177i3ahkfm4rl4k"; + rev = "46b17263b5cb904dcfc12d06c1d4d32f7bd9ff40"; + sha256 = "0h6vg9msr8iw3iiy8s13dl8wdhay82q7dqir6dnj0868vdhnl3fb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/polymode"; - sha256 = "0ndavaan7k55l3ghm5h08i0slmmzc82c0gl4b8w91fa8bi2lq4h4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/polymode"; + sha256 = "0md02l7vhghvzplxa04sphimhphmksvmz079zykxajcvpm2rgwc8"; name = "polymode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/polymode"; + homepage = "https://melpa.org/#/polymode"; license = lib.licenses.free; }; }) {}; @@ -44736,13 +46421,13 @@ sha256 = "1dlk0ypw8316vgvb7z2p7fvaiz1wcy1l8crixypaya1zdsnh9v1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pomodoro"; sha256 = "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8"; name = "pomodoro"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pomodoro"; + homepage = "https://melpa.org/#/pomodoro"; license = lib.licenses.free; }; }) {}; @@ -44757,13 +46442,13 @@ sha256 = "1g1yw0ykwswl9dnicyi7kxskqqry40wjykshgrqhs4k09j3jnacr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pony-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pony-mode"; sha256 = "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl"; name = "pony-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pony-mode"; + homepage = "https://melpa.org/#/pony-mode"; license = lib.licenses.free; }; }) {}; @@ -44772,40 +46457,40 @@ pname = "pony-snippets"; version = "20160204.2211"; src = fetchFromGitHub { - owner = "seantallen"; + owner = "SeanTAllen"; repo = "pony-snippets"; rev = "a6615ab0693f17fc47ec45753202010238157810"; sha256 = "002jhj47b9aqrfjy8b31ccbqhah5sn9wn7dmrhm1wbbgj9rfyw6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pony-snippets"; - sha256 = "06rrzfg20kzpscnqr2lin9jvrcydq4wnrv7nj1d0lm6988qz88jx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pony-snippets"; + sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn"; name = "pony-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/pony-snippets"; + homepage = "https://melpa.org/#/pony-snippets"; license = lib.licenses.free; }; }) {}; ponylang-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ponylang-mode"; - version = "20160123.1637"; + version = "20160403.1917"; src = fetchFromGitHub { owner = "SeanTAllen"; repo = "ponylang-mode"; - rev = "d05425eca7c924109263bdac72083137a7967454"; - sha256 = "0jlycv0ck5kbszwc0v2gbka6k5h39nz8763ws0v8jada7zzmyvxm"; + rev = "e6c713a1e43f4e5a3ee78e102050fff4efe334fb"; + sha256 = "0ay44hp82ly4kdsgwhhk16gvw26kyvpl8h3fziyicfl5swy954nb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ponylang-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ponylang-mode"; sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1"; name = "ponylang-mode"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/ponylang-mode"; + homepage = "https://melpa.org/#/ponylang-mode"; license = lib.licenses.free; }; }) {}; @@ -44820,13 +46505,13 @@ sha256 = "0n1w1adglbavqgrv16rzhym72c3q083mh0c8yl5lj7adn4nr4gr3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pophint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pophint"; sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72"; name = "pophint"; }; packageRequires = [ log4e popup yaxception ]; meta = { - homepage = "http://melpa.org/#/pophint"; + homepage = "https://melpa.org/#/pophint"; license = lib.licenses.free; }; }) {}; @@ -44841,34 +46526,34 @@ sha256 = "0ja1kq4pl62zxlzwv2m8zzb55lg2fl366bi9pzvxl38frvbqg8qx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/poporg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/poporg"; sha256 = "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8"; name = "poporg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/poporg"; + homepage = "https://melpa.org/#/poporg"; license = lib.licenses.free; }; }) {}; popup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "popup"; - version = "20151222.1539"; + version = "20160409.2333"; src = fetchFromGitHub { owner = "auto-complete"; repo = "popup-el"; - rev = "004d58c47f6406b6555cf112f8a6eed6114cb63b"; - sha256 = "19sbdxs6l66nflfb4kmx4lb6z0shwpfq79b5h9hhi0xr70xacd4b"; + rev = "8eee9c57288d12073d331a9eb4c172358d268455"; + sha256 = "0a85ih4r8scxadfrj18kvd8k7p9s4wpi780w0rp5iby0fyh94bwl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup"; sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2"; name = "popup"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/popup"; + homepage = "https://melpa.org/#/popup"; license = lib.licenses.free; }; }) {}; @@ -44883,34 +46568,34 @@ sha256 = "1q9zajv6g7mi6k98kzq3498nhmdkp1z9d2b8vgzbk7745d39gm9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-complete"; sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1"; name = "popup-complete"; }; packageRequires = [ popup ]; meta = { - homepage = "http://melpa.org/#/popup-complete"; + homepage = "https://melpa.org/#/popup-complete"; license = lib.licenses.free; }; }) {}; popup-imenu = callPackage ({ dash, fetchFromGitHub, fetchurl, flx-ido, lib, melpaBuild, popup }: melpaBuild { pname = "popup-imenu"; - version = "20160214.1104"; + version = "20160409.710"; src = fetchFromGitHub { owner = "ancane"; repo = "popup-imenu"; - rev = "29ac87726987ab5d451e04251336fd8c2a782450"; - sha256 = "07gwfmp53gwk2zpip5m1vrn3i36c22c71z3grn65hm3k3ykl2a1y"; + rev = "540e8c0473fd50ff0a85c870057e397a0d3c5eb5"; + sha256 = "19mqzfpki2zlnibp2vzymhdld1m20jinxwgdhmbl6zdfx74zbz7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-imenu"; sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn"; name = "popup-imenu"; }; packageRequires = [ dash flx-ido popup ]; meta = { - homepage = "http://melpa.org/#/popup-imenu"; + homepage = "https://melpa.org/#/popup-imenu"; license = lib.licenses.free; }; }) {}; @@ -44925,34 +46610,34 @@ sha256 = "1zdwlmk3vr0mq0dxrnkqjncalnbmvpxc0lma2sv3a4czl8yv0inn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-kill-ring"; sha256 = "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip"; name = "popup-kill-ring"; }; packageRequires = [ popup pos-tip ]; meta = { - homepage = "http://melpa.org/#/popup-kill-ring"; + homepage = "https://melpa.org/#/popup-kill-ring"; license = lib.licenses.free; }; }) {}; popup-switcher = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "popup-switcher"; - version = "20160123.1600"; + version = "20160405.438"; src = fetchFromGitHub { owner = "kostafey"; repo = "popup-switcher"; - rev = "df48ac506dbd5b1c611d6cd0066ebeb91b4d97d1"; - sha256 = "19c916bz354di7p4md8456xhf3i72db86mwlk2wrq0d4kx16dh0c"; + rev = "66c1b2491de92c05752267ff3cba3e8c9015c644"; + sha256 = "02d6rzxwzw1pbcjh8lxkaw1j77vq5jcryl8ajkmm6jp5daqyjjyc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-switcher"; sha256 = "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1"; name = "popup-switcher"; }; packageRequires = [ cl-lib popup ]; meta = { - homepage = "http://melpa.org/#/popup-switcher"; + homepage = "https://melpa.org/#/popup-switcher"; license = lib.licenses.free; }; }) {}; @@ -44967,13 +46652,13 @@ sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popwin"; sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf"; name = "popwin"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/popwin"; + homepage = "https://melpa.org/#/popwin"; license = lib.licenses.free; }; }) {}; @@ -44988,13 +46673,13 @@ sha256 = "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/portage-navi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/portage-navi"; sha256 = "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg"; name = "portage-navi"; }; packageRequires = [ concurrent ctable ]; meta = { - homepage = "http://melpa.org/#/portage-navi"; + homepage = "https://melpa.org/#/portage-navi"; license = lib.licenses.free; }; }) {}; @@ -45009,13 +46694,13 @@ sha256 = "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pos-tip"; sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh"; name = "pos-tip"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pos-tip"; + homepage = "https://melpa.org/#/pos-tip"; license = lib.licenses.free; }; }) {}; @@ -45030,13 +46715,13 @@ sha256 = "14silfng5rbdc8hnzswjmqk705pncjlk8iphjcxcm799h44pnlcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pov-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pov-mode"; sha256 = "1xzdmlfi5ixdh08v0ca80zkh9n3gfn4ql5pnl3jh745wbj9azxp9"; name = "pov-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pov-mode"; + homepage = "https://melpa.org/#/pov-mode"; license = lib.licenses.free; }; }) {}; @@ -45051,34 +46736,34 @@ sha256 = "1jzqav2lchr0ggckjq9rwlxwryi7m7xnmn8471zgiamd1h04ddqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pow"; sha256 = "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn"; name = "pow"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/pow"; + homepage = "https://melpa.org/#/pow"; license = lib.licenses.free; }; }) {}; powerline = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "powerline"; - version = "20151008.1649"; + version = "20160224.2252"; src = fetchFromGitHub { owner = "milkypostman"; repo = "powerline"; - rev = "e886f6fe46c7413befb1de3799a185366fd8b39c"; - sha256 = "0dq7fqlv72p72hbshzbwz5k40mqfdw10v9hsd1m18s2rf7082570"; + rev = "b0793ac11cdd6de17848ac654d61b1255416789e"; + sha256 = "1dmxnail0w4v5d29qiycqwd27mkxfk9cs5p2l9nm0fajm4mm5wa2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/powerline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/powerline"; sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx"; name = "powerline"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/powerline"; + homepage = "https://melpa.org/#/powerline"; license = lib.licenses.free; }; }) {}; @@ -45093,13 +46778,13 @@ sha256 = "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/powerline-evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/powerline-evil"; sha256 = "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr"; name = "powerline-evil"; }; packageRequires = [ evil powerline ]; meta = { - homepage = "http://melpa.org/#/powerline-evil"; + homepage = "https://melpa.org/#/powerline-evil"; license = lib.licenses.free; }; }) {}; @@ -45114,13 +46799,13 @@ sha256 = "1ym373mjyk3vfbw2c918zgaf9m35j8bkrpcj9d8m9drf4h7a8d3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/powershell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/powershell"; sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk"; name = "powershell"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/powershell"; + homepage = "https://melpa.org/#/powershell"; license = lib.licenses.free; }; }) {}; @@ -45128,17 +46813,17 @@ pname = "pp-c-l"; version = "20151231.1747"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/pp-c-l.el"; + url = "https://www.emacswiki.org/emacs/download/pp-c-l.el"; sha256 = "10gsdjdr8qngimqh57qxcljjnypbf38asxqb3zlfwc2ls52fc19q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pp-c-l"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pp-c-l"; sha256 = "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v"; name = "pp-c-l"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pp-c-l"; + homepage = "https://melpa.org/#/pp-c-l"; license = lib.licenses.free; }; }) {}; @@ -45146,17 +46831,17 @@ pname = "pp-plus"; version = "20151231.1746"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/pp+.el"; + url = "https://www.emacswiki.org/emacs/download/pp+.el"; sha256 = "0zlmcrg8gx812gm04cil7p2z0g4814c158yv1ghmrbxshn8p45fg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pp+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pp+"; sha256 = "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq"; name = "pp-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pp+"; + homepage = "https://melpa.org/#/pp+"; license = lib.licenses.free; }; }) {}; @@ -45171,13 +46856,13 @@ sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ppd-sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ppd-sr-speedbar"; sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8"; name = "ppd-sr-speedbar"; }; packageRequires = [ project-persist-drawer sr-speedbar ]; meta = { - homepage = "http://melpa.org/#/ppd-sr-speedbar"; + homepage = "https://melpa.org/#/ppd-sr-speedbar"; license = lib.licenses.free; }; }) {}; @@ -45192,13 +46877,13 @@ sha256 = "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/preproc-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/preproc-font-lock"; sha256 = "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4"; name = "preproc-font-lock"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/preproc-font-lock"; + homepage = "https://melpa.org/#/preproc-font-lock"; license = lib.licenses.free; }; }) {}; @@ -45207,19 +46892,19 @@ pname = "preseed-generic-mode"; version = "20150119.1441"; src = fetchFromGitHub { - owner = "suntong001"; + owner = "suntong"; repo = "preseed-generic-mode"; rev = "19bce980d41607bef8af4b1901343abfca0f0855"; sha256 = "1dyi9nc2q43jf87xiz9xw42irrbla2vyixifdiibh6nm9misnfj0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/preseed-generic-mode"; - sha256 = "0c0zs07lspwczbcba56fai0rshjzx9zd3jqxgj9nwjf9xlcr8m3j"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/preseed-generic-mode"; + sha256 = "14vbx6y7h4vqc5kkgj4mbr9zj6gqf6ib3hh2917m203s8y87lsfl"; name = "preseed-generic-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/preseed-generic-mode"; + homepage = "https://melpa.org/#/preseed-generic-mode"; license = lib.licenses.free; }; }) {}; @@ -45227,38 +46912,38 @@ pname = "pretty-lambdada"; version = "20151231.1748"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/pretty-lambdada.el"; + url = "https://www.emacswiki.org/emacs/download/pretty-lambdada.el"; sha256 = "1fn24399wsn12453py0hw2vbbkrkakiwi06cjvjzsdk7g3326ma4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pretty-lambdada"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pretty-lambdada"; sha256 = "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6"; name = "pretty-lambdada"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pretty-lambdada"; + homepage = "https://melpa.org/#/pretty-lambdada"; license = lib.licenses.free; }; }) {}; pretty-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pretty-mode"; - version = "20141207.1352"; + version = "20160416.934"; src = fetchFromGitHub { owner = "akatov"; repo = "pretty-mode"; - rev = "3e0b88d3db20f89fda2cdce3f54371728dcfd05b"; - sha256 = "0ccqym98c6zdyrparj5n97bpp9rspxb3z5lqfcrjypp0kn04z1ss"; + rev = "019c65b25042a202a1374cb8b359d4cfa062cb60"; + sha256 = "0lrxd87p62s16bcp9r7hj1dnn67mgy2akslq4m9vb0xc7qckwr7y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pretty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pretty-mode"; sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f"; name = "pretty-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pretty-mode"; + homepage = "https://melpa.org/#/pretty-mode"; license = lib.licenses.free; }; }) {}; @@ -45273,13 +46958,13 @@ sha256 = "1n0594msgy53ia58gjfkm3z3cnmq52wrq5992fm28s4jgazbgdfd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pretty-sha-path"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pretty-sha-path"; sha256 = "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq"; name = "pretty-sha-path"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pretty-sha-path"; + homepage = "https://melpa.org/#/pretty-sha-path"; license = lib.licenses.free; }; }) {}; @@ -45294,13 +46979,13 @@ sha256 = "1f00l9f6an1mh8yhf629mw0p37m4jcpl8giz47xbdyw1k6bqn830"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pretty-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pretty-symbols"; sha256 = "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb"; name = "pretty-symbols"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pretty-symbols"; + homepage = "https://melpa.org/#/pretty-symbols"; license = lib.licenses.free; }; }) {}; @@ -45315,13 +47000,13 @@ sha256 = "0zng64f5vwnpkf9fk59yv1ndc646q608a6awr1y9qk0mhzbfzhqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/private"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/private"; sha256 = "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g"; name = "private"; }; packageRequires = [ aes ]; meta = { - homepage = "http://melpa.org/#/private"; + homepage = "https://melpa.org/#/private"; license = lib.licenses.free; }; }) {}; @@ -45336,13 +47021,13 @@ sha256 = "1pxr5a9ik09k0f58lawhxiv179n5j8q24zhrs9vjk93yskl1ydwn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/private-diary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/private-diary"; sha256 = "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1"; name = "private-diary"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/private-diary"; + homepage = "https://melpa.org/#/private-diary"; license = lib.licenses.free; }; }) {}; @@ -45357,13 +47042,13 @@ sha256 = "0nly5h0d6w8dc08ifb2fiqcn4cqcn9crkh2wn0jzlz4zd2x75qrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/proc-net"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/proc-net"; sha256 = "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv"; name = "proc-net"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/proc-net"; + homepage = "https://melpa.org/#/proc-net"; license = lib.licenses.free; }; }) {}; @@ -45378,13 +47063,13 @@ sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/processing-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/processing-mode"; sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m"; name = "processing-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/processing-mode"; + homepage = "https://melpa.org/#/processing-mode"; license = lib.licenses.free; }; }) {}; @@ -45399,34 +47084,34 @@ sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/processing-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/processing-snippets"; sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r"; name = "processing-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/processing-snippets"; + homepage = "https://melpa.org/#/processing-snippets"; license = lib.licenses.free; }; }) {}; prodigy = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "prodigy"; - version = "20141109.452"; + version = "20160420.442"; src = fetchFromGitHub { owner = "rejeep"; repo = "prodigy.el"; - rev = "1f3b5a3309122bae01150738c3d8da910ffbee71"; - sha256 = "18j0jwp8z4ff7xfiijyh09cvb14mbjfaygin2qjp6bxgx3c1mpin"; + rev = "983049811a14415583c90f14530b19cdcf448512"; + sha256 = "0br2nxi4wpla4rwknipv6y5f07wsi0j8f2gs52mxx48wnaiq1q1i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prodigy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prodigy"; sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85"; name = "prodigy"; }; packageRequires = [ dash emacs f s ]; meta = { - homepage = "http://melpa.org/#/prodigy"; + homepage = "https://melpa.org/#/prodigy"; license = lib.licenses.free; }; }) {}; @@ -45441,13 +47126,13 @@ sha256 = "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/professional-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/professional-theme"; sha256 = "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5"; name = "professional-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/professional-theme"; + homepage = "https://melpa.org/#/professional-theme"; license = lib.licenses.free; }; }) {}; @@ -45462,13 +47147,13 @@ sha256 = "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prognth"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prognth"; sha256 = "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm"; name = "prognth"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/prognth"; + homepage = "https://melpa.org/#/prognth"; license = lib.licenses.free; }; }) {}; @@ -45483,13 +47168,13 @@ sha256 = "1yklm43d0ppyf4simhqab6m892z4mmxs2145lzw6kpizixavcv00"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/programmer-dvorak"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/programmer-dvorak"; sha256 = "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv"; name = "programmer-dvorak"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/programmer-dvorak"; + homepage = "https://melpa.org/#/programmer-dvorak"; license = lib.licenses.free; }; }) {}; @@ -45504,13 +47189,13 @@ sha256 = "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-explorer"; sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m"; name = "project-explorer"; }; packageRequires = [ cl-lib emacs es-lib es-windows ]; meta = { - homepage = "http://melpa.org/#/project-explorer"; + homepage = "https://melpa.org/#/project-explorer"; license = lib.licenses.free; }; }) {}; @@ -45519,17 +47204,17 @@ pname = "project-local-variables"; version = "20080502.1152"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/project-local-variables.el"; + url = "https://www.emacswiki.org/emacs/download/project-local-variables.el"; sha256 = "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-local-variables"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-local-variables"; sha256 = "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl"; name = "project-local-variables"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/project-local-variables"; + homepage = "https://melpa.org/#/project-local-variables"; license = lib.licenses.free; }; }) {}; @@ -45544,13 +47229,13 @@ sha256 = "1fvjap0bsyw5q92q50wk8c81yv4g8nqb6jdlnarf80glwk50avrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-persist"; sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24"; name = "project-persist"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/project-persist"; + homepage = "https://melpa.org/#/project-persist"; license = lib.licenses.free; }; }) {}; @@ -45565,13 +47250,13 @@ sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-persist-drawer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-persist-drawer"; sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb"; name = "project-persist-drawer"; }; packageRequires = [ project-persist ]; meta = { - homepage = "http://melpa.org/#/project-persist-drawer"; + homepage = "https://melpa.org/#/project-persist-drawer"; license = lib.licenses.free; }; }) {}; @@ -45585,34 +47270,34 @@ sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-root"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-root"; sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb"; name = "project-root"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/project-root"; + homepage = "https://melpa.org/#/project-root"; license = lib.licenses.free; }; }) {}; projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "projectile"; - version = "20160221.240"; + version = "20160420.1708"; src = fetchFromGitHub { owner = "bbatsov"; repo = "projectile"; - rev = "7c484a56ef2cce5034f759185f53e47f827b91c2"; - sha256 = "1lvkpwy17c0d2yqvrf3b6cawzk65k7mwi0qrk30bmbz9mxq3337w"; + rev = "025bd85b713e79bd8ad3bc3a8ad8ea7e0175ee7e"; + sha256 = "088jdw031wq1zrxd2rf72hzfhxxzsn2wnkbchibn41a3vr0w19zx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile"; sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn"; name = "projectile"; }; packageRequires = [ dash pkg-info ]; meta = { - homepage = "http://melpa.org/#/projectile"; + homepage = "https://melpa.org/#/projectile"; license = lib.licenses.free; }; }) {}; @@ -45627,34 +47312,55 @@ sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-codesearch"; sha256 = "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk"; name = "projectile-codesearch"; }; packageRequires = [ codesearch projectile ]; meta = { - homepage = "http://melpa.org/#/projectile-codesearch"; + homepage = "https://melpa.org/#/projectile-codesearch"; + license = lib.licenses.free; + }; + }) {}; + projectile-direnv = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }: + melpaBuild { + pname = "projectile-direnv"; + version = "20160305.1938"; + src = fetchFromGitHub { + owner = "christianromney"; + repo = "projectile-direnv"; + rev = "33455b93576855065ba4ba9ed1b05dc36e692f1a"; + sha256 = "09zyzfqy1i3i8knvh1ajr5jcidjx3jpsyx8qarxfr5kv16pwyfvj"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-direnv"; + sha256 = "1s5dapdcblcbcqyv8df26v8wxl8bhrs9ybl5h5qbzz49gigd8nqh"; + name = "projectile-direnv"; + }; + packageRequires = [ dash emacs projectile s ]; + meta = { + homepage = "https://melpa.org/#/projectile-direnv"; license = lib.licenses.free; }; }) {}; projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }: melpaBuild { pname = "projectile-rails"; - version = "20160211.1640"; + version = "20160417.706"; src = fetchFromGitHub { owner = "asok"; repo = "projectile-rails"; - rev = "7fa21453f97801eb44ed45b92e14d6b665387970"; - sha256 = "1x9jp5bb14gc08irq3dhcn2j6a4kqfp0h3vpriz939dianz580ih"; + rev = "630976485dbbf21bf27d2f192442a14ea5f8f25e"; + sha256 = "1q72n08znhbi2v0hd4cnwfhc1y0xc2017cms49d0ay9m6k10wi85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-rails"; sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq"; name = "projectile-rails"; }; packageRequires = [ emacs f inf-ruby inflections projectile rake ]; meta = { - homepage = "http://melpa.org/#/projectile-rails"; + homepage = "https://melpa.org/#/projectile-rails"; license = lib.licenses.free; }; }) {}; @@ -45669,13 +47375,13 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-sift"; sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i"; name = "projectile-sift"; }; packageRequires = [ projectile sift ]; meta = { - homepage = "http://melpa.org/#/projectile-sift"; + homepage = "https://melpa.org/#/projectile-sift"; license = lib.licenses.free; }; }) {}; @@ -45690,13 +47396,13 @@ sha256 = "0lr3vx1byf0i9jdzbyrvvzyzi1nfddvw5r9f9wm7gpfp5l8772la"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-speedbar"; sha256 = "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp"; name = "projectile-speedbar"; }; packageRequires = [ projectile ]; meta = { - homepage = "http://melpa.org/#/projectile-speedbar"; + homepage = "https://melpa.org/#/projectile-speedbar"; license = lib.licenses.free; }; }) {}; @@ -45711,13 +47417,13 @@ sha256 = "0y8zbywin99nhcrs5nzx4d179r84rdy39admajpi0j76v0b9pwl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projector"; sha256 = "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf"; name = "projector"; }; packageRequires = [ alert cl-lib projectile ]; meta = { - homepage = "http://melpa.org/#/projector"; + homepage = "https://melpa.org/#/projector"; license = lib.licenses.free; }; }) {}; @@ -45732,13 +47438,13 @@ sha256 = "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projekt"; sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8"; name = "projekt"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/projekt"; + homepage = "https://melpa.org/#/projekt"; license = lib.licenses.free; }; }) {}; @@ -45753,13 +47459,13 @@ sha256 = "1sxxy0s96sgm6i743qwjs0qjpsdr03gqc1cddvvpxbryh42vw9jn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projmake-mode"; sha256 = "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882"; name = "projmake-mode"; }; packageRequires = [ dash indicators ]; meta = { - homepage = "http://melpa.org/#/projmake-mode"; + homepage = "https://melpa.org/#/projmake-mode"; license = lib.licenses.free; }; }) {}; @@ -45774,13 +47480,13 @@ sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prompt-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prompt-text"; sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc"; name = "prompt-text"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/prompt-text"; + homepage = "https://melpa.org/#/prompt-text"; license = lib.licenses.free; }; }) {}; @@ -45795,13 +47501,13 @@ sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prop-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prop-menu"; sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i"; name = "prop-menu"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/prop-menu"; + homepage = "https://melpa.org/#/prop-menu"; license = lib.licenses.free; }; }) {}; @@ -45816,13 +47522,13 @@ sha256 = "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/propfont-mixed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/propfont-mixed"; sha256 = "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y"; name = "propfont-mixed"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/propfont-mixed"; + homepage = "https://melpa.org/#/propfont-mixed"; license = lib.licenses.free; }; }) {}; @@ -45837,13 +47543,13 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prosjekt"; sha256 = "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck"; name = "prosjekt"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/prosjekt"; + homepage = "https://melpa.org/#/prosjekt"; license = lib.licenses.free; }; }) {}; @@ -45854,38 +47560,38 @@ src = fetchFromGitHub { owner = "google"; repo = "protobuf"; - rev = "32daf513ced8d51e8de6cc8d800cfc972c4df5d6"; - sha256 = "03mi6g58y9j9pqrh8qjygcv20f3q58cry4phv5q6807rxj4q2hpf"; + rev = "40574479978f80bd86caf44edae5b0a22d596c79"; + sha256 = "10058qk9jz9810s7ak2cbbjhyl4q0qp1qh0rznrwqc0ixsql78kl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/protobuf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/protobuf-mode"; sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj"; name = "protobuf-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/protobuf-mode"; + homepage = "https://melpa.org/#/protobuf-mode"; license = lib.licenses.free; }; }) {}; psc-ide = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "psc-ide"; - version = "20160203.1732"; + version = "20160408.1353"; src = fetchFromGitHub { owner = "epost"; repo = "psc-ide-emacs"; - rev = "43552df23d65a6ef9bf410c0fa992c9d2342fc67"; - sha256 = "0awlkvbll2cxc9rzzm1ln5qhp05jikihcay1wz74dkwzwlfjlp17"; + rev = "02e83f506ebc9212b852dcf36e867b3ddf842e5b"; + sha256 = "1q30jvml32claqa259zzfrpdpjcv1m4al3gq5pfcj5x0wcckm2k7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psc-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psc-ide"; sha256 = "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9"; name = "psc-ide"; }; packageRequires = [ cl-lib company dash s ]; meta = { - homepage = "http://melpa.org/#/psc-ide"; + homepage = "https://melpa.org/#/psc-ide"; license = lib.licenses.free; }; }) {}; @@ -45900,13 +47606,13 @@ sha256 = "08j31bg5vwgirv5n5fsw7w6gncrkpwpjlj2m00dhj8wbvhp503sn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psci"; sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g"; name = "psci"; }; packageRequires = [ dash deferred f purescript-mode s ]; meta = { - homepage = "http://melpa.org/#/psci"; + homepage = "https://melpa.org/#/psci"; license = lib.licenses.free; }; }) {}; @@ -45921,13 +47627,13 @@ sha256 = "1b8w9wnrwk4j2gn543phz9qp8813ksqakr5pi509m6ijwcv0cp7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psession"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psession"; sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a"; name = "psession"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/psession"; + homepage = "https://melpa.org/#/psession"; license = lib.licenses.free; }; }) {}; @@ -45942,34 +47648,34 @@ sha256 = "1jz1g0igpnsjn2r144205bffj10iyp8izm8678mzkhnricxkn0d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psvn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psvn"; sha256 = "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n"; name = "psvn"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/psvn"; + homepage = "https://melpa.org/#/psvn"; license = lib.licenses.free; }; }) {}; psysh = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "psysh"; - version = "20160123.958"; + version = "20160423.336"; src = fetchFromGitHub { owner = "zonuexe"; repo = "psysh.el"; - rev = "14fa252628009463f05fdf573c23e166536d3b76"; - sha256 = "1q8fk25qwnnm9z1zcf9f1k3b060lk6g6f16c8db90psp6za0xdwz"; + rev = "be170b6050bed30c76721e424c8003055de7dbe4"; + sha256 = "0mnxvh5yd8v8a5mfi53isknc88kv2kdjjv0qffblz0sgshkpl30x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psysh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psysh"; sha256 = "0ygnfmfx1ifppg6j3vfz10srbcpr5ird2bhw6pvydijxkyd75vy5"; name = "psysh"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/psysh"; + homepage = "https://melpa.org/#/psysh"; license = lib.licenses.free; }; }) {}; @@ -45984,34 +47690,34 @@ sha256 = "0ca8j7xlqxbidqfz2iarwn7qq4v12pwvsq6vzj2473n2g1c09xzj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pt"; sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj"; name = "pt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pt"; + homepage = "https://melpa.org/#/pt"; license = lib.licenses.free; }; }) {}; puml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "puml-mode"; - version = "20151212.1023"; + version = "20160324.1725"; src = fetchFromGitHub { owner = "skuro"; repo = "puml-mode"; - rev = "966064f37164800cd2c9891387ffcd10339b7137"; - sha256 = "024g793y6vqhk5h6vqjv5hljvfyb0j6b6j51fjhijgdxmqhlk9vm"; + rev = "463aa0d54b5568189e6e93eafb98612ce0b11bbc"; + sha256 = "1bwlkv87nxqrdvq3682x5jqxhhiya2wjp3162mh801pnglaw1mv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/puml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/puml-mode"; sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn"; name = "puml-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/puml-mode"; + homepage = "https://melpa.org/#/puml-mode"; license = lib.licenses.free; }; }) {}; @@ -46026,13 +47732,13 @@ sha256 = "1bkkgs2agy00wivilljkj3a9fsb2ba935icjmhbk46zjc6yf3y6q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/punctuality-logger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/punctuality-logger"; sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm"; name = "punctuality-logger"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/punctuality-logger"; + homepage = "https://melpa.org/#/punctuality-logger"; license = lib.licenses.free; }; }) {}; @@ -46047,34 +47753,55 @@ sha256 = "1viw95y6fha782n1jw7snr7xc00iyf94r4whsm1a2q11vm2d1h21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pungi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pungi"; sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1"; name = "pungi"; }; packageRequires = [ jedi pyvenv ]; meta = { - homepage = "http://melpa.org/#/pungi"; + homepage = "https://melpa.org/#/pungi"; + license = lib.licenses.free; + }; + }) {}; + punpun-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "punpun-theme"; + version = "20160324.1245"; + src = fetchFromGitHub { + owner = "wasamasa"; + repo = "punpun-theme"; + rev = "00eac7d50f4fc4702a375ca6ed39df395cb140e8"; + sha256 = "1qqfv5qn336p6yk5fydphqpnp0p1ar6185ph2la32vy26k44nahd"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/punpun-theme"; + sha256 = "1l7nphh8v7w5w790cwmnp6nw5rciwhgzkvynkrvpiv9chhacx0xg"; + name = "punpun-theme"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/punpun-theme"; license = lib.licenses.free; }; }) {}; puppet-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "puppet-mode"; - version = "20150730.1408"; + version = "20160416.1136"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "puppet-mode"; - rev = "268ec790603a4121f62822ca6c26e9038a1b0375"; - sha256 = "11mkf9gvjz63szdvhwlqnd6j2r9ij2fh8l6zkf7hl2zlwyyivcmp"; + rev = "3321cd25f742bcb4466f4a736d936e9da773a83c"; + sha256 = "1ly7gkxlkfgx3nzw35f7rwx7x9w6jrhql15jgsrh9slcw3q2rksl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/puppet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/puppet-mode"; sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc"; name = "puppet-mode"; }; packageRequires = [ emacs pkg-info ]; meta = { - homepage = "http://melpa.org/#/puppet-mode"; + homepage = "https://melpa.org/#/puppet-mode"; license = lib.licenses.free; }; }) {}; @@ -46089,13 +47816,13 @@ sha256 = "0k2plyvd6842yryzrfadbf4h7a9hrjvkcvixclbca2bkvfik3864"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/purescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/purescript-mode"; sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m"; name = "purescript-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/purescript-mode"; + homepage = "https://melpa.org/#/purescript-mode"; license = lib.licenses.free; }; }) {}; @@ -46110,13 +47837,13 @@ sha256 = "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/purple-haze-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/purple-haze-theme"; sha256 = "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m"; name = "purple-haze-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/purple-haze-theme"; + homepage = "https://melpa.org/#/purple-haze-theme"; license = lib.licenses.free; }; }) {}; @@ -46125,19 +47852,19 @@ pname = "purty-mode"; version = "20131004.1759"; src = fetchFromGitHub { - owner = "hackscience"; + owner = "jcatw"; repo = "purty-mode"; rev = "8eef77317a3bab07ade212353a50fbd3f20f365a"; sha256 = "0qm2xv762cz196aqs445crqrmsks8hpwzpaykzn0chlvdk0m5cv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/purty-mode"; - sha256 = "1ackqv95sdphbsjwydbc4dmdzwpaj74v329f55zcwa8hn3li9d5m"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/purty-mode"; + sha256 = "0gbbwl5kg74jf1i1zsr40zg3gw43qmz1l87k0r578v1xvyqmhm1i"; name = "purty-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/purty-mode"; + homepage = "https://melpa.org/#/purty-mode"; license = lib.licenses.free; }; }) {}; @@ -46152,13 +47879,13 @@ sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pushbullet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pushbullet"; sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl"; name = "pushbullet"; }; packageRequires = [ grapnel json ]; meta = { - homepage = "http://melpa.org/#/pushbullet"; + homepage = "https://melpa.org/#/pushbullet"; license = lib.licenses.free; }; }) {}; @@ -46173,13 +47900,13 @@ sha256 = "10g4imxgpv7a0j40qkx7xf2qnyz80ypd0mv0lf47n9dwln5byln3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/px"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/px"; sha256 = "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44"; name = "px"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/px"; + homepage = "https://melpa.org/#/px"; license = lib.licenses.free; }; }) {}; @@ -46194,13 +47921,13 @@ sha256 = "1iw94m1bvsmadlj16f8ymwx0q6f9lqysy7by76hkpiwqqhd2i8rv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-autopep8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-autopep8"; sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp"; name = "py-autopep8"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/py-autopep8"; + homepage = "https://melpa.org/#/py-autopep8"; license = lib.licenses.free; }; }) {}; @@ -46215,13 +47942,13 @@ sha256 = "05803wi7rj73sy9ihkilr6pcn72szfsvgf2dgbdpnqra508rxyb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-gnitset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-gnitset"; sha256 = "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r"; name = "py-gnitset"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/py-gnitset"; + homepage = "https://melpa.org/#/py-gnitset"; license = lib.licenses.free; }; }) {}; @@ -46236,13 +47963,13 @@ sha256 = "1416hbc64gwn9c8g9lxfx58w60ysi0x8rbps6mfxalavdhbs20sv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-import-check"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-import-check"; sha256 = "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k"; name = "py-import-check"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/py-import-check"; + homepage = "https://melpa.org/#/py-import-check"; license = lib.licenses.free; }; }) {}; @@ -46257,13 +47984,13 @@ sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-isort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-isort"; sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb"; name = "py-isort"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/py-isort"; + homepage = "https://melpa.org/#/py-isort"; license = lib.licenses.free; }; }) {}; @@ -46278,13 +48005,13 @@ sha256 = "05gi17n488r2n6x33nj4a23ci89c9smsbanmap4i302dy0mnmwgd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-smart-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-smart-operator"; sha256 = "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4"; name = "py-smart-operator"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/py-smart-operator"; + homepage = "https://melpa.org/#/py-smart-operator"; license = lib.licenses.free; }; }) {}; @@ -46299,13 +48026,13 @@ sha256 = "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-test"; sha256 = "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb"; name = "py-test"; }; packageRequires = [ dash emacs f ]; meta = { - homepage = "http://melpa.org/#/py-test"; + homepage = "https://melpa.org/#/py-test"; license = lib.licenses.free; }; }) {}; @@ -46320,13 +48047,13 @@ sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-yapf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-yapf"; sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f"; name = "py-yapf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/py-yapf"; + homepage = "https://melpa.org/#/py-yapf"; license = lib.licenses.free; }; }) {}; @@ -46341,34 +48068,55 @@ sha256 = "09glwrb9q65qdm4yd0mbi5hwdy2434zm8699ywhs6hqpjacadlmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pycarddavel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pycarddavel"; sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a"; name = "pycarddavel"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/pycarddavel"; + homepage = "https://melpa.org/#/pycarddavel"; + license = lib.licenses.free; + }; + }) {}; + pycoverage = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "pycoverage"; + version = "20160324.2012"; + src = fetchFromGitHub { + owner = "mattharrison"; + repo = "pycoverage.el"; + rev = "dbc152a807efcaac4e50bedb64c026674009a279"; + sha256 = "0qap6iz865l43mixga7541c2z9kdx8zkkdcgdlgn6n8pyv8iz7qs"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pycoverage"; + sha256 = "1jaanmpnawk0r6zfzx18crqml7lv412l2l0iabp345xvfvsh8h1m"; + name = "pycoverage"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/pycoverage"; license = lib.licenses.free; }; }) {}; pydoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pydoc"; - version = "20150525.2045"; + version = "20160403.1933"; src = fetchFromGitHub { owner = "statmobile"; repo = "pydoc"; - rev = "74fb1a66e9d81661ddd371a03e916ea5e0b01dc8"; - sha256 = "1q9fmdrnsqmisykndxzy9bvjl6n1rsmfgvh3h8fkg6b44ypcyyw7"; + rev = "6fa87463b6eb4e951c4b8d53f7093fb072b0afd7"; + sha256 = "0vg06snvy3rq5jgnb2xj3sp71mjmpsp1d9cn2vqvahpgpa05c968"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pydoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pydoc"; sha256 = "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n"; name = "pydoc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pydoc"; + homepage = "https://melpa.org/#/pydoc"; license = lib.licenses.free; }; }) {}; @@ -46382,13 +48130,13 @@ sha256 = "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pydoc-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pydoc-info"; sha256 = "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf"; name = "pydoc-info"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pydoc-info"; + homepage = "https://melpa.org/#/pydoc-info"; license = lib.licenses.free; }; }) {}; @@ -46403,13 +48151,13 @@ sha256 = "049wgwygdaa0p8p4pl37wkc06nam9ph17i9gzcg7w0hfwghjrc5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyenv-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyenv-mode"; sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59"; name = "pyenv-mode"; }; packageRequires = [ pythonic ]; meta = { - homepage = "http://melpa.org/#/pyenv-mode"; + homepage = "https://melpa.org/#/pyenv-mode"; license = lib.licenses.free; }; }) {}; @@ -46424,13 +48172,13 @@ sha256 = "1sclhzv3w9fg54dg4qhlfbc0p1z5clyr8phrckhypvlwfgbar4b4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyenv-mode-auto"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyenv-mode-auto"; sha256 = "1l7h4fas1vshkh4skxzpw7v2a11s1hwnb20n6a81yh701pbikqnd"; name = "pyenv-mode-auto"; }; packageRequires = [ f pyenv-mode s ]; meta = { - homepage = "http://melpa.org/#/pyenv-mode-auto"; + homepage = "https://melpa.org/#/pyenv-mode-auto"; license = lib.licenses.free; }; }) {}; @@ -46445,13 +48193,13 @@ sha256 = "1rp8zchvclh29rl9a1i82pcqghnhpaqnppaydxc2qx23y9pdgz9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyfmt"; sha256 = "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6"; name = "pyfmt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pyfmt"; + homepage = "https://melpa.org/#/pyfmt"; license = lib.licenses.free; }; }) {}; @@ -46466,13 +48214,13 @@ sha256 = "05qx1p19dw3nr264shihfn33k579hd0wf4cxki5cqrxi7xzpjgrc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyimpsort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyimpsort"; sha256 = "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k"; name = "pyimpsort"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/pyimpsort"; + homepage = "https://melpa.org/#/pyimpsort"; license = lib.licenses.free; }; }) {}; @@ -46483,38 +48231,38 @@ src = fetchFromGitHub { owner = "PyCQA"; repo = "pylint"; - rev = "b3f6242886a82f5723f584e6743f3c3e188e0c32"; - sha256 = "0vl60jr7zfv74psngin95qq0ykx0zxxzsdqi78ankarylzzxb0wp"; + rev = "2b9afbb95722ef3b76c0649c01a2d8066f812327"; + sha256 = "1b7rqhjw3xkmpb5zwhf9l5gflwn4qc1mpdn3qmfhmqw7yx2z4dwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pylint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pylint"; sha256 = "1138a8dn9y4ypbphs1zfvr8gr4vdjcy0adsl4xfbgsls4kcdwpxx"; name = "pylint"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pylint"; + homepage = "https://melpa.org/#/pylint"; license = lib.licenses.free; }; }) {}; pytest = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "pytest"; - version = "20151104.2325"; + version = "20160330.847"; src = fetchFromGitHub { owner = "ionrock"; repo = "pytest-el"; - rev = "71bd43c4eb7254d05104ec1bcca7851d7a203da3"; - sha256 = "1nlybqvy64lc0c65j9wbk4lx932lz0b8hxw8zm1vgmqppqcyn0p5"; + rev = "b3574f81c372ebf84a1f9092187c6611d374410c"; + sha256 = "0bg8pqqia9l39ac3s9xrnlyrg1pj2w00vc742qpjdk5349lazdl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pytest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pytest"; sha256 = "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh"; name = "pytest"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/pytest"; + homepage = "https://melpa.org/#/pytest"; license = lib.licenses.free; }; }) {}; @@ -46529,13 +48277,13 @@ sha256 = "1cnjdgw3x6yb5k06z57xifywlg0kdx9ai4f1ajc0wx9aax8r5gav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-cell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-cell"; sha256 = "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf"; name = "python-cell"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/python-cell"; + homepage = "https://melpa.org/#/python-cell"; license = lib.licenses.free; }; }) {}; @@ -46550,13 +48298,13 @@ sha256 = "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-django"; sha256 = "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k"; name = "python-django"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/python-django"; + homepage = "https://melpa.org/#/python-django"; license = lib.licenses.free; }; }) {}; @@ -46571,13 +48319,13 @@ sha256 = "07nnj2rkpcfad8m9pynai1a3w5k9zazl1xpgm2mldy162snrwpql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-docstring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-docstring"; sha256 = "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw"; name = "python-docstring"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/python-docstring"; + homepage = "https://melpa.org/#/python-docstring"; license = lib.licenses.free; }; }) {}; @@ -46592,13 +48340,13 @@ sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-environment"; sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7"; name = "python-environment"; }; packageRequires = [ deferred ]; meta = { - homepage = "http://melpa.org/#/python-environment"; + homepage = "https://melpa.org/#/python-environment"; license = lib.licenses.free; }; }) {}; @@ -46613,55 +48361,55 @@ sha256 = "0zk6014dzfrb3y3nhs890x082xf044w0a8nmy6rlrj375lvhfn99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-info"; sha256 = "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy"; name = "python-info"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/python-info"; + homepage = "https://melpa.org/#/python-info"; license = lib.licenses.free; }; }) {}; python-mode = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-mode"; - version = "20160217.708"; + version = "20160425.1227"; src = fetchFromGitLab { owner = "python-mode-devs"; repo = "python-mode"; - rev = "3e3ef05f0533647bf21ccd9826b8dc61848c48ff"; - sha256 = "0mf0w4jx3w91b57q989fi06f0r9km8nypsgbmqx03ljxv5i3pdhi"; + rev = "9e115cd8e75e4790a14974ca705826d811eadb3a"; + sha256 = "0lml6lmnc40qcc1yd41asqwd85a5h3das4s9777qaywclg4wjms5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-mode"; sha256 = "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k"; name = "python-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/python-mode"; + homepage = "https://melpa.org/#/python-mode"; license = lib.licenses.free; }; }) {}; python-x = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, folding, lib, melpaBuild, python ? null }: melpaBuild { pname = "python-x"; - version = "20160219.956"; + version = "20160313.836"; src = fetchFromGitHub { owner = "wavexx"; repo = "python-x.el"; - rev = "8b7446fb30c9f217e3e7cca06a20c3dac63b7824"; - sha256 = "0hzx7v49j1xvn2k1hpql455i63s2rcd6nyjr1ni2ns5vi0pgb6ym"; + rev = "852ca78c70c22fc76f0cb15d57046d510e295ba6"; + sha256 = "1shz8qha2cqv89hz27aazwd6qbf4qnz17h6hh8in5qxgfsndi7pp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-x"; sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn"; name = "python-x"; }; packageRequires = [ cl-lib folding python ]; meta = { - homepage = "http://melpa.org/#/python-x"; + homepage = "https://melpa.org/#/python-x"; license = lib.licenses.free; }; }) {}; @@ -46676,13 +48424,13 @@ sha256 = "1w29l4zyvcchjdywz2py95qq7bszhldpga2ng75g7p07pq7f2w1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python3-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python3-info"; sha256 = "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3"; name = "python3-info"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/python3-info"; + homepage = "https://melpa.org/#/python3-info"; license = lib.licenses.free; }; }) {}; @@ -46697,34 +48445,34 @@ sha256 = "16sp3mg5jzx89lgr3kr61fqw1p9gc5zxq2mi9rpgqi5hkkcpnpgj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pythonic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pythonic"; sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51"; name = "pythonic"; }; packageRequires = [ cl-lib dash emacs f s ]; meta = { - homepage = "http://melpa.org/#/pythonic"; + homepage = "https://melpa.org/#/pythonic"; license = lib.licenses.free; }; }) {}; pyvenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pyvenv"; - version = "20160108.228"; + version = "20160413.256"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "pyvenv"; - rev = "0a79b926f030a1737f8dec40fb877208f1eb7bea"; - sha256 = "1llm8vlmwkhdnr07xgcjx59d4na96kkhmfncww6rqkfc5i6zfarm"; + rev = "d8121a1c31cbae6fe39a44378629d8905deaa14e"; + sha256 = "19q0hlhnjz77akax01cwbib7b71f8magd3k0nqdlg2p3xm8g07l8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyvenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyvenv"; sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v"; name = "pyvenv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pyvenv"; + homepage = "https://melpa.org/#/pyvenv"; license = lib.licenses.free; }; }) {}; @@ -46739,13 +48487,13 @@ sha256 = "0ggivlaj29rbbhkjpf3bf7vr96xjzffas0sf5m54qh6nyz6nnha5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/qiita"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/qiita"; sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl"; name = "qiita"; }; packageRequires = [ helm markdown-mode ]; meta = { - homepage = "http://melpa.org/#/qiita"; + homepage = "https://melpa.org/#/qiita"; license = lib.licenses.free; }; }) {}; @@ -46760,34 +48508,34 @@ sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/qml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/qml-mode"; sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n"; name = "qml-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/qml-mode"; + homepage = "https://melpa.org/#/qml-mode"; license = lib.licenses.free; }; }) {}; quack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quack"; - version = "20130126.1823"; + version = "20160410.407"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "quack"; - rev = "ce00cb151dde121e156c9543949d088d5ddafdbb"; - sha256 = "0q7krn16dja0ifnc8h587lh5nilwbixxgsh5179clx5l57naix62"; + rev = "c1c8e448d295cc1b5752104a63a5759a9c5fdf6d"; + sha256 = "0vhzwr2adkprjibi3x4lnsvjxishysma7fhpwzgg28l21qjqc0nm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quack"; sha256 = "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii"; name = "quack"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/quack"; + homepage = "https://melpa.org/#/quack"; license = lib.licenses.free; }; }) {}; @@ -46798,38 +48546,38 @@ src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-quasi-monochrome"; - rev = "b2456aaa71b51d4f9b06c5dfb529e60732574fc7"; - sha256 = "09vw8nf9yj3v2ks25n39fbn2qk1fld0hmaq1dpzaqsavsbd4dwc1"; + rev = "cc363fc72b6824122aadf6b7d27dfeac38f61901"; + sha256 = "0y7mdizx6km3000cqjrirlgwzkq56asnzl8n1bl56pk5d9grfx9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quasi-monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quasi-monochrome-theme"; sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0"; name = "quasi-monochrome-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/quasi-monochrome-theme"; + homepage = "https://melpa.org/#/quasi-monochrome-theme"; license = lib.licenses.free; }; }) {}; quelpa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, package-build }: melpaBuild { pname = "quelpa"; - version = "20160220.919"; + version = "20160325.829"; src = fetchFromGitHub { owner = "quelpa"; repo = "quelpa"; - rev = "a5349ea2d11c046b1834b7bae29e90b26b2003d2"; - sha256 = "1gmxyhv47yjyaik7bkxl8ndziz2ls5qpij8nz18ynx7s521hm3hj"; + rev = "867c5c1ba65ef977fe69760d6baf17379a894d40"; + sha256 = "0l9wrx93pf6638fny1qa6a25hs15dpb0mklxcaz2l9bd7r7sx8ri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quelpa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quelpa"; sha256 = "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs"; name = "quelpa"; }; packageRequires = [ emacs package-build ]; meta = { - homepage = "http://melpa.org/#/quelpa"; + homepage = "https://melpa.org/#/quelpa"; license = lib.licenses.free; }; }) {}; @@ -46844,13 +48592,13 @@ sha256 = "00wnvyw2daiwwd1jyq1ag5jsws8k8jxs3lsj73dagbvqnlywmkm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quelpa-use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quelpa-use-package"; sha256 = "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9"; name = "quelpa-use-package"; }; packageRequires = [ emacs quelpa use-package ]; meta = { - homepage = "http://melpa.org/#/quelpa-use-package"; + homepage = "https://melpa.org/#/quelpa-use-package"; license = lib.licenses.free; }; }) {}; @@ -46865,13 +48613,13 @@ sha256 = "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quick-buffer-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quick-buffer-switch"; sha256 = "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40"; name = "quick-buffer-switch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/quick-buffer-switch"; + homepage = "https://melpa.org/#/quick-buffer-switch"; license = lib.licenses.free; }; }) {}; @@ -46886,55 +48634,55 @@ sha256 = "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quick-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quick-preview"; sha256 = "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9"; name = "quick-preview"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/quick-preview"; + homepage = "https://melpa.org/#/quick-preview"; license = lib.licenses.free; }; }) {}; quickref = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "quickref"; - version = "20130113.1700"; + version = "20160326.1136"; src = fetchFromGitHub { owner = "pd"; repo = "quickref.el"; - rev = "cfedf98c6b8b679b93296f7436e1fb4c2cc7ad25"; - sha256 = "1i7qqpqdwifd6vxpyyxyzq0b3wc82r7pqcw07bj0x2lhrjnqrxby"; + rev = "9cad569c6eaeacf0b393a2c520ba444f6521ff38"; + sha256 = "13svdvww8dbv75lg66xhca6xi08k7k44rsx2ckdf82j9i52y5lw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quickref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quickref"; sha256 = "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1"; name = "quickref"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/quickref"; + homepage = "https://melpa.org/#/quickref"; license = lib.licenses.free; }; }) {}; quickrun = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quickrun"; - version = "20160216.816"; + version = "20160307.518"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-quickrun"; - rev = "fe23f324b0198f8827cc0768e8507a02194eec68"; - sha256 = "1iypwvdgdh30c9br7jnibgwbdca2mqjy95x2ppsc51sik2mz2db1"; + rev = "ce788ae2272f00aec4740f8507807117163f803b"; + sha256 = "0czmv7bdsayckg854jfpmaqs4qj9pdhhn0gsqkfa510d7qz032bj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quickrun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quickrun"; sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy"; name = "quickrun"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/quickrun"; + homepage = "https://melpa.org/#/quickrun"; license = lib.licenses.free; }; }) {}; @@ -46949,34 +48697,34 @@ sha256 = "0dhljmdlg4p832w9s7rp8vznkpjkwpg8k9hj95cn2h76c0afwz3j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/r-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/r-autoyas"; sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4"; name = "r-autoyas"; }; packageRequires = [ ess yasnippet ]; meta = { - homepage = "http://melpa.org/#/r-autoyas"; + homepage = "https://melpa.org/#/r-autoyas"; license = lib.licenses.free; }; }) {}; racer = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode, s }: melpaBuild { pname = "racer"; - version = "20160120.1429"; + version = "20160419.1625"; src = fetchFromGitHub { owner = "racer-rust"; repo = "emacs-racer"; - rev = "0d605b943a71279396c5a6251fac63498a91363c"; - sha256 = "197llsjhxjvk5wp6iz3siyv3911y82r08s9bavma3dgzj2s978s6"; + rev = "49743e6d840261cd1985d9eef2dbf9451c6e8638"; + sha256 = "1d128mamvwpjnk2dazhcxvfjw3lf0ix56l85gwsb377v05pn3wzf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/racer"; sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi"; name = "racer"; }; packageRequires = [ dash emacs rust-mode s ]; meta = { - homepage = "http://melpa.org/#/racer"; + homepage = "https://melpa.org/#/racer"; license = lib.licenses.free; }; }) {}; @@ -46991,13 +48739,13 @@ sha256 = "1clpwjnph2ygmkn4r98wv3nxkvw4hg6nc01xph517lc7n15a3vri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/racket-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/racket-mode"; sha256 = "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb"; name = "racket-mode"; }; packageRequires = [ emacs faceup s ]; meta = { - homepage = "http://melpa.org/#/racket-mode"; + homepage = "https://melpa.org/#/racket-mode"; license = lib.licenses.free; }; }) {}; @@ -47012,13 +48760,13 @@ sha256 = "00x09vjd3jz5f73qkf5v1y402zn8vl8dsyfwlq9z646p18ba7gyh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/railgun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/railgun"; sha256 = "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0"; name = "railgun"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/railgun"; + homepage = "https://melpa.org/#/railgun"; license = lib.licenses.free; }; }) {}; @@ -47033,13 +48781,13 @@ sha256 = "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rails-log-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rails-log-mode"; sha256 = "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0"; name = "rails-log-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rails-log-mode"; + homepage = "https://melpa.org/#/rails-log-mode"; license = lib.licenses.free; }; }) {}; @@ -47054,13 +48802,13 @@ sha256 = "0cqp2vns7gq377bm6q9n5q0ra1d5yy2x2aiw9q1hswk82xpibj9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rails-new"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rails-new"; sha256 = "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h"; name = "rails-new"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rails-new"; + homepage = "https://melpa.org/#/rails-new"; license = lib.licenses.free; }; }) {}; @@ -47075,13 +48823,13 @@ sha256 = "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/railscasts-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/railscasts-theme"; sha256 = "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r"; name = "railscasts-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/railscasts-theme"; + homepage = "https://melpa.org/#/railscasts-theme"; license = lib.licenses.free; }; }) {}; @@ -47096,13 +48844,13 @@ sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-blocks"; sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8"; name = "rainbow-blocks"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rainbow-blocks"; + homepage = "https://melpa.org/#/rainbow-blocks"; license = lib.licenses.free; }; }) {}; @@ -47117,13 +48865,13 @@ sha256 = "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-delimiters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-delimiters"; sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg"; name = "rainbow-delimiters"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rainbow-delimiters"; + homepage = "https://melpa.org/#/rainbow-delimiters"; license = lib.licenses.free; }; }) {}; @@ -47138,13 +48886,13 @@ sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-identifiers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-identifiers"; sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp"; name = "rainbow-identifiers"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/rainbow-identifiers"; + homepage = "https://melpa.org/#/rainbow-identifiers"; license = lib.licenses.free; }; }) {}; @@ -47159,13 +48907,34 @@ sha256 = "1wcs8j8rdls0n3v8zdpk2n5riwzz2yvjf6b70a5bj7p20gyafhj2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rake"; sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns"; name = "rake"; }; packageRequires = [ cl-lib dash f ]; meta = { - homepage = "http://melpa.org/#/rake"; + homepage = "https://melpa.org/#/rake"; + license = lib.licenses.free; + }; + }) {}; + rally-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: + melpaBuild { + pname = "rally-mode"; + version = "20160326.1102"; + src = fetchFromGitHub { + owner = "seanleblanc"; + repo = "rally-mode"; + rev = "722b9a8e6d8a6aee5c4c4b16be0194f7bb4bfa5b"; + sha256 = "13pkp80cv1v3pjff1588cgyx18a31i668lwywll5dk4fxl4zdjvb"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rally-mode"; + sha256 = "1vzsh5855bzln3p3235yccl2azpndpc4rh95zrx6p1k62h2kv0y1"; + name = "rally-mode"; + }; + packageRequires = [ popwin ]; + meta = { + homepage = "https://melpa.org/#/rally-mode"; license = lib.licenses.free; }; }) {}; @@ -47180,13 +48949,13 @@ sha256 = "0fmajgqf9j21qn7h35sky5di8cnma432g0ki9d5m41byxp9y1bdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rand-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rand-theme"; sha256 = "0h0n1lsxnl12mjrjpra62vblrg8kbp1hk7w1v6makj074d037j2h"; name = "rand-theme"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/rand-theme"; + homepage = "https://melpa.org/#/rand-theme"; license = lib.licenses.free; }; }) {}; @@ -47201,34 +48970,34 @@ sha256 = "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/random-splash-image"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/random-splash-image"; sha256 = "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik"; name = "random-splash-image"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/random-splash-image"; + homepage = "https://melpa.org/#/random-splash-image"; license = lib.licenses.free; }; }) {}; ranger = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ranger"; - version = "20160203.701"; + version = "20160413.934"; src = fetchFromGitHub { owner = "ralesi"; repo = "ranger.el"; - rev = "aa9a72d013a3d095bf92e91244241fc0867c8355"; - sha256 = "0dm5k0g39dlwag3rqyiq8vzsg2z6ypajicjs7g5lcd88nypjl461"; + rev = "942f3bccf7cf081010708e2dddc30d92d01fdda9"; + sha256 = "1wgjjrr0m9x93q9q1lg52rl2i3k74csdbvlr1q8hdi9dnsrdm55x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ranger"; sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4"; name = "ranger"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ranger"; + homepage = "https://melpa.org/#/ranger"; license = lib.licenses.free; }; }) {}; @@ -47243,13 +49012,34 @@ sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rase"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rase"; sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0"; name = "rase"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rase"; + homepage = "https://melpa.org/#/rase"; + license = lib.licenses.free; + }; + }) {}; + rats = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }: + melpaBuild { + pname = "rats"; + version = "20160315.1345"; + src = fetchFromGitHub { + owner = "ane"; + repo = "rats.el"; + rev = "a5c519b88455a8eacd5e3b72286c96dfc484479d"; + sha256 = "0dd9yhxwwk16xkwld9c3hpf9bw8zzc1lyvisp0vn6vcd240j02w0"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rats"; + sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr"; + name = "rats"; + }; + packageRequires = [ cl-lib go-mode s ]; + meta = { + homepage = "https://melpa.org/#/rats"; license = lib.licenses.free; }; }) {}; @@ -47264,13 +49054,13 @@ sha256 = "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rbenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rbenv"; sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65"; name = "rbenv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rbenv"; + homepage = "https://melpa.org/#/rbenv"; license = lib.licenses.free; }; }) {}; @@ -47285,13 +49075,13 @@ sha256 = "0q5giixk6pv82cf34a0mxmnzh2gdiyq6dzv4ypkkdpz6wsm2ffhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rbt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rbt"; sha256 = "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm"; name = "rbt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rbt"; + homepage = "https://melpa.org/#/rbt"; license = lib.licenses.free; }; }) {}; @@ -47306,13 +49096,13 @@ sha256 = "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-alert"; sha256 = "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a"; name = "rcirc-alert"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rcirc-alert"; + homepage = "https://melpa.org/#/rcirc-alert"; license = lib.licenses.free; }; }) {}; @@ -47327,13 +49117,13 @@ sha256 = "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-alertify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-alertify"; sha256 = "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws"; name = "rcirc-alertify"; }; packageRequires = [ alert ]; meta = { - homepage = "http://melpa.org/#/rcirc-alertify"; + homepage = "https://melpa.org/#/rcirc-alertify"; license = lib.licenses.free; }; }) {}; @@ -47348,13 +49138,13 @@ sha256 = "173lhi48dwfp9k7jmgivhcc9f38snz5xlciyjhrafpadq1pir497"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-color"; sha256 = "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5"; name = "rcirc-color"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rcirc-color"; + homepage = "https://melpa.org/#/rcirc-color"; license = lib.licenses.free; }; }) {}; @@ -47369,13 +49159,13 @@ sha256 = "0d99x7dfw5xrn62knvs65lvn6xyy7399xwqyy47bs4n81v25aqbh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-groups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-groups"; sha256 = "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx"; name = "rcirc-groups"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rcirc-groups"; + homepage = "https://melpa.org/#/rcirc-groups"; license = lib.licenses.free; }; }) {}; @@ -47390,13 +49180,13 @@ sha256 = "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-notify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-notify"; sha256 = "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v"; name = "rcirc-notify"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rcirc-notify"; + homepage = "https://melpa.org/#/rcirc-notify"; license = lib.licenses.free; }; }) {}; @@ -47411,34 +49201,34 @@ sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-styles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-styles"; sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r"; name = "rcirc-styles"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/rcirc-styles"; + homepage = "https://melpa.org/#/rcirc-styles"; license = lib.licenses.free; }; }) {}; rdf-prefix = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rdf-prefix"; - version = "20151205.816"; + version = "20160326.1204"; src = fetchFromGitHub { owner = "simenheg"; repo = "rdf-prefix"; - rev = "1ab1464172c7563a7dbf1224572e4ffbfc6608e6"; - sha256 = "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj"; + rev = "5e4b0ab384a55974ffa3e5efdd1e437cce8e1562"; + sha256 = "0h54mpi8jd21vjifc0yy0hvpygiam1rlmypijpi4kv42x5mxkn3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rdf-prefix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rdf-prefix"; sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm"; name = "rdf-prefix"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rdf-prefix"; + homepage = "https://melpa.org/#/rdf-prefix"; license = lib.licenses.free; }; }) {}; @@ -47453,13 +49243,13 @@ sha256 = "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rdp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rdp"; sha256 = "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz"; name = "rdp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rdp"; + homepage = "https://melpa.org/#/rdp"; license = lib.licenses.free; }; }) {}; @@ -47474,13 +49264,13 @@ sha256 = "00j0iqa37yzd7xrgd8xcgpgmjcarhn0yx4zpbnr7z7kzmg24ywa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/react-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/react-snippets"; sha256 = "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73"; name = "react-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/react-snippets"; + homepage = "https://melpa.org/#/react-snippets"; license = lib.licenses.free; }; }) {}; @@ -47495,13 +49285,13 @@ sha256 = "0kg18ybgwcxhv5fiya5d3wn5w9si4914q946gjannk67d6jcq08g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/readability"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/readability"; sha256 = "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv"; name = "readability"; }; packageRequires = [ emacs oauth ov ]; meta = { - homepage = "http://melpa.org/#/readability"; + homepage = "https://melpa.org/#/readability"; license = lib.licenses.free; }; }) {}; @@ -47516,13 +49306,13 @@ sha256 = "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/readline-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/readline-complete"; sha256 = "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277"; name = "readline-complete"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/readline-complete"; + homepage = "https://melpa.org/#/readline-complete"; license = lib.licenses.free; }; }) {}; @@ -47537,34 +49327,118 @@ sha256 = "1kghhps8mqys5l59qwzv3fgy1fvb15cnyaxmk29v818a6khjc5l2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/real-auto-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/real-auto-save"; sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8"; name = "real-auto-save"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/real-auto-save"; + homepage = "https://melpa.org/#/real-auto-save"; license = lib.licenses.free; }; }) {}; realgud = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, load-relative, loc-changes, melpaBuild, test-simple }: melpaBuild { pname = "realgud"; - version = "20160217.2022"; + version = "20160305.357"; src = fetchFromGitHub { owner = "rocky"; repo = "emacs-dbgr"; - rev = "74ee75c3b7b74ae173374592ce82ad3a58b35424"; - sha256 = "089hyydlhnlawa7wflnf0mph4h96npxvr8czyffsyng88jy46cqa"; + rev = "cfe2be3d8851de6937da2a9f771e13280ecd60ce"; + sha256 = "0qzwg3g8cqms1xx1yw8h7xck8ym8gb6avnnqx737r078yaa9l8hj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/realgud"; - sha256 = "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud"; + sha256 = "0qmvd35ng1aqclwj3pskn58c0fi98kvx9666wp3smgj3n88vgy15"; name = "realgud"; }; packageRequires = [ list-utils load-relative loc-changes test-simple ]; meta = { - homepage = "http://melpa.org/#/realgud"; + homepage = "https://melpa.org/#/realgud"; + license = lib.licenses.free; + }; + }) {}; + realgud-byebug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: + melpaBuild { + pname = "realgud-byebug"; + version = "20160303.640"; + src = fetchFromGitHub { + owner = "rocky"; + repo = "realgud-byebug"; + rev = "1eb87d101b2145cadb2ed1d781aa38fdd2ff5b02"; + sha256 = "01wa8jwwlx5qmn5w83r3ak74hjp89zyhsx13c4ijqfns7d92xjd0"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud-byebug"; + sha256 = "1m4pqnvnnfzq7b9bv5fkz70pifklddwqrwbwnrfyiawx9vdgrpz9"; + name = "realgud-byebug"; + }; + packageRequires = [ realgud ]; + meta = { + homepage = "https://melpa.org/#/realgud-byebug"; + license = lib.licenses.free; + }; + }) {}; + realgud-old-debuggers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: + melpaBuild { + pname = "realgud-old-debuggers"; + version = "20160303.254"; + src = fetchFromGitHub { + owner = "rocky"; + repo = "realgud-old-debuggers"; + rev = "eee3d9d88bfe94d21f08716217184e44a4161e55"; + sha256 = "0jxi5a6mlgwjj14gfajs951180m8r8m4vqx09xz1yyc9qq8ywfk9"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud-old-debuggers"; + sha256 = "0iwi1byfwcpviaizdw9wzdcjlbk35ql4wfzj0ynh331g0hmibhs9"; + name = "realgud-old-debuggers"; + }; + packageRequires = [ realgud ]; + meta = { + homepage = "https://melpa.org/#/realgud-old-debuggers"; + license = lib.licenses.free; + }; + }) {}; + realgud-pry = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: + melpaBuild { + pname = "realgud-pry"; + version = "20160303.254"; + src = fetchFromGitHub { + owner = "rocky"; + repo = "realgud-pry"; + rev = "60c24ab619fba3adc4aac6ba6cf73fdb4e11e696"; + sha256 = "1dgxlmdzp1m6xr94nkvh6whvg23yq2d3v6k95vacx0khfbc16w17"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud-pry"; + sha256 = "1p5ijig5rczndcykllq0vy6w4askwl0yd8b5fqg7yl5yx45r8xgs"; + name = "realgud-pry"; + }; + packageRequires = [ realgud ]; + meta = { + homepage = "https://melpa.org/#/realgud-pry"; + license = lib.licenses.free; + }; + }) {}; + realgud-rdb2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: + melpaBuild { + pname = "realgud-rdb2"; + version = "20160303.243"; + src = fetchFromGitHub { + owner = "rocky"; + repo = "realgud-ruby-debugger2"; + rev = "8d1bf53e250d10bc4b051b32ee6a89161706c66a"; + sha256 = "1ip22z48vj6a6xh54s26ss10pxhqrdm5k9h28i1vgv5x75kqgxii"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud-rdb2"; + sha256 = "0wqvgb3h2b0ys76sq2z462cjv0fajqc41f7wqvf53wfcs2zw4l9y"; + name = "realgud-rdb2"; + }; + packageRequires = [ realgud ]; + meta = { + homepage = "https://melpa.org/#/realgud-rdb2"; license = lib.licenses.free; }; }) {}; @@ -47579,13 +49453,13 @@ sha256 = "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rebox2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rebox2"; sha256 = "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw"; name = "rebox2"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rebox2"; + homepage = "https://melpa.org/#/rebox2"; license = lib.licenses.free; }; }) {}; @@ -47593,17 +49467,17 @@ pname = "recentf-ext"; version = "20130130.1550"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/recentf-ext.el"; + url = "https://www.emacswiki.org/emacs/download/recentf-ext.el"; sha256 = "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/recentf-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/recentf-ext"; sha256 = "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq"; name = "recentf-ext"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/recentf-ext"; + homepage = "https://melpa.org/#/recentf-ext"; license = lib.licenses.free; }; }) {}; @@ -47618,13 +49492,13 @@ sha256 = "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/recompile-on-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/recompile-on-save"; sha256 = "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn"; name = "recompile-on-save"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/recompile-on-save"; + homepage = "https://melpa.org/#/recompile-on-save"; license = lib.licenses.free; }; }) {}; @@ -47639,13 +49513,13 @@ sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/recover-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/recover-buffers"; sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b"; name = "recover-buffers"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/recover-buffers"; + homepage = "https://melpa.org/#/recover-buffers"; license = lib.licenses.free; }; }) {}; @@ -47660,34 +49534,34 @@ sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rect+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rect+"; sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m"; name = "rect-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rect+"; + homepage = "https://melpa.org/#/rect+"; license = lib.licenses.free; }; }) {}; rectangle-utils = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rectangle-utils"; - version = "20150528.1428"; + version = "20160426.545"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "rectangle-utils"; - rev = "81071e62862c0062b8559eb217e6658878c34a1e"; - sha256 = "14ysbjdndsmcc4j3zhc3nfjxhdm9310jx237mrp98ancxdhsh4q9"; + rev = "602183e5e57725a41f9da10b23b070ad95089bf0"; + sha256 = "15kl72vias2b72bpji743aknml4kywqbb39kb8qm4bzbmc9ymfdx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rectangle-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rectangle-utils"; sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7"; name = "rectangle-utils"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/rectangle-utils"; + homepage = "https://melpa.org/#/rectangle-utils"; license = lib.licenses.free; }; }) {}; @@ -47702,13 +49576,13 @@ sha256 = "1mj7lyadzn3bwig3f9zariq5z4fg6liqnjvfd34yx88xc52nwf33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/recursive-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/recursive-narrow"; sha256 = "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f"; name = "recursive-narrow"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/recursive-narrow"; + homepage = "https://melpa.org/#/recursive-narrow"; license = lib.licenses.free; }; }) {}; @@ -47723,13 +49597,13 @@ sha256 = "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/redis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redis"; sha256 = "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a"; name = "redis"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/redis"; + homepage = "https://melpa.org/#/redis"; license = lib.licenses.free; }; }) {}; @@ -47737,38 +49611,38 @@ pname = "redo-plus"; version = "20131117.551"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/redo+.el"; + url = "https://www.emacswiki.org/emacs/download/redo+.el"; sha256 = "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/redo+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redo+"; sha256 = "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2"; name = "redo-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/redo+"; + homepage = "https://melpa.org/#/redo+"; license = lib.licenses.free; }; }) {}; redpen-paragraph = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "redpen-paragraph"; - version = "20151206.941"; + version = "20160321.519"; src = fetchFromGitHub { owner = "karronoli"; repo = "redpen-paragraph.el"; - rev = "dcba4dc48593fedd48e398af50f6cdc60f453a07"; - sha256 = "0s38mi9w1dm9fzhd3l8xvq9x33rkb5vvd66jibza50dhn9dmakax"; + rev = "aa90b9a0e0cb24dad239ac9e4b8ecbc51798afc5"; + sha256 = "1idm3mp016p5d6jyxl58rlhirbc5qmglmjpncj3s1qg3yarlxw2j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/redpen-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redpen-paragraph"; sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca"; name = "redpen-paragraph"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/redpen-paragraph"; + homepage = "https://melpa.org/#/redpen-paragraph"; license = lib.licenses.free; }; }) {}; @@ -47779,16 +49653,37 @@ src = fetchgit { url = "http://www.foldr.org/~michaelw/projects/redshank.git"; rev = "f98e68f532e622bcd464292ca4a9cf5fbea14ebb"; - sha256 = "5547c5db0caa147ae2fa0099b9c58a8629b47bf4facb6c5cc72cee45e84be392"; + sha256 = "14p39gl4bvicqxf6rjzsyixv8ac6ib2vk680zbi7l55a1kdwaism"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/redshank"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redshank"; sha256 = "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b"; name = "redshank"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/redshank"; + homepage = "https://melpa.org/#/redshank"; + license = lib.licenses.free; + }; + }) {}; + redtick = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "redtick"; + version = "20160410.1734"; + src = fetchFromGitHub { + owner = "ferfebles"; + repo = "redtick"; + rev = "66c10c4984557ac8d6861ba57444e4debb85c4a8"; + sha256 = "0ciw1qgbnlhr1ys4m9r6yi0zrmq99dja7vm959yb22zyggw5dqn4"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redtick"; + sha256 = "0qnx9s2rch4xn98vbgiq8ll2hxrwi4fi4vg4bccyvwh21nj51iq0"; + name = "redtick"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/redtick"; license = lib.licenses.free; }; }) {}; @@ -47803,13 +49698,13 @@ sha256 = "08kzi2jcfqnlanqzvbk5gq1if7k8qc9gmz5bmvd2mvmx6z436398"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/refheap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/refheap"; sha256 = "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk"; name = "refheap"; }; packageRequires = [ json ]; meta = { - homepage = "http://melpa.org/#/refheap"; + homepage = "https://melpa.org/#/refheap"; license = lib.licenses.free; }; }) {}; @@ -47824,13 +49719,13 @@ sha256 = "1d34jd7is979vfgdy56zkd1m15ng3waiabfpak6dv6ak3cdh5fgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/regex-dsl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/regex-dsl"; sha256 = "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr"; name = "regex-dsl"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/regex-dsl"; + homepage = "https://melpa.org/#/regex-dsl"; license = lib.licenses.free; }; }) {}; @@ -47845,13 +49740,13 @@ sha256 = "1wr12j16hckvc8bxxgxw280frl12h23cp44sxg28lczl16d9693l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/regex-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/regex-tool"; sha256 = "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v"; name = "regex-tool"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/regex-tool"; + homepage = "https://melpa.org/#/regex-tool"; license = lib.licenses.free; }; }) {}; @@ -47866,13 +49761,13 @@ sha256 = "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/region-bindings-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/region-bindings-mode"; sha256 = "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69"; name = "region-bindings-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/region-bindings-mode"; + homepage = "https://melpa.org/#/region-bindings-mode"; license = lib.licenses.free; }; }) {}; @@ -47887,13 +49782,13 @@ sha256 = "0gsh0x1rqxvzrszdyna9d8b8w22mqnd9yqcwzay2prc6rpl26g1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/region-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/region-state"; sha256 = "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x"; name = "region-state"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/region-state"; + homepage = "https://melpa.org/#/region-state"; license = lib.licenses.free; }; }) {}; @@ -47908,13 +49803,13 @@ sha256 = "01k3v4yiilz1k6drv7b2x6zbjx6dlz7cch8rq63mwc7v8kvdnqmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/register-channel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/register-channel"; sha256 = "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr"; name = "register-channel"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/register-channel"; + homepage = "https://melpa.org/#/register-channel"; license = lib.licenses.free; }; }) {}; @@ -47929,13 +49824,13 @@ sha256 = "0100maanb1v0hl4pj8ykzlqpr3cvs6ldak5japndm5yngzp6m8ks"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/relative-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/relative-buffers"; sha256 = "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i"; name = "relative-buffers"; }; packageRequires = [ cl-lib dash f s ]; meta = { - homepage = "http://melpa.org/#/relative-buffers"; + homepage = "https://melpa.org/#/relative-buffers"; license = lib.licenses.free; }; }) {}; @@ -47950,13 +49845,13 @@ sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/relative-line-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/relative-line-numbers"; sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3"; name = "relative-line-numbers"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/relative-line-numbers"; + homepage = "https://melpa.org/#/relative-line-numbers"; license = lib.licenses.free; }; }) {}; @@ -47971,13 +49866,13 @@ sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/relax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/relax"; sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk"; name = "relax"; }; packageRequires = [ json ]; meta = { - homepage = "http://melpa.org/#/relax"; + homepage = "https://melpa.org/#/relax"; license = lib.licenses.free; }; }) {}; @@ -47992,13 +49887,13 @@ sha256 = "0w40cx58c0hmc0yzs8maq1389hwha0qwfbz76pc6kpcx14v1gkhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/remark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/remark-mode"; sha256 = "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0"; name = "remark-mode"; }; packageRequires = [ markdown-mode ]; meta = { - homepage = "http://melpa.org/#/remark-mode"; + homepage = "https://melpa.org/#/remark-mode"; license = lib.licenses.free; }; }) {}; @@ -48013,13 +49908,13 @@ sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repeatable-motion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repeatable-motion"; sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw"; name = "repeatable-motion"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/repeatable-motion"; + homepage = "https://melpa.org/#/repeatable-motion"; license = lib.licenses.free; }; }) {}; @@ -48034,13 +49929,13 @@ sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repl-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repl-toggle"; sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb"; name = "repl-toggle"; }; packageRequires = [ fullframe ]; meta = { - homepage = "http://melpa.org/#/repl-toggle"; + homepage = "https://melpa.org/#/repl-toggle"; license = lib.licenses.free; }; }) {}; @@ -48049,17 +49944,17 @@ pname = "replace-from-region"; version = "20150406.1930"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/replace-from-region.el"; + url = "https://www.emacswiki.org/emacs/download/replace-from-region.el"; sha256 = "1clxkzxqsm91zbzv8nffav224ldr04ww5lppga2l41xjfl6z12qb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/replace-from-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/replace-from-region"; sha256 = "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb"; name = "replace-from-region"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/replace-from-region"; + homepage = "https://melpa.org/#/replace-from-region"; license = lib.licenses.free; }; }) {}; @@ -48074,13 +49969,13 @@ sha256 = "169p85rmgashm0g26apkxynmypqk9ndh76kvh572db5kqb8ix0c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/replace-pairs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/replace-pairs"; sha256 = "0l9674rba25wh6fskvfwkhv99lwlszb177hsfzx39s6b4hshvlsb"; name = "replace-pairs"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/replace-pairs"; + homepage = "https://melpa.org/#/replace-pairs"; license = lib.licenses.free; }; }) {}; @@ -48088,17 +49983,17 @@ pname = "replace-plus"; version = "20151231.1749"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/replace+.el"; + url = "https://www.emacswiki.org/emacs/download/replace+.el"; sha256 = "1af4sdhkzxknqzdkzc5gpm5j3s5k776j293hqq7cqzk533fdh4iz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/replace+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/replace+"; sha256 = "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn"; name = "replace-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/replace+"; + homepage = "https://melpa.org/#/replace+"; license = lib.licenses.free; }; }) {}; @@ -48113,13 +50008,13 @@ sha256 = "0ks884jhxqkr8j38r9m4s56krm2gpkm0v5d51zzivcfhs30s6nff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/replace-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/replace-symbol"; sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng"; name = "replace-symbol"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/replace-symbol"; + homepage = "https://melpa.org/#/replace-symbol"; license = lib.licenses.free; }; }) {}; @@ -48134,76 +50029,76 @@ sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repo"; sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb"; name = "repo"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/repo"; + homepage = "https://melpa.org/#/repo"; license = lib.licenses.free; }; }) {}; req-package = callPackage ({ dash, fetchFromGitHub, fetchurl, ht, lib, log4e, melpaBuild, use-package }: melpaBuild { pname = "req-package"; - version = "20151220.254"; + version = "20160227.1205"; src = fetchFromGitHub { owner = "edvorg"; repo = "req-package"; - rev = "e52f0b0a8cfc28ae1d13c83fdcf3998a9973e7e5"; - sha256 = "05a88r2jp169x99abz9wrr1i8ch0bg3dlmaalxwqfmlzci0lksx2"; + rev = "312c17182e63c67c9e8d65eb06e1ae039bee3b83"; + sha256 = "0905525nw78bz7qs1scmqss5dffp2aabvmwvcvgl6b2bz92w9nb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/req-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/req-package"; sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf"; name = "req-package"; }; packageRequires = [ dash ht log4e use-package ]; meta = { - homepage = "http://melpa.org/#/req-package"; + homepage = "https://melpa.org/#/req-package"; license = lib.licenses.free; }; }) {}; - request = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + request = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "request"; - version = "20160108.233"; + version = "20160424.2232"; src = fetchFromGitHub { - owner = "abingham"; + owner = "tkf"; repo = "emacs-request"; - rev = "48a35969f7c41810d550e6cdf784cb86c5a05a20"; - sha256 = "1fiyxbd87cdlsdhpm3b3z8ypkrkvya6lamn0qx9hsxl1yv27vx4m"; + rev = "efbe231346f368a3079bf185ce25997ac6104d9c"; + sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/request"; - sha256 = "09gxfy34a13wr0agmhn0nldxaiyc72rx9xi56jirsvji4dg5j6mm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/request"; + sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji"; name = "request"; }; - packageRequires = [ cl-lib ]; + packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/request"; + homepage = "https://melpa.org/#/request"; license = lib.licenses.free; }; }) {}; request-deferred = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "request-deferred"; - version = "20130526.1215"; + version = "20160419.1805"; src = fetchFromGitHub { - owner = "abingham"; + owner = "tkf"; repo = "emacs-request"; - rev = "48a35969f7c41810d550e6cdf784cb86c5a05a20"; - sha256 = "1fiyxbd87cdlsdhpm3b3z8ypkrkvya6lamn0qx9hsxl1yv27vx4m"; + rev = "efbe231346f368a3079bf185ce25997ac6104d9c"; + sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/request-deferred"; - sha256 = "19s8q9a01v0g897s9ass1mr5wbzy82rrfcnqpvcvp05q4y787dn9"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/request-deferred"; + sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n"; name = "request-deferred"; }; packageRequires = [ deferred request ]; meta = { - homepage = "http://melpa.org/#/request-deferred"; + homepage = "https://melpa.org/#/request-deferred"; license = lib.licenses.free; }; }) {}; @@ -48218,13 +50113,13 @@ sha256 = "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/requirejs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/requirejs"; sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k"; name = "requirejs"; }; packageRequires = [ cl-lib js2-mode popup s yasnippet ]; meta = { - homepage = "http://melpa.org/#/requirejs"; + homepage = "https://melpa.org/#/requirejs"; license = lib.licenses.free; }; }) {}; @@ -48233,19 +50128,19 @@ pname = "requirejs-mode"; version = "20130215.1504"; src = fetchFromGitHub { - owner = "ricardmo"; + owner = "moricard"; repo = "requirejs-mode"; rev = "bbb0c09f8eb2d6a33c17319be8137f68bb16bc92"; sha256 = "02wva5q8mvc0a5kms2wm1gyaag2x3zd6fkkpl4218nrbb0mbficv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/requirejs-mode"; - sha256 = "1sq1kim17bcmh39106vfgm7gq9nj9943lw8by0bpi5qr8xdjsn5r"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/requirejs-mode"; + sha256 = "00bl5dz56f77hl9wy3xvjhq81641mv9jbskcd8mcgcz9ycj9g5k2"; name = "requirejs-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/requirejs-mode"; + homepage = "https://melpa.org/#/requirejs-mode"; license = lib.licenses.free; }; }) {}; @@ -48260,13 +50155,13 @@ sha256 = "055km3g4bwl73kca6ky3qzzmy103w0mqcfscj33ppdhg2n7m94n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/resize-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/resize-window"; sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l"; name = "resize-window"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/resize-window"; + homepage = "https://melpa.org/#/resize-window"; license = lib.licenses.free; }; }) {}; @@ -48281,34 +50176,55 @@ sha256 = "0gbm208hmmmpjyj0x3z0cszphawkgvjqzi5idbdca3gikyiqw80n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/restart-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/restart-emacs"; sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6"; name = "restart-emacs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/restart-emacs"; + homepage = "https://melpa.org/#/restart-emacs"; license = lib.licenses.free; }; }) {}; restclient = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "restclient"; - version = "20151128.1712"; + version = "20160414.1724"; src = fetchFromGitHub { owner = "pashky"; repo = "restclient.el"; - rev = "2075b17e2f8e118cf0739e4087f791ed724be1ad"; - sha256 = "08j4m70j9xdl731bwa4vh656lji0w0f9mm1aki0qqd5msglw6kvx"; + rev = "224d4e2ec8e195bba80cae3278f481b1e92ab3e0"; + sha256 = "0r3q9cbf39pf4diynw4q8g7p5i6ylyk8jwxi2z2afwiblnnr9gsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/restclient"; - sha256 = "14wxfhb17n2f9wil68lb05abj7m0whwkqvrm3y9dg9mh14lcpbvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/restclient"; + sha256 = "0wzp8i89a4hwm7qyxvdk10frknbqcni0isnp8k63nhq7c30s7md4"; name = "restclient"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/restclient"; + homepage = "https://melpa.org/#/restclient"; + license = lib.licenses.free; + }; + }) {}; + restclient-helm = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, restclient }: + melpaBuild { + pname = "restclient-helm"; + version = "20160407.449"; + src = fetchFromGitHub { + owner = "pashky"; + repo = "restclient.el"; + rev = "224d4e2ec8e195bba80cae3278f481b1e92ab3e0"; + sha256 = "0r3q9cbf39pf4diynw4q8g7p5i6ylyk8jwxi2z2afwiblnnr9gsz"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/restclient-helm"; + sha256 = "0cpf02ippfr9w6kiw3kng8smabv256ff388322hhn8a8icyjl24j"; + name = "restclient-helm"; + }; + packageRequires = [ helm restclient ]; + meta = { + homepage = "https://melpa.org/#/restclient-helm"; license = lib.licenses.free; }; }) {}; @@ -48323,13 +50239,13 @@ sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reveal-in-osx-finder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reveal-in-osx-finder"; sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc"; name = "reveal-in-osx-finder"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/reveal-in-osx-finder"; + homepage = "https://melpa.org/#/reveal-in-osx-finder"; license = lib.licenses.free; }; }) {}; @@ -48337,17 +50253,17 @@ pname = "reveal-next"; version = "20151231.1750"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/reveal-next.el"; + url = "https://www.emacswiki.org/emacs/download/reveal-next.el"; sha256 = "1h27kg2k8f6smbqxandmvg859qk66jydbbbiwwjmk7316k66w8qa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reveal-next"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reveal-next"; sha256 = "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2"; name = "reveal-next"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/reveal-next"; + homepage = "https://melpa.org/#/reveal-next"; license = lib.licenses.free; }; }) {}; @@ -48362,13 +50278,13 @@ sha256 = "002ywhjms8ybk7cma2p2i11z3fz6kb0w8mlafysm911rvcq2hg5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reverse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reverse-theme"; sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776"; name = "reverse-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/reverse-theme"; + homepage = "https://melpa.org/#/reverse-theme"; license = lib.licenses.free; }; }) {}; @@ -48383,13 +50299,13 @@ sha256 = "0lzsy68k7sm9d3r8lzhzx9alc1f0cgfclry40pa4x0ilkcr7ysch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/review-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/review-mode"; sha256 = "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n"; name = "review-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/review-mode"; + homepage = "https://melpa.org/#/review-mode"; license = lib.licenses.free; }; }) {}; @@ -48404,13 +50320,13 @@ sha256 = "037sac5fvz6l2zgzlf8ykk4jf9zhj7ybzyz013jqzjj47a6sn1r1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/revive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/revive"; sha256 = "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5"; name = "revive"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/revive"; + homepage = "https://melpa.org/#/revive"; license = lib.licenses.free; }; }) {}; @@ -48425,13 +50341,13 @@ sha256 = "0zmby92mjszh77r5wh8sccqv3a5bb9sfhac8g55nasavw8hfplvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reykjavik-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reykjavik-theme"; sha256 = "1f0q2gfzkmpd374jryrd1lgg8xj6rwdq181jhppj3rfjizgw4l35"; name = "reykjavik-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/reykjavik-theme"; + homepage = "https://melpa.org/#/reykjavik-theme"; license = lib.licenses.free; }; }) {}; @@ -48439,17 +50355,17 @@ pname = "rfringe"; version = "20110405.1020"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/rfringe.el"; + url = "https://www.emacswiki.org/emacs/download/rfringe.el"; sha256 = "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rfringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rfringe"; sha256 = "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6"; name = "rfringe"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rfringe"; + homepage = "https://melpa.org/#/rfringe"; license = lib.licenses.free; }; }) {}; @@ -48464,13 +50380,13 @@ sha256 = "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rhtml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rhtml-mode"; sha256 = "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35"; name = "rhtml-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rhtml-mode"; + homepage = "https://melpa.org/#/rhtml-mode"; license = lib.licenses.free; }; }) {}; @@ -48485,13 +50401,13 @@ sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rich-minority"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rich-minority"; sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc"; name = "rich-minority"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/rich-minority"; + homepage = "https://melpa.org/#/rich-minority"; license = lib.licenses.free; }; }) {}; @@ -48506,13 +50422,13 @@ sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rigid-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rigid-tabs"; sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp"; name = "rigid-tabs"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/rigid-tabs"; + homepage = "https://melpa.org/#/rigid-tabs"; license = lib.licenses.free; }; }) {}; @@ -48527,13 +50443,13 @@ sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rinari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rinari"; sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0"; name = "rinari"; }; packageRequires = [ inf-ruby jump ruby-compilation ruby-mode ]; meta = { - homepage = "http://melpa.org/#/rinari"; + homepage = "https://melpa.org/#/rinari"; license = lib.licenses.free; }; }) {}; @@ -48548,13 +50464,13 @@ sha256 = "0imsc44mcy5abmfin28d13l8mjjvyx6hxcsk81r0i8h12mxlmfkp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rings"; sha256 = "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7"; name = "rings"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rings"; + homepage = "https://melpa.org/#/rings"; license = lib.licenses.free; }; }) {}; @@ -48569,34 +50485,55 @@ sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rnc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rnc-mode"; sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q"; name = "rnc-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rnc-mode"; + homepage = "https://melpa.org/#/rnc-mode"; license = lib.licenses.free; }; }) {}; robe = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "robe"; - version = "20160121.1751"; + version = "20160303.1027"; src = fetchFromGitHub { owner = "dgutov"; repo = "robe"; - rev = "7c56895b6c2fd5d6c9572182f5de10ebe5bfc977"; - sha256 = "01xd3nc7bmf4r4d37x08rw2dlsg6gns8mraahi4rwkg6a9lwl44n"; + rev = "b260da4812d9cba53622a95d5464697f90761006"; + sha256 = "1by1r0fycvbrbvzrc1z2kd644hyndcrzi6gvplqaz8jkyy88nnny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/robe"; sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk"; name = "robe"; }; packageRequires = [ inf-ruby ]; meta = { - homepage = "http://melpa.org/#/robe"; + homepage = "https://melpa.org/#/robe"; + license = lib.licenses.free; + }; + }) {}; + robots-txt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "robots-txt-mode"; + version = "20160312.951"; + src = fetchFromGitHub { + owner = "zonuexe"; + repo = "robots-txt-mode"; + rev = "7b524685036d339a8aff1481697fbcd529dfa8f7"; + sha256 = "0dimmdz4aqcif4lp23nqxfg7kngzym2yivn6h3p7bn1821vgzq9s"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/robots-txt-mode"; + sha256 = "1q3fqaf9nysy9bhx4h9idgshxr65hfwnx05vlwazx7jd6bq6kxfh"; + name = "robots-txt-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/robots-txt-mode"; license = lib.licenses.free; }; }) {}; @@ -48611,34 +50548,34 @@ sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/roguel-ike"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/roguel-ike"; sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8"; name = "roguel-ike"; }; packageRequires = [ popup ]; meta = { - homepage = "http://melpa.org/#/roguel-ike"; + homepage = "https://melpa.org/#/roguel-ike"; license = lib.licenses.free; }; }) {}; rope-read-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rope-read-mode"; - version = "20160208.1710"; + version = "20160416.421"; src = fetchFromGitHub { owner = "marcowahl"; repo = "rope-read-mode"; - rev = "a763ebdbc9876cddf00794b08566ff6b87364064"; - sha256 = "07jvk55asxn9lqqzgfl16zxgj2s30jqkygiha067rasbh4hs1ihi"; + rev = "5b9d44b5af74e909092efed6f732dc7d20529eb0"; + sha256 = "0kbi4f6v289v25n9silf7z0sdd8930pcaqdjrrrs7nkkjcl12sd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rope-read-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rope-read-mode"; sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw"; name = "rope-read-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rope-read-mode"; + homepage = "https://melpa.org/#/rope-read-mode"; license = lib.licenses.free; }; }) {}; @@ -48653,13 +50590,13 @@ sha256 = "13xrjd5p2zq0r8ifbqbrgjfm0jj09nyxcbhk262jr6f171rf0y2m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rotate"; sha256 = "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx"; name = "rotate"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rotate"; + homepage = "https://melpa.org/#/rotate"; license = lib.licenses.free; }; }) {}; @@ -48674,13 +50611,13 @@ sha256 = "04jbnm9is2cis75h40znqzjvyjq27ncr2vfank6zglzi4fhxsl0r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/roy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/roy-mode"; sha256 = "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g"; name = "roy-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/roy-mode"; + homepage = "https://melpa.org/#/roy-mode"; license = lib.licenses.free; }; }) {}; @@ -48695,13 +50632,13 @@ sha256 = "01rb6qfsk4f33nkfdzvvjkw96ip1dv0py8i30l8ix9cqbk07svsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rpm-spec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rpm-spec-mode"; sha256 = "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd"; name = "rpm-spec-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rpm-spec-mode"; + homepage = "https://melpa.org/#/rpm-spec-mode"; license = lib.licenses.free; }; }) {}; @@ -48716,13 +50653,13 @@ sha256 = "0i5qwbhhdnspgs2y67kkgbk9zq6fx2j509q92mgfzbvjnf54h1r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rpn-calc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rpn-calc"; sha256 = "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs"; name = "rpn-calc"; }; packageRequires = [ popup ]; meta = { - homepage = "http://melpa.org/#/rpn-calc"; + homepage = "https://melpa.org/#/rpn-calc"; license = lib.licenses.free; }; }) {}; @@ -48737,55 +50674,55 @@ sha256 = "0xkr1qn8fm3kv5c11janq5acp1q02abvxc463zijvm2qk735yl4d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rsense"; sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5"; name = "rsense"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rsense"; + homepage = "https://melpa.org/#/rsense"; license = lib.licenses.free; }; }) {}; rspec-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "rspec-mode"; - version = "20160124.1607"; + version = "20160425.1657"; src = fetchFromGitHub { owner = "pezra"; repo = "rspec-mode"; - rev = "c6eb793e46e6ce5a9be8871235f0911a412f68ad"; - sha256 = "1zbpp9n35l589i7yla4l93nvp5ngwsj9p44glhz9jxzlkjwig9a1"; + rev = "87a89718839d96796da10fd91f7a6f08fb775f71"; + sha256 = "1mlcr4br831cbxd90z61kynvir704mafv4avas44bzk8m1m188kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rspec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rspec-mode"; sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx"; name = "rspec-mode"; }; packageRequires = [ cl-lib ruby-mode ]; meta = { - homepage = "http://melpa.org/#/rspec-mode"; + homepage = "https://melpa.org/#/rspec-mode"; license = lib.licenses.free; }; }) {}; rtags = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rtags"; - version = "20160221.1307"; + version = "20160420.1258"; src = fetchFromGitHub { owner = "Andersbakken"; repo = "rtags"; - rev = "9f912e5ca5e1f8bfd53b76031be76c20141f8871"; - sha256 = "0bkjqqmr3zc4wq2j1afpvnrsdhmp33kl9dbw5169xja6znn4sn92"; + rev = "1576dc4931039caa2193bf7d043f90407dd12bc3"; + sha256 = "0c06jaywcnbh2fr3ias9q4cz89fcp9nbf8in83jap8f4l94a4zf6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rtags"; sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw"; name = "rtags"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rtags"; + homepage = "https://melpa.org/#/rtags"; license = lib.licenses.free; }; }) {}; @@ -48800,13 +50737,13 @@ sha256 = "1gqvp0h5zy2023gdzf7pw28rl27lzml87vpbi1zaw4bmj82zgh3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rtm"; sha256 = "1ni2610svxziq1gq6s6igkhqyafvgn02gnw7jbm3ir7ks4w2imzf"; name = "rtm"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/rtm"; + homepage = "https://melpa.org/#/rtm"; license = lib.licenses.free; }; }) {}; @@ -48821,13 +50758,13 @@ sha256 = "1y5z0kr4qwd4fyvhk0rhpbbp6dw2jpzrawx62jid5539wrdjcabk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rubocop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rubocop"; sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q"; name = "rubocop"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/rubocop"; + homepage = "https://melpa.org/#/rubocop"; license = lib.licenses.free; }; }) {}; @@ -48837,17 +50774,17 @@ version = "20091002.545"; src = fetchsvn { url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/"; - rev = "53886"; - sha256 = "0wrjx25qg1dpgw0gih7fd679fv3q78cwaqyrf5dh1kq8g8cr5xhs"; + rev = "54789"; + sha256 = "07j1lclp6jqhyzfw8h4a21kx39nz946h6lgmn959rvckhkijr514"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-additional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-additional"; sha256 = "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w"; name = "ruby-additional"; }; packageRequires = [ emacs ruby-mode ]; meta = { - homepage = "http://melpa.org/#/ruby-additional"; + homepage = "https://melpa.org/#/ruby-additional"; license = lib.licenses.free; }; }) {}; @@ -48855,17 +50792,17 @@ pname = "ruby-block"; version = "20131210.2131"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/ruby-block.el"; + url = "https://www.emacswiki.org/emacs/download/ruby-block.el"; sha256 = "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-block"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-block"; sha256 = "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm"; name = "ruby-block"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-block"; + homepage = "https://melpa.org/#/ruby-block"; license = lib.licenses.free; }; }) {}; @@ -48880,13 +50817,13 @@ sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-compilation"; sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc"; name = "ruby-compilation"; }; packageRequires = [ inf-ruby ]; meta = { - homepage = "http://melpa.org/#/ruby-compilation"; + homepage = "https://melpa.org/#/ruby-compilation"; license = lib.licenses.free; }; }) {}; @@ -48901,13 +50838,13 @@ sha256 = "1cy5zmdfwsjw8jla8mxjm1cmvrv727fwq1kqhjr5nxj0flwsm4x1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-dev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-dev"; sha256 = "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh"; name = "ruby-dev"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-dev"; + homepage = "https://melpa.org/#/ruby-dev"; license = lib.licenses.free; }; }) {}; @@ -48917,17 +50854,17 @@ version = "20150424.952"; src = fetchsvn { url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/"; - rev = "53886"; - sha256 = "0wrjx25qg1dpgw0gih7fd679fv3q78cwaqyrf5dh1kq8g8cr5xhs"; + rev = "54789"; + sha256 = "07j1lclp6jqhyzfw8h4a21kx39nz946h6lgmn959rvckhkijr514"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-electric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-electric"; sha256 = "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056"; name = "ruby-electric"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-electric"; + homepage = "https://melpa.org/#/ruby-electric"; license = lib.licenses.free; }; }) {}; @@ -48937,18 +50874,18 @@ version = "20141215.623"; src = fetchFromGitHub { owner = "rejeep"; - repo = "ruby-end"; + repo = "ruby-end.el"; rev = "ea453f5ac6259f09667fa26b865b6afacd06aa97"; sha256 = "1x4nvrq5nk50c1l3b5wcr4g1n5nmwafcz1zzc12qzsl5sya7si55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-end"; - sha256 = "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-end"; + sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg"; name = "ruby-end"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-end"; + homepage = "https://melpa.org/#/ruby-end"; license = lib.licenses.free; }; }) {}; @@ -48963,13 +50900,13 @@ sha256 = "15b2rs6m4d511qqkc2gc8k15mbqzrgv6s3hpypajl8nvqa79xnyd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-factory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-factory"; sha256 = "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37"; name = "ruby-factory"; }; packageRequires = [ inflections ]; meta = { - homepage = "http://melpa.org/#/ruby-factory"; + homepage = "https://melpa.org/#/ruby-factory"; license = lib.licenses.free; }; }) {}; @@ -48984,13 +50921,13 @@ sha256 = "080hmrh7pgpaj33w1rkhcqb1yp70w4cap0rq9hsxaaajj0sn47z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-guard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-guard"; sha256 = "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr"; name = "ruby-guard"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-guard"; + homepage = "https://melpa.org/#/ruby-guard"; license = lib.licenses.free; }; }) {}; @@ -49005,13 +50942,13 @@ sha256 = "0knl8zrd4pplnzk5z19cf9rqdfr3ymzfssrwp6jhndjzjdwvc2bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-hash-syntax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-hash-syntax"; sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5"; name = "ruby-hash-syntax"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-hash-syntax"; + homepage = "https://melpa.org/#/ruby-hash-syntax"; license = lib.licenses.free; }; }) {}; @@ -49026,13 +50963,13 @@ sha256 = "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-interpolation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-interpolation"; sha256 = "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp"; name = "ruby-interpolation"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-interpolation"; + homepage = "https://melpa.org/#/ruby-interpolation"; license = lib.licenses.free; }; }) {}; @@ -49047,13 +50984,13 @@ sha256 = "13008ih4hwa80bn2dbgj551knbvgpriz5sb241rkf7mifmlfzgsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-refactor"; sha256 = "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby"; name = "ruby-refactor"; }; packageRequires = [ ruby-mode ]; meta = { - homepage = "http://melpa.org/#/ruby-refactor"; + homepage = "https://melpa.org/#/ruby-refactor"; license = lib.licenses.free; }; }) {}; @@ -49068,13 +51005,13 @@ sha256 = "06fhrn04whqb3n40wkzrwmzbzv7b1m48rd18rx8zpgxhbw8v7rdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-test-mode"; sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w"; name = "ruby-test-mode"; }; packageRequires = [ ruby-mode ]; meta = { - homepage = "http://melpa.org/#/ruby-test-mode"; + homepage = "https://melpa.org/#/ruby-test-mode"; license = lib.licenses.free; }; }) {}; @@ -49084,18 +51021,18 @@ version = "20151209.1015"; src = fetchFromGitHub { owner = "rejeep"; - repo = "ruby-tools"; + repo = "ruby-tools.el"; rev = "6b97066b58a4f82eb2ecea6434a0a7e981aa4c18"; sha256 = "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-tools"; - sha256 = "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-tools"; + sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy"; name = "ruby-tools"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-tools"; + homepage = "https://melpa.org/#/ruby-tools"; license = lib.licenses.free; }; }) {}; @@ -49110,13 +51047,13 @@ sha256 = "17dzr5w12ai2q15yv81gchk360yjs71w74vsgs2fyy2yznvclpq9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/runner"; sha256 = "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx"; name = "runner"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/runner"; + homepage = "https://melpa.org/#/runner"; license = lib.licenses.free; }; }) {}; @@ -49131,34 +51068,34 @@ sha256 = "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/runtests"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/runtests"; sha256 = "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb"; name = "runtests"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/runtests"; + homepage = "https://melpa.org/#/runtests"; license = lib.licenses.free; }; }) {}; - rust-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + rust-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rust-mode"; - version = "20160216.1934"; + version = "20160425.2319"; src = fetchFromGitHub { owner = "rust-lang"; repo = "rust-mode"; - rev = "b1cca0fa73633dcee5704423d9421bfccf12385d"; - sha256 = "0124w1br75aldnlsavd7r06y7k7q7cc1szmza8f6mwbpfzy038sr"; + rev = "b23efef0b6a6a632b70c1db5579a835059239e4c"; + sha256 = "1qsxxpr80y7fz5zh2i8hyifqmhbkrlnqls6gcck2n3ahv30sa1i3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rust-mode"; - sha256 = "0h4gblg6ls8a2wa43r990lanl6ykx8j7c8yg5i3n151imzic2n33"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rust-mode"; + sha256 = "1i1mw1v99nyikscg2s1m216b0h8svbzmf5kjvjgk9zjiba4cbqzc"; name = "rust-mode"; }; - packageRequires = []; + packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/rust-mode"; + homepage = "https://melpa.org/#/rust-mode"; license = lib.licenses.free; }; }) {}; @@ -49173,13 +51110,13 @@ sha256 = "0c22cxa4f6plz67vxmp1zgaylkfrky313cj0zybn9akrbcxpbc34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rustfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rustfmt"; sha256 = "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl"; name = "rustfmt"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/rustfmt"; + homepage = "https://melpa.org/#/rustfmt"; license = lib.licenses.free; }; }) {}; @@ -49194,34 +51131,34 @@ sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rvm"; sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8"; name = "rvm"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rvm"; + homepage = "https://melpa.org/#/rvm"; license = lib.licenses.free; }; }) {}; s = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "s"; - version = "20160115.258"; + version = "20160405.1120"; src = fetchFromGitHub { owner = "magnars"; repo = "s.el"; - rev = "a56f0d0fedf9754e1728067ac868100f2499357d"; - sha256 = "08vf62fcrnbmf2ppb759kzznjdz8x72fqdwbc4n8nbswrwgm2ikl"; + rev = "b2436c2ee5c1f3284b567c4cd48e5b4ed953d49e"; + sha256 = "1lk8vjrbjpw8z5gdadx86b0554djpg928s7wkq8qkr8qm7dd85aa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/s"; sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64"; name = "s"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/s"; + homepage = "https://melpa.org/#/s"; license = lib.licenses.free; }; }) {}; @@ -49236,13 +51173,13 @@ sha256 = "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/s-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/s-buffer"; sha256 = "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m"; name = "s-buffer"; }; packageRequires = [ noflet s ]; meta = { - homepage = "http://melpa.org/#/s-buffer"; + homepage = "https://melpa.org/#/s-buffer"; license = lib.licenses.free; }; }) {}; @@ -49257,34 +51194,34 @@ sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sackspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sackspace"; sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z"; name = "sackspace"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sackspace"; + homepage = "https://melpa.org/#/sackspace"; license = lib.licenses.free; }; }) {}; sage-shell-mode = callPackage ({ cl-lib ? null, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sage-shell-mode"; - version = "20160220.2028"; + version = "20160414.2114"; src = fetchFromGitHub { owner = "stakemori"; repo = "sage-shell-mode"; - rev = "30461322fc8530b8be87d873aafff5a7c5044c24"; - sha256 = "1z171hrm6fscrdw9z1b2wh0br6axg53r853n2mdk33k3yvwyd6z8"; + rev = "b062bb138d137bf0c96fecaad6f67b8033d551d5"; + sha256 = "17pxr7y60im9gpi50v3b1hswahrkdwc2hqycxpb5x9g0xd6w797b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sage-shell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sage-shell-mode"; sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx"; name = "sage-shell-mode"; }; packageRequires = [ cl-lib deferred ]; meta = { - homepage = "http://melpa.org/#/sage-shell-mode"; + homepage = "https://melpa.org/#/sage-shell-mode"; license = lib.licenses.free; }; }) {}; @@ -49299,13 +51236,13 @@ sha256 = "1hl227bmjch0vq7n47mwydkyxnd6wkbz9klk3c4398qmc2qxm5kn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/salt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/salt-mode"; sha256 = "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp"; name = "salt-mode"; }; packageRequires = [ mmm-jinja2 mmm-mode yaml-mode ]; meta = { - homepage = "http://melpa.org/#/salt-mode"; + homepage = "https://melpa.org/#/salt-mode"; license = lib.licenses.free; }; }) {}; @@ -49320,13 +51257,13 @@ sha256 = "1r6b6n2bzjznjfimgcm0vnmln4sbyasm4icmdgbpzahdmbkfzq3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sane-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sane-term"; sha256 = "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8"; name = "sane-term"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/sane-term"; + homepage = "https://melpa.org/#/sane-term"; license = lib.licenses.free; }; }) {}; @@ -49341,13 +51278,13 @@ sha256 = "0srz4j7484v5h7hmdlyrcl2k27jhy414689wphbbyj63rvg321cm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sass-mode"; sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800"; name = "sass-mode"; }; packageRequires = [ cl-lib haml-mode ]; meta = { - homepage = "http://melpa.org/#/sass-mode"; + homepage = "https://melpa.org/#/sass-mode"; license = lib.licenses.free; }; }) {}; @@ -49362,13 +51299,13 @@ sha256 = "0y6a0z2ydc5li3990mfhcgz5mrb89sj8s8dvdgmnv8pgdhn1xmb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sauron"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sauron"; sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb"; name = "sauron"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sauron"; + homepage = "https://melpa.org/#/sauron"; license = lib.licenses.free; }; }) {}; @@ -49376,17 +51313,17 @@ pname = "save-load-path"; version = "20131228.1352"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/save-load-path.el"; + url = "https://www.emacswiki.org/emacs/download/save-load-path.el"; sha256 = "1p8p5b85sdnq45rdjq5wcr3xz7c22mr5bz41a21mkabc4j4fvd3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/save-load-path"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/save-load-path"; sha256 = "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi"; name = "save-load-path"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/save-load-path"; + homepage = "https://melpa.org/#/save-load-path"; license = lib.licenses.free; }; }) {}; @@ -49401,13 +51338,13 @@ sha256 = "00jvl1npc889f3isi7cbdzwvf9x4rq67zgl7br8npxf8jlc2mwhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/save-visited-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/save-visited-files"; sha256 = "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd"; name = "save-visited-files"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/save-visited-files"; + homepage = "https://melpa.org/#/save-visited-files"; license = lib.licenses.free; }; }) {}; @@ -49415,38 +51352,38 @@ pname = "savekill"; version = "20140417.2134"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/savekill.el"; + url = "https://www.emacswiki.org/emacs/download/savekill.el"; sha256 = "1qfq83cb4qixdl15j28rlslkq6g88ig55ydg747jqb3dqyp3qaah"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/savekill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/savekill"; sha256 = "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i"; name = "savekill"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/savekill"; + homepage = "https://melpa.org/#/savekill"; license = lib.licenses.free; }; }) {}; sbt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, scala-mode2 }: melpaBuild { pname = "sbt-mode"; - version = "20160219.448"; + version = "20160316.220"; src = fetchFromGitHub { owner = "ensime"; repo = "emacs-sbt-mode"; - rev = "fc4fa63c8f788625030092c4450112ec67ae27ed"; - sha256 = "16ckzn2pv8lh16xna9wqisiflhrk0f6kj5zgrygbmsl86kc0rk2a"; + rev = "f1514212d86643c4bf1657ff6682b66472a69362"; + sha256 = "0fi07445hyfifcfzxim9947mjcdj5m40minaq89mrxpfndj9jk8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sbt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sbt-mode"; sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8"; name = "sbt-mode"; }; packageRequires = [ scala-mode2 ]; meta = { - homepage = "http://melpa.org/#/sbt-mode"; + homepage = "https://melpa.org/#/sbt-mode"; license = lib.licenses.free; }; }) {}; @@ -49457,17 +51394,17 @@ src = fetchFromGitHub { owner = "openscad"; repo = "openscad"; - rev = "a2fc2044a9302332427315decc4b925e0b0ad310"; - sha256 = "0ckns5sqpjlw4ndgyl3bij5pidlm6xjc534fxzwz2s2h2bqbz9q8"; + rev = "50441e85a2d0920af6a1a886b97edc001f4dc0ae"; + sha256 = "0051bgs1lfdsy84b4j1746clslc3fmn0nsnig3f8ks9ndfav3rj4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scad-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scad-mode"; sha256 = "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k"; name = "scad-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scad-mode"; + homepage = "https://melpa.org/#/scad-mode"; license = lib.licenses.free; }; }) {}; @@ -49482,13 +51419,13 @@ sha256 = "13x00dls59zshz69260pnqmx6ydrjg8p2jdjn1rzgf5dsmwfy3sc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scad-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scad-preview"; sha256 = "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z"; name = "scad-preview"; }; packageRequires = [ scad-mode ]; meta = { - homepage = "http://melpa.org/#/scad-preview"; + homepage = "https://melpa.org/#/scad-preview"; license = lib.licenses.free; }; }) {}; @@ -49503,13 +51440,13 @@ sha256 = "0qd3yi2as30kacr74vbzvyq97684s8sz585z30d47shqcvp6l1a6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scala-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scala-mode"; sha256 = "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm"; name = "scala-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scala-mode"; + homepage = "https://melpa.org/#/scala-mode"; license = lib.licenses.free; }; }) {}; @@ -49524,13 +51461,13 @@ sha256 = "07928cll5n3s7xx75nfbil73zilrhdfh19hp4s75c7hh8sdwmig6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scala-mode2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scala-mode2"; sha256 = "0rnkln6jwwqc968w3qpc6zjjv8ylw0w6c2hsjpq2slja3jn5khch"; name = "scala-mode2"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scala-mode2"; + homepage = "https://melpa.org/#/scala-mode2"; license = lib.licenses.free; }; }) {}; @@ -49545,13 +51482,13 @@ sha256 = "1wf3d5spvi9kr4q2w7f18g1bm10fh2zbh4sdbqkf78afv6sbqzrz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scala-outline-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scala-outline-popup"; sha256 = "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7"; name = "scala-outline-popup"; }; packageRequires = [ dash flx-ido popup scala-mode2 ]; meta = { - homepage = "http://melpa.org/#/scala-outline-popup"; + homepage = "https://melpa.org/#/scala-outline-popup"; license = lib.licenses.free; }; }) {}; @@ -49566,33 +51503,34 @@ sha256 = "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scf-mode"; sha256 = "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0"; name = "scf-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scf-mode"; + homepage = "https://melpa.org/#/scf-mode"; license = lib.licenses.free; }; }) {}; - scheme-complete = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: + scheme-complete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scheme-complete"; - version = "20130220.603"; - src = fetchhg { - url = "http://code.google.com/p/scheme-complete/"; - rev = "e2ec67dfb1ff"; - sha256 = "13pym1kwi8ah3h2l557pvbg4lgpp5lhldj3qxyg7gyvgkwr91a7g"; + version = "20160408.849"; + src = fetchFromGitHub { + owner = "ashinn"; + repo = "scheme-complete"; + rev = "3f49e2935d89e387ce6649c9adc764d15eecee3a"; + sha256 = "0555rmhcm9cvm0wljcbz3j04qwgl9cnjmcz324kwlv94ph5gp752"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scheme-complete"; - sha256 = "1nam7xzw8hrykz73q9x24szpjv2kpkp48lcmzf02kzj3cg6l76qm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scheme-complete"; + sha256 = "1mp9gssd2fx3ra2bjd7w311hwmflhybr5x574qb12603gjkgrp1h"; name = "scheme-complete"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scheme-complete"; + homepage = "https://melpa.org/#/scheme-complete"; license = lib.licenses.free; }; }) {}; @@ -49601,19 +51539,19 @@ pname = "scheme-here"; version = "20141028.218"; src = fetchFromGitHub { - owner = "judevc"; + owner = "hiddenlotus"; repo = "scheme-here"; rev = "430ba017cc530865218de23a8f7985095a58343f"; sha256 = "09cvrphrnbj8avnlqqv6scjz17cn6zm6mzghjn3vxfr4hql66rir"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scheme-here"; - sha256 = "137qqfnla3hjm6qcnzpsgrw173px0k5dwq9apns5cdryxx3ahcvv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scheme-here"; + sha256 = "04lmkf3zc396anlp9s9irdkqavsc0lzlpzprswd4r2kp4xp7kcks"; name = "scheme-here"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scheme-here"; + homepage = "https://melpa.org/#/scheme-here"; license = lib.licenses.free; }; }) {}; @@ -49628,13 +51566,13 @@ sha256 = "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scion"; sha256 = "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d"; name = "scion"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scion"; + homepage = "https://melpa.org/#/scion"; license = lib.licenses.free; }; }) {}; @@ -49649,13 +51587,13 @@ sha256 = "0v36zd8lnsbc7jvnhv5pidfxabq2qqmwg1nm2jdxfj6vvcg3vx0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sclang-extensions"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sclang-extensions"; sha256 = "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn"; name = "sclang-extensions"; }; packageRequires = [ auto-complete dash emacs s ]; meta = { - homepage = "http://melpa.org/#/sclang-extensions"; + homepage = "https://melpa.org/#/sclang-extensions"; license = lib.licenses.free; }; }) {}; @@ -49670,13 +51608,13 @@ sha256 = "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sclang-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sclang-snippets"; sha256 = "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2"; name = "sclang-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/sclang-snippets"; + homepage = "https://melpa.org/#/sclang-snippets"; license = lib.licenses.free; }; }) {}; @@ -49691,13 +51629,13 @@ sha256 = "1jgg116rhhgs5qrngrmqi8ir7yj1h470f57dc7fyijw0ly5mp6ii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scpaste"; sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1"; name = "scpaste"; }; packageRequires = [ htmlize ]; meta = { - homepage = "http://melpa.org/#/scpaste"; + homepage = "https://melpa.org/#/scpaste"; license = lib.licenses.free; }; }) {}; @@ -49712,13 +51650,13 @@ sha256 = "0ykhr24vpx3byn2n346nqqvmwcg34hk22s3lpdx7lpnkrn5z41aq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch"; sha256 = "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d"; name = "scratch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scratch"; + homepage = "https://melpa.org/#/scratch"; license = lib.licenses.free; }; }) {}; @@ -49733,13 +51671,13 @@ sha256 = "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratch-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch-ext"; sha256 = "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y"; name = "scratch-ext"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scratch-ext"; + homepage = "https://melpa.org/#/scratch-ext"; license = lib.licenses.free; }; }) {}; @@ -49754,13 +51692,34 @@ sha256 = "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratch-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch-log"; sha256 = "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69"; name = "scratch-log"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scratch-log"; + homepage = "https://melpa.org/#/scratch-log"; + license = lib.licenses.free; + }; + }) {}; + scratch-message = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "scratch-message"; + version = "20160323.1546"; + src = fetchFromGitHub { + owner = "thisirs"; + repo = "scratch-message"; + rev = "fc78fe1197e68dda4e86e1806feed09f78abbd92"; + sha256 = "1qic0saz5pflgaf48sqsnw18y9amfkkflf8c534hdd053w77h8qh"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch-message"; + sha256 = "1dl9d4gvicwnb662ir9azywjmmm7xv4d0sz42z7mmwy8hl9hi91b"; + name = "scratch-message"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/scratch-message"; license = lib.licenses.free; }; }) {}; @@ -49775,13 +51734,13 @@ sha256 = "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratch-palette"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch-palette"; sha256 = "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs"; name = "scratch-palette"; }; packageRequires = [ popwin ]; meta = { - homepage = "http://melpa.org/#/scratch-palette"; + homepage = "https://melpa.org/#/scratch-palette"; license = lib.licenses.free; }; }) {}; @@ -49796,13 +51755,13 @@ sha256 = "1yvmfiv1s83r0jcxzbxyrx3b263d73lbap6agansmrhkxp914xr1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratch-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch-pop"; sha256 = "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1"; name = "scratch-pop"; }; packageRequires = [ popwin ]; meta = { - homepage = "http://melpa.org/#/scratch-pop"; + homepage = "https://melpa.org/#/scratch-pop"; license = lib.licenses.free; }; }) {}; @@ -49817,13 +51776,13 @@ sha256 = "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scratches"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratches"; sha256 = "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy"; name = "scratches"; }; packageRequires = [ dash f ]; meta = { - homepage = "http://melpa.org/#/scratches"; + homepage = "https://melpa.org/#/scratches"; license = lib.licenses.free; }; }) {}; @@ -49831,17 +51790,17 @@ pname = "screenshot"; version = "20120509.605"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/screenshot.el"; + url = "https://www.emacswiki.org/emacs/download/screenshot.el"; sha256 = "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/screenshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/screenshot"; sha256 = "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs"; name = "screenshot"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/screenshot"; + homepage = "https://melpa.org/#/screenshot"; license = lib.licenses.free; }; }) {}; @@ -49856,13 +51815,13 @@ sha256 = "113pi7nsaksaacy74ngbvrvr6qcl7199xy662nj58bz5307yi9q0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scss-mode"; sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv"; name = "scss-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scss-mode"; + homepage = "https://melpa.org/#/scss-mode"; license = lib.licenses.free; }; }) {}; @@ -49877,13 +51836,13 @@ sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/search-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/search-web"; sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36"; name = "search-web"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/search-web"; + homepage = "https://melpa.org/#/search-web"; license = lib.licenses.free; }; }) {}; @@ -49898,13 +51857,13 @@ sha256 = "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/searchq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/searchq"; sha256 = "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr"; name = "searchq"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/searchq"; + homepage = "https://melpa.org/#/searchq"; license = lib.licenses.free; }; }) {}; @@ -49919,13 +51878,13 @@ sha256 = "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/seclusion-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/seclusion-mode"; sha256 = "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m"; name = "seclusion-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/seclusion-mode"; + homepage = "https://melpa.org/#/seclusion-mode"; license = lib.licenses.free; }; }) {}; @@ -49933,17 +51892,17 @@ pname = "second-sel"; version = "20151231.1753"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/second-sel.el"; + url = "https://www.emacswiki.org/emacs/download/second-sel.el"; sha256 = "143vg6z3aa0znmsx88r675vv5g2c13giz25dcbzazsp4wcr46wvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/second-sel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/second-sel"; sha256 = "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr"; name = "second-sel"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/second-sel"; + homepage = "https://melpa.org/#/second-sel"; license = lib.licenses.free; }; }) {}; @@ -49958,13 +51917,13 @@ sha256 = "19p3zp4cj7ik2gwzc5k6klqc4b8jc2hvm80yhczc5b7k223gp2bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/seeing-is-believing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/seeing-is-believing"; sha256 = "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb"; name = "seeing-is-believing"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/seeing-is-believing"; + homepage = "https://melpa.org/#/seeing-is-believing"; license = lib.licenses.free; }; }) {}; @@ -49979,13 +51938,13 @@ sha256 = "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/seethru"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/seethru"; sha256 = "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v"; name = "seethru"; }; packageRequires = [ shadchen ]; meta = { - homepage = "http://melpa.org/#/seethru"; + homepage = "https://melpa.org/#/seethru"; license = lib.licenses.free; }; }) {}; @@ -50000,13 +51959,13 @@ sha256 = "1as3llcs7jgcw9pafz4mbfml1cqd1fw8yl64bb4467nmhq2p18p7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sekka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sekka"; sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp"; name = "sekka"; }; packageRequires = [ cl-lib concurrent popup ]; meta = { - homepage = "http://melpa.org/#/sekka"; + homepage = "https://melpa.org/#/sekka"; license = lib.licenses.free; }; }) {}; @@ -50021,13 +51980,13 @@ sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/select-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/select-themes"; sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84"; name = "select-themes"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/select-themes"; + homepage = "https://melpa.org/#/select-themes"; license = lib.licenses.free; }; }) {}; @@ -50042,34 +52001,55 @@ sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/selectric-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/selectric-mode"; sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4"; name = "selectric-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/selectric-mode"; + homepage = "https://melpa.org/#/selectric-mode"; license = lib.licenses.free; }; }) {}; semi = callPackage ({ fetchFromGitHub, fetchurl, flim, lib, melpaBuild }: melpaBuild { pname = "semi"; - version = "20160211.255"; + version = "20160301.900"; src = fetchFromGitHub { owner = "wanderlust"; repo = "semi"; - rev = "33289fb506d22d639351e8a867fc7f34a1b86ff0"; - sha256 = "17w6mf9khcmja7ikl0c895dv7s7g7pqm15svv7spfcb1p30lrh39"; + rev = "f83561fb551fad1f899bf4f0ba68dae739da1761"; + sha256 = "0x4n2d7jsadwknscnwj64s5320wbj4pc0zrcm2c8xfwwgr9wl47k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/semi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/semi"; sha256 = "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25"; name = "semi"; }; packageRequires = [ flim ]; meta = { - homepage = "http://melpa.org/#/semi"; + homepage = "https://melpa.org/#/semi"; + license = lib.licenses.free; + }; + }) {}; + sendto = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "sendto"; + version = "20160425.750"; + src = fetchFromGitHub { + owner = "lujun9972"; + repo = "sendto.el"; + rev = "076b81d7a53f75b0a59b0ef3448f35570567054c"; + sha256 = "13qqprxz87cv3sjlq5hj0jp0qcfm3djfgasga8cc84ykrcc47p9f"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sendto"; + sha256 = "00ifasqpmggr4bhdyymzr215840y0ayfnfp0mh7wj99mr6f3zfq0"; + name = "sendto"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/sendto"; license = lib.licenses.free; }; }) {}; @@ -50084,13 +52064,13 @@ sha256 = "0g4jfcc5k26yh192bmmxnim9mqv993v2jjd9g9ssvnd42ihpx1n3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sensitive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sensitive"; sha256 = "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3"; name = "sensitive"; }; packageRequires = [ emacs sequences ]; meta = { - homepage = "http://melpa.org/#/sensitive"; + homepage = "https://melpa.org/#/sensitive"; license = lib.licenses.free; }; }) {}; @@ -50099,17 +52079,17 @@ pname = "sentence-highlight"; version = "20121026.950"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/sentence-highlight.el"; + url = "https://www.emacswiki.org/emacs/download/sentence-highlight.el"; sha256 = "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sentence-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sentence-highlight"; sha256 = "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m"; name = "sentence-highlight"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sentence-highlight"; + homepage = "https://melpa.org/#/sentence-highlight"; license = lib.licenses.free; }; }) {}; @@ -50124,13 +52104,13 @@ sha256 = "0ikiv12ahndvk5w9pdayqlmafwj8d1vkcshfnqmgy6ykqbcdpqk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sentence-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sentence-navigation"; sha256 = "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m"; name = "sentence-navigation"; }; packageRequires = [ ample-regexps emacs ]; meta = { - homepage = "http://melpa.org/#/sentence-navigation"; + homepage = "https://melpa.org/#/sentence-navigation"; license = lib.licenses.free; }; }) {}; @@ -50145,13 +52125,13 @@ sha256 = "15vmd1qmj8a6a5mmvdcnbav6mi5rhrp39m85idzv02zm0x9x6lyc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/seoul256-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/seoul256-theme"; sha256 = "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp"; name = "seoul256-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/seoul256-theme"; + homepage = "https://melpa.org/#/seoul256-theme"; license = lib.licenses.free; }; }) {}; @@ -50166,13 +52146,13 @@ sha256 = "1np6ip28ksms6fig67scwvwj43zgblny50ccvz8aclbl0z8nxswl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sequences"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sequences"; sha256 = "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh"; name = "sequences"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/sequences"; + homepage = "https://melpa.org/#/sequences"; license = lib.licenses.free; }; }) {}; @@ -50181,17 +52161,17 @@ pname = "sequential-command"; version = "20151207.1603"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/sequential-command.el"; + url = "https://www.emacswiki.org/emacs/download/sequential-command.el"; sha256 = "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sequential-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sequential-command"; sha256 = "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1"; name = "sequential-command"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sequential-command"; + homepage = "https://melpa.org/#/sequential-command"; license = lib.licenses.free; }; }) {}; @@ -50200,19 +52180,19 @@ pname = "servant"; version = "20140216.619"; src = fetchFromGitHub { - owner = "rejeep"; - repo = "servant.el"; + owner = "cask"; + repo = "servant"; rev = "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134"; sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/servant"; - sha256 = "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/servant"; + sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21"; name = "servant"; }; packageRequires = [ ansi commander dash epl f s shut-up web-server ]; meta = { - homepage = "http://melpa.org/#/servant"; + homepage = "https://melpa.org/#/servant"; license = lib.licenses.free; }; }) {}; @@ -50227,13 +52207,13 @@ sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/serverspec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/serverspec"; sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id"; name = "serverspec"; }; packageRequires = [ dash f helm s ]; meta = { - homepage = "http://melpa.org/#/serverspec"; + homepage = "https://melpa.org/#/serverspec"; license = lib.licenses.free; }; }) {}; @@ -50248,13 +52228,13 @@ sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/session"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/session"; sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx"; name = "session"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/session"; + homepage = "https://melpa.org/#/session"; license = lib.licenses.free; }; }) {}; @@ -50269,13 +52249,13 @@ sha256 = "18igxblmrbxwhd2d68cz1bpj4524djh2dw2rwhxlij76f9v805wn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/seti-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/seti-theme"; sha256 = "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z"; name = "seti-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/seti-theme"; + homepage = "https://melpa.org/#/seti-theme"; license = lib.licenses.free; }; }) {}; @@ -50290,13 +52270,13 @@ sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sexp-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sexp-move"; sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd"; name = "sexp-move"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sexp-move"; + homepage = "https://melpa.org/#/sexp-move"; license = lib.licenses.free; }; }) {}; @@ -50311,13 +52291,13 @@ sha256 = "1nfvb2vmbdqfyj25hvwrz7ajb4ilxgrvd3rbf3im3mb3skic1wn9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shackle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shackle"; sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6"; name = "shackle"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/shackle"; + homepage = "https://melpa.org/#/shackle"; license = lib.licenses.free; }; }) {}; @@ -50332,13 +52312,13 @@ sha256 = "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shadchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shadchen"; sha256 = "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4"; name = "shadchen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shadchen"; + homepage = "https://melpa.org/#/shadchen"; license = lib.licenses.free; }; }) {}; @@ -50353,13 +52333,13 @@ sha256 = "0l094nrrvan8v6j1xdgb51cbjvwicvxih29b7iyga13adb9dy9j4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shader-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shader-mode"; sha256 = "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g"; name = "shader-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/shader-mode"; + homepage = "https://melpa.org/#/shader-mode"; license = lib.licenses.free; }; }) {}; @@ -50370,17 +52350,17 @@ src = fetchFromGitHub { owner = "CodyReichert"; repo = "shakespeare-mode"; - rev = "4bff63eeac2b7ec1220f17e8bbcddbea4c11cb02"; - sha256 = "0vkxl3w4y4yacs1s4v0gwggvzrss8g74d3dgk8h3gphl4dlgx496"; + rev = "d8c80a8bc91c970563852b723413143844b0881b"; + sha256 = "1y9bgpz96zgjw5fvq2ma7q6392i9j1rrj5axp085ccgn7w24mii7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shakespeare-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shakespeare-mode"; sha256 = "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd"; name = "shakespeare-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shakespeare-mode"; + homepage = "https://melpa.org/#/shakespeare-mode"; license = lib.licenses.free; }; }) {}; @@ -50395,13 +52375,13 @@ sha256 = "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shampoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shampoo"; sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61"; name = "shampoo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shampoo"; + homepage = "https://melpa.org/#/shampoo"; license = lib.licenses.free; }; }) {}; @@ -50409,17 +52389,17 @@ pname = "shell-command"; version = "20090621.832"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/shell-command.el"; + url = "https://www.emacswiki.org/emacs/download/shell-command.el"; sha256 = "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-command"; sha256 = "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl"; name = "shell-command"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shell-command"; + homepage = "https://melpa.org/#/shell-command"; license = lib.licenses.free; }; }) {}; @@ -50434,13 +52414,13 @@ sha256 = "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-current-directory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-current-directory"; sha256 = "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd"; name = "shell-current-directory"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shell-current-directory"; + homepage = "https://melpa.org/#/shell-current-directory"; license = lib.licenses.free; }; }) {}; @@ -50455,13 +52435,13 @@ sha256 = "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-here"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-here"; sha256 = "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh"; name = "shell-here"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shell-here"; + homepage = "https://melpa.org/#/shell-here"; license = lib.licenses.free; }; }) {}; @@ -50469,38 +52449,38 @@ pname = "shell-history"; version = "20100504.350"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/shell-history.el"; + url = "https://www.emacswiki.org/emacs/download/shell-history.el"; sha256 = "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-history"; sha256 = "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7"; name = "shell-history"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shell-history"; + homepage = "https://melpa.org/#/shell-history"; license = lib.licenses.free; }; }) {}; shell-pop = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-pop"; - version = "20160208.348"; + version = "20160425.954"; src = fetchFromGitHub { owner = "kyagi"; repo = "shell-pop-el"; - rev = "272ed7dba1a32a900339167e02fbe052513b9a6c"; - sha256 = "0pnj11cba3g3kmnp0sr0gd085pzqwcpzmg3wyywpbinrr5ilagwp"; + rev = "8041cc758f02b17ba96bda0a47903540fb78d9d0"; + sha256 = "1ddd32f3k1mqk4h88kn0m9c3xd9y6yszkzm4s23fd6d96daw4smc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-pop"; sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8"; name = "shell-pop"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/shell-pop"; + homepage = "https://melpa.org/#/shell-pop"; license = lib.licenses.free; }; }) {}; @@ -50515,13 +52495,13 @@ sha256 = "16srngml5xmpaxb0wzhx91jil0r0dmn673bwai3lzxrkmjnl748l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-split-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-split-string"; sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m"; name = "shell-split-string"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shell-split-string"; + homepage = "https://melpa.org/#/shell-split-string"; license = lib.licenses.free; }; }) {}; @@ -50536,13 +52516,13 @@ sha256 = "1bcrxq43a45alv6x0wms4d4nykiqz2mzk04kwk5lmf5pw3dqm900"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-switcher"; sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx"; name = "shell-switcher"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/shell-switcher"; + homepage = "https://melpa.org/#/shell-switcher"; license = lib.licenses.free; }; }) {}; @@ -50557,13 +52537,13 @@ sha256 = "0ssaccdacabpja9nqzhr8x8ggfwmlian7y4p0fa6gvr7qsvjpgr9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-toggle"; sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446"; name = "shell-toggle"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shell-toggle"; + homepage = "https://melpa.org/#/shell-toggle"; license = lib.licenses.free; }; }) {}; @@ -50578,13 +52558,13 @@ sha256 = "1mc7y79h5p9cxqwsl40b1j5la5bm8b70n6fn4rx9wr4bi7rwph5i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shelldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shelldoc"; sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx"; name = "shelldoc"; }; packageRequires = [ cl-lib s ]; meta = { - homepage = "http://melpa.org/#/shelldoc"; + homepage = "https://melpa.org/#/shelldoc"; license = lib.licenses.free; }; }) {}; @@ -50595,17 +52575,38 @@ src = fetchFromGitHub { owner = "rtrn"; repo = "shelltest-mode"; - rev = "e2513832ce6b994631335be299736cabe291d0f7"; - sha256 = "1ns2w7zhbi96a3gilmzs69187jngqhcvik17ylsjdfrk42hw5s6r"; + rev = "b4bdd547bcdac427561aa1452f2aeb65e3a3c9f5"; + sha256 = "0f45q8j9m0ic3l69i7qjhf0l19cprn56fxw61al4xd3wxv4pr9gy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shelltest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shelltest-mode"; sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh"; name = "shelltest-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shelltest-mode"; + homepage = "https://melpa.org/#/shelltest-mode"; + license = lib.licenses.free; + }; + }) {}; + shift-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "shift-number"; + version = "20160419.1457"; + src = fetchFromGitHub { + owner = "alezost"; + repo = "shift-number.el"; + rev = "e59840cb7fb142b21e8b1e30b95dc3b4688dca65"; + sha256 = "0dlwcifw5mlski0mbvqqgmpb0jgf5i67x04s8yab1sq9rr07is57"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shift-number"; + sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p"; + name = "shift-number"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/shift-number"; license = lib.licenses.free; }; }) {}; @@ -50620,13 +52621,13 @@ sha256 = "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shift-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shift-text"; sha256 = "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i"; name = "shift-text"; }; packageRequires = [ cl-lib es-lib ]; meta = { - homepage = "http://melpa.org/#/shift-text"; + homepage = "https://melpa.org/#/shift-text"; license = lib.licenses.free; }; }) {}; @@ -50641,13 +52642,13 @@ sha256 = "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shimbun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shimbun"; sha256 = "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh"; name = "shimbun"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shimbun"; + homepage = "https://melpa.org/#/shimbun"; license = lib.licenses.free; }; }) {}; @@ -50662,13 +52663,13 @@ sha256 = "0xs19xpadxdl1wgapqj6xrscnb4ch6kj1qm3h93kj95x51427afz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shm"; sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c"; name = "shm"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shm"; + homepage = "https://melpa.org/#/shm"; license = lib.licenses.free; }; }) {}; @@ -50683,13 +52684,13 @@ sha256 = "19p47a4hwl6h2w5ay09hjhl4kf7cydwqp8s2iyrx2i0k58az8i8i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shoulda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shoulda"; sha256 = "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk"; name = "shoulda"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/shoulda"; + homepage = "https://melpa.org/#/shoulda"; license = lib.licenses.free; }; }) {}; @@ -50698,19 +52699,19 @@ pname = "show-css"; version = "20160210.808"; src = fetchFromGitHub { - owner = "smmcg"; + owner = "8cylinder"; repo = "showcss-mode"; rev = "771daeddd4df7a7c10f66419a837145649bab63b"; sha256 = "11kzjm12hbcdzrshq20r20l29k3555np1sva7afqrhgvd239fdq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/show-css"; - sha256 = "1b3n8h39m85inxsqvzwgb9fqnqn2sgib91hrisn1gpgfyjydzkr7"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/show-css"; + sha256 = "0sq15l58macy2affdgbimnchn491fnrqr3bbgn30k3l3xkvkmc7k"; name = "show-css"; }; packageRequires = [ doom s ]; meta = { - homepage = "http://melpa.org/#/show-css"; + homepage = "https://melpa.org/#/show-css"; license = lib.licenses.free; }; }) {}; @@ -50725,13 +52726,13 @@ sha256 = "15vkk7lnnfwgzkiwpqz1l1qpnz2d10l82m10m0prbw03k1zx22c7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/show-marks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/show-marks"; sha256 = "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb"; name = "show-marks"; }; packageRequires = [ fm ]; meta = { - homepage = "http://melpa.org/#/show-marks"; + homepage = "https://melpa.org/#/show-marks"; license = lib.licenses.free; }; }) {}; @@ -50739,17 +52740,17 @@ pname = "showkey"; version = "20151231.1759"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/showkey.el"; + url = "https://www.emacswiki.org/emacs/download/showkey.el"; sha256 = "0pq88kz5h0hzgfk8fyf3lppxalmadg5czbik824bpykp9l9gnf1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/showkey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/showkey"; sha256 = "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv"; name = "showkey"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/showkey"; + homepage = "https://melpa.org/#/showkey"; license = lib.licenses.free; }; }) {}; @@ -50757,17 +52758,17 @@ pname = "showtip"; version = "20080329.2159"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/showtip.el"; + url = "https://www.emacswiki.org/emacs/download/showtip.el"; sha256 = "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/showtip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/showtip"; sha256 = "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8"; name = "showtip"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/showtip"; + homepage = "https://melpa.org/#/showtip"; license = lib.licenses.free; }; }) {}; @@ -50782,13 +52783,13 @@ sha256 = "1mizhbwvnsxxjz6m94qziibvhghhp8v8db3wxrq3z9gsaqqkcndn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shpec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shpec-mode"; sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl"; name = "shpec-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shpec-mode"; + homepage = "https://melpa.org/#/shpec-mode"; license = lib.licenses.free; }; }) {}; @@ -50803,13 +52804,13 @@ sha256 = "07zzyfibs2c7w4gpvdh9003frznbg7zdnrx0nv8bvn0b68d3yz0m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shrink-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shrink-whitespace"; sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq"; name = "shrink-whitespace"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shrink-whitespace"; + homepage = "https://melpa.org/#/shrink-whitespace"; license = lib.licenses.free; }; }) {}; @@ -50824,13 +52825,13 @@ sha256 = "00c11s664hwj1l1hw7qshygy3wb6wbd0hn6qqnyq1xr0r87nnhjs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shut-up"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shut-up"; sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26"; name = "shut-up"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/shut-up"; + homepage = "https://melpa.org/#/shut-up"; license = lib.licenses.free; }; }) {}; @@ -50845,13 +52846,13 @@ sha256 = "0cjqh6qbbmgxd6zgqnikw6bh8wpjydydkkqs5wcmblpi5awqmnb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sibilant-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sibilant-mode"; sha256 = "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq"; name = "sibilant-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sibilant-mode"; + homepage = "https://melpa.org/#/sibilant-mode"; license = lib.licenses.free; }; }) {}; @@ -50866,13 +52867,13 @@ sha256 = "102ssiz4sp7y816s1iy8i98c314jbn3sy0v87b0qgpgjiq913ffq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sicp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sicp"; sha256 = "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz"; name = "sicp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sicp"; + homepage = "https://melpa.org/#/sicp"; license = lib.licenses.free; }; }) {}; @@ -50887,13 +52888,34 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sift"; sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d"; name = "sift"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sift"; + homepage = "https://melpa.org/#/sift"; + license = lib.licenses.free; + }; + }) {}; + signal = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "signal"; + version = "20160424.210"; + src = fetchFromGitHub { + owner = "Mola-T"; + repo = "signal"; + rev = "88c3f3c82a8a295b66b7eb8c64bd35b8ef834dd6"; + sha256 = "1n6mjfw655a5q0ifq52yf6nyc0zxcahr47dvxg0p8x8v3f4jskvz"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/signal"; + sha256 = "0pvl5qxi0rjbxkpa8kk1q9vz11i9yjmph42si3n7gmm9kc28pk61"; + name = "signal"; + }; + packageRequires = [ cl-lib emacs ]; + meta = { + homepage = "https://melpa.org/#/signal"; license = lib.licenses.free; }; }) {}; @@ -50908,13 +52930,13 @@ sha256 = "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/signature"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/signature"; sha256 = "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q"; name = "signature"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/signature"; + homepage = "https://melpa.org/#/signature"; license = lib.licenses.free; }; }) {}; @@ -50929,55 +52951,55 @@ sha256 = "0vzkgrc54j4a3g90jxc7vxkqwqi3047gnn7gng65pfar0i76lzlb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/silkworm-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/silkworm-theme"; sha256 = "1zbrjqmhf80qs3i910sixirrv42rxkqdrg2z03gnz1g885gpcn13"; name = "silkworm-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/silkworm-theme"; + homepage = "https://melpa.org/#/silkworm-theme"; license = lib.licenses.free; }; }) {}; simp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simp"; - version = "20150427.1132"; + version = "20160315.1124"; src = fetchFromGitHub { owner = "re5et"; repo = "simp"; - rev = "334b20287b3160f77e25c8e0ee2a73dd41fbe0ab"; - sha256 = "1m8azyb4nxxdh6pwik9qb0zqp4z8z4vk3dlpfgklsq9rss8gwbaf"; + rev = "f74467507983a3c8a8b61268e07219fbaa628ae5"; + sha256 = "177bhvynqsdfwwqhhlh1v0pqvscy3xv6hhxi7fb42l5dmsw5b97z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simp"; sha256 = "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c"; name = "simp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/simp"; + homepage = "https://melpa.org/#/simp"; license = lib.licenses.free; }; }) {}; - simple-call-tree = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + simple-call-tree = callPackage ({ anaphora, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simple-call-tree"; - version = "20151203.1625"; + version = "20160319.1216"; src = fetchFromGitHub { owner = "vapniks"; repo = "simple-call-tree"; - rev = "9f2fd423a3b86878d84e8c97e3ba45647b4d165e"; - sha256 = "09blcc1aj1lbqr1jcjm8dlq13s3plrg1qbp9vr3sp4dxyhjpimjj"; + rev = "02082ae57c492a8dfb98cb5b73f265d7c2132775"; + sha256 = "0cj4w62b6glz7sfqj08sdlyfnnhy7z1v1gmjkvy1j0fv9i2n2z48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-call-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-call-tree"; sha256 = "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl"; name = "simple-call-tree"; }; - packageRequires = []; + packageRequires = [ anaphora emacs ]; meta = { - homepage = "http://melpa.org/#/simple-call-tree"; + homepage = "https://melpa.org/#/simple-call-tree"; license = lib.licenses.free; }; }) {}; @@ -50987,18 +53009,18 @@ version = "20150430.1955"; src = fetchFromGitHub { owner = "skeeto"; - repo = "emacs-http-server"; + repo = "emacs-web-server"; rev = "4b7a6bc6a6df6b932f8c9e9aded9103397c0c18f"; sha256 = "0jn46fk0ljqs40kz6ngp0sk6hg1334835r2rmagx4qm0mdaqy7p8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-httpd"; - sha256 = "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-httpd"; + sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c"; name = "simple-httpd"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/simple-httpd"; + homepage = "https://melpa.org/#/simple-httpd"; license = lib.licenses.free; }; }) {}; @@ -51013,13 +53035,13 @@ sha256 = "1bnc3ykgf727lc0ajxa8qsx616baljdgav78fkz57irm65dqr18q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-mpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-mpc"; sha256 = "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r"; name = "simple-mpc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/simple-mpc"; + homepage = "https://melpa.org/#/simple-mpc"; license = lib.licenses.free; }; }) {}; @@ -51028,38 +53050,38 @@ pname = "simple-plus"; version = "20151231.1800"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/simple+.el"; + url = "https://www.emacswiki.org/emacs/download/simple+.el"; sha256 = "01fdk790jlpxy95y67yv6944ws4zjh7gs6ymnj1yflf19ccsdsnn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple+"; sha256 = "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra"; name = "simple-plus"; }; packageRequires = [ strings ]; meta = { - homepage = "http://melpa.org/#/simple+"; + homepage = "https://melpa.org/#/simple+"; license = lib.licenses.free; }; }) {}; - simple-rtm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, rtm }: + simple-rtm = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, rtm }: melpaBuild { pname = "simple-rtm"; - version = "20160118.1211"; + version = "20160222.934"; src = fetchFromGitHub { owner = "mbunkus"; repo = "simple-rtm"; - rev = "b10db02da508ec26d791ec6705205c74722acb27"; - sha256 = "15y1kxck6gxqs6pv4qxz8rrc61bsk73pzbz6f30f5l0r0750i1rm"; + rev = "8c7cd96cf66ef112be5c363e3378e304f8f83999"; + sha256 = "1kkhnsxr8zrb21k4ckyg69nsndwy4zdkvfw2drk4v1vnbgx8144f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-rtm"; sha256 = "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271"; name = "simple-rtm"; }; - packageRequires = [ rtm ]; + packageRequires = [ dash rtm ]; meta = { - homepage = "http://melpa.org/#/simple-rtm"; + homepage = "https://melpa.org/#/simple-rtm"; license = lib.licenses.free; }; }) {}; @@ -51074,13 +53096,13 @@ sha256 = "0zf9wgyp0n00i00zl1lxr0d60569zgcjdnmdvgpcibvny5s1fp2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-screen"; sha256 = "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0"; name = "simple-screen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/simple-screen"; + homepage = "https://melpa.org/#/simple-screen"; license = lib.licenses.free; }; }) {}; @@ -51095,13 +53117,13 @@ sha256 = "09286h2q9dqghgfj9a4cniz6djw7867vcy3ixs7cn4wghvhyxm8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simpleclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simpleclip"; sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s"; name = "simpleclip"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/simpleclip"; + homepage = "https://melpa.org/#/simpleclip"; license = lib.licenses.free; }; }) {}; @@ -51116,34 +53138,34 @@ sha256 = "0xq4vy3ggdjiycd3aa62k94kd43zcpm8bfdgi8grwkb1lpvwq9i9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simplenote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simplenote"; sha256 = "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j"; name = "simplenote"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/simplenote"; + homepage = "https://melpa.org/#/simplenote"; license = lib.licenses.free; }; }) {}; simplenote2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred }: melpaBuild { pname = "simplenote2"; - version = "20150630.916"; + version = "20160318.803"; src = fetchFromGitHub { owner = "alpha22jp"; repo = "simplenote2.el"; - rev = "2a6c539d98968837ec09d2754e9235ff278057a8"; - sha256 = "1a0l0f6by1nmnnq0n52la9g3d357bmwak4qgy6p8g66qb9rx6rzv"; + rev = "a0941475c5fd71a31280f3219424af4586288719"; + sha256 = "0k16sjbrhxbv3fj5rzjzvs03230nwlzmvw18dhdhzzblk08f28dp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simplenote2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simplenote2"; sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm"; name = "simplenote2"; }; packageRequires = [ request-deferred ]; meta = { - homepage = "http://melpa.org/#/simplenote2"; + homepage = "https://melpa.org/#/simplenote2"; license = lib.licenses.free; }; }) {}; @@ -51158,34 +53180,13 @@ sha256 = "0108q2b5h73rjxg9k2kmc8z6la9kgqdnz9z1x7rn61v3vbxlzqvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simplezen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simplezen"; sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j"; name = "simplezen"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/simplezen"; - license = lib.licenses.free; - }; - }) {}; - sisyphus = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild }: - melpaBuild { - pname = "sisyphus"; - version = "20160126.1619"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "sisyphus"; - rev = "f521db4101ac853da8d7a7ce4e83872b33038e20"; - sha256 = "1v7xn0a1x4036spmzrfi6syhpbm6bg9a22h6ybzmvzmbp90cs25a"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sisyphus"; - sha256 = "08400jazj7w63l8g9ypy6w9dj8r0xh4d2yg3nfwqqf5lhfnj9bnj"; - name = "sisyphus"; - }; - packageRequires = [ dash emacs m-buffer ]; - meta = { - homepage = "http://melpa.org/#/sisyphus"; + homepage = "https://melpa.org/#/simplezen"; license = lib.licenses.free; }; }) {}; @@ -51200,13 +53201,13 @@ sha256 = "0kbgxjfdf88h7hfds1kbdxx84wvkvy773r98ym1fzfm54m2kddvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skeletor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skeletor"; sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v"; name = "skeletor"; }; packageRequires = [ cl-lib dash emacs f let-alist s ]; meta = { - homepage = "http://melpa.org/#/skeletor"; + homepage = "https://melpa.org/#/skeletor"; license = lib.licenses.free; }; }) {}; @@ -51221,13 +53222,13 @@ sha256 = "16757xz5ank3jsh8xglyly7pwdn5xm0yngampy1n1vgcwsp5080a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skewer-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skewer-less"; sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl"; name = "skewer-less"; }; packageRequires = [ skewer-mode ]; meta = { - homepage = "http://melpa.org/#/skewer-less"; + homepage = "https://melpa.org/#/skewer-less"; license = lib.licenses.free; }; }) {}; @@ -51242,13 +53243,13 @@ sha256 = "0yj7r5f751lra9jj7lg90qp66sgnb7fcjw5v9hfna7r13qdn9f20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skewer-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skewer-mode"; sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm"; name = "skewer-mode"; }; packageRequires = [ emacs js2-mode simple-httpd ]; meta = { - homepage = "http://melpa.org/#/skewer-mode"; + homepage = "https://melpa.org/#/skewer-mode"; license = lib.licenses.free; }; }) {}; @@ -51263,13 +53264,13 @@ sha256 = "1q0qc4jc83k7dfhq2y06zy0fg38kvp219gb3icysdhs88zi2v9s3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skewer-reload-stylesheets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skewer-reload-stylesheets"; sha256 = "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm"; name = "skewer-reload-stylesheets"; }; packageRequires = [ skewer-mode ]; meta = { - homepage = "http://melpa.org/#/skewer-reload-stylesheets"; + homepage = "https://melpa.org/#/skewer-reload-stylesheets"; license = lib.licenses.free; }; }) {}; @@ -51284,34 +53285,34 @@ sha256 = "0gzj7cf42nhp3ac1a2gxcfbmn80z1z46zxsfr2f5xil2gjag39fx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skype"; sha256 = "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl"; name = "skype"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/skype"; + homepage = "https://melpa.org/#/skype"; license = lib.licenses.free; }; }) {}; slack = callPackage ({ alert, circe, emojify, fetchFromGitHub, fetchurl, lib, melpaBuild, oauth2, request, websocket }: melpaBuild { pname = "slack"; - version = "20160201.2108"; + version = "20160422.1108"; src = fetchFromGitHub { owner = "yuya373"; repo = "emacs-slack"; - rev = "455bff044ad3d2e789a605c5f1716f7a4fb24d01"; - sha256 = "184hc4wvm3y33g6ka8m90ysh1s8cdynsnni5abf2lzmgl4jgpcpl"; + rev = "5b372fddff5c084b8da88195baea134cf36f3b1e"; + sha256 = "0av1n6qzlm6vdp9anix8dka64hl5mlq15gw3l2mga1k5jj5nwl7i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slack"; sha256 = "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp"; name = "slack"; }; packageRequires = [ alert circe emojify oauth2 request websocket ]; meta = { - homepage = "http://melpa.org/#/slack"; + homepage = "https://melpa.org/#/slack"; license = lib.licenses.free; }; }) {}; @@ -51326,13 +53327,13 @@ sha256 = "108zcb7hdaaq3sxjfr9nrwzqxx71q6aygzik7l3ab854xknkjfad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slamhound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slamhound"; sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x"; name = "slamhound"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/slamhound"; + homepage = "https://melpa.org/#/slamhound"; license = lib.licenses.free; }; }) {}; @@ -51347,13 +53348,13 @@ sha256 = "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slideview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slideview"; sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1"; name = "slideview"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/slideview"; + homepage = "https://melpa.org/#/slideview"; license = lib.licenses.free; }; }) {}; @@ -51368,34 +53369,34 @@ sha256 = "0vgyc2ny9qmn8f5r149y4g398mh4gnwsp4yim85z4vmdikqg8vi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slim-mode"; sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac"; name = "slim-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/slim-mode"; + homepage = "https://melpa.org/#/slim-mode"; license = lib.licenses.free; }; }) {}; slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild }: melpaBuild { pname = "slime"; - version = "20160219.1320"; + version = "20160419.1058"; src = fetchFromGitHub { owner = "slime"; repo = "slime"; - rev = "899b5ca7e1ce8173cb8ce4b7609dd88d05a050c9"; - sha256 = "07gfd8k0gbzylr9y8asp35p9139w79c36pbnixp4y2fimgbfri2c"; + rev = "32fc742ea4ebecfd3c599c98515ad762a692cc17"; + sha256 = "0br910d6ph4db9ad2xrb9v1crjys3sbgg71j89kighyg1pq1h2k2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime"; sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign"; name = "slime"; }; packageRequires = [ cl-lib macrostep ]; meta = { - homepage = "http://melpa.org/#/slime"; + homepage = "https://melpa.org/#/slime"; license = lib.licenses.free; }; }) {}; @@ -51410,13 +53411,13 @@ sha256 = "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-annot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-annot"; sha256 = "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n"; name = "slime-annot"; }; packageRequires = [ slime ]; meta = { - homepage = "http://melpa.org/#/slime-annot"; + homepage = "https://melpa.org/#/slime-annot"; license = lib.licenses.free; }; }) {}; @@ -51431,34 +53432,34 @@ sha256 = "0cc8xb2p1j2vs00h4sq6x0mwwrxkidqj4l7kg3n3150bj37v55rs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-company"; sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2"; name = "slime-company"; }; packageRequires = [ company slime ]; meta = { - homepage = "http://melpa.org/#/slime-company"; + homepage = "https://melpa.org/#/slime-company"; license = lib.licenses.free; }; }) {}; slime-docker = callPackage ({ cl-lib ? null, docker-tramp, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: melpaBuild { pname = "slime-docker"; - version = "20160221.1715"; + version = "20160307.1426"; src = fetchFromGitHub { owner = "daewok"; repo = "slime-docker"; - rev = "61bed969887c8556299ee643d1bab567ef36d926"; - sha256 = "0jrsilyvzdi3xdmkm6gsniw4zdg9zsxb4i6k3fm5byxvhpbwd3k4"; + rev = "f806596a0e2901c5196f70bd23cd56a12bafefcd"; + sha256 = "18099jxgprz03akn5sa1x8zsja6d0bxhwhqzj9wqm4rv05y3wdcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-docker"; sha256 = "18v62y4f613d7mpqpb8sc8hzvyhcgzrbqrc0k7w9pqf00jnl192h"; name = "slime-docker"; }; packageRequires = [ cl-lib docker-tramp emacs slime ]; meta = { - homepage = "http://melpa.org/#/slime-docker"; + homepage = "https://melpa.org/#/slime-docker"; license = lib.licenses.free; }; }) {}; @@ -51473,13 +53474,13 @@ sha256 = "0rsh0bbhyx74yz1gjfqyi0bkqq5n3scpyh5mmc3d6dkpv8wa7bwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-ritz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-ritz"; sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a"; name = "slime-ritz"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/slime-ritz"; + homepage = "https://melpa.org/#/slime-ritz"; license = lib.licenses.free; }; }) {}; @@ -51494,13 +53495,13 @@ sha256 = "13rm9pmshgssmydhpirri38s38z3kvkhqama40qdzqq96dsxlnjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-theme"; sha256 = "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00"; name = "slime-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/slime-theme"; + homepage = "https://melpa.org/#/slime-theme"; license = lib.licenses.free; }; }) {}; @@ -51515,13 +53516,13 @@ sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-volleyball"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-volleyball"; sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7"; name = "slime-volleyball"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/slime-volleyball"; + homepage = "https://melpa.org/#/slime-volleyball"; license = lib.licenses.free; }; }) {}; @@ -51536,13 +53537,13 @@ sha256 = "0srj0zcvzr0sjcs37zz11xz8w0yv94m69av9ny7mx8ssf4qp0pxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slirm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slirm"; sha256 = "061xjj3vjdkkvd979fhp7bc12g5zkxqxywvcz3z9dlkgdks41ld7"; name = "slirm"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/slirm"; + homepage = "https://melpa.org/#/slirm"; license = lib.licenses.free; }; }) {}; @@ -51557,55 +53558,55 @@ sha256 = "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slovak-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slovak-holidays"; sha256 = "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg"; name = "slovak-holidays"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/slovak-holidays"; + homepage = "https://melpa.org/#/slovak-holidays"; license = lib.licenses.free; }; }) {}; sly = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sly"; - version = "20160218.402"; + version = "20160407.953"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly"; - rev = "ead2144dd581cbabf11b326f5f482a277225110f"; - sha256 = "0brb6h19j28jypvrdwsi45qkgjrx5ssbvcyj0samwncrlbjfp9rk"; + rev = "023db50446ea1a689f07da5ce78399ec8eb6d855"; + sha256 = "0dsyq4h7raf2gfml6pksr2p1vnyilzll77nad0imcv2yyqmdnh8v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly"; sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l"; name = "sly"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/sly"; + homepage = "https://melpa.org/#/sly"; license = lib.licenses.free; }; }) {}; sly-company = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-company"; - version = "20160219.338"; + version = "20160308.757"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-company"; - rev = "0ad0b12874dae2289c990db20b3d31146d6e80eb"; - sha256 = "1dga7y06p0j5iq478g857i6xa06j9zpgbjx3a1sqyhk16m1v7ssi"; + rev = "08aef69394fbef31dfeb3d3bb72a4557df9d7624"; + sha256 = "128gb6hsb7zig4czwgwjcm58lgqk6rmj7qi17a9cz5gsnggjcwii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-company"; sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2"; name = "sly-company"; }; packageRequires = [ company emacs sly ]; meta = { - homepage = "http://melpa.org/#/sly-company"; + homepage = "https://melpa.org/#/sly-company"; license = lib.licenses.free; }; }) {}; @@ -51620,13 +53621,13 @@ sha256 = "1fxsv83fcv5l7cndsysd8salvfwsabvd84sm7zli2ksf678774gp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-hello-world"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-hello-world"; sha256 = "03ybjgczp6ssk4hmwd486vshlk7ql27k1lyhmvk26gmrf554z90n"; name = "sly-hello-world"; }; packageRequires = [ sly ]; meta = { - homepage = "http://melpa.org/#/sly-hello-world"; + homepage = "https://melpa.org/#/sly-hello-world"; license = lib.licenses.free; }; }) {}; @@ -51641,13 +53642,13 @@ sha256 = "00lw6hkxs71abjyi7nhzi8j6n55jyhzsp81ycn6f2liyp4rmqgi7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-macrostep"; sha256 = "1i004mb0bg13j3zhdsjz1795dh0ry8winzvdghr1wardc9np60h7"; name = "sly-macrostep"; }; packageRequires = [ macrostep sly ]; meta = { - homepage = "http://melpa.org/#/sly-macrostep"; + homepage = "https://melpa.org/#/sly-macrostep"; license = lib.licenses.free; }; }) {}; @@ -51662,13 +53663,34 @@ sha256 = "1xi625pn3mg77mjvr94v6a5pjyvgjavpkdbbh1lqjx1halaa2qb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-named-readtables"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-named-readtables"; sha256 = "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9"; name = "sly-named-readtables"; }; packageRequires = [ sly ]; meta = { - homepage = "http://melpa.org/#/sly-named-readtables"; + homepage = "https://melpa.org/#/sly-named-readtables"; + license = lib.licenses.free; + }; + }) {}; + sly-quicklisp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: + melpaBuild { + pname = "sly-quicklisp"; + version = "20160204.1015"; + src = fetchFromGitHub { + owner = "capitaomorte"; + repo = "sly-quicklisp"; + rev = "fccc00b2e9c123c4fb88131ce471191c3ad289ea"; + sha256 = "1mb78cdkmik9rwccvzl8slv4dfy8sdq69dkys7q11jyn8lfm476y"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-quicklisp"; + sha256 = "1hpcz84g9c6g0x8qal02xgjj02gxqz3bysyz0l59jxiga0m634v8"; + name = "sly-quicklisp"; + }; + packageRequires = [ sly ]; + meta = { + homepage = "https://melpa.org/#/sly-quicklisp"; license = lib.licenses.free; }; }) {}; @@ -51683,13 +53705,34 @@ sha256 = "194bdibpxpqsag86h583b62ybmfqmq4442a0czbijqwngbgjpj3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-repl-ansi-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-repl-ansi-color"; sha256 = "0wz24kfjl6rp4qss0iq2ilav0mkg2spy2ziikypy7v0iqbssmssi"; name = "sly-repl-ansi-color"; }; packageRequires = [ cl-lib sly ]; meta = { - homepage = "http://melpa.org/#/sly-repl-ansi-color"; + homepage = "https://melpa.org/#/sly-repl-ansi-color"; + license = lib.licenses.free; + }; + }) {}; + smart-comment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "smart-comment"; + version = "20160322.1339"; + src = fetchFromGitHub { + owner = "paldepind"; + repo = "smart-comment"; + rev = "17ddbd83205818763e6d68aa7a1aa9aaf414cbd4"; + sha256 = "0r181rdnymr96kj74c73212n6157cfiq1d6hk2lfc54yl6h76zf4"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-comment"; + sha256 = "0lbrasdrkyj7zybz0f3xick8p0bvci5bhb2kg6pqzz9pw2iaxw12"; + name = "smart-comment"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/smart-comment"; license = lib.licenses.free; }; }) {}; @@ -51697,17 +53740,17 @@ pname = "smart-compile"; version = "20150519.1147"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/smart-compile.el"; + url = "https://www.emacswiki.org/emacs/download/smart-compile.el"; sha256 = "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-compile"; sha256 = "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3"; name = "smart-compile"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smart-compile"; + homepage = "https://melpa.org/#/smart-compile"; license = lib.licenses.free; }; }) {}; @@ -51722,13 +53765,13 @@ sha256 = "1xbd42q60pmg0hw4bn2fndjwgrfgj6ggm757fyp8m08jqh0zkarn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-cursor-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-cursor-color"; sha256 = "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx"; name = "smart-cursor-color"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smart-cursor-color"; + homepage = "https://melpa.org/#/smart-cursor-color"; license = lib.licenses.free; }; }) {}; @@ -51743,13 +53786,13 @@ sha256 = "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-forward"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-forward"; sha256 = "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c"; name = "smart-forward"; }; packageRequires = [ expand-region ]; meta = { - homepage = "http://melpa.org/#/smart-forward"; + homepage = "https://melpa.org/#/smart-forward"; license = lib.licenses.free; }; }) {}; @@ -51764,13 +53807,13 @@ sha256 = "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-indent-rigidly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-indent-rigidly"; sha256 = "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x"; name = "smart-indent-rigidly"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smart-indent-rigidly"; + homepage = "https://melpa.org/#/smart-indent-rigidly"; license = lib.licenses.free; }; }) {}; @@ -51785,34 +53828,34 @@ sha256 = "0sqvm7iwdjk057fwid4kz6wj71igiqhdarj59s17pzy6xz34afhg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-mark"; sha256 = "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v"; name = "smart-mark"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smart-mark"; + homepage = "https://melpa.org/#/smart-mark"; license = lib.licenses.free; }; }) {}; smart-mode-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rich-minority }: melpaBuild { pname = "smart-mode-line"; - version = "20160125.1100"; + version = "20160306.1303"; src = fetchFromGitHub { owner = "Malabarba"; repo = "smart-mode-line"; - rev = "76bc5cc9f6810b252c0e312a4f3ad5869e2b9504"; - sha256 = "0jr0yvaih5d2a5fkwszhf25cyk3q0fqfbgybb3nbrbkcf0mja22q"; + rev = "9715b5151d9ee669c4fecebd26508cb3fcbde887"; + sha256 = "08g696hpsv4fp3s2isbga4yrh65lxwrn10vv8mnicxhicn178h9a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-mode-line"; sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6"; name = "smart-mode-line"; }; packageRequires = [ emacs rich-minority ]; meta = { - homepage = "http://melpa.org/#/smart-mode-line"; + homepage = "https://melpa.org/#/smart-mode-line"; license = lib.licenses.free; }; }) {}; @@ -51823,17 +53866,17 @@ src = fetchFromGitHub { owner = "Malabarba"; repo = "smart-mode-line"; - rev = "76bc5cc9f6810b252c0e312a4f3ad5869e2b9504"; - sha256 = "0jr0yvaih5d2a5fkwszhf25cyk3q0fqfbgybb3nbrbkcf0mja22q"; + rev = "9715b5151d9ee669c4fecebd26508cb3fcbde887"; + sha256 = "08g696hpsv4fp3s2isbga4yrh65lxwrn10vv8mnicxhicn178h9a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-mode-line-powerline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-mode-line-powerline-theme"; sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4"; name = "smart-mode-line-powerline-theme"; }; packageRequires = [ emacs powerline smart-mode-line ]; meta = { - homepage = "http://melpa.org/#/smart-mode-line-powerline-theme"; + homepage = "https://melpa.org/#/smart-mode-line-powerline-theme"; license = lib.licenses.free; }; }) {}; @@ -51848,13 +53891,13 @@ sha256 = "1q74b0mbhly84g252a0arbyxc720rgs9a3yqf8b8s2fpfkzb95sg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-newline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-newline"; sha256 = "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w"; name = "smart-newline"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smart-newline"; + homepage = "https://melpa.org/#/smart-newline"; license = lib.licenses.free; }; }) {}; @@ -51869,13 +53912,13 @@ sha256 = "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-region"; sha256 = "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc"; name = "smart-region"; }; packageRequires = [ cl-lib emacs expand-region multiple-cursors ]; meta = { - homepage = "http://melpa.org/#/smart-region"; + homepage = "https://melpa.org/#/smart-region"; license = lib.licenses.free; }; }) {}; @@ -51890,13 +53933,13 @@ sha256 = "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-shift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-shift"; sha256 = "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3"; name = "smart-shift"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smart-shift"; + homepage = "https://melpa.org/#/smart-shift"; license = lib.licenses.free; }; }) {}; @@ -51911,13 +53954,13 @@ sha256 = "0aighpby8khrljb67m533bwkzlsckyvv7d09cnzr1rfwxiil0ml4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-tab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-tab"; sha256 = "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5"; name = "smart-tab"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smart-tab"; + homepage = "https://melpa.org/#/smart-tab"; license = lib.licenses.free; }; }) {}; @@ -51932,13 +53975,13 @@ sha256 = "1s65hr7b8aggvdd1i6gkkpz6j1kqilggfnf46xvjnvdw9awmwk6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-tabs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-tabs-mode"; sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl"; name = "smart-tabs-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smart-tabs-mode"; + homepage = "https://melpa.org/#/smart-tabs-mode"; license = lib.licenses.free; }; }) {}; @@ -51953,34 +53996,34 @@ sha256 = "15834lnh7dq9kz31k06ifpnc0vz86rycz0ryildi5qd2nb7s3lw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-window"; sha256 = "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m"; name = "smart-window"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smart-window"; + homepage = "https://melpa.org/#/smart-window"; license = lib.licenses.free; }; }) {}; smartparens = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smartparens"; - version = "20160221.739"; + version = "20160411.919"; src = fetchFromGitHub { owner = "Fuco1"; repo = "smartparens"; - rev = "dc7f7e17eff62c716638ea6a96ffaa60868a3ee9"; - sha256 = "034rmng04q1ralj16pxygscn13fswz5vm77lgj29hqrgizb72jnl"; + rev = "2f0dc4e784a72914987ac88b6d628c815ee8914b"; + sha256 = "0shlx8pmcw3jip9y816rg6340df542vzhn65gg8lf7zzpaipxm4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartparens"; sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6"; name = "smartparens"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/smartparens"; + homepage = "https://melpa.org/#/smartparens"; license = lib.licenses.free; }; }) {}; @@ -51995,13 +54038,13 @@ sha256 = "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartrep"; sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn"; name = "smartrep"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smartrep"; + homepage = "https://melpa.org/#/smartrep"; license = lib.licenses.free; }; }) {}; @@ -52016,13 +54059,13 @@ sha256 = "193cxfnh263yw628ipf9gssvyq3j7mffrdmnjhvzzcsnhd1k145p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartscan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartscan"; sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb"; name = "smartscan"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smartscan"; + homepage = "https://melpa.org/#/smartscan"; license = lib.licenses.free; }; }) {}; @@ -52037,13 +54080,13 @@ sha256 = "1qfa6i59zhi8d6175py8id8gq7b3hdaqq4naa86r1rb7x8ringff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartwin"; sha256 = "0rg92j0aa8qxhr91hjj2f4w8vj5w9b4d2nmkggng44nxk8zafdif"; name = "smartwin"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/smartwin"; + homepage = "https://melpa.org/#/smartwin"; license = lib.licenses.free; }; }) {}; @@ -52058,13 +54101,34 @@ sha256 = "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smarty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smarty-mode"; sha256 = "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v"; name = "smarty-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smarty-mode"; + homepage = "https://melpa.org/#/smarty-mode"; + license = lib.licenses.free; + }; + }) {}; + smblog = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "smblog"; + version = "20160317.630"; + src = fetchFromGitHub { + owner = "aaptel"; + repo = "smblog-mode"; + rev = "25bf9374f692aec845d911286f10a11aaa0945d8"; + sha256 = "1ca8i45dj41vif2hm87ircwm9alxdm98irfi586ybrc72s24036r"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smblog"; + sha256 = "1byalkpc1bcb6p4j4g1cwc4q2i7irxjcphb0hqh1b2k1zixrw5rr"; + name = "smblog"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/smblog"; license = lib.licenses.free; }; }) {}; @@ -52079,13 +54143,13 @@ sha256 = "1smv91ggvaw37597ilvhra8cnj4p71n6v5pfazii8k85kvs6x460"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smeargle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smeargle"; sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd"; name = "smeargle"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/smeargle"; + homepage = "https://melpa.org/#/smeargle"; license = lib.licenses.free; }; }) {}; @@ -52100,13 +54164,13 @@ sha256 = "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smex"; sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda"; name = "smex"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/smex"; + homepage = "https://melpa.org/#/smex"; license = lib.licenses.free; }; }) {}; @@ -52120,13 +54184,13 @@ sha256 = "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sml-modeline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sml-modeline"; sha256 = "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd"; name = "sml-modeline"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sml-modeline"; + homepage = "https://melpa.org/#/sml-modeline"; license = lib.licenses.free; }; }) {}; @@ -52141,34 +54205,34 @@ sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smooth-scroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smooth-scroll"; sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf"; name = "smooth-scroll"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smooth-scroll"; + homepage = "https://melpa.org/#/smooth-scroll"; license = lib.licenses.free; }; }) {}; smooth-scrolling = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smooth-scrolling"; - version = "20131219.2239"; + version = "20160227.1915"; src = fetchFromGitHub { owner = "aspiers"; repo = "smooth-scrolling"; - rev = "0d9b228f952c53ad456f98e2c761dda70ed72174"; - sha256 = "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk"; + rev = "6a1420be510decde0a5eabc56cff229ae554417e"; + sha256 = "1dkqix0iyjyiqf34h3p8faqcpffc0pwkxqqn80ys9jvj4f27kkrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smooth-scrolling"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smooth-scrolling"; sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6"; name = "smooth-scrolling"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smooth-scrolling"; + homepage = "https://melpa.org/#/smooth-scrolling"; license = lib.licenses.free; }; }) {}; @@ -52183,13 +54247,13 @@ sha256 = "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smotitah"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smotitah"; sha256 = "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2"; name = "smotitah"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smotitah"; + homepage = "https://melpa.org/#/smotitah"; license = lib.licenses.free; }; }) {}; @@ -52204,13 +54268,13 @@ sha256 = "0zknryfpg4791l7d7xv9hn2fx00rmbqw3737lfm75484hr10lymz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smtpmail-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smtpmail-multi"; sha256 = "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss"; name = "smtpmail-multi"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smtpmail-multi"; + homepage = "https://melpa.org/#/smtpmail-multi"; license = lib.licenses.free; }; }) {}; @@ -52225,55 +54289,55 @@ sha256 = "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smyx-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smyx-theme"; sha256 = "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61"; name = "smyx-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smyx-theme"; + homepage = "https://melpa.org/#/smyx-theme"; license = lib.licenses.free; }; }) {}; - snakemake-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + snakemake-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }: melpaBuild { pname = "snakemake-mode"; - version = "20160209.2027"; + version = "20160422.1336"; src = fetchFromGitHub { owner = "kyleam"; repo = "snakemake-mode"; - rev = "0ad1db40d996e9ab15b01cbbaf971d508556a4bc"; - sha256 = "1q3v4izah7j5n0ln44f1g1idl1rwd2jar975d5rza4pcy9c875x8"; + rev = "5ed0569defa7ca6ab37d70ee9c92d3dbc0e96a2b"; + sha256 = "1zvmkr3ria7m1h21mam2f0czfmzlz7kx3c4zbs3i0g8gh3ckfmp6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/snakemake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/snakemake-mode"; sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4"; name = "snakemake-mode"; }; - packageRequires = [ emacs ]; + packageRequires = [ cl-lib emacs magit-popup ]; meta = { - homepage = "http://melpa.org/#/snakemake-mode"; + homepage = "https://melpa.org/#/snakemake-mode"; license = lib.licenses.free; }; }) {}; snapshot-timemachine = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "snapshot-timemachine"; - version = "20150501.1300"; + version = "20160222.332"; src = fetchFromGitHub { owner = "mrBliss"; repo = "snapshot-timemachine"; - rev = "5c1e29fc771ffc65180faa1366c85aa50a335773"; - sha256 = "17nbm8692ihrlcikihspdqg8wvp80ryq4h06da34d0awqm0w027m"; + rev = "7a1ebd73e9da146f1a9f258c5d2a7b54660f87a4"; + sha256 = "0m5j1v9br7vp9m2km8xccy5vv8gis0mcgwjxfc6qhnv7kbx0sx2k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/snapshot-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/snapshot-timemachine"; sha256 = "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p"; name = "snapshot-timemachine"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/snapshot-timemachine"; + homepage = "https://melpa.org/#/snapshot-timemachine"; license = lib.licenses.free; }; }) {}; @@ -52288,13 +54352,13 @@ sha256 = "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/snippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/snippet"; sha256 = "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j"; name = "snippet"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/snippet"; + homepage = "https://melpa.org/#/snippet"; license = lib.licenses.free; }; }) {}; @@ -52309,13 +54373,13 @@ sha256 = "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soft-charcoal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soft-charcoal-theme"; sha256 = "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a"; name = "soft-charcoal-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/soft-charcoal-theme"; + homepage = "https://melpa.org/#/soft-charcoal-theme"; license = lib.licenses.free; }; }) {}; @@ -52330,13 +54394,13 @@ sha256 = "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soft-morning-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soft-morning-theme"; sha256 = "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr"; name = "soft-morning-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/soft-morning-theme"; + homepage = "https://melpa.org/#/soft-morning-theme"; license = lib.licenses.free; }; }) {}; @@ -52351,55 +54415,55 @@ sha256 = "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soft-stone-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soft-stone-theme"; sha256 = "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v"; name = "soft-stone-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/soft-stone-theme"; + homepage = "https://melpa.org/#/soft-stone-theme"; license = lib.licenses.free; }; }) {}; solarized-theme = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "solarized-theme"; - version = "20160106.215"; + version = "20160419.1027"; src = fetchFromGitHub { owner = "bbatsov"; repo = "solarized-emacs"; - rev = "d518af81dbe14c4ae710115e6b7de94587436f21"; - sha256 = "1vkrl8xvr5la8rj5gmafamzlqr0q2l1immyfnmfzf3r4n14kdywk"; + rev = "a8cb8af769db056f80b2020b60f6b22b37f31c4d"; + sha256 = "0km81a058y9biw2ydh98r6k78x0xv4zaagdiwqfx9h9szrz7m21i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/solarized-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/solarized-theme"; sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12"; name = "solarized-theme"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/solarized-theme"; + homepage = "https://melpa.org/#/solarized-theme"; license = lib.licenses.free; }; }) {}; solidity-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "solidity-mode"; - version = "20151124.1111"; + version = "20160426.231"; src = fetchFromGitHub { owner = "ethereum"; repo = "emacs-solidity"; - rev = "8bbd7d9e1e823b524d882d996b5c4e7b6a523b41"; - sha256 = "0drb237750lry18arbfx37drf16znwz8fhx5fawxy1q4z7bl7z5n"; + rev = "fb611258ac68c57226c7c2595990097cd757963e"; + sha256 = "0wk6q5q2lbczy63jaqlb65lw6z420lvp0nnqkfzqp9wvw19dv8wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/solidity-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/solidity-mode"; sha256 = "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx"; name = "solidity-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/solidity-mode"; + homepage = "https://melpa.org/#/solidity-mode"; license = lib.licenses.free; }; }) {}; @@ -52414,13 +54478,13 @@ sha256 = "1ga35d3rhdf6ffd36q58ay6380gjvkmaiid4vscga3v7ca0dkhl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sonic-pi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sonic-pi"; sha256 = "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp"; name = "sonic-pi"; }; packageRequires = [ cl-lib dash emacs osc ]; meta = { - homepage = "http://melpa.org/#/sonic-pi"; + homepage = "https://melpa.org/#/sonic-pi"; license = lib.licenses.free; }; }) {}; @@ -52435,13 +54499,13 @@ sha256 = "10gh1hvxq9gm29r6qzlnva7vjidd7n4kih4z2ihyvbvy9za20xqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soothe-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soothe-theme"; sha256 = "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3"; name = "soothe-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/soothe-theme"; + homepage = "https://melpa.org/#/soothe-theme"; license = lib.licenses.free; }; }) {}; @@ -52452,59 +54516,59 @@ src = fetchFromGitHub { owner = "omouse"; repo = "emacs-sos"; - rev = "96b7d951a5f0a8ae401c0813745fc1aca0cb816c"; - sha256 = "16x039imyf4p5d4rn92nlqcsvb5vlvdgq1m5g856b9dzwa89x733"; + rev = "3ddee278ab5d22ee3363841b26cfede4955117fb"; + sha256 = "086a66jlnkiv044i4japs4czw8gfs8p0n80p42ck83zm2jnznc49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sos"; sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb"; name = "sos"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/sos"; + homepage = "https://melpa.org/#/sos"; license = lib.licenses.free; }; }) {}; sotclojure = callPackage ({ cider, clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sotlisp }: melpaBuild { pname = "sotclojure"; - version = "20160121.1240"; + version = "20160421.2011"; src = fetchFromGitHub { owner = "Malabarba"; repo = "speed-of-thought-clojure"; - rev = "6ffb9f002b9fe94cba397e4aa75f9233346c7a24"; - sha256 = "0wl21pgjf9p6cf4d51cd2z974m6ph1cjspi3vdbf91pd13b72sdq"; + rev = "8d879ef41c004726cca3c27a81b7543cc273c19b"; + sha256 = "13yn2yadkpmykaly3l3xsq1bhm4sxyk8k1px555y11qi0mfdcjhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sotclojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sotclojure"; sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090"; name = "sotclojure"; }; packageRequires = [ cider clojure-mode emacs sotlisp ]; meta = { - homepage = "http://melpa.org/#/sotclojure"; + homepage = "https://melpa.org/#/sotclojure"; license = lib.licenses.free; }; }) {}; sotlisp = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sotlisp"; - version = "20151105.934"; + version = "20160225.758"; src = fetchFromGitHub { owner = "Malabarba"; repo = "speed-of-thought-lisp"; - rev = "d5d5ae44e6a31e231024cc7ad9861aa451165413"; - sha256 = "027jmqx4240hym2is9q1iyjdws9ijyyck8dnsbm9xc5lhpsdrl69"; + rev = "b67364d4825a9bf0a22261809ee9e9060b268198"; + sha256 = "0xykm4yayb8gw83arv5p205cx18j14q9407rqw3sbcj9cj5nbk34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sotlisp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sotlisp"; sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk"; name = "sotlisp"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/sotlisp"; + homepage = "https://melpa.org/#/sotlisp"; license = lib.licenses.free; }; }) {}; @@ -52519,13 +54583,13 @@ sha256 = "1h6h65gwxb07pscyhhhdn11h3lx3jgyfw8v1kw5m2qfrv5kh6ylq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sound-wav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sound-wav"; sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f"; name = "sound-wav"; }; packageRequires = [ cl-lib deferred ]; meta = { - homepage = "http://melpa.org/#/sound-wav"; + homepage = "https://melpa.org/#/sound-wav"; license = lib.licenses.free; }; }) {}; @@ -52534,14 +54598,14 @@ pname = "soundcloud"; version = "20150501.2226"; src = fetchFromGitHub { - owner = "tthieman"; + owner = "thieman"; repo = "soundcloud.el"; rev = "f998d4276ea90258909c698f6a5a51fccb667c08"; sha256 = "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soundcloud"; - sha256 = "1jl9sk372j4162av9kfcbqp0cc5wpm86nkqg8rskfgmsi4ncp4ph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soundcloud"; + sha256 = "06cbr1h03k5ixam6lsr82lx3nh2kkp0416mlig0zfkd4b8a9mf8c"; name = "soundcloud"; }; packageRequires = [ @@ -52553,70 +54617,49 @@ string-utils ]; meta = { - homepage = "http://melpa.org/#/soundcloud"; + homepage = "https://melpa.org/#/soundcloud"; license = lib.licenses.free; }; }) {}; - soundklaus = callPackage ({ cl-lib ? null, dash, emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }: + soundklaus = callPackage ({ cl-lib ? null, dash, emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }: melpaBuild { pname = "soundklaus"; - version = "20160210.1517"; + version = "20160314.731"; src = fetchFromGitHub { owner = "r0man"; repo = "soundklaus.el"; - rev = "4e69c5521f3196bd2dac81f683eb91885f614317"; - sha256 = "1dj48i0s521x81sdm7sg76q2pz04jsdxi63l8j9qbhn0l08q66fz"; + rev = "09ec030843482594beae2664b8fe1e0ad1e66472"; + sha256 = "0w5ac515ymj43p5j19nhfqk0c3251c7x3i97r550g780niby1nc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/soundklaus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soundklaus"; sha256 = "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb"; name = "soundklaus"; }; - packageRequires = [ cl-lib dash emacs emms pkg-info s ]; + packageRequires = [ cl-lib dash emacs emms pkg-info request s ]; meta = { - homepage = "http://melpa.org/#/soundklaus"; - license = lib.licenses.free; - }; - }) {}; - sourcegraph = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "sourcegraph"; - version = "20150403.2127"; - src = fetchFromGitHub { - owner = "sourcegraph"; - repo = "emacs-sourcegraph-mode"; - rev = "554c55734c23588fce66a8fa966945509b03d395"; - sha256 = "18iv7jhy08smpdksplngj1mxcm2mm9gvbylimgr3211l8jr9gq8r"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcegraph"; - sha256 = "0rl6s1d0y2pggbfiq4f4xg9qp7nhkd708himzilfqyfa4jwna8yz"; - name = "sourcegraph"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "http://melpa.org/#/sourcegraph"; + homepage = "https://melpa.org/#/soundklaus"; license = lib.licenses.free; }; }) {}; sourcekit = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sourcekit"; - version = "20151209.714"; + version = "20160323.2009"; src = fetchFromGitHub { owner = "nathankot"; repo = "company-sourcekit"; - rev = "5e1adf8d201fd94a942b40983415db1b28b6eef1"; - sha256 = "1xzwalchl9lnq9848dlvhhbzyh1wkwbciz20d1iw0fsigj5g156c"; + rev = "c9694cd8e84f4c7deffa6111297cb80eb7cb02a6"; + sha256 = "04nm015408gzybfka0sc3czkf5y61x76h3sx3vlijf67i54bz7pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcekit"; sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks"; name = "sourcekit"; }; packageRequires = [ dash dash-functional emacs ]; meta = { - homepage = "http://melpa.org/#/sourcekit"; + homepage = "https://melpa.org/#/sourcekit"; license = lib.licenses.free; }; }) {}; @@ -52631,13 +54674,13 @@ sha256 = "085xd5fqxgv9bam9k4aa3w0sa9q41cg275i60c8njy3bkbqcalh5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcemap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcemap"; sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5"; name = "sourcemap"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/sourcemap"; + homepage = "https://melpa.org/#/sourcemap"; license = lib.licenses.free; }; }) {}; @@ -52652,13 +54695,13 @@ sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcetalk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcetalk"; sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z"; name = "sourcetalk"; }; packageRequires = [ request ]; meta = { - homepage = "http://melpa.org/#/sourcetalk"; + homepage = "https://melpa.org/#/sourcetalk"; license = lib.licenses.free; }; }) {}; @@ -52673,55 +54716,55 @@ sha256 = "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spacegray-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spacegray-theme"; sha256 = "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx"; name = "spacegray-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/spacegray-theme"; + homepage = "https://melpa.org/#/spacegray-theme"; license = lib.licenses.free; }; }) {}; spaceline = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, s }: melpaBuild { pname = "spaceline"; - version = "20160120.559"; + version = "20160420.1401"; src = fetchFromGitHub { owner = "TheBB"; repo = "spaceline"; - rev = "88e22c1c9c69093efc7310ca996d2efb3cbbba1d"; - sha256 = "1ncwv6sqm1ch396qi1c8276dc910rnm0f3m8xjkskplv3cjaq0ai"; + rev = "d8492f0caeaf37f308236e04d097e180fec0e2c1"; + sha256 = "1sw9i8x3cr28nb5mikf8lcxcnvjjz8dwa5ylf94gcw1q62hy5lvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spaceline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spaceline"; sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw"; name = "spaceline"; }; packageRequires = [ cl-lib dash emacs powerline s ]; meta = { - homepage = "http://melpa.org/#/spaceline"; + homepage = "https://melpa.org/#/spaceline"; license = lib.licenses.free; }; }) {}; spacemacs-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spacemacs-theme"; - version = "20160219.1206"; + version = "20160411.925"; src = fetchFromGitHub { owner = "nashamri"; repo = "spacemacs-theme"; - rev = "3402e5cbeebcabc70ea1ce084f479752140121a3"; - sha256 = "0dp8zrljwfdkfp3vwx0y902di02893n56bz1l32iah72kapws4xa"; + rev = "0c88ced718942fbfda85ac5992bf8ac424f10121"; + sha256 = "1ny203z4cbra97gas1ymixiwlcd80g4wvaxqi93gq1ljkfd6jb27"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spacemacs-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spacemacs-theme"; sha256 = "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992"; name = "spacemacs-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/spacemacs-theme"; + homepage = "https://melpa.org/#/spacemacs-theme"; license = lib.licenses.free; }; }) {}; @@ -52736,13 +54779,34 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spaces"; sha256 = "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06"; name = "spaces"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/spaces"; + homepage = "https://melpa.org/#/spaces"; + license = lib.licenses.free; + }; + }) {}; + spark = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "spark"; + version = "20160414.2101"; + src = fetchFromGitHub { + owner = "alvinfrancis"; + repo = "spark"; + rev = "eec8feae7dbc8547f878fac302f03e0ff7bc9803"; + sha256 = "155ap3vcypcj0pxvjhi2p0a5a9a2rp63hqnsjczsbabmbz1mdsd5"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spark"; + sha256 = "0dv7ixv9gw6xxhw5zm4gmv2ll4lja8hmn2pdizlqxaizpm245rkn"; + name = "spark"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/spark"; license = lib.licenses.free; }; }) {}; @@ -52757,34 +54821,34 @@ sha256 = "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sparkline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sparkline"; sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y"; name = "sparkline"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/sparkline"; + homepage = "https://melpa.org/#/sparkline"; license = lib.licenses.free; }; }) {}; - sparql-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + sparql-mode = callPackage ({ async, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sparql-mode"; - version = "20151104.1114"; + version = "20160316.1004"; src = fetchFromGitHub { owner = "ljos"; repo = "sparql-mode"; - rev = "303858e7f91829ec720141482c777460e66f310b"; - sha256 = "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij"; + rev = "04a3ad8a5aaf409cfe2256c833e3a3b697a259dc"; + sha256 = "1bwa7vi97xlgwzyrc9cdz8i8rajlvkp4ajs8nklsqwrvzngly9lx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sparql-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sparql-mode"; sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d"; name = "sparql-mode"; }; - packageRequires = [ cl-lib ]; + packageRequires = [ async cl-lib ]; meta = { - homepage = "http://melpa.org/#/sparql-mode"; + homepage = "https://melpa.org/#/sparql-mode"; license = lib.licenses.free; }; }) {}; @@ -52792,38 +54856,38 @@ pname = "speck"; version = "20140901.1335"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/speck.el"; + url = "https://www.emacswiki.org/emacs/download/speck.el"; sha256 = "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/speck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/speck"; sha256 = "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg"; name = "speck"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/speck"; + homepage = "https://melpa.org/#/speck"; license = lib.licenses.free; }; }) {}; speech-tagger = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "speech-tagger"; - version = "20160103.1712"; + version = "20160224.202"; src = fetchFromGitHub { owner = "cosmicexplorer"; repo = "speech-tagger"; - rev = "994f61753f78cd2b2139f6e5eef9254f28fb9bed"; - sha256 = "05qx3wqsqs9lxv5lgpaw1wsd6qb5hh599ggi3c17ig5663q7pjsd"; + rev = "60ce97b0fc34eb32f507957646679fff77b5f0fd"; + sha256 = "0v4v2nr680zgljr9k7rgf7mhy49bv5ixc8ksba3g1bbrz0qv5ny6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/speech-tagger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/speech-tagger"; sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc"; name = "speech-tagger"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/speech-tagger"; + homepage = "https://melpa.org/#/speech-tagger"; license = lib.licenses.free; }; }) {}; @@ -52834,16 +54898,16 @@ src = fetchgit { url = "git://git.freebsoft.org/git/speechd-el"; rev = "3d729817296b2ed8ad414a6aa044a8aa762259eb"; - sha256 = "2c1bff3e5a182b8150c6ba6c3be7e70ab2b733cac0a758521c0b941dff215c32"; + sha256 = "0cjw47ziv50b3i95i9y0r8rvgchawzkknv5sqr882aqqb8zgy6rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/speechd-el"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/speechd-el"; sha256 = "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0"; name = "speechd-el"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/speechd-el"; + homepage = "https://melpa.org/#/speechd-el"; license = lib.licenses.free; }; }) {}; @@ -52858,13 +54922,13 @@ sha256 = "102hjyr9ii2rmq8762irbwansbi023s7dg4a8n6lkadcvzfibmag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/speed-type"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/speed-type"; sha256 = "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g"; name = "speed-type"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/speed-type"; + homepage = "https://melpa.org/#/speed-type"; license = lib.licenses.free; }; }) {}; @@ -52879,13 +54943,13 @@ sha256 = "1wif9wf8hwxk0q09cdnrmyas7zjg8l5b8jd6sjxd40ypn6dmz2ch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sphinx-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sphinx-doc"; sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z"; name = "sphinx-doc"; }; packageRequires = [ cl-lib dash s ]; meta = { - homepage = "http://melpa.org/#/sphinx-doc"; + homepage = "https://melpa.org/#/sphinx-doc"; license = lib.licenses.free; }; }) {}; @@ -52900,13 +54964,13 @@ sha256 = "1mfp4777ppg7zg7zqj755zpfk9lmcq73hxv055ig66pz30m7x5rw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sphinx-frontend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sphinx-frontend"; sha256 = "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag"; name = "sphinx-frontend"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sphinx-frontend"; + homepage = "https://melpa.org/#/sphinx-frontend"; license = lib.licenses.free; }; }) {}; @@ -52921,13 +54985,13 @@ sha256 = "1qdy9nc2h7mwxh7zg2p1x7yg96hxkwxqimjp6zb1119jx0s8grjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/splitjoin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/splitjoin"; sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l"; name = "splitjoin"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/splitjoin"; + homepage = "https://melpa.org/#/splitjoin"; license = lib.licenses.free; }; }) {}; @@ -52942,13 +55006,13 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/splitter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/splitter"; sha256 = "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2"; name = "splitter"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/splitter"; + homepage = "https://melpa.org/#/splitter"; license = lib.licenses.free; }; }) {}; @@ -52963,13 +55027,13 @@ sha256 = "1f0dl2zzxnqsyic87jl9wbg6lf42d8g61sj4d9fb3yhxy6jf07jv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spotify"; sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k"; name = "spotify"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/spotify"; + homepage = "https://melpa.org/#/spotify"; license = lib.licenses.free; }; }) {}; @@ -52984,55 +55048,55 @@ sha256 = "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spotlight"; sha256 = "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p"; name = "spotlight"; }; packageRequires = [ counsel emacs swiper ]; meta = { - homepage = "http://melpa.org/#/spotlight"; + homepage = "https://melpa.org/#/spotlight"; license = lib.licenses.free; }; }) {}; spray = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spray"; - version = "20150626.145"; + version = "20160304.1620"; src = fetchFromGitHub { owner = "ian-kelling"; repo = "spray"; - rev = "11623f45955a18115459a2c18dc95bc967980a53"; - sha256 = "0fvywcwn0zd06yy4b6cxpasiwfbps17jz9dy3jr0y0mdx5lzfxa9"; + rev = "69fe48e7bb079e3011476b9f4eb6ac9ae94d6d9b"; + sha256 = "0anidv7w2vwsjv8rwkvhs3x51av3y8dp435456czy5yfq6i6vfbl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spray"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spray"; sha256 = "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4"; name = "spray"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/spray"; + homepage = "https://melpa.org/#/spray"; license = lib.licenses.free; }; }) {}; springboard = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "springboard"; - version = "20150505.1211"; + version = "20160329.1309"; src = fetchFromGitHub { owner = "jwiegley"; repo = "springboard"; - rev = "d12119d9dd2b0b64f0af0ba82c273326c8c12268"; - sha256 = "14py5amh66jzhqyqjz5pxq0g19vzlmqnrr5wij1ix64xwfr3xdy8"; + rev = "ffcfaade6f69328084a0613d43d323f790d23048"; + sha256 = "0p13q8xax2h3m6rddvmh1p9biw3d1shvwwmqfhg0c93xajlwdfqi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/springboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/springboard"; sha256 = "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib"; name = "springboard"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/springboard"; + homepage = "https://melpa.org/#/springboard"; license = lib.licenses.free; }; }) {}; @@ -53047,13 +55111,13 @@ sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sprintly-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sprintly-mode"; sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4"; name = "sprintly-mode"; }; packageRequires = [ furl ]; meta = { - homepage = "http://melpa.org/#/sprintly-mode"; + homepage = "https://melpa.org/#/sprintly-mode"; license = lib.licenses.free; }; }) {}; @@ -53068,13 +55132,34 @@ sha256 = "11igl9n2zwwar1xg651g5v0r0w6xl0grm8xns9wg80351ijrci7x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sproto-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sproto-mode"; sha256 = "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma"; name = "sproto-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sproto-mode"; + homepage = "https://melpa.org/#/sproto-mode"; + license = lib.licenses.free; + }; + }) {}; + sprunge = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: + melpaBuild { + pname = "sprunge"; + version = "20160229.2043"; + src = fetchFromGitHub { + owner = "tomjakubowski"; + repo = "sprunge.el"; + rev = "0fd386b8b29c4175022a04ad70ea5643185b6726"; + sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sprunge"; + sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w"; + name = "sprunge"; + }; + packageRequires = [ cl-lib request ]; + meta = { + homepage = "https://melpa.org/#/sprunge"; license = lib.licenses.free; }; }) {}; @@ -53089,13 +55174,13 @@ sha256 = "17nbcaqx58fq4rz501xcqqcjhmibdlkaavmmzwcfwra7jv8hqljy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sql-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sql-indent"; sha256 = "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g"; name = "sql-indent"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sql-indent"; + homepage = "https://melpa.org/#/sql-indent"; license = lib.licenses.free; }; }) {}; @@ -53110,13 +55195,13 @@ sha256 = "0zlrx8sk7gwwr6a23mc22d7iinwf8p9ff16r9krqp86fyzbhnq1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sqlite"; sha256 = "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1"; name = "sqlite"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sqlite"; + homepage = "https://melpa.org/#/sqlite"; license = lib.licenses.free; }; }) {}; @@ -53124,17 +55209,17 @@ pname = "sqlplus"; version = "20141009.939"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/sqlplus.el"; + url = "https://www.emacswiki.org/emacs/download/sqlplus.el"; sha256 = "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sqlplus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sqlplus"; sha256 = "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz"; name = "sqlplus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sqlplus"; + homepage = "https://melpa.org/#/sqlplus"; license = lib.licenses.free; }; }) {}; @@ -53143,19 +55228,19 @@ pname = "sqlup-mode"; version = "20151121.830"; src = fetchFromGitHub { - owner = "trevoke"; + owner = "Trevoke"; repo = "sqlup-mode.el"; rev = "9cb9662673b7bed891582cfc1080d91a254048f7"; sha256 = "0p2g4ss3bf2asxcibrd8l70ll04nm47znr99l5xyzzwhyfzi61w4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sqlup-mode"; - sha256 = "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sqlup-mode"; + sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b"; name = "sqlup-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sqlup-mode"; + homepage = "https://melpa.org/#/sqlup-mode"; license = lib.licenses.free; }; }) {}; @@ -53163,38 +55248,38 @@ pname = "sr-speedbar"; version = "20150804.1151"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/sr-speedbar.el"; + url = "https://www.emacswiki.org/emacs/download/sr-speedbar.el"; sha256 = "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sr-speedbar"; sha256 = "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23"; name = "sr-speedbar"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sr-speedbar"; + homepage = "https://melpa.org/#/sr-speedbar"; license = lib.licenses.free; }; }) {}; srefactor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "srefactor"; - version = "20151202.2204"; + version = "20160420.233"; src = fetchFromGitHub { owner = "tuhdo"; repo = "semantic-refactor"; - rev = "e0482b08425894431fa67109615d4f0c971471c8"; - sha256 = "1n5p51iy79z60fnhxklc03pp0jbs5rgyb02z3wndbyzy73bhfh7b"; + rev = "a12eecfab02c10a6b8090df6fa376c1d98a1b9dc"; + sha256 = "02jr9cgar2r71rrrx13rj83nd19bxajmzzgj4awzn0d93i4l5qkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/srefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/srefactor"; sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2"; name = "srefactor"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/srefactor"; + homepage = "https://melpa.org/#/srefactor"; license = lib.licenses.free; }; }) {}; @@ -53209,13 +55294,13 @@ sha256 = "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ssh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ssh"; sha256 = "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g"; name = "ssh"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ssh"; + homepage = "https://melpa.org/#/ssh"; license = lib.licenses.free; }; }) {}; @@ -53230,34 +55315,34 @@ sha256 = "0076g1yb8xvn6s8gz5jxiz8mn448fmab574yizgakbxaxd91s1dj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ssh-agency"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ssh-agency"; sha256 = "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8"; name = "ssh-agency"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/ssh-agency"; + homepage = "https://melpa.org/#/ssh-agency"; license = lib.licenses.free; }; }) {}; ssh-config-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ssh-config-mode"; - version = "20141219.1046"; + version = "20160326.752"; src = fetchFromGitHub { owner = "jhgorrell"; repo = "ssh-config-mode-el"; - rev = "3d194c772d428144acd84c85be560ca96fb323ba"; - sha256 = "1v6srqiqq5xsjiw4d3kfgp218dks8mm6f9i88ngjri6sb3slpfb6"; + rev = "da93f32cfe7d8a43b093b7a2c0b4845afb7a96a7"; + sha256 = "08nx1iwvxqs1anng32w3c2clhnjf45527j0gxz5fy6h9svmb921q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ssh-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ssh-config-mode"; sha256 = "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb"; name = "ssh-config-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ssh-config-mode"; + homepage = "https://melpa.org/#/ssh-config-mode"; license = lib.licenses.free; }; }) {}; @@ -53272,13 +55357,13 @@ sha256 = "10a5havjg4yjshpfzkhgjdwbrvl44narg09ddzynczmyzm4f01wh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ssh-tunnels"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ssh-tunnels"; sha256 = "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj"; name = "ssh-tunnels"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/ssh-tunnels"; + homepage = "https://melpa.org/#/ssh-tunnels"; license = lib.licenses.free; }; }) {}; @@ -53293,13 +55378,13 @@ sha256 = "1f2dxlc3dsf9ay417h1l43fxjkrb0a4gg96zd3asx9v2alpzgcim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stack-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stack-mode"; sha256 = "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf"; name = "stack-mode"; }; packageRequires = [ cl-lib flycheck haskell-mode ]; meta = { - homepage = "http://melpa.org/#/stack-mode"; + homepage = "https://melpa.org/#/stack-mode"; license = lib.licenses.free; }; }) {}; @@ -53314,13 +55399,13 @@ sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stan-mode"; sha256 = "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy"; name = "stan-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/stan-mode"; + homepage = "https://melpa.org/#/stan-mode"; license = lib.licenses.free; }; }) {}; @@ -53335,13 +55420,13 @@ sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stan-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stan-snippets"; sha256 = "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85"; name = "stan-snippets"; }; packageRequires = [ stan-mode yasnippet ]; meta = { - homepage = "http://melpa.org/#/stan-snippets"; + homepage = "https://melpa.org/#/stan-snippets"; license = lib.licenses.free; }; }) {}; @@ -53356,34 +55441,34 @@ sha256 = "09gjhg923jck35c1nvcdfk4dc0r559myzmfbcd9jvjamzh50ngcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/standoff-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/standoff-mode"; sha256 = "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp"; name = "standoff-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/standoff-mode"; + homepage = "https://melpa.org/#/standoff-mode"; license = lib.licenses.free; }; }) {}; start-menu = callPackage ({ cl-lib ? null, config-parser, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "start-menu"; - version = "20160115.2339"; + version = "20160426.725"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-start-menu"; - rev = "259ec3e5f8564bd03edc12a0f539b294ad1d841f"; - sha256 = "1v3rzy842mfzm850vs273ssr4hg00q1wz2rpky8lk3wbbw2qq3f0"; + rev = "f7d33fed7ad2dc61156f1c1cff9e1805366fbd69"; + sha256 = "1w3l8ahal9hjisny382bcw9w1nh2swpb1jzf2djww5h0i4r2h36c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/start-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/start-menu"; sha256 = "1k1lc9i9vcl2am9afq0ksrxwsy6kppl4i0v10h0w2fq5z374rdkv"; name = "start-menu"; }; packageRequires = [ cl-lib config-parser ]; meta = { - homepage = "http://melpa.org/#/start-menu"; + homepage = "https://melpa.org/#/start-menu"; license = lib.licenses.free; }; }) {}; @@ -53398,34 +55483,34 @@ sha256 = "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stash"; sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9"; name = "stash"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/stash"; + homepage = "https://melpa.org/#/stash"; license = lib.licenses.free; }; }) {}; state = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "state"; - version = "20160108.736"; + version = "20160422.750"; src = fetchFromGitHub { owner = "thisirs"; repo = "state"; - rev = "bd74ed144cebae926f54cbaf18600b24dd1a9aaf"; - sha256 = "1b17v4xghmki0g9yr5855891mlcrrbkr68xc3qyals5xw0dhb3xb"; + rev = "4a5fa2e37186408df3e98d936514387ceef80bd5"; + sha256 = "1rjp1zsbh476njjznbsxr47x4lqs4i887yi9xvwvpcb2wcwfly81"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/state"; sha256 = "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2"; name = "state"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/state"; + homepage = "https://melpa.org/#/state"; license = lib.licenses.free; }; }) {}; @@ -53440,13 +55525,13 @@ sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/status"; sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3"; name = "status"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/status"; + homepage = "https://melpa.org/#/status"; license = lib.licenses.free; }; }) {}; @@ -53461,13 +55546,13 @@ sha256 = "0w1qb8r6nrxi5hbf8l4247yqq754zfbxz64pqqcnw43cxk0qd4j3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stekene-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stekene-theme"; sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1"; name = "stekene-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/stekene-theme"; + homepage = "https://melpa.org/#/stekene-theme"; license = lib.licenses.free; }; }) {}; @@ -53482,13 +55567,13 @@ sha256 = "1xc4v8a35c2vpfhza15j4f89x7vyg9bbgm7xnprij7814k8iy7p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stem"; sha256 = "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq"; name = "stem"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/stem"; + homepage = "https://melpa.org/#/stem"; license = lib.licenses.free; }; }) {}; @@ -53498,16 +55583,16 @@ src = fetchgit { url = "git://repo.or.cz/stgit.git"; rev = "e4e04764009f749665636c4d11e0cafd9c4971e1"; - sha256 = "c5d424f34ca33d2c19e3888a9dc249d0398203e5199bf2b4bdd9e604390b500b"; + sha256 = "02sh1cwh9rnrpnsg56qrwl1q4ffh9719v2l8wccjqgd39krj9m65"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stgit"; sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89"; name = "stgit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/stgit"; + homepage = "https://melpa.org/#/stgit"; license = lib.licenses.free; }; }) {}; @@ -53515,17 +55600,17 @@ pname = "sticky"; version = "20101129.2052"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/sticky.el"; + url = "https://www.emacswiki.org/emacs/download/sticky.el"; sha256 = "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sticky"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sticky"; sha256 = "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w"; name = "sticky"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sticky"; + homepage = "https://melpa.org/#/sticky"; license = lib.licenses.free; }; }) {}; @@ -53540,13 +55625,13 @@ sha256 = "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stickyfunc-enhance"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stickyfunc-enhance"; sha256 = "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks"; name = "stickyfunc-enhance"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/stickyfunc-enhance"; + homepage = "https://melpa.org/#/stickyfunc-enhance"; license = lib.licenses.free; }; }) {}; @@ -53561,13 +55646,13 @@ sha256 = "191sg32z1iagyxmbn49i1lpfihld9g9741cw2kj830s4vag4kinx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stock-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stock-ticker"; sha256 = "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi"; name = "stock-ticker"; }; packageRequires = [ request s ]; meta = { - homepage = "http://melpa.org/#/stock-ticker"; + homepage = "https://melpa.org/#/stock-ticker"; license = lib.licenses.free; }; }) {}; @@ -53576,40 +55661,40 @@ pname = "strie"; version = "20160211.1622"; src = fetchFromGitHub { - owner = "hackscience"; + owner = "jcatw"; repo = "strie.el"; rev = "eb7efb0cccc127c414f6a64db11454869d9c10a8"; sha256 = "1kcbkf0wbmqy9slxfqg7wsyw5n2rsaz832ibrxszb642j0l8s7pr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/strie"; - sha256 = "0i1bgjlwcc2ks8hzjkyrw924q4k8pcz8335z9935m73js0sq0lxl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/strie"; + sha256 = "1ngvpbws7laqxk6mm023r5295msap12h8bh9zrsbr05yxfzhlx83"; name = "strie"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/strie"; + homepage = "https://melpa.org/#/strie"; license = lib.licenses.free; }; }) {}; string-edit = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "string-edit"; - version = "20151213.1130"; + version = "20160411.156"; src = fetchFromGitHub { owner = "magnars"; repo = "string-edit.el"; - rev = "c380e20ca169bd4e7117a99edd5711e673168cbe"; - sha256 = "0nx303bdi8mq18isgf79y8f1cjhqnxv3g3ynm09llrg73qr7r4zw"; + rev = "c44b65b4c5e9f52be9c14d88ca2f402a18d9e1dd"; + sha256 = "1xm7bb3cp99ahr5jrwi0p0258qcvlbddy98wmbq00kk5pihqbzsg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/string-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/string-edit"; sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8"; name = "string-edit"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/string-edit"; + homepage = "https://melpa.org/#/string-edit"; license = lib.licenses.free; }; }) {}; @@ -53624,13 +55709,13 @@ sha256 = "06qs8v2pai3pyg0spmarssmrq06xg9q60wjj46s5xxichlw9pgcf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/string-inflection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/string-inflection"; sha256 = "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2"; name = "string-inflection"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/string-inflection"; + homepage = "https://melpa.org/#/string-inflection"; license = lib.licenses.free; }; }) {}; @@ -53645,13 +55730,13 @@ sha256 = "1frdspm1qgksa8cpx5gkj50xk9mgz8202pgp11lqir6l3yjcj3wq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/string-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/string-utils"; sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v"; name = "string-utils"; }; packageRequires = [ list-utils ]; meta = { - homepage = "http://melpa.org/#/string-utils"; + homepage = "https://melpa.org/#/string-utils"; license = lib.licenses.free; }; }) {}; @@ -53659,17 +55744,17 @@ pname = "strings"; version = "20151231.1807"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/strings.el"; + url = "https://www.emacswiki.org/emacs/download/strings.el"; sha256 = "1sa6wd2z2qkcnjprkkm9b945qz8d0l702sv9w15wl0lngbhw84na"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/strings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/strings"; sha256 = "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk"; name = "strings"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/strings"; + homepage = "https://melpa.org/#/strings"; license = lib.licenses.free; }; }) {}; @@ -53684,13 +55769,13 @@ sha256 = "0dxajh72wdcwdb9ydbcm19fmp0p1drmh1niq4r69jnbn8sah0zax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stripe-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stripe-buffer"; sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a"; name = "stripe-buffer"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/stripe-buffer"; + homepage = "https://melpa.org/#/stripe-buffer"; license = lib.licenses.free; }; }) {}; @@ -53701,16 +55786,16 @@ src = fetchgit { url = "git://git.savannah.nongnu.org/stumpwm.git"; rev = "61a7cf27e49e0779a53c018b2342f5f1c5cc70b4"; - sha256 = "3547616b9e5694fd09014bbbf29458ee0dea828428b6bf7a6231670aacfb8271"; + sha256 = "0wc2zfn0lrric9xbzdi8hj1fl3gfb2ag5fsb044zv52nkrmn2irm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stumpwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stumpwm-mode"; sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86"; name = "stumpwm-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/stumpwm-mode"; + homepage = "https://melpa.org/#/stumpwm-mode"; license = lib.licenses.free; }; }) {}; @@ -53721,16 +55806,16 @@ src = fetchgit { url = "https://gist.github.com/5487564.git"; rev = "e26ff5a2c4a582c6c1940bbcd204cfeed8e65222"; - sha256 = "242b90e4c403fbcadd40777cd98899c96aab78b84dea88dfa97583b734c9876b"; + sha256 = "0sw7r4sbg0vmm7gqisjdp1wansn9k64djz3p83fwmyq3qkj90ar4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stupid-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stupid-indent-mode"; sha256 = "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p"; name = "stupid-indent-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/stupid-indent-mode"; + homepage = "https://melpa.org/#/stupid-indent-mode"; license = lib.licenses.free; }; }) {}; @@ -53745,13 +55830,13 @@ sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stylus-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stylus-mode"; sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5"; name = "stylus-mode"; }; packageRequires = [ sws-mode ]; meta = { - homepage = "http://melpa.org/#/stylus-mode"; + homepage = "https://melpa.org/#/stylus-mode"; license = lib.licenses.free; }; }) {}; @@ -53766,13 +55851,13 @@ sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subatomic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subatomic-theme"; sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc"; name = "subatomic-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/subatomic-theme"; + homepage = "https://melpa.org/#/subatomic-theme"; license = lib.licenses.free; }; }) {}; @@ -53787,13 +55872,13 @@ sha256 = "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subatomic256-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subatomic256-theme"; sha256 = "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy"; name = "subatomic256-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/subatomic256-theme"; + homepage = "https://melpa.org/#/subatomic256-theme"; license = lib.licenses.free; }; }) {}; @@ -53808,13 +55893,13 @@ sha256 = "10pirwc7g9vii5cyk4vg6m5g5hlap0yg9w4qy257744c67jmaxvg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subemacs"; sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm"; name = "subemacs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/subemacs"; + homepage = "https://melpa.org/#/subemacs"; license = lib.licenses.free; }; }) {}; @@ -53825,17 +55910,17 @@ src = fetchFromGitHub { owner = "owainlewis"; repo = "emacs-color-themes"; - rev = "2b37d0def434871a2c0d3476f5b7eeeed9bb90b2"; - sha256 = "0lhbmcpzpxlqvw4mgh79v9y2f0xqjd1m36dbxcvhb67rwq6nrw3r"; + rev = "4648b68e96bfde26d6e4af9f919971eef2768e5f"; + sha256 = "0q9p974xvswr2sijz1rs858x9sdx0rb00lkhj5cd90abn33lb260"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sublime-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sublime-themes"; sha256 = "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj"; name = "sublime-themes"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sublime-themes"; + homepage = "https://melpa.org/#/sublime-themes"; license = lib.licenses.free; }; }) {}; @@ -53850,13 +55935,13 @@ sha256 = "1kpq7kpmhgq3vjd62rr4qsc824qcyjxm50m49r7invgnmgd78h4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sublimity"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sublimity"; sha256 = "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw"; name = "sublimity"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sublimity"; + homepage = "https://melpa.org/#/sublimity"; license = lib.licenses.free; }; }) {}; @@ -53864,17 +55949,17 @@ pname = "subr-plus"; version = "20151231.1807"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/subr+.el"; + url = "https://www.emacswiki.org/emacs/download/subr+.el"; sha256 = "1xxf8kgxzcwwjm96isj4zg31vw63ahivr6xch5dw8wsvk0mjks9y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subr+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subr+"; sha256 = "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs"; name = "subr-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/subr+"; + homepage = "https://melpa.org/#/subr+"; license = lib.licenses.free; }; }) {}; @@ -53889,13 +55974,13 @@ sha256 = "09izm28jrzfaj469v6yd1xgjgvy6pmxarcy0rzn2ihn3c0z7mdg4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subshell-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subshell-proc"; sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2"; name = "subshell-proc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/subshell-proc"; + homepage = "https://melpa.org/#/subshell-proc"; license = lib.licenses.free; }; }) {}; @@ -53910,13 +55995,34 @@ sha256 = "1007xz4x1wgvxilv1qwf0a4y7hd7sqnnzwk2bdr12kfk7vq9cw2b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sudden-death"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sudden-death"; sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh"; name = "sudden-death"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sudden-death"; + homepage = "https://melpa.org/#/sudden-death"; + license = lib.licenses.free; + }; + }) {}; + sudo-edit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "sudo-edit"; + version = "20160304.26"; + src = fetchFromGitHub { + owner = "nflath"; + repo = "sudo-edit"; + rev = "ba33dbcff6746b988a58e38d4f72e52364f0ba79"; + sha256 = "0bscj6nziansx846rmmrpbc4wbsngq1jg70g5ncf0f14b3achaq3"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sudo-edit"; + sha256 = "10vz7q8m0l2dyhiy9r9nj17qlwyv032glshzljzhm1n20w8y1fq4"; + name = "sudo-edit"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/sudo-edit"; license = lib.licenses.free; }; }) {}; @@ -53924,17 +56030,17 @@ pname = "sudo-ext"; version = "20130130.1551"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/sudo-ext.el"; + url = "https://www.emacswiki.org/emacs/download/sudo-ext.el"; sha256 = "0fpz73r52j7sk1w7my0002wg7isrp54w28nnrwk9xb9il4qpxag2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sudo-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sudo-ext"; sha256 = "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3"; name = "sudo-ext"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sudo-ext"; + homepage = "https://melpa.org/#/sudo-ext"; license = lib.licenses.free; }; }) {}; @@ -53942,17 +56048,17 @@ pname = "summarye"; version = "20130328.527"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/summarye.el"; + url = "https://www.emacswiki.org/emacs/download/summarye.el"; sha256 = "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/summarye"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/summarye"; sha256 = "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65"; name = "summarye"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/summarye"; + homepage = "https://melpa.org/#/summarye"; license = lib.licenses.free; }; }) {}; @@ -53967,34 +56073,34 @@ sha256 = "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sunny-day-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sunny-day-theme"; sha256 = "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw"; name = "sunny-day-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sunny-day-theme"; + homepage = "https://melpa.org/#/sunny-day-theme"; license = lib.licenses.free; }; }) {}; sunshine = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sunshine"; - version = "20151013.814"; + version = "20160410.1517"; src = fetchFromGitHub { owner = "aaronbieber"; repo = "sunshine.el"; - rev = "8783923f0aa4b835b90359443b941b10758c28d7"; - sha256 = "1x3ivhwyapxw7v3ygam3bn2i9djrsp9mcd5zdn8q84c583ppanll"; + rev = "11e49846a116bdec6e2e463bed2db4c2df9c8ad2"; + sha256 = "0jv1shacpxqbw6pv9rlkk8z84si85alhillhb9a2s6s36kjmybk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sunshine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sunshine"; sha256 = "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv"; name = "sunshine"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/sunshine"; + homepage = "https://melpa.org/#/sunshine"; license = lib.licenses.free; }; }) {}; @@ -54009,34 +56115,34 @@ sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/suomalainen-kalenteri"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/suomalainen-kalenteri"; sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh"; name = "suomalainen-kalenteri"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/suomalainen-kalenteri"; + homepage = "https://melpa.org/#/suomalainen-kalenteri"; license = lib.licenses.free; }; }) {}; super-save = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "super-save"; - version = "20160211.456"; + version = "20160426.929"; src = fetchFromGitHub { owner = "bbatsov"; repo = "super-save"; - rev = "73397501fa5b01c02b9ae94f82a8cb37d1ed105f"; - sha256 = "0cw3yf2npy2ah00q2whpn52kaybbccw1qvfzsww0x4zshlrwvvvq"; + rev = "701c98eef4b9b21cd6cfd31f190f9988d32353aa"; + sha256 = "1frm90kssrp4s6x0g4vq4jkssh8rnrfjbgwa05igsjnsbnnfxxd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/super-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/super-save"; sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p"; name = "super-save"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/super-save"; + homepage = "https://melpa.org/#/super-save"; license = lib.licenses.free; }; }) {}; @@ -54051,34 +56157,34 @@ sha256 = "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/supergenpass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/supergenpass"; sha256 = "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95"; name = "supergenpass"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/supergenpass"; + homepage = "https://melpa.org/#/supergenpass"; license = lib.licenses.free; }; }) {}; suscolors-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "suscolors-theme"; - version = "20160217.1234"; + version = "20160319.1943"; src = fetchFromGitHub { owner = "TheSuspiciousWombat"; repo = "suscolors-emacs"; - rev = "f186aab5d21d1cfb8bb0722332388cfdcb45c052"; - sha256 = "0hwlp1zwfi0qkzzxkqxxjjshgl2h5i5jjn13ky51zb733bazpifx"; + rev = "9eb6708a8f02527b5e7cae75be727d4f2edcbfc1"; + sha256 = "09m2ayx8wf7impns1mkc0phkl1ql91ljgzv3ivk94vrgni7n5f93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/suscolors-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/suscolors-theme"; sha256 = "08sh20lmhqzpxb55nmqwsfv4xd6sjirh592in7s6vl52r3hl0jkh"; name = "suscolors-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/suscolors-theme"; + homepage = "https://melpa.org/#/suscolors-theme"; license = lib.licenses.free; }; }) {}; @@ -54093,13 +56199,13 @@ sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/svg-mode-line-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/svg-mode-line-themes"; sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506"; name = "svg-mode-line-themes"; }; packageRequires = [ xmlgen ]; meta = { - homepage = "http://melpa.org/#/svg-mode-line-themes"; + homepage = "https://melpa.org/#/svg-mode-line-themes"; license = lib.licenses.free; }; }) {}; @@ -54114,13 +56220,34 @@ sha256 = "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swap-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swap-buffers"; sha256 = "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw"; name = "swap-buffers"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/swap-buffers"; + homepage = "https://melpa.org/#/swap-buffers"; + license = lib.licenses.free; + }; + }) {}; + swap-regions = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "swap-regions"; + version = "20160413.1223"; + src = fetchFromGitHub { + owner = "xuchunyang"; + repo = "swap-regions.el"; + rev = "2789091b6f34c0d4b82546eb39c4e73dc96e8679"; + sha256 = "1m0apxjcj6xhbic36il1mbbril6pw2h6d9kmsb0jhibyy6mc8r78"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swap-regions"; + sha256 = "0gl4vr7wjh5gjskrwbqypaqyfigpgh379bm4l2gvbsbhahsmbj67"; + name = "swap-regions"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/swap-regions"; license = lib.licenses.free; }; }) {}; @@ -54128,17 +56255,17 @@ pname = "swbuff-x"; version = "20130607.514"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/swbuff-x.el"; + url = "https://www.emacswiki.org/emacs/download/swbuff-x.el"; sha256 = "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swbuff-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swbuff-x"; sha256 = "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y"; name = "swbuff-x"; }; packageRequires = [ swbuff ]; meta = { - homepage = "http://melpa.org/#/swbuff-x"; + homepage = "https://melpa.org/#/swbuff-x"; license = lib.licenses.free; }; }) {}; @@ -54153,13 +56280,13 @@ sha256 = "10blwlwg1ry9jznf1a6iss5s0z8sj9gc02ayf5qv92mgxvjhrhdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sweetgreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sweetgreen"; sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy"; name = "sweetgreen"; }; packageRequires = [ cl-lib dash helm request ]; meta = { - homepage = "http://melpa.org/#/sweetgreen"; + homepage = "https://melpa.org/#/sweetgreen"; license = lib.licenses.free; }; }) {}; @@ -54174,34 +56301,34 @@ sha256 = "08397a8y8hgyzwny4z9f6kgwy8d37h0iypcjps3l6lhnk35mshv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swift-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swift-mode"; sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d"; name = "swift-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/swift-mode"; + homepage = "https://melpa.org/#/swift-mode"; license = lib.licenses.free; }; }) {}; - swiper = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + swiper = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: melpaBuild { pname = "swiper"; - version = "20160221.235"; + version = "20160425.507"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "4af5c2e4e83f51da91675b0de7301b09c4b24b2c"; - sha256 = "0ra5sa0dfrh1bv1q3r81r92i6xzazvw3lzz5n5qfbxcpnf8lygzk"; + rev = "c24a3728538dd7d11de9f141b3ad1d8e0996c330"; + sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swiper"; - sha256 = "1hsj6vh0vldnvwg2qmszdi0p2ig7l63vgq2kn5nv883239bxpziz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper"; + sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9"; name = "swiper"; }; - packageRequires = [ emacs ]; + packageRequires = [ emacs ivy ]; meta = { - homepage = "http://melpa.org/#/swiper"; + homepage = "https://melpa.org/#/swiper"; license = lib.licenses.free; }; }) {}; @@ -54216,34 +56343,34 @@ sha256 = "1fr9vs0574g93mq88d25nmj93hrx4d4s2d0im6wk156k2yb8ha2b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swiper-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper-helm"; sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph"; name = "swiper-helm"; }; packageRequires = [ emacs helm swiper ]; meta = { - homepage = "http://melpa.org/#/swiper-helm"; + homepage = "https://melpa.org/#/swiper-helm"; license = lib.licenses.free; }; }) {}; - switch-window = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + switch-window = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "switch-window"; - version = "20150114.415"; + version = "20160229.534"; src = fetchFromGitHub { owner = "dimitri"; repo = "switch-window"; - rev = "cd4b06121aa5bac4c4b13b63526a99008def5f2b"; - sha256 = "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48"; + rev = "c1bbe51573a19ff6adae8531bf20601e5da5f7db"; + sha256 = "09ba45zbya2a72prq13pjg9pgbs86c6kayf8q2papvr9f5yv57xa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/switch-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/switch-window"; sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2"; name = "switch-window"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/switch-window"; + homepage = "https://melpa.org/#/switch-window"; license = lib.licenses.free; }; }) {}; @@ -54258,13 +56385,13 @@ sha256 = "10ka6f86n07xlf0z7w35db0mzp2zk4xhr6jd19kjdrn2j0ynlcw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swoop"; sha256 = "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g"; name = "swoop"; }; packageRequires = [ async emacs ht pcre2el ]; meta = { - homepage = "http://melpa.org/#/swoop"; + homepage = "https://melpa.org/#/swoop"; license = lib.licenses.free; }; }) {}; @@ -54279,13 +56406,13 @@ sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sws-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sws-mode"; sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i"; name = "sws-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sws-mode"; + homepage = "https://melpa.org/#/sws-mode"; license = lib.licenses.free; }; }) {}; @@ -54300,13 +56427,13 @@ sha256 = "0d0c2i8hh0wrz8vnhxpxzwj7vlrjx6lrb3cx56pn4ny9qyqfzmw3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sx"; sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517"; name = "sx"; }; packageRequires = [ cl-lib emacs json let-alist markdown-mode ]; meta = { - homepage = "http://melpa.org/#/sx"; + homepage = "https://melpa.org/#/sx"; license = lib.licenses.free; }; }) {}; @@ -54321,13 +56448,13 @@ sha256 = "1mb068vgf0bbj0bdxjhd6c794bwc3wp7r6q1s49w8b24g1pfrjkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/symon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/symon"; sha256 = "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz"; name = "symon"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/symon"; + homepage = "https://melpa.org/#/symon"; license = lib.licenses.free; }; }) {}; @@ -54342,34 +56469,55 @@ sha256 = "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/symon-lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/symon-lingr"; sha256 = "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1"; name = "symon-lingr"; }; packageRequires = [ cl-lib symon ]; meta = { - homepage = "http://melpa.org/#/symon-lingr"; + homepage = "https://melpa.org/#/symon-lingr"; license = lib.licenses.free; }; }) {}; sync-recentf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sync-recentf"; - version = "20151005.526"; + version = "20160326.1501"; src = fetchFromGitHub { owner = "ffevotte"; repo = "sync-recentf"; - rev = "530254b1f1b569ce958dadad2620c67c31835d5c"; - sha256 = "00lx6081h1nzwga5jg4cik4h667vfkn128yvnhkd0vw7b5g4ji5x"; + rev = "0052561d5c5b5c2684faedc3eead776aec06c3ed"; + sha256 = "006siydqxqds0qqds0zxn821dk4pw14wyymyp03n594wgqzw7m8q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sync-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sync-recentf"; sha256 = "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c"; name = "sync-recentf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sync-recentf"; + homepage = "https://melpa.org/#/sync-recentf"; + license = lib.licenses.free; + }; + }) {}; + syndicate = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "syndicate"; + version = "20160409.1119"; + src = fetchFromGitHub { + owner = "KNX32542"; + repo = "syndicate"; + rev = "36d2edb542c7ae10847cfd828a828db5e02f967f"; + sha256 = "0593fx8mfl0vaaxcj65mi8hg79xhhwa4scan2nmic9grh25hs77m"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syndicate"; + sha256 = "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95"; + name = "syndicate"; + }; + packageRequires = [ evil ]; + meta = { + homepage = "https://melpa.org/#/syndicate"; license = lib.licenses.free; }; }) {}; @@ -54384,31 +56532,31 @@ sha256 = "02xnfkmpvjicckmp9is42fnavy9pd95s99zmf1wylxdji2hhpjxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/synonymous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/synonymous"; sha256 = "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5"; name = "synonymous"; }; packageRequires = [ cl-lib emacs request ]; meta = { - homepage = "http://melpa.org/#/synonymous"; + homepage = "https://melpa.org/#/synonymous"; license = lib.licenses.free; }; }) {}; synonyms = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "synonyms"; - version = "20151231.1808"; + version = "20160328.854"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/synonyms.el"; - sha256 = "01l7z6l9pdxzvh851pbq2fn62r28gzwldibffb69jkdln47bph50"; + url = "https://www.emacswiki.org/emacs/download/synonyms.el"; + sha256 = "1zkrh1krhjmhb924dlihfnmjf4gigk9lqkai8aal67h90g2q2dsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/synonyms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/synonyms"; sha256 = "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0"; name = "synonyms"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/synonyms"; + homepage = "https://melpa.org/#/synonyms"; license = lib.licenses.free; }; }) {}; @@ -54417,19 +56565,19 @@ pname = "synosaurus"; version = "20151119.1249"; src = fetchFromGitHub { - owner = "rootzlevel"; + owner = "hpdeifel"; repo = "synosaurus"; rev = "9be71a2df0c19ddb5e0cb8cba29ded5368a0fcae"; sha256 = "1zz9rnwaclr95fpjyabv5rlhk36n2k8f1lzz6yqh964hv8i9562s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/synosaurus"; - sha256 = "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/synosaurus"; + sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn"; name = "synosaurus"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/synosaurus"; + homepage = "https://melpa.org/#/synosaurus"; license = lib.licenses.free; }; }) {}; @@ -54444,13 +56592,13 @@ sha256 = "0zi11540wwcl93xcgd2yf6b72zv01zkaqbf1jfbksg82k9038m2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/syntactic-sugar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syntactic-sugar"; sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r"; name = "syntactic-sugar"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/syntactic-sugar"; + homepage = "https://melpa.org/#/syntactic-sugar"; license = lib.licenses.free; }; }) {}; @@ -54464,13 +56612,13 @@ sha256 = "15zvh6dk02rm16zs6c9zvw1w76ycn61g3cpx6jb3456ff9zn6m9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/syntax-subword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syntax-subword"; sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm"; name = "syntax-subword"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/syntax-subword"; + homepage = "https://melpa.org/#/syntax-subword"; license = lib.licenses.free; }; }) {}; @@ -54485,13 +56633,13 @@ sha256 = "1sxpda380c9wnnf5d72lrcqm6dkihf48cgsjcckzf706cc00ksf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/syslog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syslog-mode"; sha256 = "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19"; name = "syslog-mode"; }; packageRequires = [ hide-lines ]; meta = { - homepage = "http://melpa.org/#/syslog-mode"; + homepage = "https://melpa.org/#/syslog-mode"; license = lib.licenses.free; }; }) {}; @@ -54506,13 +56654,13 @@ sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/system-specific-settings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/system-specific-settings"; sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp"; name = "system-specific-settings"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/system-specific-settings"; + homepage = "https://melpa.org/#/system-specific-settings"; license = lib.licenses.free; }; }) {}; @@ -54527,13 +56675,13 @@ sha256 = "1z7zi0wcms55x0ar9jv02g7gbzsn4k887aigpgv4xghbdiyp7lp0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/systemd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/systemd"; sha256 = "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir"; name = "systemd"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/systemd"; + homepage = "https://melpa.org/#/systemd"; license = lib.licenses.free; }; }) {}; @@ -54548,13 +56696,13 @@ sha256 = "0343ss3y9i40y3i9rr7p7bb4k9dj950zyvdv44q1abw2xrfd2xwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/systemtap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/systemtap-mode"; sha256 = "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz"; name = "systemtap-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/systemtap-mode"; + homepage = "https://melpa.org/#/systemtap-mode"; license = lib.licenses.free; }; }) {}; @@ -54569,13 +56717,13 @@ sha256 = "054l3imxk9ivq361cr15q1wym07mw3s8xzjkzqlihrfvadsq37ym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ta"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ta"; sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll"; name = "ta"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/ta"; + homepage = "https://melpa.org/#/ta"; license = lib.licenses.free; }; }) {}; @@ -54590,13 +56738,13 @@ sha256 = "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tab-group"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tab-group"; sha256 = "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9"; name = "tab-group"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tab-group"; + homepage = "https://melpa.org/#/tab-group"; license = lib.licenses.free; }; }) {}; @@ -54611,13 +56759,13 @@ sha256 = "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tab-jump-out"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tab-jump-out"; sha256 = "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n"; name = "tab-jump-out"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/tab-jump-out"; + homepage = "https://melpa.org/#/tab-jump-out"; license = lib.licenses.free; }; }) {}; @@ -54632,34 +56780,34 @@ sha256 = "0n23nnig1lgjamrzsa91p2aplh7gpj2vkp951i9fpf49c6xpyj3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tabbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tabbar"; sha256 = "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9"; name = "tabbar"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tabbar"; + homepage = "https://melpa.org/#/tabbar"; license = lib.licenses.free; }; }) {}; - tabbar-ruler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mode-icons, powerline, tabbar }: + tabbar-ruler = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, mode-icons, powerline, tabbar }: melpaBuild { pname = "tabbar-ruler"; - version = "20160216.2132"; + version = "20160426.612"; src = fetchFromGitHub { owner = "mattfidler"; repo = "tabbar-ruler.el"; - rev = "5f3bb41436b00298e494c74701f0609569840a58"; - sha256 = "1d0nf6mf5vkz7mx0iwn6bgrzsf96h55khd04wf3iv39v1x4gwc6p"; + rev = "9f41bb3cdceefedb2f4ee291c1c3a67d111b6c97"; + sha256 = "0nsd2dngxs9fr211isfhvifzn0lzalgl6bx9j8p24gxyprkjpg3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tabbar-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tabbar-ruler"; sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d"; name = "tabbar-ruler"; }; - packageRequires = [ mode-icons powerline tabbar ]; + packageRequires = [ cl-lib mode-icons powerline tabbar ]; meta = { - homepage = "http://melpa.org/#/tabbar-ruler"; + homepage = "https://melpa.org/#/tabbar-ruler"; license = lib.licenses.free; }; }) {}; @@ -54674,13 +56822,13 @@ sha256 = "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tablist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tablist"; sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p"; name = "tablist"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/tablist"; + homepage = "https://melpa.org/#/tablist"; license = lib.licenses.free; }; }) {}; @@ -54690,39 +56838,39 @@ version = "20141215.2347"; src = fetchFromGitHub { owner = "idomagal"; - repo = "tabula-rasa"; + repo = "Tabula-Rasa"; rev = "e85fff9de18dc31bc6a7aca726e34a95cc5459f5"; sha256 = "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tabula-rasa"; - sha256 = "186lph964swg7rs5gvby3p1d0znq9x3xzsmirfb3cdbazvz6hhxi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tabula-rasa"; + sha256 = "14j92inssmm61bn475gyn0dn0rv8kvfnqyl1zq3xliy7a0jn58zz"; name = "tabula-rasa"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/tabula-rasa"; + homepage = "https://melpa.org/#/tabula-rasa"; license = lib.licenses.free; }; }) {}; tagedit = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "tagedit"; - version = "20150727.424"; + version = "20160418.231"; src = fetchFromGitHub { owner = "magnars"; repo = "tagedit"; - rev = "458ff5bb23aa4816a2d5ff5d66c4e95996b4a4e1"; - sha256 = "00hjc6ax4659ww6vygpzzsb3zzr2ddz2z33mkp5j6hmj2s4g2viy"; + rev = "81a038b26213252700162a9dccd1848dc8d4cc75"; + sha256 = "0h6gfy39dd0fcz625d255nykybkjvd16qmd3icpg5qzn41cgc96x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tagedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tagedit"; sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z"; name = "tagedit"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/tagedit"; + homepage = "https://melpa.org/#/tagedit"; license = lib.licenses.free; }; }) {}; @@ -54737,13 +56885,13 @@ sha256 = "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/take-off"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/take-off"; sha256 = "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar"; name = "take-off"; }; packageRequires = [ emacs web-server ]; meta = { - homepage = "http://melpa.org/#/take-off"; + homepage = "https://melpa.org/#/take-off"; license = lib.licenses.free; }; }) {}; @@ -54754,16 +56902,16 @@ src = fetchgit { url = "https://gist.github.com/2024464.git"; rev = "64e44c98e41ebbe3b827d54280e3b9615787daaa"; - sha256 = "7342a670559cd296dba4b676607641a05d6203255951b17473ccdda4e35713d3"; + sha256 = "1lqkazis9pfcfdsb2lar4l1n4pd085v60xmnlkdrdllwamqachkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tango-2-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tango-2-theme"; sha256 = "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6"; name = "tango-2-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tango-2-theme"; + homepage = "https://melpa.org/#/tango-2-theme"; license = lib.licenses.free; }; }) {}; @@ -54778,13 +56926,13 @@ sha256 = "1gfn1yyyb9p2fi17wra1yf2j96cfjw0sifgk3c0vl63h3vmiyvjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tango-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tango-plus-theme"; sha256 = "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5"; name = "tango-plus-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tango-plus-theme"; + homepage = "https://melpa.org/#/tango-plus-theme"; license = lib.licenses.free; }; }) {}; @@ -54799,34 +56947,34 @@ sha256 = "11xb7xpmxvgv7mrjd2vlbjz3h5fa541aydv6bdxngjq6y3qn6wsp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tangotango-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tangotango-theme"; sha256 = "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2"; name = "tangotango-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tangotango-theme"; + homepage = "https://melpa.org/#/tangotango-theme"; license = lib.licenses.free; }; }) {}; tao-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tao-theme"; - version = "20151217.1040"; + version = "20160330.850"; src = fetchFromGitHub { owner = "11111000000"; repo = "tao-theme-emacs"; - rev = "48a69f5568b2d16496960aa92b312cd02be80ecc"; - sha256 = "1zhr6vrzf511mxrj4fkc9k8wfr1hixn733f5g28j4qzykr4zl2mh"; + rev = "d6879082413f38c36a1d7f76e1c4dead676ce2dc"; + sha256 = "0y9dd39wajiafh7kql870wg2da60nvls35pymhmzrvnwnbsw8pys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tao-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tao-theme"; sha256 = "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a"; name = "tao-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tao-theme"; + homepage = "https://melpa.org/#/tao-theme"; license = lib.licenses.free; }; }) {}; @@ -54841,13 +56989,13 @@ sha256 = "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tbx2org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tbx2org"; sha256 = "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8"; name = "tbx2org"; }; packageRequires = [ cl-lib dash s ]; meta = { - homepage = "http://melpa.org/#/tbx2org"; + homepage = "https://melpa.org/#/tbx2org"; license = lib.licenses.free; }; }) {}; @@ -54862,13 +57010,13 @@ sha256 = "1xpkrlfqb0np9zyxk41f3pxfkw98ii4q0xh8whq4llv5bmfxynzk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tc"; sha256 = "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s"; name = "tc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tc"; + homepage = "https://melpa.org/#/tc"; license = lib.licenses.free; }; }) {}; @@ -54883,13 +57031,13 @@ sha256 = "1krway6iw62dlr4ak3kj9llqh48xjf3d84nlincap7gkrw886l4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tco"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tco"; sha256 = "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f"; name = "tco"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/tco"; + homepage = "https://melpa.org/#/tco"; license = lib.licenses.free; }; }) {}; @@ -54904,13 +57052,13 @@ sha256 = "1jyz6z5bk1gvmknphcnvjvbl329zm8m40yl0a1hfaj8fvhwyzdw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tdd-status-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tdd-status-mode-line"; sha256 = "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq"; name = "tdd-status-mode-line"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tdd-status-mode-line"; + homepage = "https://melpa.org/#/tdd-status-mode-line"; license = lib.licenses.free; }; }) {}; @@ -54919,19 +57067,19 @@ pname = "tea-time"; version = "20120331.320"; src = fetchFromGitHub { - owner = "krick"; + owner = "konzeptual"; repo = "tea-time"; rev = "1f6cf0bdd27c5eb3508989c5095427781f858eca"; sha256 = "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tea-time"; - sha256 = "18fsbh78c5408zg5bk44gxdynp6kn8253xdg7ap2pr3mjknq9kld"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tea-time"; + sha256 = "0qypwf0pgsixq6c5avbwp81i3ayy9dd2fngzdvq14pax913q8pg1"; name = "tea-time"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tea-time"; + homepage = "https://melpa.org/#/tea-time"; license = lib.licenses.free; }; }) {}; @@ -54946,34 +57094,55 @@ sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/telepathy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/telepathy"; sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr"; name = "telepathy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/telepathy"; + homepage = "https://melpa.org/#/telepathy"; license = lib.licenses.free; }; }) {}; - telephone-line = callPackage ({ cl-lib ? null, eieio ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, seq }: + telephone-line = callPackage ({ cl-generic, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "telephone-line"; - version = "20151116.642"; + version = "20160302.1715"; src = fetchFromGitHub { owner = "dbordak"; repo = "telephone-line"; - rev = "0715ee7d156086098b375f3d93de2f50e76f3d75"; - sha256 = "0mg870s60by22ripxhqrgxjx16506n4llj9nnxlqgr4mdsi77cf5"; + rev = "32245b5e301c408354cb34cd22c7b25b7ab390d8"; + sha256 = "1m5224k1chb788mgj7j6cbma2xh5p7avvb1ax0jdafv5lfgikka4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/telephone-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/telephone-line"; sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3"; name = "telephone-line"; }; - packageRequires = [ cl-lib eieio emacs s seq ]; + packageRequires = [ cl-generic cl-lib emacs seq ]; meta = { - homepage = "http://melpa.org/#/telephone-line"; + homepage = "https://melpa.org/#/telephone-line"; + license = lib.licenses.free; + }; + }) {}; + ten-hundred-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ten-hundred-mode"; + version = "20160409.751"; + src = fetchFromGitHub { + owner = "aaron-em"; + repo = "ten-hundred-mode.el"; + rev = "fc1d7cdb72c21dc1953ed2e2ecf28233b8b3e305"; + sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ten-hundred-mode"; + sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3"; + name = "ten-hundred-mode"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/ten-hundred-mode"; license = lib.licenses.free; }; }) {}; @@ -54988,13 +57157,13 @@ sha256 = "0sa3chk16s830lqhcd8d3bwdfmjg239ywb7jm6lhwshydssh34nk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-alert"; sha256 = "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n"; name = "term-alert"; }; packageRequires = [ alert term-cmd ]; meta = { - homepage = "http://melpa.org/#/term-alert"; + homepage = "https://melpa.org/#/term-alert"; license = lib.licenses.free; }; }) {}; @@ -55009,34 +57178,34 @@ sha256 = "15fcl5amivjdcwprj3dwrkn17z8a0q0zl8smyryjcqpkw66xrb7i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-cmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-cmd"; sha256 = "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy"; name = "term-cmd"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/term-cmd"; + homepage = "https://melpa.org/#/term-cmd"; license = lib.licenses.free; }; }) {}; term-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "term-plus"; - version = "20130612.852"; + version = "20160404.555"; src = fetchFromGitHub { owner = "tarao"; repo = "term-plus-el"; - rev = "090807985673755720c5533b2fc684f88a3554ad"; - sha256 = "1ayr34smxf94c09ssdwl4hyhzgahsmbj7j4h25cdm6wcwii2br86"; + rev = "f4a8c3aa616f21fa0b4381874149db3cf4e3a360"; + sha256 = "0ca82vj61inn41xzk36a91g73gpg38nya4r9ajc2ldjqa5z1zdj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term+"; sha256 = "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8"; name = "term-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/term+"; + homepage = "https://melpa.org/#/term+"; license = lib.licenses.free; }; }) {}; @@ -55051,13 +57220,13 @@ sha256 = "1dql2w8xkdw52zlrc2p9x391zn8wv4dj8a6293p4s08if7gg260w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term+key-intercept"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term+key-intercept"; sha256 = "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb"; name = "term-plus-key-intercept"; }; packageRequires = [ key-intercept term-plus ]; meta = { - homepage = "http://melpa.org/#/term+key-intercept"; + homepage = "https://melpa.org/#/term+key-intercept"; license = lib.licenses.free; }; }) {}; @@ -55072,13 +57241,13 @@ sha256 = "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term+mux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term+mux"; sha256 = "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh"; name = "term-plus-mux"; }; packageRequires = [ tab-group term-plus ]; meta = { - homepage = "http://melpa.org/#/term+mux"; + homepage = "https://melpa.org/#/term+mux"; license = lib.licenses.free; }; }) {}; @@ -55093,13 +57262,13 @@ sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-run"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-run"; sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs"; name = "term-run"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/term-run"; + homepage = "https://melpa.org/#/term-run"; license = lib.licenses.free; }; }) {}; @@ -55114,34 +57283,34 @@ sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/termbright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/termbright-theme"; sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj"; name = "termbright-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/termbright-theme"; + homepage = "https://melpa.org/#/termbright-theme"; license = lib.licenses.free; }; }) {}; tern = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "tern"; - version = "20151228.711"; + version = "20160425.859"; src = fetchFromGitHub { - owner = "marijnh"; + owner = "ternjs"; repo = "tern"; - rev = "adf9dac372d3521a06d01d35fda254554c154e8b"; - sha256 = "0fxaibs7kizlxh73vlv7mn4wa8sxbx67gl17rcfhm14lnk63nvcw"; + rev = "2dcbf9bb143fe47631b3c20862643ec5b555c496"; + sha256 = "1ylwz7pxd63qafbvjwafxqgl9m4ri37q4yw4r9lsffhc1vrc8sy3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern"; - sha256 = "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern"; + sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd"; name = "tern"; }; packageRequires = [ cl-lib emacs json ]; meta = { - homepage = "http://melpa.org/#/tern"; + homepage = "https://melpa.org/#/tern"; license = lib.licenses.free; }; }) {}; @@ -55150,19 +57319,19 @@ pname = "tern-auto-complete"; version = "20151123.853"; src = fetchFromGitHub { - owner = "marijnh"; + owner = "ternjs"; repo = "tern"; - rev = "adf9dac372d3521a06d01d35fda254554c154e8b"; - sha256 = "0fxaibs7kizlxh73vlv7mn4wa8sxbx67gl17rcfhm14lnk63nvcw"; + rev = "2dcbf9bb143fe47631b3c20862643ec5b555c496"; + sha256 = "1ylwz7pxd63qafbvjwafxqgl9m4ri37q4yw4r9lsffhc1vrc8sy3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern-auto-complete"; - sha256 = "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern-auto-complete"; + sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26"; name = "tern-auto-complete"; }; packageRequires = [ auto-complete cl-lib emacs tern ]; meta = { - homepage = "http://melpa.org/#/tern-auto-complete"; + homepage = "https://melpa.org/#/tern-auto-complete"; license = lib.licenses.free; }; }) {}; @@ -55173,17 +57342,17 @@ src = fetchFromGitHub { owner = "proofit404"; repo = "tern-django"; - rev = "856fc98dc5e7cb4c8bc200f99150cc6187c82861"; - sha256 = "15jzqwfr1958s21qzimvv87kckqyq01bimqgawb51b6xi9ib3biv"; + rev = "b6a884609047ba49976d5bb6b150f17d3d956d5b"; + sha256 = "00nv6j18s6983raajfcrxfg5rfz68cgf88zrdp7fhf9l0iicim1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern-django"; sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0"; name = "tern-django"; }; packageRequires = [ emacs f tern ]; meta = { - homepage = "http://melpa.org/#/tern-django"; + homepage = "https://melpa.org/#/tern-django"; license = lib.licenses.free; }; }) {}; @@ -55198,13 +57367,13 @@ sha256 = "0mz2yl9jaw7chzv9d9hhv7gcvdwwvi676y9wpn7vp85hxpda7xg7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/terraform-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/terraform-mode"; sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn"; name = "terraform-mode"; }; packageRequires = [ cl-lib hcl-mode ]; meta = { - homepage = "http://melpa.org/#/terraform-mode"; + homepage = "https://melpa.org/#/terraform-mode"; license = lib.licenses.free; }; }) {}; @@ -55219,13 +57388,13 @@ sha256 = "1r3fmb8cshgh9pppdvydfcrzlmb9cgz4m04rgv69c5xv8clwcmbr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-case-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-case-mode"; sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi"; name = "test-case-mode"; }; packageRequires = [ fringe-helper ]; meta = { - homepage = "http://melpa.org/#/test-case-mode"; + homepage = "https://melpa.org/#/test-case-mode"; license = lib.licenses.free; }; }) {}; @@ -55240,34 +57409,34 @@ sha256 = "125k13sqgxk963c04zn49jidvzx0hl0s4vvc9jpffgq8aq0mnnmr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-kitchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-kitchen"; sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0"; name = "test-kitchen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/test-kitchen"; + homepage = "https://melpa.org/#/test-kitchen"; license = lib.licenses.free; }; }) {}; - test-simple = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + test-simple = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "test-simple"; - version = "20151110.2143"; + version = "20160303.236"; src = fetchFromGitHub { owner = "rocky"; repo = "emacs-test-simple"; - rev = "95e58b52ff36ed7c0c50e84dcf5458cb71c380dc"; - sha256 = "0h2g02r1spj8vbwgvjn3dddyj89j1qcqzdf2kdggvyyisssj81s3"; + rev = "e199434a2ba2e19f9854504bfb0cee22fcd03975"; + sha256 = "0i38pzqi2ih3ckfjz323d3bc3p8y9syfjr96im16wxrs1c77h814"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-simple"; sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g"; name = "test-simple"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/test-simple"; + homepage = "https://melpa.org/#/test-simple"; license = lib.licenses.free; }; }) {}; @@ -55282,13 +57451,13 @@ sha256 = "1qcd7vdg63q80zwz8ziaznllq1x7micmljm72s6sh3720rb5aiz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/textile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/textile-mode"; sha256 = "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf"; name = "textile-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/textile-mode"; + homepage = "https://melpa.org/#/textile-mode"; license = lib.licenses.free; }; }) {}; @@ -55303,34 +57472,34 @@ sha256 = "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/textmate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/textmate"; sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v"; name = "textmate"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/textmate"; + homepage = "https://melpa.org/#/textmate"; license = lib.licenses.free; }; }) {}; textmate-to-yas = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "textmate-to-yas"; - version = "20150914.746"; + version = "20160409.1208"; src = fetchFromGitHub { owner = "mattfidler"; repo = "textmate-to-yas.el"; - rev = "74cbf0877ab6391f920d2d7a588e363423d61227"; - sha256 = "1idhhfp0jhnykyms7dp3lfk6imddg6a315pfklbjpcys4y3fdz89"; + rev = "be3a768b7ac4c2e24b9d4aa6e9ac1d916cdc5a73"; + sha256 = "1bz5ys36wd00clq9w3ahqpras368aj2b9d4bl32qc6dyp8jfknmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/textmate-to-yas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/textmate-to-yas"; sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l"; name = "textmate-to-yas"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/textmate-to-yas"; + homepage = "https://melpa.org/#/textmate-to-yas"; license = lib.licenses.free; }; }) {}; @@ -55338,17 +57507,17 @@ pname = "tfs"; version = "20120508.1320"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/tfs.el"; + url = "https://www.emacswiki.org/emacs/download/tfs.el"; sha256 = "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tfs"; sha256 = "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0"; name = "tfs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tfs"; + homepage = "https://melpa.org/#/tfs"; license = lib.licenses.free; }; }) {}; @@ -55363,13 +57532,13 @@ sha256 = "0njmn5dy773v9kmwclw1m79rh52xnxl8mswcaagni2z3dvlvw4m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/theme-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/theme-changer"; sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w"; name = "theme-changer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/theme-changer"; + homepage = "https://melpa.org/#/theme-changer"; license = lib.licenses.free; }; }) {}; @@ -55384,13 +57553,13 @@ sha256 = "1kd4mazrcy5xamkvvrwsmcx63g0gp5w4264kxbk3d25bjqcf8rmj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/theme-looper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/theme-looper"; sha256 = "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5"; name = "theme-looper"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/theme-looper"; + homepage = "https://melpa.org/#/theme-looper"; license = lib.licenses.free; }; }) {}; @@ -55405,13 +57574,13 @@ sha256 = "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/therapy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/therapy"; sha256 = "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh"; name = "therapy"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/therapy"; + homepage = "https://melpa.org/#/therapy"; license = lib.licenses.free; }; }) {}; @@ -55419,17 +57588,17 @@ pname = "thesaurus"; version = "20121125.1337"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/thesaurus.el"; + url = "https://www.emacswiki.org/emacs/download/thesaurus.el"; sha256 = "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thesaurus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thesaurus"; sha256 = "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h"; name = "thesaurus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/thesaurus"; + homepage = "https://melpa.org/#/thesaurus"; license = lib.licenses.free; }; }) {}; @@ -55438,17 +57607,17 @@ pname = "thing-cmds"; version = "20151231.1809"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/thing-cmds.el"; + url = "https://www.emacswiki.org/emacs/download/thing-cmds.el"; sha256 = "1nclwxb63ffbc4wsga9ngkfcxsw88za0c4663fh9x64rl4db4hn8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thing-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thing-cmds"; sha256 = "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw"; name = "thing-cmds"; }; packageRequires = [ hide-comnt ]; meta = { - homepage = "http://melpa.org/#/thing-cmds"; + homepage = "https://melpa.org/#/thing-cmds"; license = lib.licenses.free; }; }) {}; @@ -55456,17 +57625,17 @@ pname = "thingatpt-plus"; version = "20151231.1810"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/thingatpt+.el"; + url = "https://www.emacswiki.org/emacs/download/thingatpt+.el"; sha256 = "0ijz0mj095wycpc3as5fiikrwazljk0c04rh089ch0mzc95g3vqq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thingatpt+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thingatpt+"; sha256 = "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa"; name = "thingatpt-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/thingatpt+"; + homepage = "https://melpa.org/#/thingatpt+"; license = lib.licenses.free; }; }) {}; @@ -55481,13 +57650,13 @@ sha256 = "0imzrb3vqnm36illqnpfc6x7rbq9rrrlpcw9n2yzl4n309mqdwr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thingopt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thingopt"; sha256 = "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y"; name = "thingopt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/thingopt"; + homepage = "https://melpa.org/#/thingopt"; license = lib.licenses.free; }; }) {}; @@ -55502,13 +57671,13 @@ sha256 = "0rjcrvw9v2y10ahycra53bwbccpwqxxwn2c21wjj1kfs0kdwhs9p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thread-dump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thread-dump"; sha256 = "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2"; name = "thread-dump"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/thread-dump"; + homepage = "https://melpa.org/#/thread-dump"; license = lib.licenses.free; }; }) {}; @@ -55519,17 +57688,17 @@ src = fetchFromGitHub { owner = "apache"; repo = "thrift"; - rev = "33de26cf658450513ef5731ac55b635addb4d43d"; - sha256 = "1893s2sn6gmyd4s8slzh3hc6rffh6x17wvhlgfm4xlgzk4wyd1rj"; + rev = "e363a34e63e851f17061a912a77e75a8ed8474bc"; + sha256 = "0zg907qfj26qiv5l9ab24vssr1449s9l5y6ib0dzx1rhnjx1sdpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thrift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thrift"; sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9"; name = "thrift"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/thrift"; + homepage = "https://melpa.org/#/thrift"; license = lib.licenses.free; }; }) {}; @@ -55538,17 +57707,17 @@ pname = "thumb-frm"; version = "20151231.1812"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/thumb-frm.el"; + url = "https://www.emacswiki.org/emacs/download/thumb-frm.el"; sha256 = "0nyp1sp55l3mlhlxw8kyp6hxan3rbgwc4fmfs174n6hlj3zr5vg8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thumb-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thumb-frm"; sha256 = "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c"; name = "thumb-frm"; }; packageRequires = [ frame-cmds frame-fns ]; meta = { - homepage = "http://melpa.org/#/thumb-frm"; + homepage = "https://melpa.org/#/thumb-frm"; license = lib.licenses.free; }; }) {}; @@ -55557,40 +57726,40 @@ pname = "thumb-through"; version = "20120118.2334"; src = fetchFromGitHub { - owner = "apgwoz"; + owner = "apg"; repo = "thumb-through"; rev = "08d8fb720f93c6172653e035191a8fa9c3305e63"; sha256 = "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thumb-through"; - sha256 = "1krn7zn2y8p51m8dxai5nbrwbdviz6zrjzz0kykya9cqz4n9dhln"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thumb-through"; + sha256 = "1544xw9lar199idk135z4d6i3n9w0v7g2bq7fnz0rjjw10kxvpcx"; name = "thumb-through"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/thumb-through"; + homepage = "https://melpa.org/#/thumb-through"; license = lib.licenses.free; }; }) {}; tide = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, typescript-mode }: melpaBuild { pname = "tide"; - version = "20160221.142"; + version = "20160425.803"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "tide"; - rev = "20e4748f2fa002b4cd53caf426b52734e51254c1"; - sha256 = "1g530aq7vflnpigw7cii9z86263kxjv6f78dyiy7zvab6rzc9vyh"; + rev = "31d6b1ac1b6139461623aab7834935d984c13d77"; + sha256 = "0rc922v96gv62zg3ryf6ihca84b6bkrdc4fks32vdrxfnaz8npx2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tide"; sha256 = "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1"; name = "tide"; }; packageRequires = [ dash emacs flycheck typescript-mode ]; meta = { - homepage = "http://melpa.org/#/tide"; + homepage = "https://melpa.org/#/tide"; license = lib.licenses.free; }; }) {}; @@ -55598,17 +57767,17 @@ pname = "tidy"; version = "20111222.1156"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/tidy.el"; + url = "https://www.emacswiki.org/emacs/download/tidy.el"; sha256 = "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tidy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tidy"; sha256 = "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m"; name = "tidy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tidy"; + homepage = "https://melpa.org/#/tidy"; license = lib.licenses.free; }; }) {}; @@ -55616,17 +57785,17 @@ pname = "time-ext"; version = "20130130.1551"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/time-ext.el"; + url = "https://www.emacswiki.org/emacs/download/time-ext.el"; sha256 = "0kxgzjwgd979aypjak07k8ss6hnm3x9f96z1rz2zsz2i3vvh6sqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/time-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/time-ext"; sha256 = "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk"; name = "time-ext"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/time-ext"; + homepage = "https://melpa.org/#/time-ext"; license = lib.licenses.free; }; }) {}; @@ -55641,13 +57810,13 @@ sha256 = "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/timer-revert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/timer-revert"; sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy"; name = "timer-revert"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/timer-revert"; + homepage = "https://melpa.org/#/timer-revert"; license = lib.licenses.free; }; }) {}; @@ -55662,13 +57831,13 @@ sha256 = "1ghvnmswq6rg17pjnys58mak6crfcvv1vb6q7spagq143y2ar24z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/timesheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/timesheet"; sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506"; name = "timesheet"; }; packageRequires = [ auctex org s ]; meta = { - homepage = "http://melpa.org/#/timesheet"; + homepage = "https://melpa.org/#/timesheet"; license = lib.licenses.free; }; }) {}; @@ -55683,13 +57852,13 @@ sha256 = "0rf177kr0qfhg8g5xrpi405dhp2va1yk170zm3f8hghi2575ciy2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tinkerer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tinkerer"; sha256 = "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd"; name = "tinkerer"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/tinkerer"; + homepage = "https://melpa.org/#/tinkerer"; license = lib.licenses.free; }; }) {}; @@ -55704,13 +57873,13 @@ sha256 = "0mmz8b0fzffybc2jws9fif982zfx0l6kn1l4qxc67mf9nafbdca3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tiny"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tiny"; sha256 = "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy"; name = "tiny"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tiny"; + homepage = "https://melpa.org/#/tiny"; license = lib.licenses.free; }; }) {}; @@ -55725,13 +57894,13 @@ sha256 = "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tinysegmenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tinysegmenter"; sha256 = "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6"; name = "tinysegmenter"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/tinysegmenter"; + homepage = "https://melpa.org/#/tinysegmenter"; license = lib.licenses.free; }; }) {}; @@ -55746,74 +57915,76 @@ sha256 = "1zvykanmn065rlk9hlv85vary1l6y52bsnaa51fkpckpr6dicmcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tj-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tj-mode"; sha256 = "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf"; name = "tj-mode"; }; packageRequires = [ emacs js2-mode tern ]; meta = { - homepage = "http://melpa.org/#/tj-mode"; + homepage = "https://melpa.org/#/tj-mode"; license = lib.licenses.free; }; }) {}; tldr = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tldr"; - version = "20160221.811"; + version = "20160312.808"; src = fetchFromGitHub { owner = "kuanyui"; repo = "tldr.el"; - rev = "79e1e37214d5a8cce829eec3db43154fb78cf2ff"; - sha256 = "1bkv3wm8nfn1pa6v9s79ckv7pn8g2fdd43vac4mfii94wmvz0zaj"; + rev = "f5e093349ebccc0355acf6f591ba9bc6076a7639"; + sha256 = "0z94m84q7j35dffpnbz1yh6axd6c787hj358bkq2qk0irsvh5n79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tldr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tldr"; sha256 = "1f1xsmkbf4j1c876qqr9h8fgx3zxjgdfzvzf6capxlx2svhxzvc9"; name = "tldr"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/tldr"; + homepage = "https://melpa.org/#/tldr"; license = lib.licenses.free; }; }) {}; - tmmofl = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { + tmmofl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "tmmofl"; version = "20121025.601"; - src = fetchhg { - url = "https://code.google.com/p/phillord-emacs-packages/"; - rev = "e14e67d6a5b7"; - sha256 = "0pq9x73hrp7qwhms7x3dvjfh9imapglba9yd7nkyw68mc0b9wlnl"; + src = fetchFromGitHub { + owner = "phillord"; + repo = "tmmofl"; + rev = "532aa6978e994e2b069ffe37aaf9a0011a07dadc"; + sha256 = "1ypbv9jbdnwv3xjsfzq8i3nmqdvziynv2rqsd6fm2r1xw0q06xd6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tmmofl"; - sha256 = "1hqv2xqnhwnbj4sqcbdial4987yj1y3ry7niaaz2hh0f5qzrzwa8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tmmofl"; + sha256 = "1idflc5ky8hwdkps1rihdqy3i6cmhrh83sxz3kgf2kqjh365yr8b"; name = "tmmofl"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tmmofl"; + homepage = "https://melpa.org/#/tmmofl"; license = lib.licenses.free; }; }) {}; toc-org = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toc-org"; - version = "20150921.905"; + version = "20160422.805"; src = fetchFromGitHub { owner = "snosov1"; repo = "toc-org"; - rev = "72883a08b01d08b74cc03c565eac8d0422770fcf"; - sha256 = "0gzv45yxjy0bkdnx9kki0svmc7gxrdaarblvi1pyvl7id31ssw70"; + rev = "114dcc9813e2d8784b8c21165c95408c1b26d86e"; + sha256 = "084nqdrpzgg1qpbqgvi893iglmz9dk3r0vwqxjkyxa3z3a0f5v17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toc-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toc-org"; sha256 = "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs"; name = "toc-org"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/toc-org"; + homepage = "https://melpa.org/#/toc-org"; license = lib.licenses.free; }; }) {}; @@ -55821,17 +57992,17 @@ pname = "todochiku"; version = "20150112.1454"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/todochiku.el"; + url = "https://www.emacswiki.org/emacs/download/todochiku.el"; sha256 = "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/todochiku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/todochiku"; sha256 = "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96"; name = "todochiku"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/todochiku"; + homepage = "https://melpa.org/#/todochiku"; license = lib.licenses.free; }; }) {}; @@ -55846,13 +58017,13 @@ sha256 = "0ms4mapjg9mbpmcmpn68r0mhwaibwfr4v25sin74b2281h4q7gal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/todotxt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/todotxt"; sha256 = "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr"; name = "todotxt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/todotxt"; + homepage = "https://melpa.org/#/todotxt"; license = lib.licenses.free; }; }) {}; @@ -55867,13 +58038,13 @@ sha256 = "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/todotxt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/todotxt-mode"; sha256 = "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k"; name = "todotxt-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/todotxt-mode"; + homepage = "https://melpa.org/#/todotxt-mode"; license = lib.licenses.free; }; }) {}; @@ -55888,34 +58059,34 @@ sha256 = "1falf86mm2206szkkwiwa5yk65y12asv84j1pdbcy6n8y6hha796"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/togetherly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/togetherly"; sha256 = "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f"; name = "togetherly"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/togetherly"; + homepage = "https://melpa.org/#/togetherly"; license = lib.licenses.free; }; }) {}; - toggle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + toggle = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toggle"; - version = "20151210.1727"; + version = "20160331.300"; src = fetchFromGitHub { owner = "zenspider"; repo = "elisp"; - rev = "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36"; - sha256 = "109il2s5ynfam510yli4xmi5zgw7xhr5gv096li24idqdp0gpf9n"; + rev = "df58c83a5f1e0b9889858407eae0e383bd759473"; + sha256 = "184ghdi2m4hagddi71c1pmc408fad1cmw0q2n4k737w6j8537hph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toggle"; sha256 = "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq"; name = "toggle"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/toggle"; + homepage = "https://melpa.org/#/toggle"; license = lib.licenses.free; }; }) {}; @@ -55930,13 +58101,13 @@ sha256 = "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toggle-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toggle-quotes"; sha256 = "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp"; name = "toggle-quotes"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/toggle-quotes"; + homepage = "https://melpa.org/#/toggle-quotes"; license = lib.licenses.free; }; }) {}; @@ -55951,13 +58122,13 @@ sha256 = "0sgaslqxj806byidh06h5pqmqz8jzjfz9ky8jvkif3cq3a479jby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toggle-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toggle-test"; sha256 = "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1"; name = "toggle-test"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/toggle-test"; + homepage = "https://melpa.org/#/toggle-test"; license = lib.licenses.free; }; }) {}; @@ -55972,13 +58143,13 @@ sha256 = "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toggle-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toggle-window"; sha256 = "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g"; name = "toggle-window"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/toggle-window"; + homepage = "https://melpa.org/#/toggle-window"; license = lib.licenses.free; }; }) {}; @@ -55993,13 +58164,13 @@ sha256 = "0a3zvhy3jxs88zk4nhdc7lzybz4qji9baw5gm88sxlgcjgn7ip6n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tomatinho"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tomatinho"; sha256 = "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz"; name = "tomatinho"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tomatinho"; + homepage = "https://melpa.org/#/tomatinho"; license = lib.licenses.free; }; }) {}; @@ -56014,13 +58185,13 @@ sha256 = "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toml"; sha256 = "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b"; name = "toml"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/toml"; + homepage = "https://melpa.org/#/toml"; license = lib.licenses.free; }; }) {}; @@ -56035,13 +58206,13 @@ sha256 = "1w9vkh6c4g80zykcy77k3r0bdc99mq8yh58bqkyd6gsr7pnp16gj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toml-mode"; sha256 = "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l"; name = "toml-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/toml-mode"; + homepage = "https://melpa.org/#/toml-mode"; license = lib.licenses.free; }; }) {}; @@ -56056,13 +58227,13 @@ sha256 = "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tommyh-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tommyh-theme"; sha256 = "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4"; name = "tommyh-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tommyh-theme"; + homepage = "https://melpa.org/#/tommyh-theme"; license = lib.licenses.free; }; }) {}; @@ -56070,17 +58241,17 @@ pname = "tool-bar-plus"; version = "20151231.1815"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/tool-bar+.el"; + url = "https://www.emacswiki.org/emacs/download/tool-bar+.el"; sha256 = "1sqflxj3hzxdlwn5qmpqm4dwik5vsyp7lypkvshcghdplxymb38a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tool-bar+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tool-bar+"; sha256 = "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d"; name = "tool-bar-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tool-bar+"; + homepage = "https://melpa.org/#/tool-bar+"; license = lib.licenses.free; }; }) {}; @@ -56088,17 +58259,17 @@ pname = "top-mode"; version = "20130605.1239"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/top-mode.el"; + url = "https://www.emacswiki.org/emacs/download/top-mode.el"; sha256 = "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/top-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/top-mode"; sha256 = "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx"; name = "top-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/top-mode"; + homepage = "https://melpa.org/#/top-mode"; license = lib.licenses.free; }; }) {}; @@ -56113,13 +58284,13 @@ sha256 = "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tornado-template-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tornado-template-mode"; sha256 = "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h"; name = "tornado-template-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tornado-template-mode"; + homepage = "https://melpa.org/#/tornado-template-mode"; license = lib.licenses.free; }; }) {}; @@ -56134,13 +58305,13 @@ sha256 = "188cdgic25wrb4jdgdcj070a0pxsh3m0rd9d2r6i1s1n1nalrs6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/totd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/totd"; sha256 = "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0"; name = "totd"; }; packageRequires = [ cl-lib s ]; meta = { - homepage = "http://melpa.org/#/totd"; + homepage = "https://melpa.org/#/totd"; license = lib.licenses.free; }; }) {}; @@ -56155,33 +58326,33 @@ sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tox"; sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl"; name = "tox"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tox"; + homepage = "https://melpa.org/#/tox"; license = lib.licenses.free; }; }) {}; toxi-theme = callPackage ({ emacs, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toxi-theme"; - version = "20130418.1439"; + version = "20160424.1626"; src = fetchhg { url = "https://bitbucket.com/postspectacular/toxi-theme"; - rev = "fc4274055149"; - sha256 = "0hfzbrw9ik3yxdwmgsm80k0n045z6az6pgvxc1nqcjmiwh80h9mk"; + rev = "b322fc7497a5"; + sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/toxi-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toxi-theme"; sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd"; name = "toxi-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/toxi-theme"; + homepage = "https://melpa.org/#/toxi-theme"; license = lib.licenses.free; }; }) {}; @@ -56196,7 +58367,7 @@ sha256 = "1yh9dxf986dl74sgn71qxwxsg67lr0yg1z7b9h2254lmxq0mgni6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/traad"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/traad"; sha256 = "08gxh5c01xfbbj9g4992jah494rw3d3bbs8j79r3mpqxllkp2znf"; name = "traad"; }; @@ -56208,7 +58379,7 @@ request-deferred ]; meta = { - homepage = "http://melpa.org/#/traad"; + homepage = "https://melpa.org/#/traad"; license = lib.licenses.free; }; }) {}; @@ -56219,17 +58390,17 @@ src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "ca3e957f41e47afa05f73962c1ad72f401666384"; - sha256 = "0gwkm8c9g501g80rvqlzmn24q4ylkb94bklsf173yiinqmz1jhkc"; + rev = "fed52c2b4b49f75aec3e3238ceacf44ef0c75b5c"; + sha256 = "1wh3kwya2hpmaaj0c18g2las7jq0vkkik4n0q6whpch3r7ak6k8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tracking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tracking"; sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z"; name = "tracking"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tracking"; + homepage = "https://melpa.org/#/tracking"; license = lib.licenses.free; }; }) {}; @@ -56244,13 +58415,13 @@ sha256 = "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tracwiki-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tracwiki-mode"; sha256 = "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0"; name = "tracwiki-mode"; }; packageRequires = [ xml-rpc ]; meta = { - homepage = "http://melpa.org/#/tracwiki-mode"; + homepage = "https://melpa.org/#/tracwiki-mode"; license = lib.licenses.free; }; }) {}; @@ -56261,17 +58432,17 @@ src = fetchFromGitHub { owner = "raghavgautam"; repo = "tramp-hdfs"; - rev = "4a3ccaf931ecffeae283cb1766425afbc0f81101"; - sha256 = "057a3z42j4s0npl35p5rl6n767s2wq0a3c49wii3f1w8p40fh7qc"; + rev = "82683b45eabc09f327ea45a9e8faba0524eada29"; + sha256 = "0llzfn9y3yyz2wwdbv8whx8vy2lazbnww6hjj0r621gkfxjml7wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tramp-hdfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tramp-hdfs"; sha256 = "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b"; name = "tramp-hdfs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tramp-hdfs"; + homepage = "https://melpa.org/#/tramp-hdfs"; license = lib.licenses.free; }; }) {}; @@ -56286,52 +58457,55 @@ sha256 = "0cgx6h9a49qj7x6bgsnsa20hi1yj5k080x4x0jpn6l9bj5nqiaip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tramp-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tramp-term"; sha256 = "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy"; name = "tramp-term"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tramp-term"; + homepage = "https://melpa.org/#/tramp-term"; license = lib.licenses.free; }; }) {}; transmission = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "transmission"; - version = "20160215.2255"; + version = "20160419.2151"; src = fetchFromGitHub { owner = "holomorph"; repo = "transmission"; - rev = "1c6f3ca3f07d8364f7514e27f5808d97cf984854"; - sha256 = "05cq0gbhfrd91fd625hq2qyk5dpjzc1jgph80slm7b6c45vdll4l"; + rev = "a236ac0fba69e53f8b38608a0e5659e6190a08b0"; + sha256 = "109s5rk1793vqyj2qz84cqw1k23avkl0gjbzy72ygdiim9xwvm6z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/transmission"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/transmission"; sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9"; name = "transmission"; }; packageRequires = [ emacs let-alist ]; meta = { - homepage = "http://melpa.org/#/transmission"; + homepage = "https://melpa.org/#/transmission"; license = lib.licenses.free; }; }) {}; - transpose-frame = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + transpose-frame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "transpose-frame"; - version = "20151126.826"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/transpose-frame.el"; - sha256 = "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"; + version = "20140827.1406"; + src = fetchFromGitHub { + owner = "pyluyten"; + repo = "emacs-nu"; + rev = "e2b509a9b631e98f6feabdc783c01a6b57d05fc2"; + sha256 = "0nbmpnljl0wdkwmxzg6lqd3mand9w043qmwp727hb84gxy0j4dib"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/transpose-frame"; - sha256 = "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/transpose-frame"; + sha256 = "14zb9xvv4jcawihs6qh36n3xdh45il5ry8pq6hcrk9qsa0icvh28"; name = "transpose-frame"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/transpose-frame"; + homepage = "https://melpa.org/#/transpose-frame"; license = lib.licenses.free; }; }) {}; @@ -56346,13 +58520,13 @@ sha256 = "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/transpose-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/transpose-mark"; sha256 = "1q1icp1szm1bxz9ywwyrfbsm1wmx0h4cvzywrh9q0fj1fq387qvv"; name = "transpose-mark"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/transpose-mark"; + homepage = "https://melpa.org/#/transpose-mark"; license = lib.licenses.free; }; }) {}; @@ -56367,13 +58541,13 @@ sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/travis"; sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix"; name = "travis"; }; packageRequires = [ dash pkg-info request s ]; meta = { - homepage = "http://melpa.org/#/travis"; + homepage = "https://melpa.org/#/travis"; license = lib.licenses.free; }; }) {}; @@ -56381,17 +58555,17 @@ pname = "tree-mode"; version = "20151104.731"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/tree-mode.el"; + url = "https://www.emacswiki.org/emacs/download/tree-mode.el"; sha256 = "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tree-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tree-mode"; sha256 = "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24"; name = "tree-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tree-mode"; + homepage = "https://melpa.org/#/tree-mode"; license = lib.licenses.free; }; }) {}; @@ -56406,13 +58580,13 @@ sha256 = "08484fhc69rk16g52f9bzc1kzpif61ddfchxjbj1qqqammbx11ym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/trident-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/trident-mode"; sha256 = "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd"; name = "trident-mode"; }; packageRequires = [ dash emacs skewer-mode slime ]; meta = { - homepage = "http://melpa.org/#/trident-mode"; + homepage = "https://melpa.org/#/trident-mode"; license = lib.licenses.free; }; }) {}; @@ -56427,13 +58601,13 @@ sha256 = "06wm3qwxjhzwjn9nnrqm5wwj1z5gfghg9d2qbg8w3zyqzva5dmvm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tronesque-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tronesque-theme"; sha256 = "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j"; name = "tronesque-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tronesque-theme"; + homepage = "https://melpa.org/#/tronesque-theme"; license = lib.licenses.free; }; }) {}; @@ -56448,34 +58622,34 @@ sha256 = "1mm6rrprsmx4hc622qmllm7c81yhwbqmdr0n6020krq92zmilmlm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/truthy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/truthy"; sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg"; name = "truthy"; }; packageRequires = [ list-utils ]; meta = { - homepage = "http://melpa.org/#/truthy"; + homepage = "https://melpa.org/#/truthy"; license = lib.licenses.free; }; }) {}; try = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "try"; - version = "20160204.1255"; + version = "20160226.930"; src = fetchFromGitHub { owner = "larstvei"; repo = "Try"; - rev = "d50b4b5550cae33910f9ff4ee6586599830d2fe2"; - sha256 = "1i2bw3d834ibk3aj16rcs8g81r7n5qa37g8k7lgpl255mfpyfzlq"; + rev = "f5a930105e81826682cd71ff3f23e5fcb5502e30"; + sha256 = "0gvwavsq9s4a75qz7xq9wl219fnzz085zjqpnrxxgmaqbi9m8l7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/try"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/try"; sha256 = "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n"; name = "try"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/try"; + homepage = "https://melpa.org/#/try"; license = lib.licenses.free; }; }) {}; @@ -56490,13 +58664,13 @@ sha256 = "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tss"; sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm"; name = "tss"; }; packageRequires = [ auto-complete json-mode log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/tss"; + homepage = "https://melpa.org/#/tss"; license = lib.licenses.free; }; }) {}; @@ -56511,13 +58685,13 @@ sha256 = "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tt-mode"; sha256 = "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf"; name = "tt-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tt-mode"; + homepage = "https://melpa.org/#/tt-mode"; license = lib.licenses.free; }; }) {}; @@ -56532,34 +58706,34 @@ sha256 = "0a8f9p1im6k7mnp2bq733rfx2x246gfwpvi5ccym1y5lakx37fil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ttrss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ttrss"; sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z"; name = "ttrss"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ttrss"; + homepage = "https://melpa.org/#/ttrss"; license = lib.licenses.free; }; }) {}; tuareg = callPackage ({ caml, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tuareg"; - version = "20160105.1224"; + version = "20160408.1331"; src = fetchFromGitHub { owner = "ocaml"; repo = "tuareg"; - rev = "8c3f604ad3b393403baaa93fc53898217e675ab8"; - sha256 = "0knp7nbzhzahkn97zs2aw0ly7x40cbh8m5xb4rk1ynw0n09zq3d0"; + rev = "f1eb7b500e892662a970ecdaf592c33949e43ba7"; + sha256 = "0hscvsdp25aw7h4x8kq1ws72zx08bs2kw1s6axsi5576cl4d5yvg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tuareg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tuareg"; sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q"; name = "tuareg"; }; packageRequires = [ caml ]; meta = { - homepage = "http://melpa.org/#/tuareg"; + homepage = "https://melpa.org/#/tuareg"; license = lib.licenses.free; }; }) {}; @@ -56574,13 +58748,13 @@ sha256 = "1xdkgvr1pnlg3nrjmma4ra80ysr8xbslvczg7cq1x1mqw6gn9xq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tumble"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tumble"; sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9"; name = "tumble"; }; packageRequires = [ cl-lib http-post-simple ]; meta = { - homepage = "http://melpa.org/#/tumble"; + homepage = "https://melpa.org/#/tumble"; license = lib.licenses.free; }; }) {}; @@ -56595,13 +58769,13 @@ sha256 = "1g7y7czan7mcs5lwc5r6cllgksrj3b9lpn1bj7khwkd1ll391jc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tumblesocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tumblesocks"; sha256 = "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9"; name = "tumblesocks"; }; packageRequires = [ htmlize markdown-mode oauth ]; meta = { - homepage = "http://melpa.org/#/tumblesocks"; + homepage = "https://melpa.org/#/tumblesocks"; license = lib.licenses.free; }; }) {}; @@ -56616,13 +58790,34 @@ sha256 = "0y1b9zvwbw3vp41siyzj04bis939fgz3j27hc5ljjzy92kd39nzm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tup-mode"; sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l"; name = "tup-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tup-mode"; + homepage = "https://melpa.org/#/tup-mode"; + license = lib.licenses.free; + }; + }) {}; + turkish = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "turkish"; + version = "20160324.523"; + src = fetchFromGitHub { + owner = "emres"; + repo = "turkish-mode"; + rev = "237b696e2f513149f1a77ef58b5ba7d44b6f4661"; + sha256 = "1jb6par116mm5l4z27wk6m2sfh6j9nmgrya352sdagcvjbcpnzcl"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/turkish"; + sha256 = "0pdapxjbpj3lg3hxvwjn9v51jqaiz7a8053z2bmk4485vzs34532"; + name = "turkish"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/turkish"; license = lib.licenses.free; }; }) {}; @@ -56637,13 +58832,13 @@ sha256 = "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/turnip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/turnip"; sha256 = "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps"; name = "turnip"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/turnip"; + homepage = "https://melpa.org/#/turnip"; license = lib.licenses.free; }; }) {}; @@ -56658,13 +58853,13 @@ sha256 = "0wvmih2y3hy7casxx2y1w8csmzfnfgbb5ivpggr94sc86p6bg8sa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twig-mode"; sha256 = "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n"; name = "twig-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/twig-mode"; + homepage = "https://melpa.org/#/twig-mode"; license = lib.licenses.free; }; }) {}; @@ -56679,13 +58874,13 @@ sha256 = "1bj2mpiklqcangjzbnz5wz7klsfvp0x397lidvf42awn7s2aax0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twilight-anti-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twilight-anti-bright-theme"; sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9"; name = "twilight-anti-bright-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/twilight-anti-bright-theme"; + homepage = "https://melpa.org/#/twilight-anti-bright-theme"; license = lib.licenses.free; }; }) {}; @@ -56700,13 +58895,13 @@ sha256 = "1awqc4rvg8693myynb1d4y4dfdaxkd5blnixxs3mdv81l07zyn8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twilight-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twilight-bright-theme"; sha256 = "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d"; name = "twilight-bright-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/twilight-bright-theme"; + homepage = "https://melpa.org/#/twilight-bright-theme"; license = lib.licenses.free; }; }) {}; @@ -56721,34 +58916,34 @@ sha256 = "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twilight-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twilight-theme"; sha256 = "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7"; name = "twilight-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/twilight-theme"; + homepage = "https://melpa.org/#/twilight-theme"; license = lib.licenses.free; }; }) {}; twittering-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twittering-mode"; - version = "20160207.356"; + version = "20160313.1136"; src = fetchFromGitHub { owner = "hayamiz"; repo = "twittering-mode"; - rev = "17c2c0dacea31c81b03d1f27bce6aa6f0d327cca"; - sha256 = "0kg27nl9lg6zrx18glkwbgfxbclzw5fmvhldkkbs388ghp53mxar"; + rev = "7c67fe66e7ccaf2ca6021ecc12dc0d2036ee2f60"; + sha256 = "1dk2s16p33fjx29la1zg35ax1mmwmrl33ww9qmg88ssxfcdj2jr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twittering-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twittering-mode"; sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1"; name = "twittering-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/twittering-mode"; + homepage = "https://melpa.org/#/twittering-mode"; license = lib.licenses.free; }; }) {}; @@ -56763,13 +58958,13 @@ sha256 = "1i826xq77nh4s7qlj63r2iznbn319l1l3fzpbjb2nj0m00bwvxl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typed-clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typed-clojure-mode"; sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3"; name = "typed-clojure-mode"; }; packageRequires = [ cider clojure-mode ]; meta = { - homepage = "http://melpa.org/#/typed-clojure-mode"; + homepage = "https://melpa.org/#/typed-clojure-mode"; license = lib.licenses.free; }; }) {}; @@ -56784,13 +58979,13 @@ sha256 = "17q7f433x8i484scwdbfsd0vh8lshzkwjlarhqw6ic53mzakgjiq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typescript-mode"; sha256 = "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha"; name = "typescript-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/typescript-mode"; + homepage = "https://melpa.org/#/typescript-mode"; license = lib.licenses.free; }; }) {}; @@ -56798,38 +58993,59 @@ pname = "typing"; version = "20121026.1618"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/typing.el"; + url = "https://www.emacswiki.org/emacs/download/typing.el"; sha256 = "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typing"; sha256 = "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3"; name = "typing"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/typing"; + homepage = "https://melpa.org/#/typing"; license = lib.licenses.free; }; }) {}; typing-game = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "typing-game"; - version = "20151111.940"; + version = "20160426.720"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-typing-game"; - rev = "b58c19a4a14895cc24ce01a73cf624b5c54a12b8"; - sha256 = "0i5pipciwsl6cj3inxiz6ybkv5jglacjwhcyqdfzi4mrbic7g848"; + rev = "616435a5270274f4c7b698697674dbb2039049a4"; + sha256 = "0dkrnn9fzqv793wvd3nc7dbslayj37q5na1w1g63g32z2s8aq09j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typing-game"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typing-game"; sha256 = "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2"; name = "typing-game"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/typing-game"; + homepage = "https://melpa.org/#/typing-game"; + license = lib.licenses.free; + }; + }) {}; + typit = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, mmt }: + melpaBuild { + pname = "typit"; + version = "20160407.749"; + src = fetchFromGitHub { + owner = "mrkkrp"; + repo = "typit"; + rev = "cd64e87af2621fff8b943f494c9bcd7ed46def2e"; + sha256 = "0jfyfwg9548ba5lvy9dvs459b9fm90w9k8s6pbqnnnks964jrhg9"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typit"; + sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n"; + name = "typit"; + }; + packageRequires = [ emacs f mmt ]; + meta = { + homepage = "https://melpa.org/#/typit"; license = lib.licenses.free; }; }) {}; @@ -56844,13 +59060,13 @@ sha256 = "0bn1bvs334wb64bli9h613zf1vzjyi0pz8bgyq1wy12qmbwwmfwk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typo"; sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx"; name = "typo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/typo"; + homepage = "https://melpa.org/#/typo"; license = lib.licenses.free; }; }) {}; @@ -56865,13 +59081,13 @@ sha256 = "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ubuntu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ubuntu-theme"; sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2"; name = "ubuntu-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ubuntu-theme"; + homepage = "https://melpa.org/#/ubuntu-theme"; license = lib.licenses.free; }; }) {}; @@ -56879,17 +59095,17 @@ pname = "ucs-cmds"; version = "20151231.1816"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/ucs-cmds.el"; + url = "https://www.emacswiki.org/emacs/download/ucs-cmds.el"; sha256 = "0qy211rxrmzhwl9qfrcmfnwayysvb5rghjginbvx3wf2s6hrbpya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ucs-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ucs-cmds"; sha256 = "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1"; name = "ucs-cmds"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ucs-cmds"; + homepage = "https://melpa.org/#/ucs-cmds"; license = lib.licenses.free; }; }) {}; @@ -56904,55 +59120,55 @@ sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ucs-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ucs-utils"; sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2"; name = "ucs-utils"; }; packageRequires = [ list-utils pcache persistent-soft ]; meta = { - homepage = "http://melpa.org/#/ucs-utils"; + homepage = "https://melpa.org/#/ucs-utils"; license = lib.licenses.free; }; }) {}; uimage = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "uimage"; - version = "20151012.804"; + version = "20160426.726"; src = fetchFromGitHub { owner = "lujun9972"; repo = "uimage"; - rev = "29ca0f4b9f27a8d1649931cc2ce5a3c0eb655413"; - sha256 = "19qvn1vzal5k86pqn6a4ins869qmp2i586qqbl97z84szn8mn7j3"; + rev = "0fdcf6622bcb6c683f1910a73c4fdf071e627d21"; + sha256 = "13zznakgqyy3hw385f6w40rz4agxz6fmgaxzgmrz3kjpn19bc2fa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uimage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uimage"; sha256 = "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd"; name = "uimage"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/uimage"; + homepage = "https://melpa.org/#/uimage"; license = lib.licenses.free; }; }) {}; ujelly-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ujelly-theme"; - version = "20150807.2336"; + version = "20160409.453"; src = fetchFromGitHub { owner = "marktran"; repo = "color-theme-ujelly"; - rev = "ff4b9fb4a9469cd807ed712e05cf739a1a900218"; - sha256 = "0cryprvns1qdnp2qif2g187lj15810w472m7nwrfiwgvqv4v3p1l"; + rev = "12eb073ef0a9f32d8234805ee5e6c8e5762a201d"; + sha256 = "1j2zrvgjvhwqjam49bbppazvzfc97w1a8jil28lrxdrg4f41rvv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ujelly-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ujelly-theme"; sha256 = "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw"; name = "ujelly-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ujelly-theme"; + homepage = "https://melpa.org/#/ujelly-theme"; license = lib.licenses.free; }; }) {}; @@ -56967,13 +59183,13 @@ sha256 = "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ukrainian-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ukrainian-holidays"; sha256 = "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf"; name = "ukrainian-holidays"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ukrainian-holidays"; + homepage = "https://melpa.org/#/ukrainian-holidays"; license = lib.licenses.free; }; }) {}; @@ -56981,17 +59197,17 @@ pname = "unbound"; version = "20140307.328"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/unbound.el"; + url = "https://www.emacswiki.org/emacs/download/unbound.el"; sha256 = "0i5km1naxprd4lj20097ph50mjs2364xwxcdw0j3g5569mk5nc06"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unbound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unbound"; sha256 = "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x"; name = "unbound"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/unbound"; + homepage = "https://melpa.org/#/unbound"; license = lib.licenses.free; }; }) {}; @@ -57006,34 +59222,34 @@ sha256 = "0366h4jfi0c7yda9wcrz4zxgf2qqdd08b8z2dr8c1rkvkdd67iam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uncrustify-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uncrustify-mode"; sha256 = "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd"; name = "uncrustify-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/uncrustify-mode"; + homepage = "https://melpa.org/#/uncrustify-mode"; license = lib.licenses.free; }; }) {}; undercover = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, shut-up }: melpaBuild { pname = "undercover"; - version = "20160221.304"; + version = "20160329.937"; src = fetchFromGitHub { owner = "sviridov"; repo = "undercover.el"; - rev = "e72b8c924272f65d7cc6e884478e26d0b1e1e4e8"; - sha256 = "06qcvbp5rd0kh3ibrxj5p6r578lwsrgd7yj5c6slwmkdmna2fj33"; + rev = "f96c6033db6ff316fb6ba31db9c0d60736d35e5f"; + sha256 = "1860hnsbvndaahqs233adk8piz7nyj8v3b0gziv1lrnq864hrq5i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/undercover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/undercover"; sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf"; name = "undercover"; }; packageRequires = [ dash emacs shut-up ]; meta = { - homepage = "http://melpa.org/#/undercover"; + homepage = "https://melpa.org/#/undercover"; license = lib.licenses.free; }; }) {}; @@ -57048,13 +59264,13 @@ sha256 = "1ypxpv5vw2ls757iwrq3zld6k0s29q3kg3spcsl5ks4aqpnkxpva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/underwater-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/underwater-theme"; sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr"; name = "underwater-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/underwater-theme"; + homepage = "https://melpa.org/#/underwater-theme"; license = lib.licenses.free; }; }) {}; @@ -57065,16 +59281,16 @@ src = fetchgit { url = "http://www.dr-qubit.org/git/undo-tree.git"; rev = "a3e81b682053a81e082139300ef0a913a7a610a2"; - sha256 = "1ef5db7cf476dd37348fd1f11dd199613a89a2351dc583a42afd9d35a53d8ae2"; + sha256 = "1qla7njkb7gx5aj87i8x6ni8jfk1k78ivwfiiws3gpbnyiydpx8y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/undo-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/undo-tree"; sha256 = "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr"; name = "undo-tree"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/undo-tree"; + homepage = "https://melpa.org/#/undo-tree"; license = lib.licenses.free; }; }) {}; @@ -57089,13 +59305,13 @@ sha256 = "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/undohist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/undohist"; sha256 = "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn"; name = "undohist"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/undohist"; + homepage = "https://melpa.org/#/undohist"; license = lib.licenses.free; }; }) {}; @@ -57110,13 +59326,13 @@ sha256 = "0fd9k5m1yw2274m2w9rkrg7vqagzf0rjbybglqi7d200b3hmjin3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unfill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unfill"; sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv"; name = "unfill"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/unfill"; + homepage = "https://melpa.org/#/unfill"; license = lib.licenses.free; }; }) {}; @@ -57131,13 +59347,13 @@ sha256 = "015gjf8chd6h9azhyarmskk41cm0cmg981jif7q81hakl9av6rhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-emoticons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-emoticons"; sha256 = "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn"; name = "unicode-emoticons"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/unicode-emoticons"; + homepage = "https://melpa.org/#/unicode-emoticons"; license = lib.licenses.free; }; }) {}; @@ -57152,7 +59368,7 @@ sha256 = "0936dqxyp72if9wvn2dcci670yp1gqrmpnll9xq00skp85yq9zs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-enbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-enbox"; sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv"; name = "unicode-enbox"; }; @@ -57164,7 +59380,7 @@ ucs-utils ]; meta = { - homepage = "http://melpa.org/#/unicode-enbox"; + homepage = "https://melpa.org/#/unicode-enbox"; license = lib.licenses.free; }; }) {}; @@ -57179,7 +59395,7 @@ sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-fonts"; sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3"; name = "unicode-fonts"; }; @@ -57191,7 +59407,7 @@ ucs-utils ]; meta = { - homepage = "http://melpa.org/#/unicode-fonts"; + homepage = "https://melpa.org/#/unicode-fonts"; license = lib.licenses.free; }; }) {}; @@ -57205,13 +59421,13 @@ sha256 = "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-input"; sha256 = "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8"; name = "unicode-input"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/unicode-input"; + homepage = "https://melpa.org/#/unicode-input"; license = lib.licenses.free; }; }) {}; @@ -57226,13 +59442,13 @@ sha256 = "16jgm70ldsngxldiagjkw3ragypalpiidnf82g5hss9ciybkd3j4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-progress-reporter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-progress-reporter"; sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7"; name = "unicode-progress-reporter"; }; packageRequires = [ emacs list-utils pcache persistent-soft ucs-utils ]; meta = { - homepage = "http://melpa.org/#/unicode-progress-reporter"; + homepage = "https://melpa.org/#/unicode-progress-reporter"; license = lib.licenses.free; }; }) {}; @@ -57247,13 +59463,13 @@ sha256 = "0ny260mr1h810fvqsfj2hpd3zql4g309m60qj4vk6kmd83p5b60f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-troll-stopper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-troll-stopper"; sha256 = "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5"; name = "unicode-troll-stopper"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/unicode-troll-stopper"; + homepage = "https://melpa.org/#/unicode-troll-stopper"; license = lib.licenses.free; }; }) {}; @@ -57268,13 +59484,13 @@ sha256 = "1ayb15nd5vqr0xaghrnp55kqw7bblrjipmfrag6bqpn7jk9bvbdz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-whitespace"; sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy"; name = "unicode-whitespace"; }; packageRequires = [ list-utils pcache persistent-soft ucs-utils ]; meta = { - homepage = "http://melpa.org/#/unicode-whitespace"; + homepage = "https://melpa.org/#/unicode-whitespace"; license = lib.licenses.free; }; }) {}; @@ -57289,13 +59505,13 @@ sha256 = "1jvr1k8zd40m1rvwmxzidz1dvr4j8cbh78nqgc3vfb410fj619gw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unidecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unidecode"; sha256 = "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1"; name = "unidecode"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/unidecode"; + homepage = "https://melpa.org/#/unidecode"; license = lib.licenses.free; }; }) {}; @@ -57310,13 +59526,13 @@ sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unify-opening"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unify-opening"; sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8"; name = "unify-opening"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/unify-opening"; + homepage = "https://melpa.org/#/unify-opening"; license = lib.licenses.free; }; }) {}; @@ -57325,40 +59541,40 @@ pname = "unipoint"; version = "20140113.1624"; src = fetchFromGitHub { - owner = "apgwoz"; + owner = "apg"; repo = "unipoint"; rev = "5da04aebac35a5c9e1d8704f2231808d42f4b36a"; sha256 = "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unipoint"; - sha256 = "1nym2wlr50wk62cbagq1qyjczzf56nb6i9dfzcwikdck8p4p2dr7"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unipoint"; + sha256 = "0fm7anwcmga9adyfwlri7x014rpvfl1r6nccyi6lrpx126wy008s"; name = "unipoint"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/unipoint"; + homepage = "https://melpa.org/#/unipoint"; license = lib.licenses.free; }; }) {}; unison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unison-mode"; - version = "20150104.614"; + version = "20160319.511"; src = fetchFromGitHub { owner = "impaktor"; repo = "unison-mode"; - rev = "7e1bfee1a6796cc749a583605a9c948eccbc8cc5"; - sha256 = "0l8h084xkbjvx2vbg67hxmg4hb9175k858z3k3c93d2b6x2kh7ni"; + rev = "aebba94c7c1327223ad1a86bf90f359ab01f624c"; + sha256 = "1qpj8a4r1x781wqiqm11273sra0n9d9d6l397dkkx02wmv1l8kcy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unison-mode"; sha256 = "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl"; name = "unison-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/unison-mode"; + homepage = "https://melpa.org/#/unison-mode"; license = lib.licenses.free; }; }) {}; @@ -57373,34 +59589,34 @@ sha256 = "0xpaifmrvq5bbzpjhbzbxaac8kymmvqgg7lb2q1s7b5qf47fhqac"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unkillable-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unkillable-scratch"; sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7"; name = "unkillable-scratch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/unkillable-scratch"; + homepage = "https://melpa.org/#/unkillable-scratch"; license = lib.licenses.free; }; }) {}; url-shortener = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "url-shortener"; - version = "20150806.113"; + version = "20160404.2159"; src = fetchFromGitHub { owner = "yuyang0"; repo = "url-shortener"; - rev = "2ce3fedbdc44f778f28a5a08f06958bc5dccae88"; - sha256 = "118c23dsfgkhwhv65dx3wbg2dn7qyrd80d78cykl732c68d6wvi0"; + rev = "48182912d4f3a704d0b53f1664b995cfbf2ccd28"; + sha256 = "179hi6hsp2naczlcym3qxx9wbqx96bkkzvqygf3iffa0rmik4j7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/url-shortener"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/url-shortener"; sha256 = "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys"; name = "url-shortener"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/url-shortener"; + homepage = "https://melpa.org/#/url-shortener"; license = lib.licenses.free; }; }) {}; @@ -57415,13 +59631,13 @@ sha256 = "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/urlenc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/urlenc"; sha256 = "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh"; name = "urlenc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/urlenc"; + homepage = "https://melpa.org/#/urlenc"; license = lib.licenses.free; }; }) {}; @@ -57429,59 +59645,59 @@ pname = "usage-memo"; version = "20110722.1051"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/usage-memo.el"; + url = "https://www.emacswiki.org/emacs/download/usage-memo.el"; sha256 = "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/usage-memo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/usage-memo"; sha256 = "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95"; name = "usage-memo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/usage-memo"; + homepage = "https://melpa.org/#/usage-memo"; license = lib.licenses.free; }; }) {}; use-package = callPackage ({ bind-key, diminish, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "use-package"; - version = "20160209.1833"; + version = "20160403.1329"; src = fetchFromGitHub { owner = "jwiegley"; repo = "use-package"; - rev = "6b1956813f0f0e553a7eb6923ff846f9c3556146"; - sha256 = "13yzxlxkykv3qkaaifn3pf0y94dgqysxz5p7vh71jpqxi6d7jmgr"; + rev = "22c63c8f98fc318c357b51a658cee62d64601e16"; + sha256 = "19vc1hblbqlns2c28aqwjpmj8k35ih7akqi04wrqv1b6pljfy3jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/use-package"; sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8"; name = "use-package"; }; packageRequires = [ bind-key diminish ]; meta = { - homepage = "http://melpa.org/#/use-package"; + homepage = "https://melpa.org/#/use-package"; license = lib.licenses.free; }; }) {}; use-package-chords = callPackage ({ bind-chord, bind-key, fetchFromGitHub, fetchurl, lib, melpaBuild, use-package }: melpaBuild { pname = "use-package-chords"; - version = "20160107.1054"; + version = "20160407.1107"; src = fetchFromGitHub { owner = "waymondo"; repo = "use-package-chords"; - rev = "cbf623c867f911732077b026692f9312401791ad"; - sha256 = "05lhxbrgwbyz0nkb19yln9a46jh91ic685943hd58cn91lxsw3al"; + rev = "b7de6b2a1270d37a1aca3bd8f29f67ec578527d7"; + sha256 = "06jsa0scvf12kznm0ngv76y726rzh93prc7ymw3fvknvg0xivb8v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/use-package-chords"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/use-package-chords"; sha256 = "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass"; name = "use-package-chords"; }; packageRequires = [ bind-chord bind-key use-package ]; meta = { - homepage = "http://melpa.org/#/use-package-chords"; + homepage = "https://melpa.org/#/use-package-chords"; license = lib.licenses.free; }; }) {}; @@ -57492,17 +59708,17 @@ src = fetchFromGitHub { owner = "diml"; repo = "utop"; - rev = "2f48c9f512c36e195dfe26c57ff3373fc6463507"; - sha256 = "1fzs9y0k1cl6jda0vhra1v20cmdf9z8cp6yha6iv7f2d1l2srggd"; + rev = "9e9ebbfa4a1023eb4823fc8361282593790a54c8"; + sha256 = "1vacc4l5jsyxdfcinxja3r1qyc4cskmd9xvxp6zxkjfw4x6nr71c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/utop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/utop"; sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7"; name = "utop"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/utop"; + homepage = "https://melpa.org/#/utop"; license = lib.licenses.free; }; }) {}; @@ -57517,13 +59733,13 @@ sha256 = "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uuid"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uuid"; sha256 = "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw"; name = "uuid"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/uuid"; + homepage = "https://melpa.org/#/uuid"; license = lib.licenses.free; }; }) {}; @@ -57538,13 +59754,13 @@ sha256 = "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uuidgen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uuidgen"; sha256 = "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48"; name = "uuidgen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/uuidgen"; + homepage = "https://melpa.org/#/uuidgen"; license = lib.licenses.free; }; }) {}; @@ -57559,34 +59775,34 @@ sha256 = "0fx18m688wfflbzwv8h3051439fwql69v1ip5q6xn958rdq4pi3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uzumaki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uzumaki"; sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q"; name = "uzumaki"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/uzumaki"; + homepage = "https://melpa.org/#/uzumaki"; license = lib.licenses.free; }; }) {}; vagrant = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vagrant"; - version = "20141125.2159"; + version = "20160411.218"; src = fetchFromGitHub { owner = "ottbot"; repo = "vagrant.el"; - rev = "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c"; - sha256 = "04r73s3fhvdcryv0l57awkpg1hi3kg6zcqxbxb03jc89h0f9vdlh"; + rev = "6d043d8f2c9e0c7039639504a88b2f8cbf519f67"; + sha256 = "0w4a4mxy81vbr5r4kaaddi5zbisvr9ry5x4skmmlib2k0j84niiv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vagrant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vagrant"; sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf"; name = "vagrant"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vagrant"; + homepage = "https://melpa.org/#/vagrant"; license = lib.licenses.free; }; }) {}; @@ -57601,13 +59817,13 @@ sha256 = "1xslw0whxmqsd79jwxgz1k7h55shffq3985im96pdzf4iivkr3ln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vagrant-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vagrant-tramp"; sha256 = "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5"; name = "vagrant-tramp"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/vagrant-tramp"; + homepage = "https://melpa.org/#/vagrant-tramp"; license = lib.licenses.free; }; }) {}; @@ -57622,13 +59838,13 @@ sha256 = "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vala-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vala-mode"; sha256 = "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p"; name = "vala-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vala-mode"; + homepage = "https://melpa.org/#/vala-mode"; license = lib.licenses.free; }; }) {}; @@ -57643,13 +59859,13 @@ sha256 = "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vala-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vala-snippets"; sha256 = "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy"; name = "vala-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/vala-snippets"; + homepage = "https://melpa.org/#/vala-snippets"; license = lib.licenses.free; }; }) {}; @@ -57664,13 +59880,13 @@ sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vbasense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vbasense"; sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n"; name = "vbasense"; }; packageRequires = [ auto-complete log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/vbasense"; + homepage = "https://melpa.org/#/vbasense"; license = lib.licenses.free; }; }) {}; @@ -57685,13 +59901,13 @@ sha256 = "09h7yg44hbxv3pyazfypkvk8j3drlwz0zn8x1wj0kbsviksl1wxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vc-auto-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vc-auto-commit"; sha256 = "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk"; name = "vc-auto-commit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vc-auto-commit"; + homepage = "https://melpa.org/#/vc-auto-commit"; license = lib.licenses.free; }; }) {}; @@ -57706,13 +59922,13 @@ sha256 = "0icc4kqfpimxlja4jgcy9gjj4myc8y84vbvacyf79lxixygpaxi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vc-check-status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vc-check-status"; sha256 = "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi"; name = "vc-check-status"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vc-check-status"; + homepage = "https://melpa.org/#/vc-check-status"; license = lib.licenses.free; }; }) {}; @@ -57727,13 +59943,13 @@ sha256 = "1zpvinbc3nrnjm931fgzrlkl31xcsg9ikh041s1fkfjkhfq0h82h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vc-darcs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vc-darcs"; sha256 = "1xskl9wjxkbdpi0fm769ymbvya70vssi944x5252w2d3layibm6m"; name = "vc-darcs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vc-darcs"; + homepage = "https://melpa.org/#/vc-darcs"; license = lib.licenses.free; }; }) {}; @@ -57748,13 +59964,13 @@ sha256 = "0whzfzg0m03wbmqsxml8hislnbfvawcniq83hj66lbrnbivxsqj4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vc-osc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vc-osc"; sha256 = "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz"; name = "vc-osc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vc-osc"; + homepage = "https://melpa.org/#/vc-osc"; license = lib.licenses.free; }; }) {}; @@ -57769,13 +59985,13 @@ sha256 = "1jfis26lmghl30ydzq1xdkrrj3d85q7g44ns6kmfg119ccapllbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vcl-mode"; sha256 = "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5"; name = "vcl-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vcl-mode"; + homepage = "https://melpa.org/#/vcl-mode"; license = lib.licenses.free; }; }) {}; @@ -57790,13 +60006,13 @@ sha256 = "0fzz26c1pdaz3i58ndhzd2520mhny487daqs21yajxi9x2m00zrl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vcomp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vcomp"; sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0"; name = "vcomp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vcomp"; + homepage = "https://melpa.org/#/vcomp"; license = lib.licenses.free; }; }) {}; @@ -57811,13 +60027,13 @@ sha256 = "1lh8nv0ayl9ipl2aqc8npzz84g5q7w6v60l14v61mmk34fc23lnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vdirel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vdirel"; sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj"; name = "vdirel"; }; packageRequires = [ emacs helm org-vcard seq ]; meta = { - homepage = "http://melpa.org/#/vdirel"; + homepage = "https://melpa.org/#/vdirel"; license = lib.licenses.free; }; }) {}; @@ -57832,34 +60048,34 @@ sha256 = "1wa03gb98x650q798aqshm43kh6gfxaz1rlyrmvka5dxgf48whmf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vector-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vector-utils"; sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n"; name = "vector-utils"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vector-utils"; + homepage = "https://melpa.org/#/vector-utils"; license = lib.licenses.free; }; }) {}; verify-url = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "verify-url"; - version = "20160203.159"; + version = "20160426.728"; src = fetchFromGitHub { owner = "lujun9972"; repo = "verify-url"; - rev = "7961223979ad01723ada3c48b034e91592b3d1cc"; - sha256 = "0vlkg77a0h5z36f370phl2xdzykz9h9in3vng68zn1pfhx2allyx"; + rev = "d6f3623cda8cd526a2d198619b137059cb1ba1ab"; + sha256 = "1y6vjw5qzaxr37spg5d4nxffmhiipzsrd7mvh8bs3jcfrsg3080n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/verify-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/verify-url"; sha256 = "1gd83rb1q0kywchd0345p5axqj1sv4f5kadympx5pbp4n5p1dqb2"; name = "verify-url"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/verify-url"; + homepage = "https://melpa.org/#/verify-url"; license = lib.licenses.free; }; }) {}; @@ -57874,55 +60090,76 @@ sha256 = "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vertica"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vertica"; sha256 = "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng"; name = "vertica"; }; packageRequires = [ sql ]; meta = { - homepage = "http://melpa.org/#/vertica"; + homepage = "https://melpa.org/#/vertica"; license = lib.licenses.free; }; }) {}; vertigo = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vertigo"; - version = "20151110.2213"; + version = "20160322.2006"; src = fetchFromGitHub { owner = "noctuid"; repo = "vertigo.el"; - rev = "fecc566e9039408303f9b1c979624d546152b7df"; - sha256 = "0v884gbqq5vrx5gwg9dqn97kaqgnzhrqv8kam8dy9g7hx4fm6b2l"; + rev = "ebfa068d9e2fc39ba6d1744618c4e31dad6f629b"; + sha256 = "1yk7qqg8i3970kpfk34wvi0gh16qf0b0sfnf18g3s21dd4gk5a6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vertigo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vertigo"; sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83"; name = "vertigo"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/vertigo"; + homepage = "https://melpa.org/#/vertigo"; license = lib.licenses.free; }; }) {}; - vhdl-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, ggtags, lib, melpaBuild, outshine }: + vhdl-capf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "vhdl-capf"; + version = "20160221.1134"; + src = fetchFromGitHub { + owner = "sh-ow"; + repo = "vhdl-capf"; + rev = "290abe217050f33532bc9ccb04f894123402f414"; + sha256 = "185a7962h94122q783ih7s8r28xifm0bcrqvkd0g4p64mijlbh3d"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vhdl-capf"; + sha256 = "06dkw5ra9wnscpgrnx851vyfgr5797xd60qdimsr2v1bqd8si9km"; + name = "vhdl-capf"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/vhdl-capf"; + license = lib.licenses.free; + }; + }) {}; + vhdl-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, ggtags, helm, lib, melpaBuild, outshine, projectile }: melpaBuild { pname = "vhdl-tools"; - version = "20160114.449"; + version = "20160308.509"; src = fetchFromGitHub { owner = "csantosb"; repo = "vhdl-tools"; - rev = "6478a055e0e6bac56c65a5ecd45b82e0a074e9bb"; - sha256 = "0ba22j368w6jac94hwmy27bhm3h1r7kpiwdzy8ggfxfzwn0sd4dy"; + rev = "17b49fad72269fb987f88fe783248a9252f21faf"; + sha256 = "0ggblkaz214vl1j4i5gv5qj2q6ahnr0k3c3l9sd0w5vdkbw8n5jb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vhdl-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vhdl-tools"; sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw"; name = "vhdl-tools"; }; - packageRequires = [ emacs ggtags outshine ]; + packageRequires = [ emacs ggtags helm outshine projectile ]; meta = { - homepage = "http://melpa.org/#/vhdl-tools"; + homepage = "https://melpa.org/#/vhdl-tools"; license = lib.licenses.free; }; }) {}; @@ -57937,13 +60174,13 @@ sha256 = "0wdm8k49zl6i6wnh7vjkswdh5m9lix56jv37xvc90inipwgs402z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vi-tilde-fringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vi-tilde-fringe"; sha256 = "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp"; name = "vi-tilde-fringe"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/vi-tilde-fringe"; + homepage = "https://melpa.org/#/vi-tilde-fringe"; license = lib.licenses.free; }; }) {}; @@ -57951,17 +60188,17 @@ pname = "viewer"; version = "20141021.1338"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/viewer.el"; + url = "https://www.emacswiki.org/emacs/download/viewer.el"; sha256 = "0lns0ic3zjz1km02674d9hxgnp6wlhk168wyr6h4vhpr8a71x9mb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/viewer"; sha256 = "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf"; name = "viewer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/viewer"; + homepage = "https://melpa.org/#/viewer"; license = lib.licenses.free; }; }) {}; @@ -57976,13 +60213,13 @@ sha256 = "11qh6fpf6269j9syf06v5wnkgi65wnn7dbyjwb6yz72rvq7ihhcz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vim-empty-lines-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vim-empty-lines-mode"; sha256 = "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb"; name = "vim-empty-lines-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/vim-empty-lines-mode"; + homepage = "https://melpa.org/#/vim-empty-lines-mode"; license = lib.licenses.free; }; }) {}; @@ -57997,13 +60234,13 @@ sha256 = "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vim-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vim-region"; sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx"; name = "vim-region"; }; packageRequires = [ expand-region ]; meta = { - homepage = "http://melpa.org/#/vim-region"; + homepage = "https://melpa.org/#/vim-region"; license = lib.licenses.free; }; }) {}; @@ -58018,13 +60255,13 @@ sha256 = "1i407ilhmk2qrk66ygbvizq964bdk502x7lvrzs4wxwfr5y8ciyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vimgolf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vimgolf"; sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn"; name = "vimgolf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vimgolf"; + homepage = "https://melpa.org/#/vimgolf"; license = lib.licenses.free; }; }) {}; @@ -58039,13 +60276,13 @@ sha256 = "0rl9pcw1dcqpivmcrwpbsd11ym643zccp4sh5k11rmal77gb36sl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vimish-fold"; sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3"; name = "vimish-fold"; }; packageRequires = [ cl-lib emacs f ]; meta = { - homepage = "http://melpa.org/#/vimish-fold"; + homepage = "https://melpa.org/#/vimish-fold"; license = lib.licenses.free; }; }) {}; @@ -58060,13 +60297,13 @@ sha256 = "000fs2h5zcv8aq8an16r6zwwf9x1qnfs7xxn39iahiwfzvnljqp0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vimrc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vimrc-mode"; sha256 = "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp"; name = "vimrc-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vimrc-mode"; + homepage = "https://melpa.org/#/vimrc-mode"; license = lib.licenses.free; }; }) {}; @@ -58081,13 +60318,13 @@ sha256 = "0rd7hyv66278dj32yva5q9z1749y84c6fwl2iqrns512j1l4kl8q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/virtualenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/virtualenv"; sha256 = "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl"; name = "virtualenv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/virtualenv"; + homepage = "https://melpa.org/#/virtualenv"; license = lib.licenses.free; }; }) {}; @@ -58098,17 +60335,17 @@ src = fetchFromGitHub { owner = "porterjamesj"; repo = "virtualenvwrapper.el"; - rev = "e6b78e56c204ba6aea17c934e0a0a86b14bac832"; - sha256 = "0gywi1irsmgrhxb76k5nnycb66l6xpkql195w4h90x1q4lx34dk1"; + rev = "62df8c1af39c5a8fec5b4e3fd1a063db06d38d21"; + sha256 = "05rzjlb04h7xyq7l7z87hqqcsf907p2nsxqnh7r6wm24kddfb0ab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/virtualenvwrapper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/virtualenvwrapper"; sha256 = "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i"; name = "virtualenvwrapper"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/virtualenvwrapper"; + homepage = "https://melpa.org/#/virtualenvwrapper"; license = lib.licenses.free; }; }) {}; @@ -58123,13 +60360,13 @@ sha256 = "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visible-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visible-mark"; sha256 = "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80"; name = "visible-mark"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/visible-mark"; + homepage = "https://melpa.org/#/visible-mark"; license = lib.licenses.free; }; }) {}; @@ -58144,76 +60381,76 @@ sha256 = "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visual-ascii-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visual-ascii-mode"; sha256 = "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g"; name = "visual-ascii-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/visual-ascii-mode"; + homepage = "https://melpa.org/#/visual-ascii-mode"; license = lib.licenses.free; }; }) {}; visual-fill-column = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "visual-fill-column"; - version = "20151121.1751"; + version = "20160411.720"; src = fetchFromGitHub { owner = "joostkremers"; repo = "visual-fill-column"; - rev = "043485d16a645c8c6df5d82bc77b8fc155a818aa"; - sha256 = "126qm63ik1n1agvcp4mgk1gr7dnnyjif8zbw0l336q74d5cy6h6w"; + rev = "865c9b32ead54ac3c0a6f0a92164e9963bacdd5d"; + sha256 = "0r1iylk7r25wmlba4vlrc6k1apbkrbplb9id1h9q91wqhwdnxqal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visual-fill-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visual-fill-column"; sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5"; name = "visual-fill-column"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/visual-fill-column"; + homepage = "https://melpa.org/#/visual-fill-column"; license = lib.licenses.free; }; }) {}; visual-regexp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "visual-regexp"; - version = "20151206.719"; + version = "20160409.441"; src = fetchFromGitHub { owner = "benma"; repo = "visual-regexp.el"; - rev = "58566c09e593dda9c3e3a348310a9bdc42dcb3d8"; - sha256 = "04wds01yzhia508852gm18rp7dkg0838j0w8cr1l1qmc8p0jjsz9"; + rev = "b625cec147dd1ac185aac52e2ae27acb2a662b28"; + sha256 = "00sf1qzd6g8p2zlq4baslzccxq47fi3yi9dbwx4ich6f0b9021dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visual-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visual-regexp"; sha256 = "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z"; name = "visual-regexp"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/visual-regexp"; + homepage = "https://melpa.org/#/visual-regexp"; license = lib.licenses.free; }; }) {}; visual-regexp-steroids = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, visual-regexp }: melpaBuild { pname = "visual-regexp-steroids"; - version = "20150411.616"; + version = "20160409.441"; src = fetchFromGitHub { owner = "benma"; repo = "visual-regexp-steroids.el"; - rev = "2a50710dea5be872b31ea56f74b4cd57d6e61461"; - sha256 = "03jggsnz5j0c36inxqa16vrdwlzn3wrniyl2i9b8c5bx7az7210m"; + rev = "b724d2a30efbcf2a13f6c34b798aeb453ff076be"; + sha256 = "10czcdkhbjjkadrbas4wl2x65r6jxpbwj7hwvvngm9166vg44kh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visual-regexp-steroids"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visual-regexp-steroids"; sha256 = "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr"; name = "visual-regexp-steroids"; }; packageRequires = [ visual-regexp ]; meta = { - homepage = "http://melpa.org/#/visual-regexp-steroids"; + homepage = "https://melpa.org/#/visual-regexp-steroids"; license = lib.licenses.free; }; }) {}; @@ -58228,13 +60465,13 @@ sha256 = "0hb845pnh2yska6alca8hbbxh65x7g81pr7852h8fddm0qd1agkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vkill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vkill"; sha256 = "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm"; name = "vkill"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vkill"; + homepage = "https://melpa.org/#/vkill"; license = lib.licenses.free; }; }) {}; @@ -58249,13 +60486,13 @@ sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vlf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vlf"; sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8"; name = "vlf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vlf"; + homepage = "https://melpa.org/#/vlf"; license = lib.licenses.free; }; }) {}; @@ -58263,17 +60500,17 @@ pname = "vline"; version = "20120108.645"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/vline.el"; + url = "https://www.emacswiki.org/emacs/download/vline.el"; sha256 = "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vline"; sha256 = "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp"; name = "vline"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vline"; + homepage = "https://melpa.org/#/vline"; license = lib.licenses.free; }; }) {}; @@ -58288,13 +60525,13 @@ sha256 = "183pvfp5nnqpgdmfxm84qrnid0lijgk79l5lhwzmnznzkrb7bgxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/voca-builder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/voca-builder"; sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y"; name = "voca-builder"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/voca-builder"; + homepage = "https://melpa.org/#/voca-builder"; license = lib.licenses.free; }; }) {}; @@ -58309,13 +60546,13 @@ sha256 = "1yrpqlpxnw7jckhhc18i058vcpi12y687181h0azcwb0wq9p2c26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/volatile-highlights"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/volatile-highlights"; sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d"; name = "volatile-highlights"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/volatile-highlights"; + homepage = "https://melpa.org/#/volatile-highlights"; license = lib.licenses.free; }; }) {}; @@ -58330,13 +60567,34 @@ sha256 = "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/volume"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/volume"; sha256 = "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i"; name = "volume"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/volume"; + homepage = "https://melpa.org/#/volume"; + license = lib.licenses.free; + }; + }) {}; + vue-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode }: + melpaBuild { + pname = "vue-mode"; + version = "20160411.2254"; + src = fetchFromGitHub { + owner = "CodeFalling"; + repo = "vue-mode"; + rev = "28e2cc06f8ba8e0ac7027b33300b999493e73505"; + sha256 = "1d9rwgyvizn1zas8v98v86g5kck0m567cprpcakdawwamn155k49"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vue-mode"; + sha256 = "0gy7a5sliaijq0666l55vbkg15anrw7k1828szdn1ppkraw14bn0"; + name = "vue-mode"; + }; + packageRequires = [ mmm-mode ]; + meta = { + homepage = "https://melpa.org/#/vue-mode"; license = lib.licenses.free; }; }) {}; @@ -58344,17 +60602,17 @@ pname = "w32-browser"; version = "20151231.1820"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/w32-browser.el"; + url = "https://www.emacswiki.org/emacs/download/w32-browser.el"; sha256 = "0vb5ss30mz0kqq8cscjckw647vqn6xprp2sfjcbpg2fx59z4agma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/w32-browser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/w32-browser"; sha256 = "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6"; name = "w32-browser"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/w32-browser"; + homepage = "https://melpa.org/#/w32-browser"; license = lib.licenses.free; }; }) {}; @@ -58363,17 +60621,17 @@ pname = "w32browser-dlgopen"; version = "20151231.1821"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/w32browser-dlgopen.el"; + url = "https://www.emacswiki.org/emacs/download/w32browser-dlgopen.el"; sha256 = "0nyara81bnd0rvgyljqrrbvjvndkngdc7qzf6scl5iz3vlglfgy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/w32browser-dlgopen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/w32browser-dlgopen"; sha256 = "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39"; name = "w32browser-dlgopen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/w32browser-dlgopen"; + homepage = "https://melpa.org/#/w32browser-dlgopen"; license = lib.licenses.free; }; }) {}; @@ -58388,13 +60646,13 @@ sha256 = "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/w3m"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/w3m"; sha256 = "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw"; name = "w3m"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/w3m"; + homepage = "https://melpa.org/#/w3m"; license = lib.licenses.free; }; }) {}; @@ -58409,13 +60667,13 @@ sha256 = "0nvlni3iy2sq76z8d4kj5492m0w7qv96shjqkynvlj0avf528hv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wacspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wacspace"; sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl"; name = "wacspace"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/wacspace"; + homepage = "https://melpa.org/#/wacspace"; license = lib.licenses.free; }; }) {}; @@ -58430,34 +60688,34 @@ sha256 = "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/waher-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/waher-theme"; sha256 = "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5"; name = "waher-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/waher-theme"; + homepage = "https://melpa.org/#/waher-theme"; license = lib.licenses.free; }; }) {}; wakatime-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wakatime-mode"; - version = "20151117.1830"; + version = "20160417.309"; src = fetchFromGitHub { owner = "wakatime"; repo = "wakatime-mode"; - rev = "883f969c1502994b55912c6ade7155220e3c2cea"; - sha256 = "1bcdvk5bg5yi0qq0wd3w9wl38s0brrafz52bzsracj3wffswjg1n"; + rev = "a0d279ac7d17c927ca3c52b9e072751b987b8333"; + sha256 = "06d6ywc0hq6jn5ahq96qa8v8fnps464f2gjmdhsgvj8b0d0c5jl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wakatime-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wakatime-mode"; sha256 = "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8"; name = "wakatime-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wakatime-mode"; + homepage = "https://melpa.org/#/wakatime-mode"; license = lib.licenses.free; }; }) {}; @@ -58472,55 +60730,55 @@ sha256 = "09gqsssc2sk0vwfg0h4zxq9a779sdjdgvxsw7p6n2k0g4wk0phri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wand"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wand"; sha256 = "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l"; name = "wand"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/wand"; + homepage = "https://melpa.org/#/wand"; license = lib.licenses.free; }; }) {}; - wandbox = callPackage ({ emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: + wandbox = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }: melpaBuild { pname = "wandbox"; - version = "20160124.1040"; + version = "20160418.1314"; src = fetchFromGitHub { owner = "kosh04"; repo = "emacs-wandbox"; - rev = "4522d488ecee418573ab2cdc55923f802b1dba31"; - sha256 = "114f7sqwq6whbdsidg6wlzjayy6dla06h7fmg1gjkhkbdqq4h94d"; + rev = "490eed2ac5f3cc375bace345f1060583d166a385"; + sha256 = "06jqlvy2078fd8py59z5rraf2ymlkv6wizmw91vq63f87vpw71zg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wandbox"; sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz"; name = "wandbox"; }; - packageRequires = [ emacs json ]; + packageRequires = [ emacs request s ]; meta = { - homepage = "http://melpa.org/#/wandbox"; + homepage = "https://melpa.org/#/wandbox"; license = lib.licenses.free; }; }) {}; wanderlust = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, semi }: melpaBuild { pname = "wanderlust"; - version = "20160129.1736"; + version = "20160409.520"; src = fetchFromGitHub { owner = "wanderlust"; repo = "wanderlust"; - rev = "154d38e6a7d2355483087f6ddd2ce075a6cfe3a1"; - sha256 = "0pa7657zzd0hpf9wsrmvh396nyfp8458s6gh4852ajiyj5pfpvdp"; + rev = "3418105fcc6a7e63f8b293341efed282480ccc22"; + sha256 = "0nqlp7wp6c857zrm74fxdh7i1v7xakm7zgva5kcc4c8bgb8fagqc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wanderlust"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wanderlust"; sha256 = "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9"; name = "wanderlust"; }; packageRequires = [ semi ]; meta = { - homepage = "http://melpa.org/#/wanderlust"; + homepage = "https://melpa.org/#/wanderlust"; license = lib.licenses.free; }; }) {}; @@ -58535,13 +60793,13 @@ sha256 = "1x472s5qr6wvla7nj5i9mas8z9qhkj4zj5qghfwn5chb9igvfkif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/warm-night-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/warm-night-theme"; sha256 = "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29"; name = "warm-night-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/warm-night-theme"; + homepage = "https://melpa.org/#/warm-night-theme"; license = lib.licenses.free; }; }) {}; @@ -58556,13 +60814,13 @@ sha256 = "0i84ndnxma8s07kf5ixqyhv5f89mzc4iymgazj5inmxhvbc7s7r2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/watch-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/watch-buffer"; sha256 = "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5"; name = "watch-buffer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/watch-buffer"; + homepage = "https://melpa.org/#/watch-buffer"; license = lib.licenses.free; }; }) {}; @@ -58577,13 +60835,13 @@ sha256 = "0zw8z2r82986likz0b0zy37bywicrvz9dizzw9p52gs1lx0is1fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wavefront-obj-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wavefront-obj-mode"; sha256 = "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk"; name = "wavefront-obj-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wavefront-obj-mode"; + homepage = "https://melpa.org/#/wavefront-obj-mode"; license = lib.licenses.free; }; }) {}; @@ -58598,31 +60856,34 @@ sha256 = "0p7j4hvcxfyjf0na9s3xv29dvmwq82s56lincfasd0ydcpz4fbwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wc-goal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wc-goal-mode"; sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419"; name = "wc-goal-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wc-goal-mode"; + homepage = "https://melpa.org/#/wc-goal-mode"; license = lib.licenses.free; }; }) {}; - wc-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + wc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "wc-mode"; - version = "20150116.2302"; - src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/wc-mode.el"; - sha256 = "15wz0c0rsn02zl6yr8mpwzy2hvp2146krhdbjpq63l75w4i98w4d"; + version = "20131121.1026"; + src = fetchFromGitHub { + owner = "bnbeckwith"; + repo = "wc-mode"; + rev = "c465751b434b20f848f0b8fa2b4e2dec5717f217"; + sha256 = "1j1k3ab0ymr66w23z3r4yd1g6410n5y80jfyg2f9i9rdk7vq18gd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wc-mode"; - sha256 = "0n9hc22rp18dxx33l2l1xla78m5zjybgh3mmsp91fbdiq92b446s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wc-mode"; + sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6"; name = "wc-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wc-mode"; + homepage = "https://melpa.org/#/wc-mode"; license = lib.licenses.free; }; }) {}; @@ -58637,13 +60898,13 @@ sha256 = "0irw76inj3gdmi88hiayplv6fzjjjsvvvmr121ahh3p73mb14cjd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wcheck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wcheck-mode"; sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k"; name = "wcheck-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wcheck-mode"; + homepage = "https://melpa.org/#/wcheck-mode"; license = lib.licenses.free; }; }) {}; @@ -58658,13 +60919,13 @@ sha256 = "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weather-metno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weather-metno"; sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6"; name = "weather-metno"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/weather-metno"; + homepage = "https://melpa.org/#/weather-metno"; license = lib.licenses.free; }; }) {}; @@ -58679,76 +60940,76 @@ sha256 = "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web"; sha256 = "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a"; name = "web"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/web"; + homepage = "https://melpa.org/#/web"; license = lib.licenses.free; }; }) {}; web-beautify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-beautify"; - version = "20131118.426"; + version = "20160410.1205"; src = fetchFromGitHub { owner = "yasuyk"; repo = "web-beautify"; - rev = "be2b9a7f510e1719396ebeab9135bc64f0785b78"; - sha256 = "0ky2rg16xrbnsvqc6gcfhgi69fdzbx6jlsq73n8hr0n4562czhzl"; + rev = "1ca9841e9ae951d60d591befa5efaaf839916b75"; + sha256 = "0j8v8p4w586wz80q9scdby6b80sbxz4lqg9zb5pbr2w8bsps8n4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-beautify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-beautify"; sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f"; name = "web-beautify"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/web-beautify"; + homepage = "https://melpa.org/#/web-beautify"; license = lib.licenses.free; }; }) {}; web-completion-data = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-completion-data"; - version = "20150623.533"; + version = "20160318.348"; src = fetchFromGitHub { owner = "osv"; repo = "web-completion-data"; - rev = "81482f9ff17e13906bdbd9db6bc4e1cbdc0e1870"; - sha256 = "12j8ql9v9mrg8hlsminpm3ydcacc2fbdjsfw7l604sc3qvgza1lm"; + rev = "c272c94e8a71b779c29653a532f619acad433a4f"; + sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-completion-data"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-completion-data"; sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9"; name = "web-completion-data"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/web-completion-data"; + homepage = "https://melpa.org/#/web-completion-data"; license = lib.licenses.free; }; }) {}; web-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-mode"; - version = "20160212.738"; + version = "20160424.1556"; src = fetchFromGitHub { owner = "fxbois"; repo = "web-mode"; - rev = "e82d71b4bf21da2f00120c4e00dddab9d741f35a"; - sha256 = "1ai3chja063my6lh2q5gfsphdxhwp41jjgpsqnqh0p5dy2f1kvhx"; + rev = "7477e48dd68ccc77c325637b8ea1bd00b1f93aba"; + sha256 = "12bz4n7kjad3c3bc8s7hb4n46qybahjzxmc0a6vnfs6b5zggw9yn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-mode"; sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i"; name = "web-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/web-mode"; + homepage = "https://melpa.org/#/web-mode"; license = lib.licenses.free; }; }) {}; @@ -58763,13 +61024,13 @@ sha256 = "0mbhyk7sgisx0l0xiz2xgy4jfbgwazlnxjvajsh4nysyig5rys05"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-server"; sha256 = "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3"; name = "web-server"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/web-server"; + homepage = "https://melpa.org/#/web-server"; license = lib.licenses.free; }; }) {}; @@ -58783,34 +61044,34 @@ sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weblogger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weblogger"; sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk"; name = "weblogger"; }; packageRequires = [ xml-rpc ]; meta = { - homepage = "http://melpa.org/#/weblogger"; + homepage = "https://melpa.org/#/weblogger"; license = lib.licenses.free; }; }) {}; websocket = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "websocket"; - version = "20160124.2220"; + version = "20160227.2322"; src = fetchFromGitHub { owner = "ahyatt"; repo = "emacs-websocket"; - rev = "fca05614306c455af1cf783bc97021527050dcc6"; - sha256 = "1vj10jcraxpwk896zyscpmgd55r1czzlqj1gz29skbq2zan1l042"; + rev = "bcbd5258b2fd14e12e9a8c9d89cc2d727b5a8da0"; + sha256 = "104c8dvyxrgyy3dwh3bmqc96c0xrvagbghwflfbhxplib22v7mly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/websocket"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/websocket"; sha256 = "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg"; name = "websocket"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/websocket"; + homepage = "https://melpa.org/#/websocket"; license = lib.licenses.free; }; }) {}; @@ -58825,34 +61086,55 @@ sha256 = "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wedge-ws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wedge-ws"; sha256 = "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll"; name = "wedge-ws"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wedge-ws"; + homepage = "https://melpa.org/#/wedge-ws"; license = lib.licenses.free; }; }) {}; weechat = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, tracking }: melpaBuild { pname = "weechat"; - version = "20151206.647"; + version = "20160229.1448"; src = fetchFromGitHub { owner = "the-kenny"; repo = "weechat.el"; - rev = "a191b4c52e2cca33acfdd82145da42fb2798b185"; - sha256 = "03xsh3fc7if6rkdp2s8lmrzpqm3pjakgqi3faap44y9i84q6mc6k"; + rev = "41f06299b2a691473b6b26c15dc46367542c79f0"; + sha256 = "0vg3w18xj6i320jsivsml3mi1fdxr8dgxmn7qy2780ajy5ndxnw1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weechat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weechat"; sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46"; name = "weechat"; }; packageRequires = [ cl-lib emacs s tracking ]; meta = { - homepage = "http://melpa.org/#/weechat"; + homepage = "https://melpa.org/#/weechat"; + license = lib.licenses.free; + }; + }) {}; + weechat-alert = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, weechat }: + melpaBuild { + pname = "weechat-alert"; + version = "20160416.748"; + src = fetchFromGitHub { + owner = "Kungi"; + repo = "weechat-alert"; + rev = "a8fd557c8f335322f132c1c6c08b6741d6394e2e"; + sha256 = "1hkhim2jfdywx6ks4qfcizycp5qsx4ms6929kbgmzzb8i7j380x6"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weechat-alert"; + sha256 = "026hkddvd4a6wy7s8s0lklw8b99fpjawdgi7amvpcrn79ylwbf22"; + name = "weechat-alert"; + }; + packageRequires = [ alert cl-lib weechat ]; + meta = { + homepage = "https://melpa.org/#/weechat-alert"; license = lib.licenses.free; }; }) {}; @@ -58867,13 +61149,13 @@ sha256 = "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weibo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weibo"; sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd"; name = "weibo"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/weibo"; + homepage = "https://melpa.org/#/weibo"; license = lib.licenses.free; }; }) {}; @@ -58888,13 +61170,13 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wgrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wgrep"; sha256 = "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4"; name = "wgrep"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wgrep"; + homepage = "https://melpa.org/#/wgrep"; license = lib.licenses.free; }; }) {}; @@ -58909,13 +61191,13 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wgrep-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wgrep-ack"; sha256 = "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh"; name = "wgrep-ack"; }; packageRequires = [ wgrep ]; meta = { - homepage = "http://melpa.org/#/wgrep-ack"; + homepage = "https://melpa.org/#/wgrep-ack"; license = lib.licenses.free; }; }) {}; @@ -58930,13 +61212,13 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wgrep-ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wgrep-ag"; sha256 = "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a"; name = "wgrep-ag"; }; packageRequires = [ wgrep ]; meta = { - homepage = "http://melpa.org/#/wgrep-ag"; + homepage = "https://melpa.org/#/wgrep-ag"; license = lib.licenses.free; }; }) {}; @@ -58951,13 +61233,13 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wgrep-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wgrep-helm"; sha256 = "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b"; name = "wgrep-helm"; }; packageRequires = [ wgrep ]; meta = { - homepage = "http://melpa.org/#/wgrep-helm"; + homepage = "https://melpa.org/#/wgrep-helm"; license = lib.licenses.free; }; }) {}; @@ -58972,13 +61254,13 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wgrep-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wgrep-pt"; sha256 = "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg"; name = "wgrep-pt"; }; packageRequires = [ wgrep ]; meta = { - homepage = "http://melpa.org/#/wgrep-pt"; + homepage = "https://melpa.org/#/wgrep-pt"; license = lib.licenses.free; }; }) {}; @@ -58993,34 +61275,34 @@ sha256 = "04w62davpqqqvympkr52bg54c2i45p09q9bs70p9ff5jvc6i3g76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/what-the-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/what-the-commit"; sha256 = "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak"; name = "what-the-commit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/what-the-commit"; + homepage = "https://melpa.org/#/what-the-commit"; license = lib.licenses.free; }; }) {}; which-key = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "which-key"; - version = "20160213.854"; + version = "20160426.1008"; src = fetchFromGitHub { owner = "justbur"; repo = "emacs-which-key"; - rev = "69a1435dffc88af1b6e1e974945102b340798141"; - sha256 = "18bq95k6zah7nn0cyjv0siyw1hrm0vpjnhh9gjmcnd2h3k8g95cc"; + rev = "88fd7608c5201b1a36b8eed2e9cc688677e96a77"; + sha256 = "1jh6c4mb35f2xmv70phmris9a52jvh2a1dfansksv9dw46cfkd5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/which-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/which-key"; sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59"; name = "which-key"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/which-key"; + homepage = "https://melpa.org/#/which-key"; license = lib.licenses.free; }; }) {}; @@ -59035,13 +61317,13 @@ sha256 = "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whitaker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whitaker"; sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj"; name = "whitaker"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/whitaker"; + homepage = "https://melpa.org/#/whitaker"; license = lib.licenses.free; }; }) {}; @@ -59056,13 +61338,13 @@ sha256 = "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/white-sand-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/white-sand-theme"; sha256 = "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5"; name = "white-sand-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/white-sand-theme"; + homepage = "https://melpa.org/#/white-sand-theme"; license = lib.licenses.free; }; }) {}; @@ -59077,13 +61359,13 @@ sha256 = "15yhbyyr0ksd9ziinlylyddny2szlj35x2548awj9ijnqqgjd23r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whitespace-cleanup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whitespace-cleanup-mode"; sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3"; name = "whitespace-cleanup-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/whitespace-cleanup-mode"; + homepage = "https://melpa.org/#/whitespace-cleanup-mode"; license = lib.licenses.free; }; }) {}; @@ -59098,13 +61380,13 @@ sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whole-line-or-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whole-line-or-region"; sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1"; name = "whole-line-or-region"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/whole-line-or-region"; + homepage = "https://melpa.org/#/whole-line-or-region"; license = lib.licenses.free; }; }) {}; @@ -59112,37 +61394,38 @@ pname = "wid-edit-plus"; version = "20151231.1822"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/wid-edit+.el"; + url = "https://www.emacswiki.org/emacs/download/wid-edit+.el"; sha256 = "18bnwwjk8jj4ns08sxhnznj0d8n1bxm2kj43r06nwyibh6ajpl7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wid-edit+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wid-edit+"; sha256 = "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv"; name = "wid-edit-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wid-edit+"; + homepage = "https://melpa.org/#/wid-edit+"; license = lib.licenses.free; }; }) {}; - wide-column = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: + wide-column = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wide-column"; version = "20120814.312"; - src = fetchhg { - url = "https://code.google.com/p/phillord-emacs-packages/"; - rev = "e14e67d6a5b7"; - sha256 = "0pq9x73hrp7qwhms7x3dvjfh9imapglba9yd7nkyw68mc0b9wlnl"; + src = fetchFromGitHub { + owner = "phillord"; + repo = "wide-column"; + rev = "0b382e7a3ceecafcea6c9e7e742fb6d11641b04b"; + sha256 = "0bq39sfipad16skh5q26gp7z24kk93hgnaxb378dzfq1306kmn8q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wide-column"; - sha256 = "1r9mh7756jgf1hdnprci988z07xxh2jvh8d0c1h5rmxmldlbx8az"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wide-column"; + sha256 = "1kyyvq9fgaypvhiy9vbvr99xsac5vhylkbjsxn5fhylyc5n867sb"; name = "wide-column"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wide-column"; + homepage = "https://melpa.org/#/wide-column"; license = lib.licenses.free; }; }) {}; @@ -59157,13 +61440,13 @@ sha256 = "0036alzp66k7w3z45lj8qzh3plxv9vwcw17wibkz90mlb27vy6yz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/widget-mvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/widget-mvc"; sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f"; name = "widget-mvc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/widget-mvc"; + homepage = "https://melpa.org/#/widget-mvc"; license = lib.licenses.free; }; }) {}; @@ -59178,13 +61461,13 @@ sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wiki-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wiki-nav"; sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy"; name = "wiki-nav"; }; packageRequires = [ button-lock nav-flash ]; meta = { - homepage = "http://melpa.org/#/wiki-nav"; + homepage = "https://melpa.org/#/wiki-nav"; license = lib.licenses.free; }; }) {}; @@ -59199,13 +61482,13 @@ sha256 = "02bczc1mb1cs1aryz5pw6cmpydjmxja2zj91893cz8rnfn1r031i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wiki-summary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wiki-summary"; sha256 = "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw"; name = "wiki-summary"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/wiki-summary"; + homepage = "https://melpa.org/#/wiki-summary"; license = lib.licenses.free; }; }) {}; @@ -59220,13 +61503,13 @@ sha256 = "1n45m8xn65a2lg8ff7m6hbqnp2j49n9sfyr924laljvhjbi37knd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wilt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wilt"; sha256 = "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6"; name = "wilt"; }; packageRequires = [ dash emacs s ]; meta = { - homepage = "http://melpa.org/#/wilt"; + homepage = "https://melpa.org/#/wilt"; license = lib.licenses.free; }; }) {}; @@ -59234,17 +61517,17 @@ pname = "wimpy-del"; version = "20151231.1823"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/wimpy-del.el"; + url = "https://www.emacswiki.org/emacs/download/wimpy-del.el"; sha256 = "142ql6886h418f73h3wjblhnd16qvbap7mfr4g2yv4xybh88d4x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wimpy-del"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wimpy-del"; sha256 = "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x"; name = "wimpy-del"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wimpy-del"; + homepage = "https://melpa.org/#/wimpy-del"; license = lib.licenses.free; }; }) {}; @@ -59259,13 +61542,13 @@ sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/win-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/win-switch"; sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my"; name = "win-switch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/win-switch"; + homepage = "https://melpa.org/#/win-switch"; license = lib.licenses.free; }; }) {}; @@ -59273,17 +61556,17 @@ pname = "windata"; version = "20080412.955"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/windata.el"; + url = "https://www.emacswiki.org/emacs/download/windata.el"; sha256 = "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/windata"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/windata"; sha256 = "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5"; name = "windata"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/windata"; + homepage = "https://melpa.org/#/windata"; license = lib.licenses.free; }; }) {}; @@ -59298,13 +61581,13 @@ sha256 = "0g69r64gyz4p3k6n8l0i1837mszycbrp23acnp0iy0y3mg67x3pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-end-visible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-end-visible"; sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq"; name = "window-end-visible"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/window-end-visible"; + homepage = "https://melpa.org/#/window-end-visible"; license = lib.licenses.free; }; }) {}; @@ -59319,13 +61602,13 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-jump"; sha256 = "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr"; name = "window-jump"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/window-jump"; + homepage = "https://melpa.org/#/window-jump"; license = lib.licenses.free; }; }) {}; @@ -59340,13 +61623,13 @@ sha256 = "08chi9b4bap78n069aavvx3850kabk2jflrgymy4jxv08ybqikdg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-layout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-layout"; sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85"; name = "window-layout"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/window-layout"; + homepage = "https://melpa.org/#/window-layout"; license = lib.licenses.free; }; }) {}; @@ -59354,17 +61637,17 @@ pname = "window-number"; version = "20140123.2102"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/window-number.el"; + url = "https://www.emacswiki.org/emacs/download/window-number.el"; sha256 = "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-number"; sha256 = "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap"; name = "window-number"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/window-number"; + homepage = "https://melpa.org/#/window-number"; license = lib.licenses.free; }; }) {}; @@ -59379,13 +61662,13 @@ sha256 = "1f4c6q4larifm745fr8f3w8sxs1sbs77vna29rw120jz8rnlz0jy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-numbering"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-numbering"; sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x"; name = "window-numbering"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/window-numbering"; + homepage = "https://melpa.org/#/window-numbering"; license = lib.licenses.free; }; }) {}; @@ -59393,38 +61676,38 @@ pname = "window-plus"; version = "20151231.1824"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/window+.el"; + url = "https://www.emacswiki.org/emacs/download/window+.el"; sha256 = "0mqdcgk6mdxgl9if7jzgg16zqdwnsp8icrdhnygphw5m9h2dqcnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window+"; sha256 = "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j"; name = "window-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/window+"; + homepage = "https://melpa.org/#/window+"; license = lib.licenses.free; }; }) {}; window-purpose = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, imenu-list, let-alist, lib, melpaBuild }: melpaBuild { pname = "window-purpose"; - version = "20160217.1132"; + version = "20160310.628"; src = fetchFromGitHub { owner = "bmag"; repo = "emacs-purpose"; - rev = "3820ff87df683a1880f5c81427d656e51b0e2865"; - sha256 = "1m3879zr8dc73vn5l6lsmbvnz3lhial2gai4jbldjc1br9jsq1q2"; + rev = "f00cbc038b900ff79ea64028b8d89562d3c7e334"; + sha256 = "16471dng4iknh5wa3931iz9mm8bgd6lsrnhrjkd5ava2bv484gz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-purpose"; sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d"; name = "window-purpose"; }; packageRequires = [ cl-lib emacs imenu-list let-alist ]; meta = { - homepage = "http://melpa.org/#/window-purpose"; + homepage = "https://melpa.org/#/window-purpose"; license = lib.licenses.free; }; }) {}; @@ -59439,13 +61722,13 @@ sha256 = "0hijf56ahbc5inn7n39nj96d948c4d05n9d5ci3g3vbl5hsyb121"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/windsize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/windsize"; sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9"; name = "windsize"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/windsize"; + homepage = "https://melpa.org/#/windsize"; license = lib.licenses.free; }; }) {}; @@ -59460,33 +61743,54 @@ sha256 = "1qrbvidnmgg7jyasb28bc0z1x4a4ayzq5jmv38dsx0qs080s85wy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/winpoint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/winpoint"; sha256 = "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w"; name = "winpoint"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/winpoint"; + homepage = "https://melpa.org/#/winpoint"; + license = lib.licenses.free; + }; + }) {}; + winring = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "winring"; + version = "20150804.1308"; + src = fetchFromGitLab { + owner = "warsaw"; + repo = "winring"; + rev = "ad400939b420b5a7914103b7cfe3f0f6574ea48f"; + sha256 = "1igld3zkvm3qbg1k77cn7rlxi8jqy8cvvp7z5mqwx9ifyihiwd0b"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/winring"; + sha256 = "1mgr5z4h7mf677xx8md3pqd31k17qs62z9iamfih206fcwgh24k4"; + name = "winring"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/winring"; license = lib.licenses.free; }; }) {}; wisp-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wisp-mode"; - version = "20150623.1234"; + version = "20160419.1432"; src = fetchhg { url = "https://bitbucket.com/ArneBab/wisp"; - rev = "f41388ee99f1"; - sha256 = "16711d1ds508nmjw81jm2cfdpqzc55gc175fkhayk0f5swlvd11m"; + rev = "4d512e8e0e0f"; + sha256 = "059m9w0m0rqjwdzdn4l1ib25ys0vym54lvb9bkd40rd0yqd36xfw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wisp-mode"; sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc"; name = "wisp-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wisp-mode"; + homepage = "https://melpa.org/#/wisp-mode"; license = lib.licenses.free; }; }) {}; @@ -59501,34 +61805,34 @@ sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wispjs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wispjs-mode"; sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p"; name = "wispjs-mode"; }; packageRequires = [ clojure-mode ]; meta = { - homepage = "http://melpa.org/#/wispjs-mode"; + homepage = "https://melpa.org/#/wispjs-mode"; license = lib.licenses.free; }; }) {}; with-editor = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "with-editor"; - version = "20160128.1401"; + version = "20160408.401"; src = fetchFromGitHub { owner = "magit"; repo = "with-editor"; - rev = "580f225a6c4476feb36b707c6c705b027339717b"; - sha256 = "0dymhkbkzicjw0379bdzbb594x5xcjbgbn428a30i2i0jwv66pfz"; + rev = "d28d07497f67fea4c62fe7a2d3201fd86fb64fe2"; + sha256 = "0rzq2fbz523fyy2p6ddx9iws89sfgw3pwillw8yz965f3hxx3dj3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/with-editor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/with-editor"; sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb"; name = "with-editor"; }; packageRequires = [ async dash emacs ]; meta = { - homepage = "http://melpa.org/#/with-editor"; + homepage = "https://melpa.org/#/with-editor"; license = lib.licenses.free; }; }) {}; @@ -59543,13 +61847,13 @@ sha256 = "1c7g8f3jr7bb0xxprammfg433gd63in5iiiaq8rjmc94h6hdcys3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/with-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/with-namespace"; sha256 = "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i"; name = "with-namespace"; }; packageRequires = [ dash loop ]; meta = { - homepage = "http://melpa.org/#/with-namespace"; + homepage = "https://melpa.org/#/with-namespace"; license = lib.licenses.free; }; }) {}; @@ -59564,13 +61868,13 @@ sha256 = "12rfpkyjkhikjh0mihhp5h5pzbm4br68nwf8k1ja9djl77vfzv36"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wn-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wn-mode"; sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3"; name = "wn-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/wn-mode"; + homepage = "https://melpa.org/#/wn-mode"; license = lib.licenses.free; }; }) {}; @@ -59585,13 +61889,13 @@ sha256 = "1xna0cjgi9m87pws2h0cza67qbpdhjmdi5h4wv6v4g14nr26hi3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wolfram-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wolfram-mode"; sha256 = "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf"; name = "wolfram-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/wolfram-mode"; + homepage = "https://melpa.org/#/wolfram-mode"; license = lib.licenses.free; }; }) {}; @@ -59606,13 +61910,13 @@ sha256 = "0hacc8ha5w44cgwkipa3nwh1q5gdrcxhjkmw2gnvb1l01crgnack"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wonderland"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wonderland"; sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi"; name = "wonderland"; }; packageRequires = [ dash dash-functional emacs multi ]; meta = { - homepage = "http://melpa.org/#/wonderland"; + homepage = "https://melpa.org/#/wonderland"; license = lib.licenses.free; }; }) {}; @@ -59627,13 +61931,13 @@ sha256 = "1b9pya342ikyxnlyxp86wx8xk6zcdws7jsqs7a9xk027prwkfngj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wordnut"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wordnut"; sha256 = "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n"; name = "wordnut"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/wordnut"; + homepage = "https://melpa.org/#/wordnut"; license = lib.licenses.free; }; }) {}; @@ -59648,34 +61952,34 @@ sha256 = "0d2byl3si2r0zh5ih6xpsgcd9r114ry0lzg5vcf31rr2gqf0j06h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wordsmith-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wordsmith-mode"; sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n"; name = "wordsmith-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wordsmith-mode"; + homepage = "https://melpa.org/#/wordsmith-mode"; license = lib.licenses.free; }; }) {}; worf = callPackage ({ ace-link, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, swiper }: melpaBuild { pname = "worf"; - version = "20160207.848"; + version = "20160422.916"; src = fetchFromGitHub { owner = "abo-abo"; repo = "worf"; - rev = "f36755447b588b739b2bf6ab0fb5eb5f4d8db3df"; - sha256 = "0l2n3vwk251ba06xdrs9z0bp4ligfdjd259a84ap2z3sqdfa98x4"; + rev = "8e5c45d7435a5f15e3c03f0b09fb45808203d3d6"; + sha256 = "1ndvwribh0i49rc6v89sfmxv5alr43995ccslviid563xn3yskii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/worf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/worf"; sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi"; name = "worf"; }; packageRequires = [ ace-link hydra swiper ]; meta = { - homepage = "http://melpa.org/#/worf"; + homepage = "https://melpa.org/#/worf"; license = lib.licenses.free; }; }) {}; @@ -59690,13 +61994,13 @@ sha256 = "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/workgroups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/workgroups"; sha256 = "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8"; name = "workgroups"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/workgroups"; + homepage = "https://melpa.org/#/workgroups"; license = lib.licenses.free; }; }) {}; @@ -59711,13 +62015,13 @@ sha256 = "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/workgroups2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/workgroups2"; sha256 = "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v"; name = "workgroups2"; }; packageRequires = [ anaphora cl-lib dash f ]; meta = { - homepage = "http://melpa.org/#/workgroups2"; + homepage = "https://melpa.org/#/workgroups2"; license = lib.licenses.free; }; }) {}; @@ -59732,13 +62036,13 @@ sha256 = "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/world-time-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/world-time-mode"; sha256 = "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl"; name = "world-time-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/world-time-mode"; + homepage = "https://melpa.org/#/world-time-mode"; license = lib.licenses.free; }; }) {}; @@ -59748,18 +62052,18 @@ version = "20140117.120"; src = fetchFromGitHub { owner = "rejeep"; - repo = "wrap-region"; + repo = "wrap-region.el"; rev = "0eff3165db36464d28ed303ab25b715307cbdee0"; sha256 = "09fzbbrdgq19c3gylj4i0c5g070k65w943wz28mzis8b403vzh3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wrap-region"; - sha256 = "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wrap-region"; + sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i"; name = "wrap-region"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/wrap-region"; + homepage = "https://melpa.org/#/wrap-region"; license = lib.licenses.free; }; }) {}; @@ -59774,34 +62078,34 @@ sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/writegood-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/writegood-mode"; sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d"; name = "writegood-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/writegood-mode"; + homepage = "https://melpa.org/#/writegood-mode"; license = lib.licenses.free; }; }) {}; writeroom-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, visual-fill-column }: melpaBuild { pname = "writeroom-mode"; - version = "20151111.301"; + version = "20160413.1433"; src = fetchFromGitHub { owner = "joostkremers"; repo = "writeroom-mode"; - rev = "57aeef137b04134fe05c7e701e42b05f3edbcc30"; - sha256 = "0an36zra25r0l482irxbwrq90fd3rik53yqw3gccjkgdf3lpkc4x"; + rev = "aed9803e8eb7178361fbac75df98c19a45eff4ee"; + sha256 = "11a3h5v7knj8y360cxin59c1ipd9y4qsqlanrw69yb5k4816ayyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/writeroom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/writeroom-mode"; sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk"; name = "writeroom-mode"; }; packageRequires = [ emacs visual-fill-column ]; meta = { - homepage = "http://melpa.org/#/writeroom-mode"; + homepage = "https://melpa.org/#/writeroom-mode"; license = lib.licenses.free; }; }) {}; @@ -59816,34 +62120,55 @@ sha256 = "1x2ybnv0h52i24vd1n95s4vglc6p79cyxh91a20cwza34svhz152"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ws-butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ws-butler"; sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn"; name = "ws-butler"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ws-butler"; + homepage = "https://melpa.org/#/ws-butler"; license = lib.licenses.free; }; }) {}; wsd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wsd-mode"; - version = "20160213.1417"; + version = "20160317.330"; src = fetchFromGitHub { owner = "josteink"; repo = "wsd-mode"; - rev = "6909b4ea3b82e36819f6cd42ac2330af6c8e54e6"; - sha256 = "1jxpcfslball488lcfjl5qlipwdcfbniz531i6nc87vqp9rf7q1q"; + rev = "53cda783dcb2198be8bbe72f31d37a2fa93e024c"; + sha256 = "1qzz5z1n0a47k6lw31x7yc4vqq90f70jdb4z1vic7yx5ypfar697"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wsd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wsd-mode"; sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc"; name = "wsd-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wsd-mode"; + homepage = "https://melpa.org/#/wsd-mode"; + license = lib.licenses.free; + }; + }) {}; + wttrin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, xterm-color }: + melpaBuild { + pname = "wttrin"; + version = "20160414.1037"; + src = fetchFromGitHub { + owner = "bcbcarl"; + repo = "emacs-wttrin"; + rev = "e2a02cc58920a4f34ba01f7015c9e6bfcce51f61"; + sha256 = "1bq552mxlhq9sd2c9p2yir52p0jnfdav6vcdgs3xklcf89b1403m"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wttrin"; + sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil"; + name = "wttrin"; + }; + packageRequires = [ emacs xterm-color ]; + meta = { + homepage = "https://melpa.org/#/wttrin"; license = lib.licenses.free; }; }) {}; @@ -59858,13 +62183,13 @@ sha256 = "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wwtime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wwtime"; sha256 = "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic"; name = "wwtime"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wwtime"; + homepage = "https://melpa.org/#/wwtime"; license = lib.licenses.free; }; }) {}; @@ -59879,13 +62204,13 @@ sha256 = "0i7bgbhk4lvdkdjh6z4xs69mbdi49985j82cjikzyyskjcqd2klq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/x-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/x-dict"; sha256 = "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc"; name = "x-dict"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/x-dict"; + homepage = "https://melpa.org/#/x-dict"; license = lib.licenses.free; }; }) {}; @@ -59900,34 +62225,34 @@ sha256 = "0lssri13f3c7drkirh3cyxzxm3lix5myfrqb9iy178nybrifgf8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/x86-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/x86-lookup"; sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd"; name = "x86-lookup"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/x86-lookup"; + homepage = "https://melpa.org/#/x86-lookup"; license = lib.licenses.free; }; }) {}; xah-elisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-elisp-mode"; - version = "20160211.1510"; + version = "20160409.527"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-elisp-mode"; - rev = "c52e643ed1b7991211191ba4eab390019530860a"; - sha256 = "0rb4cshfcicazd35dph3lws22yfvnp6cxww2hy7yl9878m53jxak"; + rev = "4b36e58e1e6268b5b3a3f9c76747860d20518fec"; + sha256 = "1x3h69c2n82db8jkmd66c5i3x4rhmas5difm73msbx198w5i6lm7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-elisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-elisp-mode"; sha256 = "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij"; name = "xah-elisp-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xah-elisp-mode"; + homepage = "https://melpa.org/#/xah-elisp-mode"; license = lib.licenses.free; }; }) {}; @@ -59942,34 +62267,34 @@ sha256 = "00ydkpkdgnj9v6dkf4pw9wj5skbq2v5y71xsr37d1fqmdzsb03g7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-find"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-find"; sha256 = "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq"; name = "xah-find"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xah-find"; + homepage = "https://melpa.org/#/xah-find"; license = lib.licenses.free; }; }) {}; xah-fly-keys = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-fly-keys"; - version = "20160214.205"; + version = "20160425.813"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-fly-keys"; - rev = "0300a8f05b39c61083797c504f79a454c9559202"; - sha256 = "0d6byc87bkadw8yssjpkw7mp7lm4bc290vh5skihgk5mphn8mc9i"; + rev = "9a0ae74169a423132c3af49e175a701a02cf8711"; + sha256 = "11cc208b29hcknnza0yvkfp7889ni5vbihk0ac922j17xf413lah"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-fly-keys"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-fly-keys"; sha256 = "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs"; name = "xah-fly-keys"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xah-fly-keys"; + homepage = "https://melpa.org/#/xah-fly-keys"; license = lib.licenses.free; }; }) {}; @@ -59984,13 +62309,13 @@ sha256 = "0abknznp2si80zq5pc0hqr3w3pca2vrv3msm6jz1s8l8zi2hwx72"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-get-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-get-thing"; sha256 = "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg"; name = "xah-get-thing"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xah-get-thing"; + homepage = "https://melpa.org/#/xah-get-thing"; license = lib.licenses.free; }; }) {}; @@ -60005,13 +62330,13 @@ sha256 = "1adyww9jbjvcn9p3z9ggs3gijdmnab275a81ch8sir1xp59pfm3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-lookup"; sha256 = "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc"; name = "xah-lookup"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xah-lookup"; + homepage = "https://melpa.org/#/xah-lookup"; license = lib.licenses.free; }; }) {}; @@ -60026,13 +62351,13 @@ sha256 = "1wsdnqpfgk7f1dbz90k6sf13hjh0x3xjjgappfkmhcy36g7sshl7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-math-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-math-input"; sha256 = "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a"; name = "xah-math-input"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xah-math-input"; + homepage = "https://melpa.org/#/xah-math-input"; license = lib.licenses.free; }; }) {}; @@ -60047,13 +62372,13 @@ sha256 = "18msj947w6msma6zm23slk2v0h92n5ych5j12zbzkzzir49sffql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xah-replace-pairs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-replace-pairs"; sha256 = "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x"; name = "xah-replace-pairs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xah-replace-pairs"; + homepage = "https://melpa.org/#/xah-replace-pairs"; license = lib.licenses.free; }; }) {}; @@ -60068,13 +62393,13 @@ sha256 = "0dc74kqwi0hpihdbb9a9lrqb7823w6j96mah47zyd9d4rd3vx850"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xahk-mode"; sha256 = "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9"; name = "xahk-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xahk-mode"; + homepage = "https://melpa.org/#/xahk-mode"; license = lib.licenses.free; }; }) {}; @@ -60089,13 +62414,13 @@ sha256 = "08hzsqf4gawcr9q2h3rxrf1igvdja84aaa821657k04kdq4dpcbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xbm-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xbm-life"; sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q"; name = "xbm-life"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xbm-life"; + homepage = "https://melpa.org/#/xbm-life"; license = lib.licenses.free; }; }) {}; @@ -60110,34 +62435,34 @@ sha256 = "0p8cs5mh6ab6m0ff6ljs2vd1g8xx0jgc9ybh0j4aj2zcp22avz2n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xcscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xcscope"; sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w"; name = "xcscope"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xcscope"; + homepage = "https://melpa.org/#/xcscope"; license = lib.licenses.free; }; }) {}; xkcd = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "xkcd"; - version = "20151016.2353"; + version = "20160419.630"; src = fetchFromGitHub { owner = "vibhavp"; repo = "emacs-xkcd"; - rev = "8f0009f15926f37f2ea02471425ab6dbac00e50d"; - sha256 = "0gd7ag7cqzkfk8y9rbkrjpnyjnwad5bx86a30vxamd1ql8xp57ap"; + rev = "2c538d41a9728939cc5e8292faa78ed50997877d"; + sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xkcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xkcd"; sha256 = "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w"; name = "xkcd"; }; packageRequires = [ json ]; meta = { - homepage = "http://melpa.org/#/xkcd"; + homepage = "https://melpa.org/#/xkcd"; license = lib.licenses.free; }; }) {}; @@ -60152,13 +62477,13 @@ sha256 = "0c30xh7qxg3y2p5jqkbssz5z53rx0yp64qqyy9f87qzgkcd2jd8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xml+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xml+"; sha256 = "0xgqyfdn6kkp89zj4h54r009a44sbff0nrhh582zw5rlklypwdz1"; name = "xml-plus"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/xml+"; + homepage = "https://melpa.org/#/xml+"; license = lib.licenses.free; }; }) {}; @@ -60173,13 +62498,13 @@ sha256 = "0z3yd3dzcsd7584jchv9q55fx04ig4yjzp8ay2pa112lykv4jxxd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xml-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xml-quotes"; sha256 = "1lmafa695xkhd90k6yiv8a57ch1jx33l1zpm39z0kj546mn6y8aq"; name = "xml-quotes"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xml-quotes"; + homepage = "https://melpa.org/#/xml-quotes"; license = lib.licenses.free; }; }) {}; @@ -60194,13 +62519,13 @@ sha256 = "0kkjfg1l2wg3d5wrgkwnww4d3fca0xpd3k5z9j9gwmjnkxqd95ca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xml-rpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xml-rpc"; sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js"; name = "xml-rpc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xml-rpc"; + homepage = "https://melpa.org/#/xml-rpc"; license = lib.licenses.free; }; }) {}; @@ -60215,34 +62540,55 @@ sha256 = "1nk50iwb6az01r1s2l9wwdqrz3k4ywr00q0zmd9vvi3y9v4cjah0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xmlgen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xmlgen"; sha256 = "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383"; name = "xmlgen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xmlgen"; + homepage = "https://melpa.org/#/xmlgen"; license = lib.licenses.free; }; }) {}; xmlunicode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xmlunicode"; - version = "20160130.1109"; + version = "20160319.1112"; src = fetchFromGitHub { owner = "ndw"; repo = "xmlunicode"; - rev = "b3ccf49b9e344748d72cccb3134e7c49d250645f"; - sha256 = "1k5zilvq64xjhy9lrwf9ss0y7j0v9ppg10xzcrj1hy6jbx54nn8j"; + rev = "f5d185da46414c0509ebd0aa0fab416becf94612"; + sha256 = "178bdfwiinhf98qm88ivmgy6rd0qjx5gnckkclanybva0r8l6832"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xmlunicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xmlunicode"; sha256 = "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p"; name = "xmlunicode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xmlunicode"; + homepage = "https://melpa.org/#/xmlunicode"; + license = lib.licenses.free; + }; + }) {}; + xo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "xo"; + version = "20160403.146"; + src = fetchFromGitHub { + owner = "j-em"; + repo = "xo-emacs"; + rev = "72fcd867cfa332fdb82f732925cf8977e690af78"; + sha256 = "0761amc73mbgaydp3iyfzgyjxp77yk440s24h69hvk87c5vn1cz3"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xo"; + sha256 = "0kpbnxh8sa2dk8anrvgc7d39qap13pyjxh154gpm8xdb9zhfwl25"; + name = "xo"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/xo"; license = lib.licenses.free; }; }) {}; @@ -60257,13 +62603,13 @@ sha256 = "09fpxr55b2adqmca8xhpy8z5cify5091fjdjyxjd1jh5wdp1658v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xquery-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xquery-mode"; sha256 = "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql"; name = "xquery-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xquery-mode"; + homepage = "https://melpa.org/#/xquery-mode"; license = lib.licenses.free; }; }) {}; @@ -60278,55 +62624,76 @@ sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xquery-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xquery-tool"; sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0"; name = "xquery-tool"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xquery-tool"; + homepage = "https://melpa.org/#/xquery-tool"; + license = lib.licenses.free; + }; + }) {}; + xref-js2 = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: + melpaBuild { + pname = "xref-js2"; + version = "20160421.403"; + src = fetchFromGitHub { + owner = "NicolasPetton"; + repo = "xref-js2"; + rev = "9342014d3b86fcadc13469cf78404712c3178d63"; + sha256 = "1mppy0fk4qrhvjzapz95jiiki2bpijvxalrw0h81wqzf62d259va"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xref-js2"; + sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3"; + name = "xref-js2"; + }; + packageRequires = [ emacs js2-mode ]; + meta = { + homepage = "https://melpa.org/#/xref-js2"; license = lib.licenses.free; }; }) {}; xresources-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xresources-theme"; - version = "20141219.1117"; + version = "20160331.902"; src = fetchFromGitHub { owner = "CQQL"; repo = "xresources-theme"; - rev = "4842144f9f83e9d6f71f5ba2fd3abdcf6887de8f"; - sha256 = "1n3biybylvq5c1lpf7zsjsgdrg7mzrhkaw251fp8qmsss0s3sv4g"; + rev = "09a0bfc1684161dd1cdc899c027808a99646a652"; + sha256 = "171vffga2yzxqmgh77vila6x96bz1i6818f1pfaxblw1hz2ga341"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xresources-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xresources-theme"; sha256 = "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga"; name = "xresources-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xresources-theme"; + homepage = "https://melpa.org/#/xresources-theme"; license = lib.licenses.free; }; }) {}; xterm-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xterm-color"; - version = "20150823.846"; + version = "20160401.2225"; src = fetchFromGitHub { owner = "atomontage"; repo = "xterm-color"; - rev = "1bc4ddb0e1bf7562cbf4b6b3bdd2ce3f9b596b39"; - sha256 = "064fpjcj1sp8m5x106dw6zgy0p0rfd5fxcx57h533q263l7z00ny"; + rev = "8e8bfca742d21f3b9bc76089cbd3aa736e86a46a"; + sha256 = "19l9w373ysh1avakz4pmisn0d2mpym8pdxgz7k0m1bbqqzf2war7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xterm-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xterm-color"; sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj"; name = "xterm-color"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xterm-color"; + homepage = "https://melpa.org/#/xterm-color"; license = lib.licenses.free; }; }) {}; @@ -60341,13 +62708,13 @@ sha256 = "10dsf2lgjjqvjzzyc5kwggfk511v8ypmx173bixry3djcc15dsf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xterm-frobs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xterm-frobs"; sha256 = "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf"; name = "xterm-frobs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xterm-frobs"; + homepage = "https://melpa.org/#/xterm-frobs"; license = lib.licenses.free; }; }) {}; @@ -60362,13 +62729,13 @@ sha256 = "1jwimgglhqgp259wjqmpp1wi9j51qxcl1l356jlhjnfp1zh1ihmg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xterm-keybinder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xterm-keybinder"; sha256 = "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz"; name = "xterm-keybinder"; }; packageRequires = [ cl-lib emacs let-alist ]; meta = { - homepage = "http://melpa.org/#/xterm-keybinder"; + homepage = "https://melpa.org/#/xterm-keybinder"; license = lib.licenses.free; }; }) {}; @@ -60383,13 +62750,13 @@ sha256 = "06cbr7y3wp7j8lnbys57g6md4fdx9xhlnxl73pj7xpfa5i2x9ifl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xterm-title"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xterm-title"; sha256 = "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6"; name = "xterm-title"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xterm-title"; + homepage = "https://melpa.org/#/xterm-title"; license = lib.licenses.free; }; }) {}; @@ -60404,13 +62771,13 @@ sha256 = "09mn8s7gzzxgs7kskld8l68zjrcgnvml3fqj69wrfq7b1g62hhxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xtest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xtest"; sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7"; name = "xtest"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/xtest"; + homepage = "https://melpa.org/#/xtest"; license = lib.licenses.free; }; }) {}; @@ -60425,13 +62792,13 @@ sha256 = "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yabin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yabin"; sha256 = "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17"; name = "yabin"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yabin"; + homepage = "https://melpa.org/#/yabin"; license = lib.licenses.free; }; }) {}; @@ -60446,55 +62813,55 @@ sha256 = "0b252m7vb5kg5bjhpgag6nhm32cac8dhlmy4pr0kpa860lh2xlz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yafolding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yafolding"; sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq"; name = "yafolding"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yafolding"; + homepage = "https://melpa.org/#/yafolding"; license = lib.licenses.free; }; }) {}; yagist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yagist"; - version = "20150425.751"; + version = "20160418.8"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "yagist.el"; - rev = "ab19ce3607873a6c523f87fffd653a1e7fbb66c2"; - sha256 = "0sqwz37y6mpc378pp8p6bq9fmhgwfr6rlbngiwgvsp30iq6vjsn4"; + rev = "dcdbd84f348414815d02f3da8a6ee0ac271632d4"; + sha256 = "0lgy9b893mq4harxh80n0n2zia00s2c6ga8p654q563idrskgz17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yagist"; sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd"; name = "yagist"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/yagist"; + homepage = "https://melpa.org/#/yagist"; license = lib.licenses.free; }; }) {}; yahoo-weather = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yahoo-weather"; - version = "20160111.639"; + version = "20160426.729"; src = fetchFromGitHub { owner = "lujun9972"; repo = "yahoo-weather-mode"; - rev = "593695c4ed2d53948ff8586afd3267373c1879f2"; - sha256 = "030dcp5iq0jvr2m6lb5ar7bqzp1l7f835yl7d7fa8zp46fc3a6d5"; + rev = "f6dbc133f3d8685dcb7851a182da5cb95b041c07"; + sha256 = "1r29x9gkj5cfcg2ac4j5vw55n1niainhl2316mfq0zpxjjp2bhwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yahoo-weather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yahoo-weather"; sha256 = "1kzi6yp186wfcqh5q1v9vw6b1h8x89sba6wlnacfpjbarwapfif0"; name = "yahoo-weather"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/yahoo-weather"; + homepage = "https://melpa.org/#/yahoo-weather"; license = lib.licenses.free; }; }) {}; @@ -60509,34 +62876,34 @@ sha256 = "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yalinum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yalinum"; sha256 = "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf"; name = "yalinum"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yalinum"; + homepage = "https://melpa.org/#/yalinum"; license = lib.licenses.free; }; }) {}; yaml-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yaml-mode"; - version = "20160220.540"; + version = "20160426.338"; src = fetchFromGitHub { owner = "yoshiki"; repo = "yaml-mode"; - rev = "c7573962216f79e93642b91e7aa8552f7be46b41"; - sha256 = "1l60zz9yii5z6aqhysjccmsdw0zaxpdwxlz57mkrggh54p1jnazv"; + rev = "e73adcebb1689a4a878dd6d56f3a52cd4ed04c4c"; + sha256 = "03hcm3rv0na79dbivycg78bp08zfxfrgz8rf0i1wdk5sc9hzg105"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaml-mode"; sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc"; name = "yaml-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/yaml-mode"; + homepage = "https://melpa.org/#/yaml-mode"; license = lib.licenses.free; }; }) {}; @@ -60551,34 +62918,34 @@ sha256 = "1xgqqgg4q3hrhiap8gmr8iifdr1mg4dl0j236b6alhrgmykbhimy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaml-tomato"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaml-tomato"; sha256 = "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2"; name = "yaml-tomato"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/yaml-tomato"; + homepage = "https://melpa.org/#/yaml-tomato"; license = lib.licenses.free; }; }) {}; yandex-weather = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yandex-weather"; - version = "20150821.614"; + version = "20160311.1437"; src = fetchFromGitHub { owner = "abstractionlayer"; repo = "yandex-weather.el"; - rev = "41cb91bd1e5aa0e4a317a99e88742631f487ab37"; - sha256 = "17ymdqi19bs9xn0pxylzv7m99f7cn14hx73xljm6bg0qfb8m53f3"; + rev = "6f823fd9e04ff9efb2aa65f333079e9f7e6e5b28"; + sha256 = "0pw44klm8ldsdjphybzkknv8yh23xhzwg76w3d9cqs79jkd0rw8w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yandex-weather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yandex-weather"; sha256 = "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md"; name = "yandex-weather"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yandex-weather"; + homepage = "https://melpa.org/#/yandex-weather"; license = lib.licenses.free; }; }) {}; @@ -60586,38 +62953,38 @@ pname = "yaoddmuse"; version = "20150712.621"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/yaoddmuse.el"; + url = "https://www.emacswiki.org/emacs/download/yaoddmuse.el"; sha256 = "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaoddmuse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaoddmuse"; sha256 = "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54"; name = "yaoddmuse"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yaoddmuse"; + homepage = "https://melpa.org/#/yaoddmuse"; license = lib.licenses.free; }; }) {}; yard-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yard-mode"; - version = "20140816.1244"; + version = "20160310.1050"; src = fetchFromGitHub { owner = "pd"; repo = "yard-mode.el"; - rev = "aa303f6f1c348cbee1dbab3be2ad04b0aaa590cf"; - sha256 = "06mjjxa0blgxd8dbahgyni3b1rscbwjpxby5abrgfbb0fvs2bnfa"; + rev = "78792f6a6fbff4f1bc955f494fdb11378e7f8095"; + sha256 = "096ay60hrd14b459cyxxcf9g7i1ivsxg6yhc0q162px6kl1x0m2y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yard-mode"; sha256 = "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx"; name = "yard-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yard-mode"; + homepage = "https://melpa.org/#/yard-mode"; license = lib.licenses.free; }; }) {}; @@ -60632,13 +62999,13 @@ sha256 = "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yari"; sha256 = "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h"; name = "yari"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yari"; + homepage = "https://melpa.org/#/yari"; license = lib.licenses.free; }; }) {}; @@ -60653,34 +63020,34 @@ sha256 = "08wa97hsfy1rc8ify3rz2ncfij4z6l16p4s20naygqccjv3ir6z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yascroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yascroll"; sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f"; name = "yascroll"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/yascroll"; + homepage = "https://melpa.org/#/yascroll"; license = lib.licenses.free; }; }) {}; - yasnippet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yasnippet"; - version = "20160131.1148"; + version = "20160423.1536"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "yasnippet"; - rev = "88b79505547be31f534a03a871ac98788e1455e3"; - sha256 = "0vpsicap1sk2i78y4ysszhksinh6qvic709n3gbzaz2d4mm0bsya"; + rev = "7f03a2319eba95a5117f0424df6990e4d02741a8"; + sha256 = "1iy2rmsfyaln7c4vn63wr9k6w4v5r4mwvanx15a4k7bha9w97w2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yasnippet"; sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf"; name = "yasnippet"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/yasnippet"; + homepage = "https://melpa.org/#/yasnippet"; license = lib.licenses.free; }; }) {}; @@ -60695,13 +63062,13 @@ sha256 = "1gxn302kwjfq6s6rxxvy0jpp37r2vh4ry899giqbdfr0cc1qnw0c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yatemplate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yatemplate"; sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q"; name = "yatemplate"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/yatemplate"; + homepage = "https://melpa.org/#/yatemplate"; license = lib.licenses.free; }; }) {}; @@ -60714,13 +63081,13 @@ sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yatex"; sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6"; name = "yatex"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yatex"; + homepage = "https://melpa.org/#/yatex"; license = lib.licenses.free; }; }) {}; @@ -60735,13 +63102,13 @@ sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaxception"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaxception"; sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58"; name = "yaxception"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yaxception"; + homepage = "https://melpa.org/#/yaxception"; license = lib.licenses.free; }; }) {}; @@ -60756,34 +63123,43 @@ sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ycm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ycm"; sha256 = "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc"; name = "ycm"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ycm"; + homepage = "https://melpa.org/#/ycm"; license = lib.licenses.free; }; }) {}; - ycmd = callPackage ({ cl-lib ? null, dash, deferred, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: + ycmd = callPackage ({ cl-lib ? null, dash, deferred, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, popup, request, request-deferred }: melpaBuild { pname = "ycmd"; - version = "20160215.144"; + version = "20160426.634"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "61601543ca9b70f6a92a87fb9057af6143ba5ed1"; - sha256 = "10j8zv5m36400wwkwbncqnsm616v59ww0bbkhrxcf6mn56iq8162"; + rev = "1984e49b7894b77438f2257d8058900ab82109e3"; + sha256 = "0dwii83m6cngsnyhzhnmv53p588d4pkkybmcmsj6gsar157l4azi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ycmd"; - sha256 = "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ycmd"; + sha256 = "1mg2b0wgfimrc0hp84q7lc654z2hysrhbzswpq1x812hgq895v8p"; name = "ycmd"; }; - packageRequires = [ cl-lib dash deferred emacs f popup ]; + packageRequires = [ + cl-lib + dash + deferred + emacs + let-alist + popup + request + request-deferred + ]; meta = { - homepage = "http://melpa.org/#/ycmd"; + homepage = "https://melpa.org/#/ycmd"; license = lib.licenses.free; }; }) {}; @@ -60798,13 +63174,34 @@ sha256 = "1fyvvkx6pa41bcr9cyh4yclwdzc5bs742s9fxr6wb4a5scq3hg9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yesql-ghosts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yesql-ghosts"; sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf"; name = "yesql-ghosts"; }; packageRequires = [ cider dash s ]; meta = { - homepage = "http://melpa.org/#/yesql-ghosts"; + homepage = "https://melpa.org/#/yesql-ghosts"; + license = lib.licenses.free; + }; + }) {}; + yoshi-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "yoshi-theme"; + version = "20160304.1718"; + src = fetchFromGitHub { + owner = "ryuslash"; + repo = "yoshi-theme"; + rev = "8e8f2f5f37c071bff36e68c83d9ca2ef80575995"; + sha256 = "1a40kpl5b4sar15s7l8vkfm2iyr5ma3c1n6w5r4z37w5kn59bkk5"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yoshi-theme"; + sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv"; + name = "yoshi-theme"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/yoshi-theme"; license = lib.licenses.free; }; }) {}; @@ -60819,13 +63216,13 @@ sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/youdao-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/youdao-dictionary"; sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym"; name = "youdao-dictionary"; }; packageRequires = [ chinese-word-at-point emacs names popup ]; meta = { - homepage = "http://melpa.org/#/youdao-dictionary"; + homepage = "https://melpa.org/#/youdao-dictionary"; license = lib.licenses.free; }; }) {}; @@ -60840,13 +63237,13 @@ sha256 = "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/z3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/z3-mode"; sha256 = "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd"; name = "z3-mode"; }; packageRequires = [ emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/z3-mode"; + homepage = "https://melpa.org/#/z3-mode"; license = lib.licenses.free; }; }) {}; @@ -60861,33 +63258,33 @@ sha256 = "16k8hha798hrs0qfdwqdr6n7y13ffgm6jj3msrk0zl8117jhaany"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zeal-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zeal-at-point"; sha256 = "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw"; name = "zeal-at-point"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zeal-at-point"; + homepage = "https://melpa.org/#/zeal-at-point"; license = lib.licenses.free; }; }) {}; - zeitgeist = callPackage ({ fetchbzr, fetchurl, lib, melpaBuild }: + zeitgeist = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zeitgeist"; version = "20131228.1209"; - src = fetchbzr { - url = "lp:zeitgeist-datasources"; - rev = "181"; - sha256 = "0f80fxh0y9lfa08fnic7ln0jn8vngfbiygy6sizdmrcxz67559vc"; + src = fetchgit { + url = "git://anongit.freedesktop.org/zeitgeist/zeitgeist-datasources"; + rev = "cdd1c219ed3afa9500403c3c499f49583d599034"; + sha256 = "0xg67asvgav5js03i3bqmh7apndrn0jy5vai0bsh22pq8wgvq083"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zeitgeist"; - sha256 = "0gzmiwxmzcrl5mf0s7vs09p2wl7slq8xbl6ynl76iwzwjxjizahk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zeitgeist"; + sha256 = "0m6drp3c6hp70ypbva3ji2dndl9an1jm2zlhnpwmjxsmw47cd732"; name = "zeitgeist"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zeitgeist"; + homepage = "https://melpa.org/#/zeitgeist"; license = lib.licenses.free; }; }) {}; @@ -60902,34 +63299,34 @@ sha256 = "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zen-and-art-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zen-and-art-theme"; sha256 = "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2"; name = "zen-and-art-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zen-and-art-theme"; + homepage = "https://melpa.org/#/zen-and-art-theme"; license = lib.licenses.free; }; }) {}; zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zenburn-theme"; - version = "20160204.1416"; + version = "20160416.1211"; src = fetchFromGitHub { owner = "bbatsov"; repo = "zenburn-emacs"; - rev = "3d7463ecac9c4668a4d2ceaddea2fd43e677bfba"; - sha256 = "0xihq1bpgckv9jcs6xdnhn8l4hbxywh1krk8ydv099l56r4w1269"; + rev = "e5dc3962fd30005914b79b14e9821d298f2c305a"; + sha256 = "1n7ka608lk0xp7vg4zcw282zna0cwvcwvmhic6ym1ag7lq5cjrhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zenburn-theme"; sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9"; name = "zenburn-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zenburn-theme"; + homepage = "https://melpa.org/#/zenburn-theme"; license = lib.licenses.free; }; }) {}; @@ -60944,34 +63341,54 @@ sha256 = "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zencoding-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zencoding-mode"; sha256 = "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7"; name = "zencoding-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zencoding-mode"; + homepage = "https://melpa.org/#/zencoding-mode"; + license = lib.licenses.free; + }; + }) {}; + zenity-color-picker = callPackage ({ emacs, fetchgit, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "zenity-color-picker"; + version = "20160302.554"; + src = fetchgit { + url = "https://bitbucket.org/Soft/zenity-color-picker.el.git"; + rev = "4f4f46676a461ebc881487fb70c8c181e323db5e"; + sha256 = "1abm0wmfkhbwdnqnvjd9r0pm7ahkcj7ip7jcz6rm49qam815g7rk"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zenity-color-picker"; + sha256 = "1v6ks922paacdgpv5v8cpic1g66670x73ixsy2nixs5qdw241wzl"; + name = "zenity-color-picker"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/zenity-color-picker"; license = lib.licenses.free; }; }) {}; zerodark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zerodark-theme"; - version = "20160216.911"; + version = "20160406.1028"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "zerodark-theme"; - rev = "4d5cc77642164c925f5d0f46bb9c2ef2dafc578f"; - sha256 = "11ym5kx4rkm7ylyx51dlxh165mj350kfxm1qikavy3bqysh7cqrq"; + rev = "ebf2a20ee5cb043d2f84e12ab68f1a8330da07d9"; + sha256 = "0wc5m1xszccfby762k0w2j0vw39vsam730j6p04kbwmhawvjgdh4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zerodark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zerodark-theme"; sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9"; name = "zerodark-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zerodark-theme"; + homepage = "https://melpa.org/#/zerodark-theme"; license = lib.licenses.free; }; }) {}; @@ -60986,13 +63403,13 @@ sha256 = "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zlc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zlc"; sha256 = "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0"; name = "zlc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zlc"; + homepage = "https://melpa.org/#/zlc"; license = lib.licenses.free; }; }) {}; @@ -61007,13 +63424,13 @@ sha256 = "1xsxmvbh3xm3zh9yc6q28h48nar6pwyd51xw04b1x7amwkp8qdnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/znc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/znc"; sha256 = "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz"; name = "znc"; }; packageRequires = [ cl-lib erc ]; meta = { - homepage = "http://melpa.org/#/znc"; + homepage = "https://melpa.org/#/znc"; license = lib.licenses.free; }; }) {}; @@ -61028,13 +63445,13 @@ sha256 = "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zombie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zombie"; sha256 = "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv"; name = "zombie"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zombie"; + homepage = "https://melpa.org/#/zombie"; license = lib.licenses.free; }; }) {}; @@ -61049,13 +63466,13 @@ sha256 = "04m53hzk5n9vxh0gxi8jzpdhsdjlxnvz7hmsisr3bs99v603ha01"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zombie-trellys-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zombie-trellys-mode"; sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv"; name = "zombie-trellys-mode"; }; packageRequires = [ cl-lib emacs haskell-mode ]; meta = { - homepage = "http://melpa.org/#/zombie-trellys-mode"; + homepage = "https://melpa.org/#/zombie-trellys-mode"; license = lib.licenses.free; }; }) {}; @@ -61066,17 +63483,17 @@ src = fetchFromGitHub { owner = "wasamasa"; repo = "zone-nyan"; - rev = "033e9e7d23584fb15e30639dd9e3b2ffeb54618a"; - sha256 = "1zg8fiv62bz7zmalczmfkbgjc6km7n66pzvidivc0p9b9sfxslkp"; + rev = "a9299ec7cc412d10cf7bddd392608fc3efba0899"; + sha256 = "0b8m0mdxbskkqsx86i6942235i8x0pk67a7s8lhsp2anahksazla"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zone-nyan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zone-nyan"; sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b"; name = "zone-nyan"; }; packageRequires = [ esxml ]; meta = { - homepage = "http://melpa.org/#/zone-nyan"; + homepage = "https://melpa.org/#/zone-nyan"; license = lib.licenses.free; }; }) {}; @@ -61091,13 +63508,13 @@ sha256 = "0w550l9im3mhxhja1b7cr9phdcbvx5lprw551lj0d1lv7qvjasz0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zone-rainbow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zone-rainbow"; sha256 = "0l51fmhvx9vsxbs62cbjgqphb691397f651nqin7cj3dfvchzh4j"; name = "zone-rainbow"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/zone-rainbow"; + homepage = "https://melpa.org/#/zone-rainbow"; license = lib.licenses.free; }; }) {}; @@ -61112,13 +63529,13 @@ sha256 = "17mrzf85ym0x5ih4l6sjdjlcmviabf8c8rpvpkd90gp9qxd8pyx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zone-select"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zone-select"; sha256 = "05kc211invmy4ajwf71vgr2b7bdgn99c4a26m95gcjqgy3sh5xzz"; name = "zone-select"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/zone-select"; + homepage = "https://melpa.org/#/zone-select"; license = lib.licenses.free; }; }) {}; @@ -61133,13 +63550,13 @@ sha256 = "0m1q45pza61j0fp8cxkgmds5fyjrk0nqpwhg8m91610m3pvyc3ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zone-sl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zone-sl"; sha256 = "04rwd6vj3abk3bzhq3swxwcq5da2n9cldrcmvnqgjr975np4cgs3"; name = "zone-sl"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/zone-sl"; + homepage = "https://melpa.org/#/zone-sl"; license = lib.licenses.free; }; }) {}; @@ -61147,38 +63564,38 @@ pname = "zones"; version = "20160209.1120"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/zones.el"; + url = "https://www.emacswiki.org/emacs/download/zones.el"; sha256 = "1g6dpyihwaz28ppndhkw3jzmph6pmcnfhaff926j0zr1j701sqdd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zones"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zones"; sha256 = "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w"; name = "zones"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zones"; + homepage = "https://melpa.org/#/zones"; license = lib.licenses.free; }; }) {}; zonokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zonokai-theme"; - version = "20150408.2202"; + version = "20160321.2125"; src = fetchFromGitHub { owner = "ZehCnaS34"; repo = "zonokai-emacs"; - rev = "b6f9eb7eb7e3f9954d786144e74dc6e392df3a69"; - sha256 = "0ls9x2r12z9ki2fy3cbf05mp28x4ws2gk3knacvw7gvvg4sjdq5w"; + rev = "38ee819b711e848437ba6d563594129a0ecac598"; + sha256 = "16ni0va1adpqdnrkiwmpxwrhyanxp5jwbknii2wnbhgq62s7gv43"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zonokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zonokai-theme"; sha256 = "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29"; name = "zonokai-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zonokai-theme"; + homepage = "https://melpa.org/#/zonokai-theme"; license = lib.licenses.free; }; }) {}; @@ -61187,17 +63604,17 @@ pname = "zoom-frm"; version = "20151231.1825"; src = fetchurl { - url = "http://www.emacswiki.org/emacs/download/zoom-frm.el"; + url = "https://www.emacswiki.org/emacs/download/zoom-frm.el"; sha256 = "1whpd97yjby5zbcr4fcn0nxhqvn6k3jn8k2d15i6ss579kziwdqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zoom-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zoom-frm"; sha256 = "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk"; name = "zoom-frm"; }; packageRequires = [ frame-cmds frame-fns ]; meta = { - homepage = "http://melpa.org/#/zoom-frm"; + homepage = "https://melpa.org/#/zoom-frm"; license = lib.licenses.free; }; }) {}; @@ -61212,13 +63629,13 @@ sha256 = "1kl01dlggsrffvakmwixw9j8cncdmlsw805wvzls6l1711r1zjwj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zoom-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zoom-window"; sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; name = "zoom-window"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zoom-window"; + homepage = "https://melpa.org/#/zoom-window"; license = lib.licenses.free; }; }) {}; @@ -61233,13 +63650,13 @@ sha256 = "1hq5ycnj0kwqs25z5rm095d55r768458vc5h5dpjhka5n6c099p1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zop-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zop-to-char"; sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga"; name = "zop-to-char"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/zop-to-char"; + homepage = "https://melpa.org/#/zop-to-char"; license = lib.licenses.free; }; }) {}; @@ -61254,13 +63671,13 @@ sha256 = "0fgwxw7r3zfv0b7xi8bx7kxff2r5hdw9gxf16kwq04fnh18nhi39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zossima"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zossima"; sha256 = "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb"; name = "zossima"; }; packageRequires = [ inf-ruby ]; meta = { - homepage = "http://melpa.org/#/zossima"; + homepage = "https://melpa.org/#/zossima"; license = lib.licenses.free; }; }) {}; @@ -61269,40 +63686,40 @@ pname = "zotelo"; version = "20160118.2245"; src = fetchFromGitHub { - owner = "vitoshka"; + owner = "vspinu"; repo = "zotelo"; rev = "4cabb7342668e146c5565dc5454ece4b4040f1a9"; sha256 = "1335z1v4889njnm98pz2sjk6n7r3vncsz83bk3z6gj5i0ig7wjap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zotelo"; - sha256 = "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zotelo"; + sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36"; name = "zotelo"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/zotelo"; + homepage = "https://melpa.org/#/zotelo"; license = lib.licenses.free; }; }) {}; zotxt = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild, request-deferred }: melpaBuild { pname = "zotxt"; - version = "20151031.1159"; + version = "20160315.132"; src = fetchFromGitLab { owner = "egh"; repo = "zotxt-emacs"; - rev = "3809f0932660c09910639eaecb3d0a8e784420b3"; - sha256 = "015xgsisgsv4w5h6r68f7iw3vwrqvc0az1gcdkd5dfr3nl1h4yzl"; + rev = "3470dd0cb6686f91d4c8b7fb9879f0d13e317d63"; + sha256 = "1azgcmpayxci2xa1rpghrwr1mgnn4a56khc81mlil27nmaj4ay46"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zotxt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zotxt"; sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5"; name = "zotxt"; }; packageRequires = [ request-deferred ]; meta = { - homepage = "http://melpa.org/#/zotxt"; + homepage = "https://melpa.org/#/zotxt"; license = lib.licenses.free; }; }) {}; @@ -61317,13 +63734,13 @@ sha256 = "1sxjpbgi7ydmrlv34l16n40qpg969wfcb6kknndrh3fgjjc3p41b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ztree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ztree"; sha256 = "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20"; name = "ztree"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/ztree"; + homepage = "https://melpa.org/#/ztree"; license = lib.licenses.free; }; }) {}; @@ -61332,19 +63749,19 @@ pname = "zygospore"; version = "20140703.352"; src = fetchFromGitHub { - owner = "louiskottmann"; + owner = "LouisKottmann"; repo = "zygospore.el"; rev = "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8"; sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zygospore"; - sha256 = "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zygospore"; + sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj"; name = "zygospore"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zygospore"; + homepage = "https://melpa.org/#/zygospore"; license = lib.licenses.free; }; }) {}; @@ -61359,13 +63776,13 @@ sha256 = "0y0hhar3krkvbpb5y9k197mb0wfpz8cl6fmxazq8msjml7hkk339"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zzz-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zzz-to-char"; sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh"; name = "zzz-to-char"; }; packageRequires = [ avy cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/zzz-to-char"; + homepage = "https://melpa.org/#/zzz-to-char"; license = lib.licenses.free; }; }) {}; diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index f213ba396a7..3106336a48d 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -4,11 +4,12 @@ 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)"` +1. Clone https://github.com/ttuegel/emacs2nix. +2. Clone https://github.com/milkypostman/melpa. +3. Run `./melpa-packages.sh --melpa PATH_TO_MELPA_CLONE` from emacs2nix. +4. Copy the new `melpa-generated.nix` file into Nixpkgs. +5. Check for evaluation errors: `nix-instantiate ./. -A emacsPackagesNg.melpaPackages`. +6. `git add pkgs/applications/editors/emacs-modes/melpa-generated.nix && git commit -m "melpa-packages $(date -Idate)"` */ diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix index 559418bd05c..001f4f7adc5 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix @@ -1,4 +1,25 @@ { callPackage }: { + _0blayout = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "_0blayout"; + version = "1.0.0"; + src = fetchFromGitHub { + owner = "etu"; + repo = "0blayout-mode"; + rev = "6e4ef20e70aed88489c31c48c73da8ff0ce4572b"; + sha256 = "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/0blayout"; + sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92"; + name = "_0blayout"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/0blayout"; + license = lib.licenses.free; + }; + }) {}; abc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "abc-mode"; @@ -10,13 +31,34 @@ sha256 = "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/abc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/abc-mode"; sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx"; name = "abc-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/abc-mode"; + homepage = "https://melpa.org/#/abc-mode"; + license = lib.licenses.free; + }; + }) {}; + abyss-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "abyss-theme"; + version = "0.5"; + src = fetchFromGitHub { + owner = "mgrbyte"; + repo = "emacs-abyss-theme"; + rev = "e860499a0b2ae0d6d2a27eab12b67dec896a7afc"; + sha256 = "1yr6cqycd7ljkqzfp4prz9ilcpjq8wxg5yf645m24gy9v4w365ia"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/abyss-theme"; + sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c"; + name = "abyss-theme"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/abyss-theme"; license = lib.licenses.free; }; }) {}; @@ -31,13 +73,13 @@ sha256 = "0a8widshsm39cbala17pmnk1sazazhhyqppwalysli170whk49c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-alchemist"; sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0"; name = "ac-alchemist"; }; packageRequires = [ alchemist auto-complete cl-lib ]; meta = { - homepage = "http://melpa.org/#/ac-alchemist"; + homepage = "https://melpa.org/#/ac-alchemist"; license = lib.licenses.free; }; }) {}; @@ -52,13 +94,13 @@ sha256 = "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-anaconda"; sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf"; name = "ac-anaconda"; }; packageRequires = [ anaconda-mode auto-complete dash ]; meta = { - homepage = "http://melpa.org/#/ac-anaconda"; + homepage = "https://melpa.org/#/ac-anaconda"; license = lib.licenses.free; }; }) {}; @@ -73,13 +115,13 @@ sha256 = "12z8nq797hjy0bq5vzpcm7z7bdn0ixc3ma4cj3v51xnwmgknzk6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cake"; sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl"; name = "ac-cake"; }; packageRequires = [ auto-complete cake ]; meta = { - homepage = "http://melpa.org/#/ac-cake"; + homepage = "https://melpa.org/#/ac-cake"; license = lib.licenses.free; }; }) {}; @@ -94,13 +136,13 @@ sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cake2"; sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy"; name = "ac-cake2"; }; packageRequires = [ auto-complete cake2 ]; meta = { - homepage = "http://melpa.org/#/ac-cake2"; + homepage = "https://melpa.org/#/ac-cake2"; license = lib.licenses.free; }; }) {}; @@ -115,13 +157,13 @@ sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-capf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-capf"; sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm"; name = "ac-capf"; }; packageRequires = [ auto-complete cl-lib ]; meta = { - homepage = "http://melpa.org/#/ac-capf"; + homepage = "https://melpa.org/#/ac-capf"; license = lib.licenses.free; }; }) {}; @@ -136,13 +178,13 @@ sha256 = "1vpj0lxbvlxffj2z29l109w70hcphiavyvglsw524agxql3c8yf9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cider"; sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6"; name = "ac-cider"; }; packageRequires = [ auto-complete cider cl-lib ]; meta = { - homepage = "http://melpa.org/#/ac-cider"; + homepage = "https://melpa.org/#/ac-cider"; license = lib.licenses.free; }; }) {}; @@ -157,13 +199,13 @@ sha256 = "1sdgpyq5p824dnxv6r7djwvhyhdmnis8k6992klr8iz7anhxzdam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-clang"; sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4"; name = "ac-clang"; }; packageRequires = [ auto-complete cl-lib emacs pos-tip yasnippet ]; meta = { - homepage = "http://melpa.org/#/ac-clang"; + homepage = "https://melpa.org/#/ac-clang"; license = lib.licenses.free; }; }) {}; @@ -178,13 +220,13 @@ sha256 = "0a3s880nswc2s6yh2v5zsmws550q917i7av8nrxc5sp1d03xqwmn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-dcd"; sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r"; name = "ac-dcd"; }; packageRequires = [ auto-complete flycheck-dmd-dub ]; meta = { - homepage = "http://melpa.org/#/ac-dcd"; + homepage = "https://melpa.org/#/ac-dcd"; license = lib.licenses.free; }; }) {}; @@ -199,13 +241,13 @@ sha256 = "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-emoji"; sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw"; name = "ac-emoji"; }; packageRequires = [ auto-complete cl-lib ]; meta = { - homepage = "http://melpa.org/#/ac-emoji"; + homepage = "https://melpa.org/#/ac-emoji"; license = lib.licenses.free; }; }) {}; @@ -220,13 +262,13 @@ sha256 = "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-etags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-etags"; sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb"; name = "ac-etags"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/ac-etags"; + homepage = "https://melpa.org/#/ac-etags"; license = lib.licenses.free; }; }) {}; @@ -241,13 +283,13 @@ sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-geiser"; sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx"; name = "ac-geiser"; }; packageRequires = [ auto-complete geiser ]; meta = { - homepage = "http://melpa.org/#/ac-geiser"; + homepage = "https://melpa.org/#/ac-geiser"; license = lib.licenses.free; }; }) {}; @@ -262,13 +304,13 @@ sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-haskell-process"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-haskell-process"; sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw"; name = "ac-haskell-process"; }; packageRequires = [ auto-complete haskell-mode ]; meta = { - homepage = "http://melpa.org/#/ac-haskell-process"; + homepage = "https://melpa.org/#/ac-haskell-process"; license = lib.licenses.free; }; }) {}; @@ -283,13 +325,13 @@ sha256 = "1gw38phyaslpql7szvlpwgyfngdgd21f6lq406vq0gjwwmxgig34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-helm"; sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq"; name = "ac-helm"; }; packageRequires = [ auto-complete helm popup ]; meta = { - homepage = "http://melpa.org/#/ac-helm"; + homepage = "https://melpa.org/#/ac-helm"; license = lib.licenses.free; }; }) {}; @@ -304,13 +346,13 @@ sha256 = "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html"; sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa"; name = "ac-html"; }; packageRequires = [ auto-complete web-completion-data ]; meta = { - homepage = "http://melpa.org/#/ac-html"; + homepage = "https://melpa.org/#/ac-html"; license = lib.licenses.free; }; }) {}; @@ -325,13 +367,13 @@ sha256 = "1zmjqnlbfchnb7n2v7ms7q06xma1lmf9ry3v6f4pfnwlmz5lsf3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html-bootstrap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html-bootstrap"; sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1"; name = "ac-html-bootstrap"; }; packageRequires = [ web-completion-data ]; meta = { - homepage = "http://melpa.org/#/ac-html-bootstrap"; + homepage = "https://melpa.org/#/ac-html-bootstrap"; license = lib.licenses.free; }; }) {}; @@ -346,13 +388,13 @@ sha256 = "0p18wxyyc1jmcwx9y5i77s25v4jszv7cmm4bkwm4dzhkxd33kh1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-html-csswatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html-csswatcher"; sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn"; name = "ac-html-csswatcher"; }; packageRequires = [ web-completion-data ]; meta = { - homepage = "http://melpa.org/#/ac-html-csswatcher"; + homepage = "https://melpa.org/#/ac-html-csswatcher"; license = lib.licenses.free; }; }) {}; @@ -367,13 +409,13 @@ sha256 = "1acm13n59sdgvvzicscxzrr5j1x5sa5x4rc4cnkbwb28nw5a5ysm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-inf-ruby"; sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr"; name = "ac-inf-ruby"; }; packageRequires = [ auto-complete inf-ruby ]; meta = { - homepage = "http://melpa.org/#/ac-inf-ruby"; + homepage = "https://melpa.org/#/ac-inf-ruby"; license = lib.licenses.free; }; }) {}; @@ -388,13 +430,13 @@ sha256 = "16qsj3wni4xhcrjx2rnxdzq6jb7jrl4bngi4an37vgdlrx3w8m6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-ispell"; sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67"; name = "ac-ispell"; }; packageRequires = [ auto-complete cl-lib ]; meta = { - homepage = "http://melpa.org/#/ac-ispell"; + homepage = "https://melpa.org/#/ac-ispell"; license = lib.licenses.free; }; }) {}; @@ -409,13 +451,13 @@ sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-mozc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-mozc"; sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f"; name = "ac-mozc"; }; packageRequires = [ auto-complete cl-lib mozc ]; meta = { - homepage = "http://melpa.org/#/ac-mozc"; + homepage = "https://melpa.org/#/ac-mozc"; license = lib.licenses.free; }; }) {}; @@ -430,28 +472,28 @@ sha256 = "16f8hvdz6y8nsfj7094yrvw194ag3w1jvz81h287vcgcvmyb7wdf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-octave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-octave"; sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z"; name = "ac-octave"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/ac-octave"; + homepage = "https://melpa.org/#/ac-octave"; license = lib.licenses.free; }; }) {}; ac-php = callPackage ({ auto-complete, company, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode, popup, s, xcscope, yasnippet }: melpaBuild { pname = "ac-php"; - version = "1.7.2"; + version = "1.7.3"; src = fetchFromGitHub { owner = "xcwen"; repo = "ac-php"; - rev = "109c8fa6410e98bb4374c117590d2a58580571b6"; - sha256 = "0qz8q9qzr7nqdhyjf01p50949bkps62nckampahv9bli4w92xckz"; + rev = "76f0f559905bfb63100aa5d8ddd4d567fff9e5bf"; + sha256 = "0ca4viakvc09mvhk7d01pxnc3v3ydra6413asvdjx555njm9ic0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-php"; sha256 = "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk"; name = "ac-php"; }; @@ -468,7 +510,7 @@ yasnippet ]; meta = { - homepage = "http://melpa.org/#/ac-php"; + homepage = "https://melpa.org/#/ac-php"; license = lib.licenses.free; }; }) {}; @@ -483,13 +525,13 @@ sha256 = "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-racer"; sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp"; name = "ac-racer"; }; packageRequires = [ auto-complete cl-lib racer ]; meta = { - homepage = "http://melpa.org/#/ac-racer"; + homepage = "https://melpa.org/#/ac-racer"; license = lib.licenses.free; }; }) {}; @@ -504,13 +546,13 @@ sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ac-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-slime"; sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg"; name = "ac-slime"; }; packageRequires = [ auto-complete cl-lib slime ]; meta = { - homepage = "http://melpa.org/#/ac-slime"; + homepage = "https://melpa.org/#/ac-slime"; license = lib.licenses.free; }; }) {}; @@ -525,13 +567,13 @@ sha256 = "1pzh5l8dybrrmglj55nbff6065pxlbx14501p3a1qx1wvf24g1sv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-flyspell"; sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd"; name = "ace-flyspell"; }; packageRequires = [ ace-jump-mode ]; meta = { - homepage = "http://melpa.org/#/ace-flyspell"; + homepage = "https://melpa.org/#/ace-flyspell"; license = lib.licenses.free; }; }) {}; @@ -546,13 +588,13 @@ sha256 = "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-isearch"; sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm"; name = "ace-isearch"; }; packageRequires = [ ace-jump-mode avy emacs helm-swoop ]; meta = { - homepage = "http://melpa.org/#/ace-isearch"; + homepage = "https://melpa.org/#/ace-isearch"; license = lib.licenses.free; }; }) {}; @@ -567,13 +609,13 @@ sha256 = "1z82a0lrb61msamqpsy7rxcgs2nfhhckkk4zw0aw49l248p2nrgs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-buffer"; sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi"; name = "ace-jump-buffer"; }; packageRequires = [ ace-jump-mode dash ]; meta = { - homepage = "http://melpa.org/#/ace-jump-buffer"; + homepage = "https://melpa.org/#/ace-jump-buffer"; license = lib.licenses.free; }; }) {}; @@ -588,13 +630,13 @@ sha256 = "1hsnsncarhvkhl2r6cg1x23vgfqzrwcbmdfkwasfgs7pgnd722m7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-helm-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-helm-line"; sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9"; name = "ace-jump-helm-line"; }; packageRequires = [ avy helm ]; meta = { - homepage = "http://melpa.org/#/ace-jump-helm-line"; + homepage = "https://melpa.org/#/ace-jump-helm-line"; license = lib.licenses.free; }; }) {}; @@ -609,13 +651,13 @@ sha256 = "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-mode"; sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6"; name = "ace-jump-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ace-jump-mode"; + homepage = "https://melpa.org/#/ace-jump-mode"; license = lib.licenses.free; }; }) {}; @@ -630,13 +672,13 @@ sha256 = "0yng6qayzqadk4cdviri84ghld4can35q134hm3n3j3vprhpbmca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-jump-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-zap"; sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb"; name = "ace-jump-zap"; }; packageRequires = [ ace-jump-mode dash ]; meta = { - homepage = "http://melpa.org/#/ace-jump-zap"; + homepage = "https://melpa.org/#/ace-jump-zap"; license = lib.licenses.free; }; }) {}; @@ -651,13 +693,13 @@ sha256 = "1v127ld04gn16bgismbcz91kfjk71f3g8yf10r4scfp603y41zgz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-link"; sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5"; name = "ace-link"; }; packageRequires = [ ace-jump-mode ]; meta = { - homepage = "http://melpa.org/#/ace-link"; + homepage = "https://melpa.org/#/ace-link"; license = lib.licenses.free; }; }) {}; @@ -672,13 +714,13 @@ sha256 = "1614xypwiv8xri7w921w7gj26zx7pvwk3212k71qn0capq7hs32g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-pinyin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-pinyin"; sha256 = "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc"; name = "ace-pinyin"; }; packageRequires = [ ace-jump-mode avy ]; meta = { - homepage = "http://melpa.org/#/ace-pinyin"; + homepage = "https://melpa.org/#/ace-pinyin"; license = lib.licenses.free; }; }) {}; @@ -693,13 +735,13 @@ sha256 = "1qiiivkwa95bhyym8ly7fnwwglc9dcifkyr314bsq8m4rp1mgry4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-popup-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-popup-menu"; sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s"; name = "ace-popup-menu"; }; packageRequires = [ avy-menu emacs ]; meta = { - homepage = "http://melpa.org/#/ace-popup-menu"; + homepage = "https://melpa.org/#/ace-popup-menu"; license = lib.licenses.free; }; }) {}; @@ -714,13 +756,13 @@ sha256 = "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ace-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-window"; sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa"; name = "ace-window"; }; packageRequires = [ avy ]; meta = { - homepage = "http://melpa.org/#/ace-window"; + homepage = "https://melpa.org/#/ace-window"; license = lib.licenses.free; }; }) {}; @@ -735,13 +777,13 @@ sha256 = "0hib4a8385q2czi1yqs0hwnva2xi7kw0bdfnrgha1hrl30rilp2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ack-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ack-menu"; sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9"; name = "ack-menu"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ack-menu"; + homepage = "https://melpa.org/#/ack-menu"; license = lib.licenses.free; }; }) {}; @@ -756,34 +798,34 @@ sha256 = "0zybch8hz3mj63i0pxynb4d76ywqcy7b4fsa4hh71c2kb0bnczb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/actionscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/actionscript-mode"; sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq"; name = "actionscript-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/actionscript-mode"; + homepage = "https://melpa.org/#/actionscript-mode"; license = lib.licenses.free; }; }) {}; adoc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, markup-faces, melpaBuild }: melpaBuild { pname = "adoc-mode"; - version = "0.6.4"; + version = "0.6.6"; src = fetchFromGitHub { owner = "sensorflo"; repo = "adoc-mode"; - rev = "b6d54d9007b97f2553c238e0c36586079b666f4f"; - sha256 = "1mb7dlyd5w161xagwn6w5h4q660dppkd50m71vz0w3zmxsc9a0vq"; + rev = "995785538489e573ad208f73c4e833ba60c5cfdb"; + sha256 = "0kp2aafjhqxz3mjr9hkkss85r4n51chws5a2qj1xzb63dh36liwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/adoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/adoc-mode"; sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15"; name = "adoc-mode"; }; packageRequires = [ markup-faces ]; meta = { - homepage = "http://melpa.org/#/adoc-mode"; + homepage = "https://melpa.org/#/adoc-mode"; license = lib.licenses.free; }; }) {}; @@ -798,76 +840,76 @@ sha256 = "1y9bw2vkl952pha2dsi18swyr94mihgwlcg5m8hg4d5bfg2fzcb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aes"; sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v"; name = "aes"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/aes"; + homepage = "https://melpa.org/#/aes"; license = lib.licenses.free; }; }) {}; ag = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ag"; - version = "0.46"; + version = "0.47"; src = fetchFromGitHub { owner = "Wilfred"; repo = "ag.el"; - rev = "12f22a4a9f4ff3c8a0b6f089b8cf6d85a3f8b7eb"; - sha256 = "0hpsv2zyhhfm53hrd2lzvc9gpvfn6g5dpwmzxfl8l1sqjisips2a"; + rev = "f2cfea210b165564e8d44f4c980b2fedac2462c1"; + sha256 = "15kp99vwyi7hb1jkq3lwvqzw3v62ycixsq6y4pd1x0nn2v5p5m5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ag"; sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g"; name = "ag"; }; packageRequires = [ cl-lib dash s ]; meta = { - homepage = "http://melpa.org/#/ag"; + homepage = "https://melpa.org/#/ag"; license = lib.licenses.free; }; }) {}; aggressive-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aggressive-indent"; - version = "1.5"; + version = "1.6"; src = fetchFromGitHub { owner = "Malabarba"; repo = "aggressive-indent-mode"; - rev = "1b831d21ac9688e3f31703f0b492202f6d24a75b"; - sha256 = "0g8mhfab55a4jvb00kcv9f8cyx4l4d5qyfvp7sf7z12qnkik7b6w"; + rev = "97eaa5778ce0cd596a0807ef2e676d2681aabf84"; + sha256 = "0lr6n680ys7c6g6ah9xrid31640yjjkrqavb4164lwydfj5yy1xa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aggressive-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aggressive-indent"; sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2"; name = "aggressive-indent"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/aggressive-indent"; + homepage = "https://melpa.org/#/aggressive-indent"; license = lib.licenses.free; }; }) {}; - ahk-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + ahk-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ahk-mode"; - version = "1.5.5"; + version = "1.5.6"; src = fetchFromGitHub { owner = "ralesi"; repo = "ahk-mode"; - rev = "7b47b40952708ea4e9a0f1969f00caa92700513a"; - sha256 = "1qqrf9ncc3blkv4p2bhh9q6y41pp9p4wr667mm80vb5j8rkpsaa8"; + rev = "bf3205efe7b7a40f3c8978f68f14ea3a939cffa8"; + sha256 = "02nkcin0piv7s93c9plhy361dbqr78m0gd19myc7qb7gnm36kzpn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ahk-mode"; sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni"; name = "ahk-mode"; }; - packageRequires = []; + packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ahk-mode"; + homepage = "https://melpa.org/#/ahk-mode"; license = lib.licenses.free; }; }) {}; @@ -882,34 +924,34 @@ sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/airline-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/airline-themes"; sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih"; name = "airline-themes"; }; packageRequires = [ powerline ]; meta = { - homepage = "http://melpa.org/#/airline-themes"; + homepage = "https://melpa.org/#/airline-themes"; license = lib.licenses.free; }; }) {}; alchemist = callPackage ({ company, dash, elixir-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "alchemist"; - version = "1.7.0"; + version = "1.8.0"; src = fetchFromGitHub { owner = "tonini"; repo = "alchemist.el"; - rev = "19e70b7eea28ee33e1c7f023a82eaee541d75c36"; - sha256 = "0m05wxvvygc4rpkgnnmk6zrp3d8fylzzjz5ag7lh0jk5al4gfay5"; + rev = "d6e65ee1b041ea59b20f7b01e3ee9b3242780794"; + sha256 = "1y5nmcrlsmniv37x7w6yhihmb335n82d96yz7xclhwg59n652pjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alchemist"; sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369"; name = "alchemist"; }; packageRequires = [ company dash elixir-mode emacs pkg-info ]; meta = { - homepage = "http://melpa.org/#/alchemist"; + homepage = "https://melpa.org/#/alchemist"; license = lib.licenses.free; }; }) {}; @@ -924,13 +966,13 @@ sha256 = "1pk5dgjqrynap85700wdivq41bdqvwd5hkfimgmcd48l5lhj9pbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alect-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alect-themes"; sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8"; name = "alect-themes"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/alect-themes"; + homepage = "https://melpa.org/#/alect-themes"; license = lib.licenses.free; }; }) {}; @@ -945,13 +987,13 @@ sha256 = "1vpc3q40m6dcrslki4bg725j4kv6c6xfxwjjl1ilg7la49fwwf26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alert"; sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118"; name = "alert"; }; packageRequires = [ gntp log4e ]; meta = { - homepage = "http://melpa.org/#/alert"; + homepage = "https://melpa.org/#/alert"; license = lib.licenses.free; }; }) {}; @@ -966,13 +1008,13 @@ sha256 = "00kfnkr0rclzbir2xxzr9wf2g0hf1alc004v8i9mqf3ab6dgdqiy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/amd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/amd-mode"; sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06"; name = "amd-mode"; }; packageRequires = [ dash f js2-mode js2-refactor makey projectile s ]; meta = { - homepage = "http://melpa.org/#/amd-mode"; + homepage = "https://melpa.org/#/amd-mode"; license = lib.licenses.free; }; }) {}; @@ -987,13 +1029,13 @@ sha256 = "0sj6cr2bghy80dnwgl7rg61abdlvgfzi0jjc7jrxz7fdzwkcq714"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anaconda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anaconda-mode"; sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r"; name = "anaconda-mode"; }; packageRequires = [ dash emacs f pythonic s ]; meta = { - homepage = "http://melpa.org/#/anaconda-mode"; + homepage = "https://melpa.org/#/anaconda-mode"; license = lib.licenses.free; }; }) {}; @@ -1008,13 +1050,13 @@ sha256 = "0fnxxvw81c34zhmiyr5awl92wr5941n4gklvzjc4jphaf2nhkg4w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anaphora"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anaphora"; sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2"; name = "anaphora"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/anaphora"; + homepage = "https://melpa.org/#/anaphora"; license = lib.licenses.free; }; }) {}; @@ -1029,13 +1071,13 @@ sha256 = "0gjynmzqlqz0d57fb4np6xrklqdn11y4vjbm18rlpvmk92bgw740"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/android-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/android-mode"; sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc"; name = "android-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/android-mode"; + homepage = "https://melpa.org/#/android-mode"; license = lib.licenses.free; }; }) {}; @@ -1050,13 +1092,13 @@ sha256 = "1798nv4djhxzbin68zf6w7dbfm9sc39d0kygky52ii36arg5r1zp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/angular-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/angular-mode"; sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i"; name = "angular-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/angular-mode"; + homepage = "https://melpa.org/#/angular-mode"; license = lib.licenses.free; }; }) {}; @@ -1071,13 +1113,13 @@ sha256 = "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/angular-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/angular-snippets"; sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c"; name = "angular-snippets"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/angular-snippets"; + homepage = "https://melpa.org/#/angular-snippets"; license = lib.licenses.free; }; }) {}; @@ -1092,13 +1134,13 @@ sha256 = "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/annotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/annotate"; sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy"; name = "annotate"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/annotate"; + homepage = "https://melpa.org/#/annotate"; license = lib.licenses.free; }; }) {}; @@ -1113,13 +1155,13 @@ sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/annoying-arrows-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/annoying-arrows-mode"; sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7"; name = "annoying-arrows-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/annoying-arrows-mode"; + homepage = "https://melpa.org/#/annoying-arrows-mode"; license = lib.licenses.free; }; }) {}; @@ -1129,18 +1171,18 @@ version = "0.4.1"; src = fetchFromGitHub { owner = "rejeep"; - repo = "ansi"; + repo = "ansi.el"; rev = "a042c5954453bab9a74177e2b78ad17a824caebc"; sha256 = "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansi"; - sha256 = "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansi"; + sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89"; name = "ansi"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/ansi"; + homepage = "https://melpa.org/#/ansi"; license = lib.licenses.free; }; }) {}; @@ -1155,13 +1197,13 @@ sha256 = "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansible"; sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g"; name = "ansible"; }; packageRequires = [ f s ]; meta = { - homepage = "http://melpa.org/#/ansible"; + homepage = "https://melpa.org/#/ansible"; license = lib.licenses.free; }; }) {}; @@ -1176,34 +1218,34 @@ sha256 = "05z379k6a7xq9d2zapf687x3f37jpmh6kfghpgxdd18v0hzca8ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ansible-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansible-doc"; sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w"; name = "ansible-doc"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ansible-doc"; + homepage = "https://melpa.org/#/ansible-doc"; license = lib.licenses.free; }; }) {}; anti-zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anti-zenburn-theme"; - version = "2.3.1"; + version = "2.4"; src = fetchFromGitHub { owner = "m00natic"; repo = "anti-zenburn-theme"; - rev = "ed9760daa4224666105d9449ea1d77710c297fe2"; - sha256 = "1i1xb04g17f6029w0n8fp55gklgr9kh6c24m9dfrkn5q3dlvd26p"; + rev = "53591a18aee564c6d08a5be69b4060a299903255"; + sha256 = "06cn81sksvl88l1g3cfgp1kf8xzfv00b31j2rf58f45zlbl5ckv9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anti-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anti-zenburn-theme"; sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk"; name = "anti-zenburn-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/anti-zenburn-theme"; + homepage = "https://melpa.org/#/anti-zenburn-theme"; license = lib.licenses.free; }; }) {}; @@ -1218,13 +1260,13 @@ sha256 = "1z6l72dn98icqsmxb3rrj6l63ijc3xgfa3vdl19yqa2rfy6ya721"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anyins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anyins"; sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c"; name = "anyins"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/anyins"; + homepage = "https://melpa.org/#/anyins"; license = lib.licenses.free; }; }) {}; @@ -1235,16 +1277,16 @@ src = fetchgit { url = "http://repo.or.cz/r/anything-config.git"; rev = "6b9718fba257e6c2912ba70f9895251ab1926928"; - sha256 = "86b90766ccb31a492998299092a3d0b892a8ac0bdb8e1833ef75fa6d79c7c721"; + sha256 = "08f7qxwnvykmxwrii3nv1fnai4mqs2ir5419k0llj6mkrik0gfc6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything"; sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj"; name = "anything"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/anything"; + homepage = "https://melpa.org/#/anything"; license = lib.licenses.free; }; }) {}; @@ -1259,13 +1301,13 @@ sha256 = "01lw9159axg5w9bpdy55m4zc902zmsqvk213ky1nmgnln0fvq3rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-exuberant-ctags"; sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk"; name = "anything-exuberant-ctags"; }; packageRequires = [ anything ]; meta = { - homepage = "http://melpa.org/#/anything-exuberant-ctags"; + homepage = "https://melpa.org/#/anything-exuberant-ctags"; license = lib.licenses.free; }; }) {}; @@ -1280,13 +1322,13 @@ sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-replace-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-replace-string"; sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71"; name = "anything-replace-string"; }; packageRequires = [ anything ]; meta = { - homepage = "http://melpa.org/#/anything-replace-string"; + homepage = "https://melpa.org/#/anything-replace-string"; license = lib.licenses.free; }; }) {}; @@ -1301,13 +1343,13 @@ sha256 = "1bcvin2694ypqgiw0mqk82riq7gw6ra10vbkzng1yp9jp2qr6wmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anything-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-sage"; sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3"; name = "anything-sage"; }; packageRequires = [ anything cl-lib sage-shell-mode ]; meta = { - homepage = "http://melpa.org/#/anything-sage"; + homepage = "https://melpa.org/#/anything-sage"; license = lib.licenses.free; }; }) {}; @@ -1322,13 +1364,13 @@ sha256 = "1dxaf68przg0hh0p1zhxsq2dysp3ln178yxhbqalxw67bjy8ikny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anzu"; sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i"; name = "anzu"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/anzu"; + homepage = "https://melpa.org/#/anzu"; license = lib.licenses.free; }; }) {}; @@ -1343,13 +1385,13 @@ sha256 = "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/apples-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apples-mode"; sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s"; name = "apples-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/apples-mode"; + homepage = "https://melpa.org/#/apples-mode"; license = lib.licenses.free; }; }) {}; @@ -1364,13 +1406,13 @@ sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aproject"; sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2"; name = "aproject"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/aproject"; + homepage = "https://melpa.org/#/aproject"; license = lib.licenses.free; }; }) {}; @@ -1385,13 +1427,34 @@ sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/artbollocks-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/artbollocks-mode"; sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp"; name = "artbollocks-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/artbollocks-mode"; + homepage = "https://melpa.org/#/artbollocks-mode"; + license = lib.licenses.free; + }; + }) {}; + arview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "arview"; + version = "1.2"; + src = fetchFromGitHub { + owner = "afainer"; + repo = "arview"; + rev = "5437b4221b64b238c273a651d4792c577dba6d45"; + sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/arview"; + sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y"; + name = "arview"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/arview"; license = lib.licenses.free; }; }) {}; @@ -1406,55 +1469,76 @@ sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/asilea"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/asilea"; sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j"; name = "asilea"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/asilea"; + homepage = "https://melpa.org/#/asilea"; license = lib.licenses.free; }; }) {}; - async = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + assess = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { - pname = "async"; - version = "1.6"; + pname = "assess"; + version = "0.1"; src = fetchFromGitHub { - owner = "jwiegley"; - repo = "emacs-async"; - rev = "c25bf17b34a1608da45e8a1ca02e1c89a34acd34"; - sha256 = "0z91alzf4ajj3r7pnwazynvp81cg67csy9kf87fk98024xldpkdp"; + owner = "phillord"; + repo = "assess"; + rev = "880d519d6b1e7202a72b1632733690310efb197f"; + sha256 = "0jy08kj7cy744lbdyil0j50b08vm76bzxwmzd99v4sz12s3qcd2s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/async"; - sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f"; - name = "async"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "http://melpa.org/#/async"; - license = lib.licenses.free; - }; - }) {}; - aurel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "aurel"; - version = "0.7"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "aurel"; - rev = "3458214e0d2942b03c2926de67ca06cbe42b37d0"; - sha256 = "01ig5v5f2xya7hyq678nd8j8x972yfbni813c0imxkkba996a2k7"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aurel"; - sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl"; - name = "aurel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/assess"; + sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr"; + name = "assess"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/aurel"; + homepage = "https://melpa.org/#/assess"; + license = lib.licenses.free; + }; + }) {}; + async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "async"; + version = "1.7"; + src = fetchFromGitHub { + owner = "jwiegley"; + repo = "emacs-async"; + rev = "22de0f5792c9140f1da7c7459f30da0863b07e78"; + sha256 = "074wdciq62jfc41f829590p4y52dnkn3nxicj9lcabgxwz7cahjp"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/async"; + sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f"; + name = "async"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/async"; + license = lib.licenses.free; + }; + }) {}; + aurel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "aurel"; + version = "0.8"; + src = fetchFromGitHub { + owner = "alezost"; + repo = "aurel"; + rev = "2b462d08c0e21f7fee0039457a02fa766fc6181c"; + sha256 = "0dqr1yrzf7a8655dsbcch4622rc75j9yjbn9zhkyikqjicddnlda"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aurel"; + sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl"; + name = "aurel"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/aurel"; license = lib.licenses.free; }; }) {}; @@ -1464,81 +1548,81 @@ version = "0.0.2"; src = fetchFromGitHub { owner = "bdd"; - repo = "aurora-config.el"; + repo = "aurora-config-mode.el"; rev = "0a7ca7987c3a0824e25470389c7d25c337a81593"; sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/aurora-config-mode"; - sha256 = "0yqmpwj1vp0d5w9zw1hbyxzsbvw165dsgk1v1dxizkqwn7b1v7jm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aurora-config-mode"; + sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c"; name = "aurora-config-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/aurora-config-mode"; + homepage = "https://melpa.org/#/aurora-config-mode"; license = lib.licenses.free; }; }) {}; auth-password-store = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store, seq }: melpaBuild { pname = "auth-password-store"; - version = "1.0.3"; + version = "1.0.4"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "auth-password-store"; - rev = "d7fc1f026c3f43190cacedfa6eff8da916e607f5"; - sha256 = "0gi65n1np63zi2ylc4y1licwvk97jl92s1v98fv5y61kppi1d8sq"; + rev = "209663c772105ae87d244cce9247695823914a00"; + sha256 = "1b6g7qvrxv6gkl4izq1y7k0x0l7izyfnpki10di5vdv3jp6xg9b2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auth-password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auth-password-store"; sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5"; name = "auth-password-store"; }; packageRequires = [ cl-lib emacs password-store seq ]; meta = { - homepage = "http://melpa.org/#/auth-password-store"; + homepage = "https://melpa.org/#/auth-password-store"; license = lib.licenses.free; }; }) {}; auto-compile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, packed }: melpaBuild { pname = "auto-compile"; - version = "1.3.0"; + version = "1.3.1"; src = fetchFromGitHub { owner = "tarsius"; repo = "auto-compile"; - rev = "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29"; - sha256 = "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg"; + rev = "61c6bec0ab4e44fe68628a5ee0c8b3b7f50c001f"; + sha256 = "05crb8cm7s1nggrqq0xcs2xiabjw3vh44fnkdiilq1c5cnajdcrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-compile"; sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks"; name = "auto-compile"; }; packageRequires = [ dash emacs packed ]; meta = { - homepage = "http://melpa.org/#/auto-compile"; + homepage = "https://melpa.org/#/auto-compile"; license = lib.licenses.free; }; }) {}; auto-complete = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "auto-complete"; - version = "1.5.0"; + version = "1.5.1"; src = fetchFromGitHub { owner = "auto-complete"; repo = "auto-complete"; - rev = "70770b17168c30fe482467d7219cfbe8650c5e1c"; - sha256 = "0q880dksf3bj1hixa4zhj3ybvrqf1wcnjnmb37i49qwdy6p1ma06"; + rev = "0655b7f1e6c0f8475adc55f2b86404a877f26a77"; + sha256 = "04i9b11iksg6acn885wl3qgi5xpsm3yszlqmd2x21yhprndlz7gb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete"; sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3"; name = "auto-complete"; }; packageRequires = [ cl-lib popup ]; meta = { - homepage = "http://melpa.org/#/auto-complete"; + homepage = "https://melpa.org/#/auto-complete"; license = lib.licenses.free; }; }) {}; @@ -1553,13 +1637,13 @@ sha256 = "1kp2l1cgzlg2g3wllz4gl1ssn4lnx2sn26xqigfrpr8y5rj2bsfj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-clang-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-clang-async"; sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh"; name = "auto-complete-clang-async"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-complete-clang-async"; + homepage = "https://melpa.org/#/auto-complete-clang-async"; license = lib.licenses.free; }; }) {}; @@ -1574,13 +1658,13 @@ sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-exuberant-ctags"; sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd"; name = "auto-complete-exuberant-ctags"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/auto-complete-exuberant-ctags"; + homepage = "https://melpa.org/#/auto-complete-exuberant-ctags"; license = lib.licenses.free; }; }) {}; @@ -1595,13 +1679,13 @@ sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-nxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-nxml"; sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a"; name = "auto-complete-nxml"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/auto-complete-nxml"; + homepage = "https://melpa.org/#/auto-complete-nxml"; license = lib.licenses.free; }; }) {}; @@ -1616,13 +1700,13 @@ sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-pcmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-pcmp"; sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna"; name = "auto-complete-pcmp"; }; packageRequires = [ auto-complete log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/auto-complete-pcmp"; + homepage = "https://melpa.org/#/auto-complete-pcmp"; license = lib.licenses.free; }; }) {}; @@ -1637,13 +1721,13 @@ sha256 = "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-complete-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-sage"; sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1"; name = "auto-complete-sage"; }; packageRequires = [ auto-complete sage-shell-mode ]; meta = { - homepage = "http://melpa.org/#/auto-complete-sage"; + homepage = "https://melpa.org/#/auto-complete-sage"; license = lib.licenses.free; }; }) {}; @@ -1658,13 +1742,13 @@ sha256 = "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-dictionary"; sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16"; name = "auto-dictionary"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-dictionary"; + homepage = "https://melpa.org/#/auto-dictionary"; license = lib.licenses.free; }; }) {}; @@ -1679,13 +1763,13 @@ sha256 = "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-indent-mode"; sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz"; name = "auto-indent-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/auto-indent-mode"; + homepage = "https://melpa.org/#/auto-indent-mode"; license = lib.licenses.free; }; }) {}; @@ -1700,13 +1784,13 @@ sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-package-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-package-update"; sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k"; name = "auto-package-update"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/auto-package-update"; + homepage = "https://melpa.org/#/auto-package-update"; license = lib.licenses.free; }; }) {}; @@ -1721,13 +1805,13 @@ sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-shell-command"; sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j"; name = "auto-shell-command"; }; packageRequires = [ deferred popwin ]; meta = { - homepage = "http://melpa.org/#/auto-shell-command"; + homepage = "https://melpa.org/#/auto-shell-command"; license = lib.licenses.free; }; }) {}; @@ -1742,13 +1826,13 @@ sha256 = "0n3r7j83csby2s7284hy5pycynazyrkljxkn6xqn08gvxbbbdpdq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/auto-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-yasnippet"; sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa"; name = "auto-yasnippet"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/auto-yasnippet"; + homepage = "https://melpa.org/#/auto-yasnippet"; license = lib.licenses.free; }; }) {}; @@ -1763,13 +1847,13 @@ sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autodisass-java-bytecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autodisass-java-bytecode"; sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc"; name = "autodisass-java-bytecode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/autodisass-java-bytecode"; + homepage = "https://melpa.org/#/autodisass-java-bytecode"; license = lib.licenses.free; }; }) {}; @@ -1784,13 +1868,13 @@ sha256 = "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autodisass-llvm-bitcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autodisass-llvm-bitcode"; sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01"; name = "autodisass-llvm-bitcode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/autodisass-llvm-bitcode"; + homepage = "https://melpa.org/#/autodisass-llvm-bitcode"; license = lib.licenses.free; }; }) {}; @@ -1805,13 +1889,13 @@ sha256 = "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autopair"; sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28"; name = "autopair"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/autopair"; + homepage = "https://melpa.org/#/autopair"; license = lib.licenses.free; }; }) {}; @@ -1826,13 +1910,13 @@ sha256 = "0rq9ab264565z83cly743nbhrd9m967apmnlhqr1gy8dm4hcy7nm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy"; sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag"; name = "avy"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/avy"; + homepage = "https://melpa.org/#/avy"; license = lib.licenses.free; }; }) {}; @@ -1847,34 +1931,34 @@ sha256 = "1564yv9330vjymw3xnikc2lz20f65n40fbl8m1zs1gp4nlgzkk38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-menu"; sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw"; name = "avy-menu"; }; packageRequires = [ avy emacs ]; meta = { - homepage = "http://melpa.org/#/avy-menu"; + homepage = "https://melpa.org/#/avy-menu"; license = lib.licenses.free; }; }) {}; avy-migemo = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, migemo }: melpaBuild { pname = "avy-migemo"; - version = "0.3"; + version = "0.3.2"; src = fetchFromGitHub { owner = "momomo5717"; repo = "avy-migemo"; - rev = "d95d0485f2fc580a918c4769f669d273c7a6c334"; - sha256 = "0n1c5xvr782zgvby38w6wxrqac1lx35n0m7rl4ki325c6dchkgsx"; + rev = "ce87777bea76c45be5f185e9fe356a8efe5c2d16"; + sha256 = "0s6m44b49jm5cnrx1pvk7rfw3zhwiw5xasdlgmlvv7wws7m5snd9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-migemo"; sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296"; name = "avy-migemo"; }; packageRequires = [ avy emacs migemo ]; meta = { - homepage = "http://melpa.org/#/avy-migemo"; + homepage = "https://melpa.org/#/avy-migemo"; license = lib.licenses.free; }; }) {}; @@ -1889,13 +1973,13 @@ sha256 = "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/avy-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-zap"; sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx"; name = "avy-zap"; }; packageRequires = [ avy ]; meta = { - homepage = "http://melpa.org/#/avy-zap"; + homepage = "https://melpa.org/#/avy-zap"; license = lib.licenses.free; }; }) {}; @@ -1910,13 +1994,13 @@ sha256 = "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/babel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/babel"; sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c"; name = "babel"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/babel"; + homepage = "https://melpa.org/#/babel"; license = lib.licenses.free; }; }) {}; @@ -1931,7 +2015,7 @@ sha256 = "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/back-button"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/back-button"; sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85"; name = "back-button"; }; @@ -1943,7 +2027,7 @@ ucs-utils ]; meta = { - homepage = "http://melpa.org/#/back-button"; + homepage = "https://melpa.org/#/back-button"; license = lib.licenses.free; }; }) {}; @@ -1958,13 +2042,13 @@ sha256 = "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/badwolf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/badwolf-theme"; sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41"; name = "badwolf-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/badwolf-theme"; + homepage = "https://melpa.org/#/badwolf-theme"; license = lib.licenses.free; }; }) {}; @@ -1979,13 +2063,13 @@ sha256 = "11rlmrjdpa3vnf0h9vcd75946q9jyf1mpbm7h12hmpj6g2pavgdd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bash-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bash-completion"; sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj"; name = "bash-completion"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bash-completion"; + homepage = "https://melpa.org/#/bash-completion"; license = lib.licenses.free; }; }) {}; @@ -2000,13 +2084,13 @@ sha256 = "1xvxz9sk9l57a4kiiavxxdp0v241mfgiy2lg5ilacq1cd6xrrhky"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbcode-mode"; sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89"; name = "bbcode-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bbcode-mode"; + homepage = "https://melpa.org/#/bbcode-mode"; license = lib.licenses.free; }; }) {}; @@ -2021,13 +2105,13 @@ sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-"; sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf"; name = "bbdb-"; }; packageRequires = [ bbdb log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/bbdb-"; + homepage = "https://melpa.org/#/bbdb-"; license = lib.licenses.free; }; }) {}; @@ -2042,13 +2126,13 @@ sha256 = "0fg72qnb40djyciy4gzj359lqlcbbrq0indbkzd0dj09zipkx0df"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-vcard"; sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj"; name = "bbdb-vcard"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bbdb-vcard"; + homepage = "https://melpa.org/#/bbdb-vcard"; license = lib.licenses.free; }; }) {}; @@ -2063,13 +2147,13 @@ sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bbdb2erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb2erc"; sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd"; name = "bbdb2erc"; }; packageRequires = [ bbdb ]; meta = { - homepage = "http://melpa.org/#/bbdb2erc"; + homepage = "https://melpa.org/#/bbdb2erc"; license = lib.licenses.free; }; }) {}; @@ -2078,19 +2162,19 @@ pname = "beeminder"; version = "1.0.0"; src = fetchFromGitHub { - owner = "sodaware"; + owner = "Sodaware"; repo = "beeminder.el"; rev = "54cc1277f2a7667a7b0d999dc49ceffcf2862b44"; sha256 = "01d10algmi9a4xd7mzf7n3zxfs2qf5as66wx17mff5cd8dahxj1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/beeminder"; - sha256 = "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/beeminder"; + sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww"; name = "beeminder"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/beeminder"; + homepage = "https://melpa.org/#/beeminder"; license = lib.licenses.free; }; }) {}; @@ -2105,13 +2189,13 @@ sha256 = "1agrci37bni1vfkxg171l53fvsnjdryhf05v54wj07jngnwf3cw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/beginend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/beginend"; sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq"; name = "beginend"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/beginend"; + homepage = "https://melpa.org/#/beginend"; license = lib.licenses.free; }; }) {}; @@ -2126,13 +2210,55 @@ sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/better-defaults"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/better-defaults"; sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm"; name = "better-defaults"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/better-defaults"; + homepage = "https://melpa.org/#/better-defaults"; + license = lib.licenses.free; + }; + }) {}; + biblio = callPackage ({ biblio-core, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "biblio"; + version = "0.1"; + src = fetchFromGitHub { + owner = "cpitclaudel"; + repo = "biblio.el"; + rev = "2550042b647b2b5c400c9cd8ec5fc80adb0fa6df"; + sha256 = "0skg8wcgdfzd59ay4fbbbdd258cm8q7v321iml46bdipzk0r5lnw"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/biblio"; + sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g"; + name = "biblio"; + }; + packageRequires = [ biblio-core emacs ]; + meta = { + homepage = "https://melpa.org/#/biblio"; + license = lib.licenses.free; + }; + }) {}; + biblio-core = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, seq }: + melpaBuild { + pname = "biblio-core"; + version = "0.1"; + src = fetchFromGitHub { + owner = "cpitclaudel"; + repo = "biblio.el"; + rev = "2550042b647b2b5c400c9cd8ec5fc80adb0fa6df"; + sha256 = "0skg8wcgdfzd59ay4fbbbdd258cm8q7v321iml46bdipzk0r5lnw"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/biblio-core"; + sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97"; + name = "biblio-core"; + }; + packageRequires = [ dash emacs let-alist seq ]; + meta = { + homepage = "https://melpa.org/#/biblio-core"; license = lib.licenses.free; }; }) {}; @@ -2147,13 +2273,34 @@ sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bind-key"; sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm"; name = "bind-key"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bind-key"; + homepage = "https://melpa.org/#/bind-key"; + license = lib.licenses.free; + }; + }) {}; + bind-map = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "bind-map"; + version = "1.0.4"; + src = fetchFromGitHub { + owner = "justbur"; + repo = "emacs-bind-map"; + rev = "6f84c0254f9ef7580ee32fb66190cc694cc05629"; + sha256 = "047qzylycx3r06dd0q9q9f37pvfigmlv59gi3wqvlg6k3gcmdvy0"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bind-map"; + sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358"; + name = "bind-map"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/bind-map"; license = lib.licenses.free; }; }) {}; @@ -2168,13 +2315,13 @@ sha256 = "0pmpg54faq0l886f2cmnmwm28d2yfg8adk7gp7623gx0ifggn332"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bing-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bing-dict"; sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1"; name = "bing-dict"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bing-dict"; + homepage = "https://melpa.org/#/bing-dict"; license = lib.licenses.free; }; }) {}; @@ -2189,13 +2336,13 @@ sha256 = "1r3f5d67x257g8kvdbdsl4w3y1dvc1d6s9x8bygbkvyahfi5m5hn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/birds-of-paradise-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/birds-of-paradise-plus-theme"; sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m"; name = "birds-of-paradise-plus-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/birds-of-paradise-plus-theme"; + homepage = "https://melpa.org/#/birds-of-paradise-plus-theme"; license = lib.licenses.free; }; }) {}; @@ -2210,13 +2357,13 @@ sha256 = "1j2ar9sinbrraqvymqmjray48xbr1arhpigzgkgnhkc2zzqv8dwb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bog"; sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl"; name = "bog"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/bog"; + homepage = "https://melpa.org/#/bog"; license = lib.licenses.free; }; }) {}; @@ -2231,13 +2378,13 @@ sha256 = "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bongo"; sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv"; name = "bongo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bongo"; + homepage = "https://melpa.org/#/bongo"; license = lib.licenses.free; }; }) {}; @@ -2252,13 +2399,13 @@ sha256 = "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boon"; sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb"; name = "boon"; }; packageRequires = [ emacs expand-region multiple-cursors ]; meta = { - homepage = "http://melpa.org/#/boon"; + homepage = "https://melpa.org/#/boon"; license = lib.licenses.free; }; }) {}; @@ -2273,13 +2420,13 @@ sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/boxquote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boxquote"; sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s"; name = "boxquote"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/boxquote"; + homepage = "https://melpa.org/#/boxquote"; license = lib.licenses.free; }; }) {}; @@ -2294,13 +2441,13 @@ sha256 = "0y9m6cv70pzcm0v2v8nwmyh1xx40831chx72m85h5ic5db03gy7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-kill-ring"; sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4"; name = "browse-kill-ring"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/browse-kill-ring"; + homepage = "https://melpa.org/#/browse-kill-ring"; license = lib.licenses.free; }; }) {}; @@ -2315,13 +2462,13 @@ sha256 = "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/browse-url-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-url-dwim"; sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf"; name = "browse-url-dwim"; }; packageRequires = [ string-utils ]; meta = { - homepage = "http://melpa.org/#/browse-url-dwim"; + homepage = "https://melpa.org/#/browse-url-dwim"; license = lib.licenses.free; }; }) {}; @@ -2336,13 +2483,13 @@ sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-flip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-flip"; sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098"; name = "buffer-flip"; }; packageRequires = [ key-chord ]; meta = { - homepage = "http://melpa.org/#/buffer-flip"; + homepage = "https://melpa.org/#/buffer-flip"; license = lib.licenses.free; }; }) {}; @@ -2357,13 +2504,13 @@ sha256 = "0xdks4jfqyhkh34y48iq3gz8swp0f526kwnaai5mhgvazvs4za8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-move"; sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg"; name = "buffer-move"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/buffer-move"; + homepage = "https://melpa.org/#/buffer-move"; license = lib.licenses.free; }; }) {}; @@ -2378,13 +2525,13 @@ sha256 = "0rp9hiysy13c4in7b420r7yjza2knlmvphj7l01xbxphbilplqk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buffer-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-utils"; sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2"; name = "buffer-utils"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/buffer-utils"; + homepage = "https://melpa.org/#/buffer-utils"; license = lib.licenses.free; }; }) {}; @@ -2399,13 +2546,13 @@ sha256 = "0x9q4amsmawi8jqj9xxg81khvb3gyyf9hjvb0w6vhrgjwpxiq8sy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bufshow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bufshow"; sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h"; name = "bufshow"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bufshow"; + homepage = "https://melpa.org/#/bufshow"; license = lib.licenses.free; }; }) {}; @@ -2420,13 +2567,13 @@ sha256 = "07jzg58a3jxs4mmsgb35f5f8awazlvzak9wrhif6xb60jq1wrp0v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bug-reference-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bug-reference-github"; sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6"; name = "bug-reference-github"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bug-reference-github"; + homepage = "https://melpa.org/#/bug-reference-github"; license = lib.licenses.free; }; }) {}; @@ -2441,13 +2588,13 @@ sha256 = "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bundler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bundler"; sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4"; name = "bundler"; }; packageRequires = [ inf-ruby ]; meta = { - homepage = "http://melpa.org/#/bundler"; + homepage = "https://melpa.org/#/bundler"; license = lib.licenses.free; }; }) {}; @@ -2462,13 +2609,13 @@ sha256 = "03hab3iw2jjckal20zwsw7cm38nf7pan0m96d8ab4i75phy6liyw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/bury-successful-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bury-successful-compilation"; sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3"; name = "bury-successful-compilation"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/bury-successful-compilation"; + homepage = "https://melpa.org/#/bury-successful-compilation"; license = lib.licenses.free; }; }) {}; @@ -2483,34 +2630,34 @@ sha256 = "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/butler"; sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq"; name = "butler"; }; packageRequires = [ deferred emacs json ]; meta = { - homepage = "http://melpa.org/#/butler"; + homepage = "https://melpa.org/#/butler"; license = lib.licenses.free; }; }) {}; buttercup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buttercup"; - version = "1.4"; + version = "1.5"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "emacs-buttercup"; - rev = "e1f71acdef3de3033d24be1cb41933eefc75029f"; - sha256 = "0lpfx7q0qrclxii4ffrrjffb678bsx908za91nsy7mc2g0cxcapb"; + rev = "657acef2132a6fdf0796f8ec62c5f261c1beebf0"; + sha256 = "0wkivh8x75gfsks6hy1ps9mlk101hrwsk8hqxx7qhs7f5iv0a082"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/buttercup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buttercup"; sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb"; name = "buttercup"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/buttercup"; + homepage = "https://melpa.org/#/buttercup"; license = lib.licenses.free; }; }) {}; @@ -2525,13 +2672,13 @@ sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/button-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/button-lock"; sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp"; name = "button-lock"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/button-lock"; + homepage = "https://melpa.org/#/button-lock"; license = lib.licenses.free; }; }) {}; @@ -2546,13 +2693,13 @@ sha256 = "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cacoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cacoo"; sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z"; name = "cacoo"; }; packageRequires = [ concurrent ]; meta = { - homepage = "http://melpa.org/#/cacoo"; + homepage = "https://melpa.org/#/cacoo"; license = lib.licenses.free; }; }) {}; @@ -2567,13 +2714,13 @@ sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake"; sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr"; name = "cake"; }; packageRequires = [ anything cake-inflector historyf ]; meta = { - homepage = "http://melpa.org/#/cake"; + homepage = "https://melpa.org/#/cake"; license = lib.licenses.free; }; }) {}; @@ -2588,13 +2735,13 @@ sha256 = "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake-inflector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake-inflector"; sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf"; name = "cake-inflector"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/cake-inflector"; + homepage = "https://melpa.org/#/cake-inflector"; license = lib.licenses.free; }; }) {}; @@ -2609,13 +2756,13 @@ sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake2"; sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x"; name = "cake2"; }; packageRequires = [ anything cake-inflector dash f historyf ht json s ]; meta = { - homepage = "http://melpa.org/#/cake2"; + homepage = "https://melpa.org/#/cake2"; license = lib.licenses.free; }; }) {}; @@ -2630,13 +2777,13 @@ sha256 = "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/calfw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/calfw"; sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8"; name = "calfw"; }; packageRequires = [ google-maps ]; meta = { - homepage = "http://melpa.org/#/calfw"; + homepage = "https://melpa.org/#/calfw"; license = lib.licenses.free; }; }) {}; @@ -2651,34 +2798,34 @@ sha256 = "0v927m3l5cf0j0rs0nfk5whwqmmxs941d8qalxi19j1ihspjz8d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/camcorder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/camcorder"; sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi"; name = "camcorder"; }; packageRequires = [ cl-lib emacs names ]; meta = { - homepage = "http://melpa.org/#/camcorder"; + homepage = "https://melpa.org/#/camcorder"; license = lib.licenses.free; }; }) {}; cargo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode }: melpaBuild { pname = "cargo"; - version = "0.1.1"; + version = "0.2.0"; src = fetchFromGitHub { owner = "kwrooijen"; repo = "cargo.el"; - rev = "e6a02346fc033d6342183a76a49156d4091ef402"; - sha256 = "152d5ym4bqnlnp6rafgy8fafx8246n78ymlcx9k2nyfar4c0lir2"; + rev = "9db98208c1086dffdb351c85a74a096b48e6141f"; + sha256 = "0xgnq21fb37y05535ipy0z584pnaglxy5bfqzdppyzsy7lpbb4k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cargo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cargo"; sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx"; name = "cargo"; }; packageRequires = [ emacs rust-mode ]; meta = { - homepage = "http://melpa.org/#/cargo"; + homepage = "https://melpa.org/#/cargo"; license = lib.licenses.free; }; }) {}; @@ -2693,13 +2840,13 @@ sha256 = "0mg49rpz362ipn5qzqhyfs3d6fpb51rfa73kna3gxdw0wxq2sa7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caseformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caseformat"; sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk"; name = "caseformat"; }; packageRequires = [ cl-lib dash emacs s ]; meta = { - homepage = "http://melpa.org/#/caseformat"; + homepage = "https://melpa.org/#/caseformat"; license = lib.licenses.free; }; }) {}; @@ -2714,13 +2861,34 @@ sha256 = "1hvm6r6a8rgjwnn2mcamwqrmhz424vlr4mbvbri3wmn0ikbk510l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask"; sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5"; name = "cask"; }; packageRequires = [ cl-lib dash epl f package-build s shut-up ]; meta = { - homepage = "http://melpa.org/#/cask"; + homepage = "https://melpa.org/#/cask"; + license = lib.licenses.free; + }; + }) {}; + cask-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "cask-mode"; + version = "0.1"; + src = fetchFromGitHub { + owner = "Wilfred"; + repo = "cask-mode"; + rev = "5203b1beac4dd2ee07a6e993bc86719f5f35dbbf"; + sha256 = "09y4cr32i2cw06lnq698lajxmqyzq2ah426f4dm176xfbrim89d5"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask-mode"; + sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6"; + name = "cask-mode"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/cask-mode"; license = lib.licenses.free; }; }) {}; @@ -2735,13 +2903,13 @@ sha256 = "0padb1zfjkmx9kbqnqh744qvpd3ln0khwxifxld9cpcpdp5k04vc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cask-package-toolset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask-package-toolset"; sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g"; name = "cask-package-toolset"; }; packageRequires = [ ansi cl-lib commander dash emacs f s shut-up ]; meta = { - homepage = "http://melpa.org/#/cask-package-toolset"; + homepage = "https://melpa.org/#/cask-package-toolset"; license = lib.licenses.free; }; }) {}; @@ -2756,13 +2924,13 @@ sha256 = "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/caskxy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caskxy"; sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s"; name = "caskxy"; }; packageRequires = [ log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/caskxy"; + homepage = "https://melpa.org/#/caskxy"; license = lib.licenses.free; }; }) {}; @@ -2777,13 +2945,13 @@ sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cbm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cbm"; sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn"; name = "cbm"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/cbm"; + homepage = "https://melpa.org/#/cbm"; license = lib.licenses.free; }; }) {}; @@ -2798,13 +2966,13 @@ sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cdlatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cdlatex"; sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64"; name = "cdlatex"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cdlatex"; + homepage = "https://melpa.org/#/cdlatex"; license = lib.licenses.free; }; }) {}; @@ -2819,13 +2987,13 @@ sha256 = "07h5g905i1jglsryl0dnqxz8yya5kkyjjggzbk4nl3rcj41lyas7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/celery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/celery"; sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h"; name = "celery"; }; packageRequires = [ dash-functional deferred emacs s ]; meta = { - homepage = "http://melpa.org/#/celery"; + homepage = "https://melpa.org/#/celery"; license = lib.licenses.free; }; }) {}; @@ -2840,34 +3008,34 @@ sha256 = "08hqgsjvs62l1cfzshbpj80xd8365qmx2b5r5jq20d5cj68s36wl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cerbere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cerbere"; sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06"; name = "cerbere"; }; packageRequires = [ f go-mode pkg-info s ]; meta = { - homepage = "http://melpa.org/#/cerbere"; + homepage = "https://melpa.org/#/cerbere"; license = lib.licenses.free; }; }) {}; cfengine-code-style = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cfengine-code-style"; - version = "3.8.1"; + version = "3.8.2"; src = fetchFromGitHub { owner = "cfengine"; repo = "core"; - rev = "2df2383cc697250d996630d0a1f88e3a2f0e052b"; - sha256 = "190gr30bscl80awilcjflwy9n7nvlz0hzmzmpx1wsa3wj3zf89yy"; + rev = "d53aeb0e7c0ce2a3abb9ecf195a5f9f58fedc468"; + sha256 = "1i10gbczyp067x1lw9vnn25bzgs1ckkrj9imnyz2a344g2124a3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cfengine-code-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cfengine-code-style"; sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a"; name = "cfengine-code-style"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cfengine-code-style"; + homepage = "https://melpa.org/#/cfengine-code-style"; license = lib.licenses.free; }; }) {}; @@ -2882,13 +3050,13 @@ sha256 = "0vb03k10i8vwy5wv65xl15kcsh9zz4y2xhpgndih87ssckdnhhlw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/char-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/char-menu"; sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l"; name = "char-menu"; }; packageRequires = [ avy-menu emacs ]; meta = { - homepage = "http://melpa.org/#/char-menu"; + homepage = "https://melpa.org/#/char-menu"; license = lib.licenses.free; }; }) {}; @@ -2903,13 +3071,13 @@ sha256 = "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/charmap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/charmap"; sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84"; name = "charmap"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/charmap"; + homepage = "https://melpa.org/#/charmap"; license = lib.licenses.free; }; }) {}; @@ -2924,13 +3092,13 @@ sha256 = "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/checkbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/checkbox"; sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa"; name = "checkbox"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/checkbox"; + homepage = "https://melpa.org/#/checkbox"; license = lib.licenses.free; }; }) {}; @@ -2945,34 +3113,34 @@ sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/chinese-word-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-word-at-point"; sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4"; name = "chinese-word-at-point"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/chinese-word-at-point"; + homepage = "https://melpa.org/#/chinese-word-at-point"; license = lib.licenses.free; }; }) {}; cider = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, queue, seq, spinner }: melpaBuild { pname = "cider"; - version = "0.10.2"; + version = "0.12.0"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "cider"; - rev = "336055e84b9685a7959fd05bc65a16febd8e83cc"; - sha256 = "1bk7h7h6sqf1qb5lpmmigx7aviyw65dnj3724q55ld6pgpy5q6vz"; + rev = "1c45146520a326376d35b8614c26187ed11a02cd"; + sha256 = "0pbgfm9hkryanb4fly74w417h6bw9mnad5k5raj9ypiwgcz2r0n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider"; sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx"; name = "cider"; }; packageRequires = [ clojure-mode emacs pkg-info queue seq spinner ]; meta = { - homepage = "http://melpa.org/#/cider"; + homepage = "https://melpa.org/#/cider"; license = lib.licenses.free; }; }) {}; @@ -2987,13 +3155,13 @@ sha256 = "1rkd76561h93si4lpisz3qnaj48dx8x01nd59a3lgpqsbbibnccf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cider-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider-eval-sexp-fu"; sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq"; name = "cider-eval-sexp-fu"; }; packageRequires = [ emacs eval-sexp-fu highlight ]; meta = { - homepage = "http://melpa.org/#/cider-eval-sexp-fu"; + homepage = "https://melpa.org/#/cider-eval-sexp-fu"; license = lib.licenses.free; }; }) {}; @@ -3008,34 +3176,55 @@ sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cil-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cil-mode"; sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y"; name = "cil-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cil-mode"; + homepage = "https://melpa.org/#/cil-mode"; license = lib.licenses.free; }; }) {}; circe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "circe"; - version = "2.1"; + version = "2.2"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "ac1cddf946e0af90ab453dd816f7173e0d4000e5"; - sha256 = "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q"; + rev = "13a33ea7b3cc579cbf67db2109802df3366e84d1"; + sha256 = "0lg7f71kdq3zzc85xp9p81vdarz6d6l5zy9175c67ps9smdx528i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/circe"; sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07"; name = "circe"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/circe"; + homepage = "https://melpa.org/#/circe"; + license = lib.licenses.free; + }; + }) {}; + cl-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "cl-format"; + version = "1.1"; + src = fetchFromGitHub { + owner = "alvinfrancis"; + repo = "cl-format"; + rev = "4380cb8009c47cc6d9098b383082b93b1aefa460"; + sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cl-format"; + sha256 = "1259ykj6z6m6gaqhkmj5f3q9vyk7idpvlvlma5likpknxj5f444v"; + name = "cl-format"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/cl-format"; license = lib.licenses.free; }; }) {}; @@ -3050,34 +3239,34 @@ sha256 = "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cl-lib-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cl-lib-highlight"; sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8"; name = "cl-lib-highlight"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/cl-lib-highlight"; + homepage = "https://melpa.org/#/cl-lib-highlight"; license = lib.licenses.free; }; }) {}; click-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "click-mode"; - version = "0.0.3"; + version = "0.0.4"; src = fetchFromGitHub { owner = "bmalehorn"; repo = "click-mode"; - rev = "4e39ef28e65124671f53fb5eaef8c7b87c4deab8"; - sha256 = "1n8114h0azjyavq4bzny2nasl4wsz8k7li002gqjvi0snw16yypn"; + rev = "c074e7b5b0a88434d0d3411f18884d1f6e288b33"; + sha256 = "0w34ixzk8vs2nv5xr7l1b3k0crl1lqvbq6gs5r4b8rhsx9b6c1mb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/click-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/click-mode"; sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r"; name = "click-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/click-mode"; + homepage = "https://melpa.org/#/click-mode"; license = lib.licenses.free; }; }) {}; @@ -3092,13 +3281,13 @@ sha256 = "07q8naxhag2q0m5cb9c2n5js6j5qdrjyyiqbcpxmq598b8mw8kzd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cliphist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cliphist"; sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29"; name = "cliphist"; }; packageRequires = [ popup ]; meta = { - homepage = "http://melpa.org/#/cliphist"; + homepage = "https://melpa.org/#/cliphist"; license = lib.licenses.free; }; }) {}; @@ -3113,28 +3302,28 @@ sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clips-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clips-mode"; sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf"; name = "clips-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/clips-mode"; + homepage = "https://melpa.org/#/clips-mode"; license = lib.licenses.free; }; }) {}; clj-refactor = callPackage ({ cider, dash, edn, emacs, fetchFromGitHub, fetchurl, hydra, inflections, lib, melpaBuild, multiple-cursors, paredit, s, yasnippet }: melpaBuild { pname = "clj-refactor"; - version = "2.0.0"; + version = "2.2.0"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clj-refactor.el"; - rev = "9c628f2ca9ba6dfdfb1e24d804accc71d873fae0"; - sha256 = "1prqdyr36sqf3dzxriv9lb3p6021nlacf2xgn5xxj7k7hp3z8d85"; + rev = "531a09fda51c9043efe18fd1f288be21ced3f3d1"; + sha256 = "0qjj40h8ryrs02rj73hkyhcjxdz926qxgvnjidav3sw2ggn8vdl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clj-refactor"; sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz"; name = "clj-refactor"; }; @@ -3151,7 +3340,7 @@ yasnippet ]; meta = { - homepage = "http://melpa.org/#/clj-refactor"; + homepage = "https://melpa.org/#/clj-refactor"; license = lib.licenses.free; }; }) {}; @@ -3166,13 +3355,13 @@ sha256 = "18gv8vmmpiyq16cq4nr9nk2bmc5y2rsv21wjl4ji29rc7566shha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cljr-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cljr-helm"; sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc"; name = "cljr-helm"; }; packageRequires = [ clj-refactor helm ]; meta = { - homepage = "http://melpa.org/#/cljr-helm"; + homepage = "https://melpa.org/#/cljr-helm"; license = lib.licenses.free; }; }) {}; @@ -3187,13 +3376,13 @@ sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clocker"; sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k"; name = "clocker"; }; packageRequires = [ dash projectile ]; meta = { - homepage = "http://melpa.org/#/clocker"; + homepage = "https://melpa.org/#/clocker"; license = lib.licenses.free; }; }) {}; @@ -3208,55 +3397,55 @@ sha256 = "1x1kfycf3023z0r3v7xqci59k8jv5wn2vqc9y0nx7k5qgifmswrx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-cheatsheet"; sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv"; name = "clojure-cheatsheet"; }; packageRequires = [ cider helm ]; meta = { - homepage = "http://melpa.org/#/clojure-cheatsheet"; + homepage = "https://melpa.org/#/clojure-cheatsheet"; license = lib.licenses.free; }; }) {}; clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clojure-mode"; - version = "5.2.0"; + version = "5.3.0"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-mode"; - rev = "412bb7ae57c59eb7c99b8273e5c94b38105b18af"; - sha256 = "1bhgvj4w8k4ycndnxgfnifc065jbxq8vsxfz3s6w64qx54biqxj3"; + rev = "8ef7127da214cb7fd4b47fc943462f2a8bfb8f85"; + sha256 = "1x7nl5wzcah9hnlj5jfd3y5604w60zcqcw1nn6vw335c2vzzissj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-mode"; sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np"; name = "clojure-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/clojure-mode"; + homepage = "https://melpa.org/#/clojure-mode"; license = lib.licenses.free; }; }) {}; clojure-mode-extra-font-locking = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clojure-mode-extra-font-locking"; - version = "5.2.0"; + version = "5.3.0"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-mode"; - rev = "412bb7ae57c59eb7c99b8273e5c94b38105b18af"; - sha256 = "1bhgvj4w8k4ycndnxgfnifc065jbxq8vsxfz3s6w64qx54biqxj3"; + rev = "8ef7127da214cb7fd4b47fc943462f2a8bfb8f85"; + sha256 = "1x7nl5wzcah9hnlj5jfd3y5604w60zcqcw1nn6vw335c2vzzissj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-mode-extra-font-locking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-mode-extra-font-locking"; sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n"; name = "clojure-mode-extra-font-locking"; }; packageRequires = [ clojure-mode ]; meta = { - homepage = "http://melpa.org/#/clojure-mode-extra-font-locking"; + homepage = "https://melpa.org/#/clojure-mode-extra-font-locking"; license = lib.licenses.free; }; }) {}; @@ -3271,13 +3460,13 @@ sha256 = "0sw34yjp8934xd2n76lbwyvxkbyz5pxszj6gkflas8lfjvms9z7d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-quick-repls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-quick-repls"; sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0"; name = "clojure-quick-repls"; }; packageRequires = [ cider dash ]; meta = { - homepage = "http://melpa.org/#/clojure-quick-repls"; + homepage = "https://melpa.org/#/clojure-quick-repls"; license = lib.licenses.free; }; }) {}; @@ -3292,34 +3481,55 @@ sha256 = "1p0w83m9j4a6va4g68a4gcfbdkp8nic0q8cm28l8nr7czd5s0yl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/clojure-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-snippets"; sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij"; name = "clojure-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/clojure-snippets"; + homepage = "https://melpa.org/#/clojure-snippets"; license = lib.licenses.free; }; }) {}; - cm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + closql = callPackage ({ emacs, emacsql-sqlite, fetchFromGitLab, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "closql"; + version = "0.1.0"; + src = fetchFromGitLab { + owner = "tarsius"; + repo = "closql"; + rev = "a8b6b2beaa10528b2fd5ed9759136e3959529266"; + sha256 = "1p251vyh8fc6xzaf0v7yvf4wkrvcfjdb3qr88ll4xcb61gj3vi3a"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/closql"; + sha256 = "0a8fqw8n03x9mygvzb95m8mmfqp3j8hynwafvryjsl0np0695b6l"; + name = "closql"; + }; + packageRequires = [ emacs emacsql-sqlite ]; + meta = { + homepage = "https://melpa.org/#/closql"; + license = lib.licenses.free; + }; + }) {}; + cm-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cm-mode"; - version = "1.1"; + version = "1.2"; src = fetchFromGitHub { owner = "joostkremers"; repo = "criticmarkup-emacs"; - rev = "abc5adc7e00e10c388c2a57c9f1d59f164773082"; - sha256 = "1bhnlcsvl1qsi36a5kz8i857spzybprsbsywpqrmjpndn74n8690"; + rev = "1ac0d64842eb303323f2ebea61b4b6ba9f72969c"; + sha256 = "1rwln3ms71fys3rdv3sx8w706aqn874im3kqcfrkxz86wiazm2d5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cm-mode"; sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x"; name = "cm-mode"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/cm-mode"; + homepage = "https://melpa.org/#/cm-mode"; license = lib.licenses.free; }; }) {}; @@ -3334,34 +3544,34 @@ sha256 = "14z5izpgby7lak6hzjwsph31awg5126hcjzld21ihknhlg09sw7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-ide"; sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg"; name = "cmake-ide"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/cmake-ide"; + homepage = "https://melpa.org/#/cmake-ide"; license = lib.licenses.free; }; }) {}; cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmake-mode"; - version = "3.5.0pre3"; + version = "3.5.2"; src = fetchFromGitHub { owner = "Kitware"; repo = "CMake"; - rev = "d203761520f5dd21a9cc4de5c4ca0d0e4e188e34"; - sha256 = "0caxmqbx6lq9xarra1zxm2yvcf699fgk9fawp3mrg587yb3w0961"; + rev = "80bcbe2d85232d748e31fb4de1016af60788505d"; + sha256 = "10adf81lig0mbm6hdi031p2d7x3yj4fq8vb4pavy6v2xgpj1j5jx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-mode"; sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7"; name = "cmake-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cmake-mode"; + homepage = "https://melpa.org/#/cmake-mode"; license = lib.licenses.free; }; }) {}; @@ -3376,13 +3586,13 @@ sha256 = "10xlny2agxjknvnjdnw41cyb3d361yy0wvpc8l1d0xwnmmfh3bxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cmake-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-project"; sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3"; name = "cmake-project"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cmake-project"; + homepage = "https://melpa.org/#/cmake-project"; license = lib.licenses.free; }; }) {}; @@ -3397,55 +3607,55 @@ sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/codic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/codic"; sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn"; name = "codic"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/codic"; + homepage = "https://melpa.org/#/codic"; license = lib.licenses.free; }; }) {}; coffee-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "coffee-mode"; - version = "0.6.2"; + version = "0.6.3"; src = fetchFromGitHub { owner = "defunkt"; repo = "coffee-mode"; - rev = "d19075264dc1f662e2282ca42ce70be0eae61b2a"; - sha256 = "1axp9hixp4vgaqjd3ii9xwb32jhb964zclmpg3zpsl4rp8b9bdz5"; + rev = "adfb7ae73d6ee2ef790c780dd3c967e62930e94a"; + sha256 = "0yhmg5j051mviqp5laz7y1zjs1w9ykbbxqm7vrgf2py0hpd1kcrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/coffee-mode"; sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1"; name = "coffee-mode"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/coffee-mode"; + homepage = "https://melpa.org/#/coffee-mode"; license = lib.licenses.free; }; }) {}; color-theme-modern = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-modern"; - version = "0.0.1"; + version = "0.0.2"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "replace-colorthemes"; - rev = "0a804c611da57b2d7c02c95f26eb8a7fc305f159"; - sha256 = "0q9ss11i31iiv0vn8238922fkic7j6d02f9ykbip04sm46p5k6kj"; + rev = "7107540d22e8ff045e0707de84c8b179fd829302"; + sha256 = "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-modern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-modern"; sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm"; name = "color-theme-modern"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/color-theme-modern"; + homepage = "https://melpa.org/#/color-theme-modern"; license = lib.licenses.free; }; }) {}; @@ -3460,13 +3670,13 @@ sha256 = "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-sanityinc-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-sanityinc-solarized"; sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf"; name = "color-theme-sanityinc-solarized"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/color-theme-sanityinc-solarized"; + homepage = "https://melpa.org/#/color-theme-sanityinc-solarized"; license = lib.licenses.free; }; }) {}; @@ -3481,13 +3691,13 @@ sha256 = "0w99ypq048xldl1mrgc7qr4n2770dm48aknhp7q0176l43nvxnqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/color-theme-sanityinc-tomorrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-sanityinc-tomorrow"; sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd"; name = "color-theme-sanityinc-tomorrow"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/color-theme-sanityinc-tomorrow"; + homepage = "https://melpa.org/#/color-theme-sanityinc-tomorrow"; license = lib.licenses.free; }; }) {}; @@ -3502,13 +3712,13 @@ sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/colorsarenice-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/colorsarenice-theme"; sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi"; name = "colorsarenice-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/colorsarenice-theme"; + homepage = "https://melpa.org/#/colorsarenice-theme"; license = lib.licenses.free; }; }) {}; @@ -3523,13 +3733,13 @@ sha256 = "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/commander"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/commander"; sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393"; name = "commander"; }; packageRequires = [ cl-lib dash f s ]; meta = { - homepage = "http://melpa.org/#/commander"; + homepage = "https://melpa.org/#/commander"; license = lib.licenses.free; }; }) {}; @@ -3544,13 +3754,13 @@ sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/comment-dwim-2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/comment-dwim-2"; sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj"; name = "comment-dwim-2"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/comment-dwim-2"; + homepage = "https://melpa.org/#/comment-dwim-2"; license = lib.licenses.free; }; }) {}; @@ -3565,13 +3775,13 @@ sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/commenter"; sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3"; name = "commenter"; }; packageRequires = [ emacs let-alist ]; meta = { - homepage = "http://melpa.org/#/commenter"; + homepage = "https://melpa.org/#/commenter"; license = lib.licenses.free; }; }) {}; @@ -3586,13 +3796,13 @@ sha256 = "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/common-lisp-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/common-lisp-snippets"; sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl"; name = "common-lisp-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/common-lisp-snippets"; + homepage = "https://melpa.org/#/common-lisp-snippets"; license = lib.licenses.free; }; }) {}; @@ -3607,13 +3817,13 @@ sha256 = "08rrjfp2amgya1hswjz3vd5ja6lg2nfmm7454p0h1naz00hlmmw0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company"; sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4"; name = "company"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/company"; + homepage = "https://melpa.org/#/company"; license = lib.licenses.free; }; }) {}; @@ -3628,13 +3838,13 @@ sha256 = "1i6788qfinh47c5crgr57ykgbp6bvk1afcl00c8gywxsf8srvnvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-anaconda"; sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl"; name = "company-anaconda"; }; packageRequires = [ anaconda-mode cl-lib company dash s ]; meta = { - homepage = "http://melpa.org/#/company-anaconda"; + homepage = "https://melpa.org/#/company-anaconda"; license = lib.licenses.free; }; }) {}; @@ -3649,13 +3859,13 @@ sha256 = "1dds3fynbd6yb0874aw6g4qk5zmq3pgl3jmcp38md027qalgqmym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ansible"; sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d"; name = "company-ansible"; }; packageRequires = [ company emacs ]; meta = { - homepage = "http://melpa.org/#/company-ansible"; + homepage = "https://melpa.org/#/company-ansible"; license = lib.licenses.free; }; }) {}; @@ -3670,13 +3880,34 @@ sha256 = "1pja44g15d11kl47abzykrp28j782nkbmb0db0ilpc96xf1fjlsw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-cabal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-cabal"; sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra"; name = "company-cabal"; }; packageRequires = [ cl-lib company emacs ]; meta = { - homepage = "http://melpa.org/#/company-cabal"; + homepage = "https://melpa.org/#/company-cabal"; + license = lib.licenses.free; + }; + }) {}; + company-coq = callPackage ({ cl-lib ? null, company, company-math, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: + melpaBuild { + pname = "company-coq"; + version = "1.0"; + src = fetchFromGitHub { + owner = "cpitclaudel"; + repo = "company-coq"; + rev = "bb507a11b088a8c9bb6500b384ed588bc690fcea"; + sha256 = "0s6gzdmxlsl1l0vh52xspxys1wmsq063p6nva6qisg1r622gjzjl"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-coq"; + sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa"; + name = "company-coq"; + }; + packageRequires = [ cl-lib company company-math dash yasnippet ]; + meta = { + homepage = "https://melpa.org/#/company-coq"; license = lib.licenses.free; }; }) {}; @@ -3691,13 +3922,13 @@ sha256 = "1f8sjjms9kxni153pia6b45p2ih2mhm2r07d0j3fmxmz3q2jdldd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-emoji"; sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3"; name = "company-emoji"; }; packageRequires = [ cl-lib company ]; meta = { - homepage = "http://melpa.org/#/company-emoji"; + homepage = "https://melpa.org/#/company-emoji"; license = lib.licenses.free; }; }) {}; @@ -3712,13 +3943,13 @@ sha256 = "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ghc"; sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn"; name = "company-ghc"; }; packageRequires = [ cl-lib company emacs ghc ]; meta = { - homepage = "http://melpa.org/#/company-ghc"; + homepage = "https://melpa.org/#/company-ghc"; license = lib.licenses.free; }; }) {}; @@ -3733,34 +3964,34 @@ sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-go"; sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29"; name = "company-go"; }; packageRequires = [ company ]; meta = { - homepage = "http://melpa.org/#/company-go"; + homepage = "https://melpa.org/#/company-go"; license = lib.licenses.free; }; }) {}; company-irony = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }: melpaBuild { pname = "company-irony"; - version = "0.1.0"; + version = "0.1.1"; src = fetchFromGitHub { owner = "Sarcasm"; repo = "company-irony"; - rev = "29becb8824cacb1ea6f8c823d06ba65512c62e3d"; - sha256 = "1gdsaa8zcs3layivn3ndbd5z1zflblmbxl251ld67bq763ga49cz"; + rev = "c09f66c26bdd0dda007559a5c9bccfca0bd49ccd"; + sha256 = "17zi0xx8p2diwy1wgrhl6j8p57alwz24rjpz4apyyrqjk09ippq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-irony"; sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km"; name = "company-irony"; }; packageRequires = [ cl-lib company emacs irony ]; meta = { - homepage = "http://melpa.org/#/company-irony"; + homepage = "https://melpa.org/#/company-irony"; license = lib.licenses.free; }; }) {}; @@ -3775,34 +4006,55 @@ sha256 = "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-jedi"; sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj"; name = "company-jedi"; }; packageRequires = [ cl-lib company emacs jedi-core ]; meta = { - homepage = "http://melpa.org/#/company-jedi"; + homepage = "https://melpa.org/#/company-jedi"; license = lib.licenses.free; }; }) {}; company-math = callPackage ({ company, fetchFromGitHub, fetchurl, lib, math-symbol-lists, melpaBuild }: melpaBuild { pname = "company-math"; - version = "1.0.1"; + version = "1.1"; src = fetchFromGitHub { owner = "vspinu"; repo = "company-math"; - rev = "e82c91d960f9418774959f299d0e064fcb6ba0ad"; - sha256 = "009f0p0sggfn0yz7sivkcv8zygvv4ssbwqykbxgdxh9n6zk4hjky"; + rev = "2e24a088d660d0bf37585a664eddbbb6c4a8e20d"; + sha256 = "0k6bx4i3d2x6kmkzififc8r7vid74bxsvgxp19z7bv1fh6m1f3aa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-math"; sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87"; name = "company-math"; }; packageRequires = [ company math-symbol-lists ]; meta = { - homepage = "http://melpa.org/#/company-math"; + homepage = "https://melpa.org/#/company-math"; + license = lib.licenses.free; + }; + }) {}; + company-ngram = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "company-ngram"; + version = "0.6.5"; + src = fetchFromGitHub { + owner = "kshramt"; + repo = "company-ngram"; + rev = "6c9315933984e7741b9d044f06a8cecc5ddaf788"; + sha256 = "0yxnylpbjrwmqx6px0q3pff4dh00fmfzb09gp4xvn9w9hrxdsx7g"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ngram"; + sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx"; + name = "company-ngram"; + }; + packageRequires = [ cl-lib company ]; + meta = { + homepage = "https://melpa.org/#/company-ngram"; license = lib.licenses.free; }; }) {}; @@ -3817,13 +4069,13 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-nixos-options"; sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0"; name = "company-nixos-options"; }; packageRequires = [ cl-lib company nixos-options ]; meta = { - homepage = "http://melpa.org/#/company-nixos-options"; + homepage = "https://melpa.org/#/company-nixos-options"; license = lib.licenses.free; }; }) {}; @@ -3838,13 +4090,13 @@ sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-quickhelp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-quickhelp"; sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g"; name = "company-quickhelp"; }; packageRequires = [ company emacs pos-tip ]; meta = { - homepage = "http://melpa.org/#/company-quickhelp"; + homepage = "https://melpa.org/#/company-quickhelp"; license = lib.licenses.free; }; }) {}; @@ -3859,7 +4111,7 @@ sha256 = "0i1fh5lvqwlgn3g3fzh0xacxyljx6gkryipn133vfkv4jbns51n4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-restclient"; sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb"; name = "company-restclient"; }; @@ -3871,28 +4123,28 @@ restclient ]; meta = { - homepage = "http://melpa.org/#/company-restclient"; + homepage = "https://melpa.org/#/company-restclient"; license = lib.licenses.free; }; }) {}; company-sourcekit = callPackage ({ company, dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sourcekit }: melpaBuild { pname = "company-sourcekit"; - version = "0.1.4"; + version = "0.1.5"; src = fetchFromGitHub { owner = "nathankot"; repo = "company-sourcekit"; - rev = "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9"; - sha256 = "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz"; + rev = "c9694cd8e84f4c7deffa6111297cb80eb7cb02a6"; + sha256 = "04nm015408gzybfka0sc3czkf5y61x76h3sx3vlijf67i54bz7pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-sourcekit"; sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs"; name = "company-sourcekit"; }; packageRequires = [ company dash dash-functional emacs sourcekit ]; meta = { - homepage = "http://melpa.org/#/company-sourcekit"; + homepage = "https://melpa.org/#/company-sourcekit"; license = lib.licenses.free; }; }) {}; @@ -3907,13 +4159,13 @@ sha256 = "11cinjsyf24d4a682ikniprxd1vkwn6mynsp5dzab6yzq09np78i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-tern"; sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh"; name = "company-tern"; }; packageRequires = [ cl-lib company dash dash-functional s tern ]; meta = { - homepage = "http://melpa.org/#/company-tern"; + homepage = "https://melpa.org/#/company-tern"; license = lib.licenses.free; }; }) {}; @@ -3928,13 +4180,13 @@ sha256 = "0b0k75rg43h48dbcqiid947nspqiqxkiqcmvph9aqpxlfr67bz5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-web"; sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy"; name = "company-web"; }; packageRequires = [ cl-lib company dash web-completion-data ]; meta = { - homepage = "http://melpa.org/#/company-web"; + homepage = "https://melpa.org/#/company-web"; license = lib.licenses.free; }; }) {}; @@ -3949,13 +4201,34 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/company-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ycmd"; sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk"; name = "company-ycmd"; }; packageRequires = [ company deferred s ycmd ]; meta = { - homepage = "http://melpa.org/#/company-ycmd"; + homepage = "https://melpa.org/#/company-ycmd"; + license = lib.licenses.free; + }; + }) {}; + composable = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "composable"; + version = "0.0.1"; + src = fetchFromGitHub { + owner = "paldepind"; + repo = "composable.el"; + rev = "4739b6a730498e7526d06222810c3ccf3723d509"; + sha256 = "1mii790r6gaz0nidlaib50wj4vryfvw7ls6b4mg1nw5km7hplpgq"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/composable"; + sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy"; + name = "composable"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/composable"; license = lib.licenses.free; }; }) {}; @@ -3970,13 +4243,13 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/concurrent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/concurrent"; sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf"; name = "concurrent"; }; packageRequires = [ deferred ]; meta = { - homepage = "http://melpa.org/#/concurrent"; + homepage = "https://melpa.org/#/concurrent"; license = lib.licenses.free; }; }) {}; @@ -3991,13 +4264,13 @@ sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/conkeror-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/conkeror-minor-mode"; sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933"; name = "conkeror-minor-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/conkeror-minor-mode"; + homepage = "https://melpa.org/#/conkeror-minor-mode"; license = lib.licenses.free; }; }) {}; @@ -4012,13 +4285,13 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/connection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/connection"; sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q"; name = "connection"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/connection"; + homepage = "https://melpa.org/#/connection"; license = lib.licenses.free; }; }) {}; @@ -4033,13 +4306,13 @@ sha256 = "0s4b7dkndhnh8q3plvg2whjx8zd7ffz4hnbn3xh86xd3k7sch7av"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/contextual"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/contextual"; sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx"; name = "contextual"; }; packageRequires = [ cl-lib dash emacs ]; meta = { - homepage = "http://melpa.org/#/contextual"; + homepage = "https://melpa.org/#/contextual"; license = lib.licenses.free; }; }) {}; @@ -4054,34 +4327,34 @@ sha256 = "0gpckp12b0hllgn821q3rqfxh5h7ny5gfhhvfdbvszb7kwl1f6cx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/corral"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/corral"; sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da"; name = "corral"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/corral"; + homepage = "https://melpa.org/#/corral"; license = lib.licenses.free; }; }) {}; counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "counsel"; - version = "0.7.0"; + version = "0.8.0"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "706349fcfae297ee285552af9246bc0cf00d9b7f"; - sha256 = "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm"; + rev = "c24a3728538dd7d11de9f141b3ad1d8e0996c330"; + sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/counsel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/counsel"; sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6"; name = "counsel"; }; packageRequires = [ emacs swiper ]; meta = { - homepage = "http://melpa.org/#/counsel"; + homepage = "https://melpa.org/#/counsel"; license = lib.licenses.free; }; }) {}; @@ -4096,13 +4369,13 @@ sha256 = "01545iy2gaxyd4i8gawgxqi9gbkrjk20djhvc59finnjrblzccn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/coverage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/coverage"; sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm"; name = "coverage"; }; packageRequires = [ cl-lib ov ]; meta = { - homepage = "http://melpa.org/#/coverage"; + homepage = "https://melpa.org/#/coverage"; license = lib.licenses.free; }; }) {}; @@ -4117,13 +4390,13 @@ sha256 = "0ky59gz5pvi4m5b9rh13ywfmclrmiwalynpqw652rmc6yfzv0fnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cpputils-cmake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cpputils-cmake"; sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60"; name = "cpputils-cmake"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cpputils-cmake"; + homepage = "https://melpa.org/#/cpputils-cmake"; license = lib.licenses.free; }; }) {}; @@ -4138,13 +4411,13 @@ sha256 = "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/creds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/creds"; sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk"; name = "creds"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/creds"; + homepage = "https://melpa.org/#/creds"; license = lib.licenses.free; }; }) {}; @@ -4159,13 +4432,13 @@ sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crm-custom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crm-custom"; sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c"; name = "crm-custom"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/crm-custom"; + homepage = "https://melpa.org/#/crm-custom"; license = lib.licenses.free; }; }) {}; @@ -4180,13 +4453,13 @@ sha256 = "13kkpilijr0q455srgn8yhzqikxask11z8d3rji7cc1yw7kf6y0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/crux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crux"; sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c"; name = "crux"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/crux"; + homepage = "https://melpa.org/#/crux"; license = lib.licenses.free; }; }) {}; @@ -4201,13 +4474,13 @@ sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cryptol-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cryptol-mode"; sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2"; name = "cryptol-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cryptol-mode"; + homepage = "https://melpa.org/#/cryptol-mode"; license = lib.licenses.free; }; }) {}; @@ -4222,13 +4495,13 @@ sha256 = "0dqih7cy57sciqn5vz5fiwynpld96qldyl7jcgn9qpwnzb401ayx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/csharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/csharp-mode"; sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0"; name = "csharp-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/csharp-mode"; + homepage = "https://melpa.org/#/csharp-mode"; license = lib.licenses.free; }; }) {}; @@ -4243,13 +4516,13 @@ sha256 = "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctable"; sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1"; name = "ctable"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ctable"; + homepage = "https://melpa.org/#/ctable"; license = lib.licenses.free; }; }) {}; @@ -4262,13 +4535,13 @@ sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctags"; sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y"; name = "ctags"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ctags"; + homepage = "https://melpa.org/#/ctags"; license = lib.licenses.free; }; }) {}; @@ -4283,13 +4556,13 @@ sha256 = "05vhryqcydvcfm18fwby344931kzzh47x4l5ixy95xkcjkzrj8c7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctags-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctags-update"; sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf"; name = "ctags-update"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ctags-update"; + homepage = "https://melpa.org/#/ctags-update"; license = lib.licenses.free; }; }) {}; @@ -4304,13 +4577,13 @@ sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ctxmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctxmenu"; sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp"; name = "ctxmenu"; }; packageRequires = [ log4e popup yaxception ]; meta = { - homepage = "http://melpa.org/#/ctxmenu"; + homepage = "https://melpa.org/#/ctxmenu"; license = lib.licenses.free; }; }) {}; @@ -4325,13 +4598,13 @@ sha256 = "1y685qfdkjyl7dwyvivlgc2lwp102vy6hvcb9zynw84c49f726sn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cuda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cuda-mode"; sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300"; name = "cuda-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cuda-mode"; + homepage = "https://melpa.org/#/cuda-mode"; license = lib.licenses.free; }; }) {}; @@ -4346,13 +4619,13 @@ sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cyberpunk-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cyberpunk-theme"; sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9"; name = "cyberpunk-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cyberpunk-theme"; + homepage = "https://melpa.org/#/cyberpunk-theme"; license = lib.licenses.free; }; }) {}; @@ -4367,34 +4640,34 @@ sha256 = "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cyphejor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cyphejor"; sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g"; name = "cyphejor"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/cyphejor"; + homepage = "https://melpa.org/#/cyphejor"; license = lib.licenses.free; }; }) {}; cython-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cython-mode"; - version = "0.23.4"; + version = "0.24.1.0"; src = fetchFromGitHub { owner = "cython"; repo = "cython"; - rev = "dc00a176d896f0df892aad8b305d946d3ed632a0"; - sha256 = "0kbk2gp2avp0da32mr003ziigmi98zi0fvwia4knylllmrkl3pvq"; + rev = "3de7bd5559631321c287c8fdd8958b6c494dba5c"; + sha256 = "11ddx5c535a76pnxqdfahchi839v59iwvpiyswigskyfhzxn5ic1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/cython-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cython-mode"; sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i"; name = "cython-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/cython-mode"; + homepage = "https://melpa.org/#/cython-mode"; license = lib.licenses.free; }; }) {}; @@ -4409,13 +4682,13 @@ sha256 = "0apg6cpwjhp8spqq8yyfp56y3pn991sfc85kfnifyhz6v3y6vwv6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/d-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/d-mode"; sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2"; name = "d-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/d-mode"; + homepage = "https://melpa.org/#/d-mode"; license = lib.licenses.free; }; }) {}; @@ -4430,13 +4703,13 @@ sha256 = "1gdh4izwhyly6dyrmh7lfpd12gnb8hpnafj8br51ksijsssrf21f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darcula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darcula-theme"; sha256 = "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg"; name = "darcula-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/darcula-theme"; + homepage = "https://melpa.org/#/darcula-theme"; license = lib.licenses.free; }; }) {}; @@ -4451,13 +4724,13 @@ sha256 = "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/darktooth-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darktooth-theme"; sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs"; name = "darktooth-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/darktooth-theme"; + homepage = "https://melpa.org/#/darktooth-theme"; license = lib.licenses.free; }; }) {}; @@ -4472,13 +4745,13 @@ sha256 = "1vkn95dyc0pppnflyqlrlx32g9zc7wdcgc9fgf1hgvqp313ydfcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dart-mode"; sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff"; name = "dart-mode"; }; packageRequires = [ cl-lib dash flycheck ]; meta = { - homepage = "http://melpa.org/#/dart-mode"; + homepage = "https://melpa.org/#/dart-mode"; license = lib.licenses.free; }; }) {}; @@ -4493,13 +4766,13 @@ sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dash"; sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz"; name = "dash"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dash"; + homepage = "https://melpa.org/#/dash"; license = lib.licenses.free; }; }) {}; @@ -4514,13 +4787,13 @@ sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dash-functional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dash-functional"; sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p"; name = "dash-functional"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/dash-functional"; + homepage = "https://melpa.org/#/dash-functional"; license = lib.licenses.free; }; }) {}; @@ -4535,13 +4808,13 @@ sha256 = "06aprbhhxb6bbzmf0r5yq2ry6x7708vp4d94ja3ir6zcwc96wn0k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/date-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/date-at-point"; sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0"; name = "date-at-point"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/date-at-point"; + homepage = "https://melpa.org/#/date-at-point"; license = lib.licenses.free; }; }) {}; @@ -4556,13 +4829,34 @@ sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/date-field"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/date-field"; sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk"; name = "date-field"; }; packageRequires = [ dash log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/date-field"; + homepage = "https://melpa.org/#/date-field"; + license = lib.licenses.free; + }; + }) {}; + decide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "decide"; + version = "0.5"; + src = fetchFromGitHub { + owner = "lifelike"; + repo = "decide-mode"; + rev = "ce0cd15e8e42d458d86cbf4c1effd03cefec33bd"; + sha256 = "0wm24ndiyhrayg1gz456s0s1ddlpcvg4vp555g4zzl3zcpsy94bg"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/decide"; + sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc"; + name = "decide"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/decide"; license = lib.licenses.free; }; }) {}; @@ -4577,13 +4871,13 @@ sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dedicated"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dedicated"; sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9"; name = "dedicated"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dedicated"; + homepage = "https://melpa.org/#/dedicated"; license = lib.licenses.free; }; }) {}; @@ -4598,13 +4892,13 @@ sha256 = "031f8ls1q80j717cg6b4pjd37wk7vrl5hcycsn8ca7yssmqa8q81"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/default-text-scale"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/default-text-scale"; sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi"; name = "default-text-scale"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/default-text-scale"; + homepage = "https://melpa.org/#/default-text-scale"; license = lib.licenses.free; }; }) {}; @@ -4619,13 +4913,13 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/deferred"; sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr"; name = "deferred"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/deferred"; + homepage = "https://melpa.org/#/deferred"; license = lib.licenses.free; }; }) {}; @@ -4640,13 +4934,13 @@ sha256 = "1lyqd9cgj7cb2lasf6ycw5j8wnsx2nrfm8ra4sg3dgcspm01a89g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/define-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/define-word"; sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a"; name = "define-word"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/define-word"; + homepage = "https://melpa.org/#/define-word"; license = lib.licenses.free; }; }) {}; @@ -4656,16 +4950,16 @@ src = fetchgit { url = "git://jblevins.org/git/deft.git"; rev = "4001a55cf5f79cdbfa00f1405e8a4645af4acd40"; - sha256 = "eb5c178337c0bd6a001114aac685bb0d23167050970274203d93c1c0caece1e8"; + sha256 = "1s71xk5c1hck7lh780lpa1q1c8qdpf2wdahl2406mgf06y1ifp7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/deft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/deft"; sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p"; name = "deft"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/deft"; + homepage = "https://melpa.org/#/deft"; license = lib.licenses.free; }; }) {}; @@ -4680,13 +4974,13 @@ sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/demangle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/demangle-mode"; sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk"; name = "demangle-mode"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/demangle-mode"; + homepage = "https://melpa.org/#/demangle-mode"; license = lib.licenses.free; }; }) {}; @@ -4701,13 +4995,13 @@ sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/describe-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/describe-number"; sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji"; name = "describe-number"; }; packageRequires = [ yabin ]; meta = { - homepage = "http://melpa.org/#/describe-number"; + homepage = "https://melpa.org/#/describe-number"; license = lib.licenses.free; }; }) {}; @@ -4722,33 +5016,34 @@ sha256 = "184zi5fv7ranghfx1hpx7j2wnk6kim8ysliyw2c5c1294sxxq3f3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/desktop+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/desktop+"; sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8"; name = "desktop-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/desktop+"; + homepage = "https://melpa.org/#/desktop+"; license = lib.licenses.free; }; }) {}; - desktop-registry = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: + desktop-registry = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "desktop-registry"; version = "1.2.0"; - src = fetchgit { - url = "git://ryuslash.org/desktop-registry.git"; + src = fetchFromGitHub { + owner = "ryuslash"; + repo = "desktop-registry"; rev = "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd"; - sha256 = "7c7727dd1d63be98e428700bfe340f2c4e7ff713fcc9b2b743a3366d786ae02d"; + sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/desktop-registry"; - sha256 = "02mj0nlawx6vpksqsvp1q7l8rd6b1bs8f9c8c2rmda46jaf5npyr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/desktop-registry"; + sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v"; name = "desktop-registry"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/desktop-registry"; + homepage = "https://melpa.org/#/desktop-registry"; license = lib.licenses.free; }; }) {}; @@ -4763,13 +5058,13 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dictionary"; sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w"; name = "dictionary"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dictionary"; + homepage = "https://melpa.org/#/dictionary"; license = lib.licenses.free; }; }) {}; @@ -4784,13 +5079,13 @@ sha256 = "0sjwpvzd4x9c1b9iv66b33llvp96ryyzyp8pn1rnhvxfvjv43cnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diff-hl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diff-hl"; sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6"; name = "diff-hl"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/diff-hl"; + homepage = "https://melpa.org/#/diff-hl"; license = lib.licenses.free; }; }) {}; @@ -4805,13 +5100,13 @@ sha256 = "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diffview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diffview"; sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k"; name = "diffview"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/diffview"; + homepage = "https://melpa.org/#/diffview"; license = lib.licenses.free; }; }) {}; @@ -4826,13 +5121,13 @@ sha256 = "0jzwaivsqh66py9hd3dg1ys5rc3p6pn8ndpwpvgyivk4pg6zhhj6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/digistar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/digistar-mode"; sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s"; name = "digistar-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/digistar-mode"; + homepage = "https://melpa.org/#/digistar-mode"; license = lib.licenses.free; }; }) {}; @@ -4847,13 +5142,13 @@ sha256 = "1vrd74vmm60gb69a4in412mjncnhkjbfpakpaa6w9rj7w4kyfiz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dim"; sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52"; name = "dim"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/dim"; + homepage = "https://melpa.org/#/dim"; license = lib.licenses.free; }; }) {}; @@ -4868,13 +5163,13 @@ sha256 = "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dim-autoload"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dim-autoload"; sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9"; name = "dim-autoload"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dim-autoload"; + homepage = "https://melpa.org/#/dim-autoload"; license = lib.licenses.free; }; }) {}; @@ -4889,13 +5184,13 @@ sha256 = "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/diminish"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diminish"; sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43"; name = "diminish"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/diminish"; + homepage = "https://melpa.org/#/diminish"; license = lib.licenses.free; }; }) {}; @@ -4910,13 +5205,13 @@ sha256 = "1xg9cschjd2m0zal296q54ifk5i4s1s3azwfdkbgshxxgvxaky0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dionysos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dionysos"; sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz"; name = "dionysos"; }; packageRequires = [ dash libmpdee pkg-info s ]; meta = { - homepage = "http://melpa.org/#/dionysos"; + homepage = "https://melpa.org/#/dionysos"; license = lib.licenses.free; }; }) {}; @@ -4931,13 +5226,13 @@ sha256 = "1d813b4wiamif48v0za5invnss52mn7yw3hzrlxd4918gy5y2r74"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-atool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-atool"; sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w"; name = "dired-atool"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/dired-atool"; + homepage = "https://melpa.org/#/dired-atool"; license = lib.licenses.free; }; }) {}; @@ -4952,13 +5247,13 @@ sha256 = "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-efap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-efap"; sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00"; name = "dired-efap"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-efap"; + homepage = "https://melpa.org/#/dired-efap"; license = lib.licenses.free; }; }) {}; @@ -4973,13 +5268,13 @@ sha256 = "0lrc4082ghg77x5jl26hj8c7cp48yjvqhv4g3j0pznpzb4qyfnq0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-fdclone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-fdclone"; sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9"; name = "dired-fdclone"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-fdclone"; + homepage = "https://melpa.org/#/dired-fdclone"; license = lib.licenses.free; }; }) {}; @@ -4994,13 +5289,13 @@ sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-imenu"; sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1"; name = "dired-imenu"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-imenu"; + homepage = "https://melpa.org/#/dired-imenu"; license = lib.licenses.free; }; }) {}; @@ -5015,13 +5310,13 @@ sha256 = "0rpln6m3j4xbhrmmz18hby6xpzpzbf1c5hr7bxvna265cb0i5rn7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-k"; sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; name = "dired-k"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/dired-k"; + homepage = "https://melpa.org/#/dired-k"; license = lib.licenses.free; }; }) {}; @@ -5036,13 +5331,13 @@ sha256 = "0mfvyjbx7l7a1sfq47m6rb507xxw92nykkkpzmi2mpwv30f1c22j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dired-single"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-single"; sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf"; name = "dired-single"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dired-single"; + homepage = "https://melpa.org/#/dired-single"; license = lib.licenses.free; }; }) {}; @@ -5057,13 +5352,13 @@ sha256 = "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/direx"; sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm"; name = "direx"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/direx"; + homepage = "https://melpa.org/#/direx"; license = lib.licenses.free; }; }) {}; @@ -5078,13 +5373,13 @@ sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/direx-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/direx-grep"; sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2"; name = "direx-grep"; }; packageRequires = [ direx ]; meta = { - homepage = "http://melpa.org/#/direx-grep"; + homepage = "https://melpa.org/#/direx-grep"; license = lib.licenses.free; }; }) {}; @@ -5099,13 +5394,13 @@ sha256 = "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover"; sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga"; name = "discover"; }; packageRequires = [ makey ]; meta = { - homepage = "http://melpa.org/#/discover"; + homepage = "https://melpa.org/#/discover"; license = lib.licenses.free; }; }) {}; @@ -5120,13 +5415,13 @@ sha256 = "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/discover-my-major"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover-my-major"; sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg"; name = "discover-my-major"; }; packageRequires = [ makey ]; meta = { - homepage = "http://melpa.org/#/discover-my-major"; + homepage = "https://melpa.org/#/discover-my-major"; license = lib.licenses.free; }; }) {}; @@ -5141,34 +5436,55 @@ sha256 = "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dispass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dispass"; sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z"; name = "dispass"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dispass"; + homepage = "https://melpa.org/#/dispass"; license = lib.licenses.free; }; }) {}; - docker = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s }: + dix = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "dix"; + version = "0.2.1"; + src = fetchFromGitHub { + owner = "unhammer"; + repo = "dix"; + rev = "6acd1f5f221f4ec8e5e98158332f1b816073e80d"; + sha256 = "069ymd1hinc6g1h0iy8pf6sckvasssi2p6lgaway6yj1gvks22vz"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dix"; + sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq"; + name = "dix"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/dix"; + license = lib.licenses.free; + }; + }) {}; + docker = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s, tle }: melpaBuild { pname = "docker"; - version = "0.2.0"; + version = "0.3.1"; src = fetchFromGitHub { owner = "Silex"; repo = "docker.el"; - rev = "77f646cc10909403a945d188cf9d81abd3bfc2a0"; - sha256 = "06vb6r1k9ml799h44fm9jhf3amldzhawxnm0lnr501hrmj4bz36x"; + rev = "8c06af5b3fc24e7466910d1ea13c387ca8b98c95"; + sha256 = "0kd35y5d36n3dxz55srrzvgka9877n5dlbhwilq0h5g7p7llnq3h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docker"; sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk"; name = "docker"; }; - packageRequires = [ dash emacs magit-popup s ]; + packageRequires = [ dash emacs magit-popup s tle ]; meta = { - homepage = "http://melpa.org/#/docker"; + homepage = "https://melpa.org/#/docker"; license = lib.licenses.free; }; }) {}; @@ -5183,13 +5499,13 @@ sha256 = "1cmh8pwwa6dhl4w66wy8s5yqxs326mnaalg1ig2yhl4bjk8gi4m2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dockerfile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dockerfile-mode"; sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa"; name = "dockerfile-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dockerfile-mode"; + homepage = "https://melpa.org/#/dockerfile-mode"; license = lib.licenses.free; }; }) {}; @@ -5204,13 +5520,13 @@ sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/doom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doom"; sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl"; name = "doom"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/doom"; + homepage = "https://melpa.org/#/doom"; license = lib.licenses.free; }; }) {}; @@ -5225,34 +5541,34 @@ sha256 = "13czcxmmvy4g9ysfjr6lb91c0fqv1xv8ppd27wbfsrgxm3aaqimb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/downplay-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/downplay-mode"; sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b"; name = "downplay-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/downplay-mode"; + homepage = "https://melpa.org/#/downplay-mode"; license = lib.licenses.free; }; }) {}; dracula-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dracula-theme"; - version = "1.2.0"; + version = "1.2.1"; src = fetchFromGitHub { owner = "zenorocha"; repo = "dracula-theme"; - rev = "ee065fed126eecdfe33a1a578d9f1e20687d2f3a"; - sha256 = "1x7hyj5qi9f222zwhwjqr98zzcvqjqfwxlglph8nsbadkv4s8c3v"; + rev = "adc51d039aacd8c4c54c19eeb75f663a093dc3d7"; + sha256 = "0d8axj2dvzavxcrn3i5pmswhxk57kg6fcs244sr8zviwr15lipdz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dracula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dracula-theme"; sha256 = "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r"; name = "dracula-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/dracula-theme"; + homepage = "https://melpa.org/#/dracula-theme"; license = lib.licenses.free; }; }) {}; @@ -5267,13 +5583,13 @@ sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/draft-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/draft-mode"; sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh"; name = "draft-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/draft-mode"; + homepage = "https://melpa.org/#/draft-mode"; license = lib.licenses.free; }; }) {}; @@ -5283,39 +5599,39 @@ version = "0.1.0"; src = fetchFromGitHub { owner = "rejeep"; - repo = "drag-stuff"; + repo = "drag-stuff.el"; rev = "3265e4fe93323bc9089d12db3d466d49bc44a99d"; sha256 = "0wncdlc45flggn6sq5a95y7k6q11hy7zxp0ddhsjqccl30mdwax5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drag-stuff"; - sha256 = "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drag-stuff"; + sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4"; name = "drag-stuff"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/drag-stuff"; + homepage = "https://melpa.org/#/drag-stuff"; license = lib.licenses.free; }; }) {}; drupal-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode }: melpaBuild { pname = "drupal-mode"; - version = "0.6.1"; + version = "0.7.0"; src = fetchFromGitHub { owner = "arnested"; repo = "drupal-mode"; - rev = "cf0364cbaf727bcd21ab7c2a14cc987c49fd97d0"; - sha256 = "12lxqrcfv5salmcslw3kggymcwwc0lzq1b6iqd7x4zizp0sjf09s"; + rev = "d920370dc632bd0b4abf736a7315aa20748d2676"; + sha256 = "1hbm3zdmd28fjl8fky0kq4gs2bxsrn2zxk9rd1wa2wky43ycnd35"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drupal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drupal-mode"; sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn"; name = "drupal-mode"; }; packageRequires = [ php-mode ]; meta = { - homepage = "http://melpa.org/#/drupal-mode"; + homepage = "https://melpa.org/#/drupal-mode"; license = lib.licenses.free; }; }) {}; @@ -5330,13 +5646,13 @@ sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/drupal-spell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drupal-spell"; sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3"; name = "drupal-spell"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/drupal-spell"; + homepage = "https://melpa.org/#/drupal-spell"; license = lib.licenses.free; }; }) {}; @@ -5351,34 +5667,55 @@ sha256 = "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ducpel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ducpel"; sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc"; name = "ducpel"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/ducpel"; + homepage = "https://melpa.org/#/ducpel"; license = lib.licenses.free; }; }) {}; - dumb-jump = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: + dumb-jump = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: melpaBuild { pname = "dumb-jump"; - version = "0.2.5"; + version = "0.3.9"; src = fetchFromGitHub { owner = "jacktasia"; repo = "dumb-jump"; - rev = "e1135a2bf8685726c9c083f444a9aa49d3ca56f5"; - sha256 = "1hrlsyrqd0kpapw119mic5ilksb7y5ddmmc62hzbaqs7xmhzp52j"; + rev = "5313ef651b58dd9b8b9fcb388856b8dcbf1b791b"; + sha256 = "1czw5z6w8pcc7ra5d82v06padyiy7c3ds00chw5xgyvq6s73gzn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dumb-jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dumb-jump"; sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc"; name = "dumb-jump"; }; - packageRequires = [ dash f s ]; + packageRequires = [ dash f popup s ]; meta = { - homepage = "http://melpa.org/#/dumb-jump"; + homepage = "https://melpa.org/#/dumb-jump"; + license = lib.licenses.free; + }; + }) {}; + dummy-h-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "dummy-h-mode"; + version = "1.0.1"; + src = fetchFromGitHub { + owner = "yascentur"; + repo = "dummy-h-mode-el"; + rev = "27ad0991abb53e65d0402ef6c378075e4be0ed2d"; + sha256 = "033yqc19xxirbva65lz8hnwxj7pn7fx7dlnf70kq71iqclqa4v25"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dummy-h-mode"; + sha256 = "10lzfzq7md6s28w2zzlhswn3d6765g4vqzyjn2q5ms8pd2i4b4in"; + name = "dummy-h-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/dummy-h-mode"; license = lib.licenses.free; }; }) {}; @@ -5388,17 +5725,17 @@ version = "0.3"; src = fetchhg { url = "https://bitbucket.com/harsman/dyalog-mode"; - rev = "ce795beb8747"; - sha256 = "0ghxnzi2iy1g633fshl9wdpg2asrcl0v5rkk61gqd6axm7fjaxcj"; + rev = "4dac440334f0"; + sha256 = "19aid1rqpqj0fvln98db5imfk1griqld55xsr9plm6kwrr174syq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dyalog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dyalog-mode"; sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq"; name = "dyalog-mode"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/dyalog-mode"; + homepage = "https://melpa.org/#/dyalog-mode"; license = lib.licenses.free; }; }) {}; @@ -5413,13 +5750,13 @@ sha256 = "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dynamic-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dynamic-fonts"; sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q"; name = "dynamic-fonts"; }; packageRequires = [ font-utils pcache persistent-soft ]; meta = { - homepage = "http://melpa.org/#/dynamic-fonts"; + homepage = "https://melpa.org/#/dynamic-fonts"; license = lib.licenses.free; }; }) {}; @@ -5434,13 +5771,13 @@ sha256 = "05z7gshrn7wp0qkb9ns6rgmcp375yllmkwhdsm4amg0dk3j2slbr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/dynamic-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dynamic-ruler"; sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc"; name = "dynamic-ruler"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/dynamic-ruler"; + homepage = "https://melpa.org/#/dynamic-ruler"; license = lib.licenses.free; }; }) {}; @@ -5455,13 +5792,13 @@ sha256 = "0g0cz5a0vf31w27ljq5sn52mq15ynadl6cfbb97ja5zj1zxsxgjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm"; sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la"; name = "e2wm"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/e2wm"; + homepage = "https://melpa.org/#/e2wm"; license = lib.licenses.free; }; }) {}; @@ -5476,13 +5813,13 @@ sha256 = "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-R"; sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh"; name = "e2wm-R"; }; packageRequires = [ e2wm ]; meta = { - homepage = "http://melpa.org/#/e2wm-R"; + homepage = "https://melpa.org/#/e2wm-R"; license = lib.licenses.free; }; }) {}; @@ -5497,13 +5834,13 @@ sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-direx"; sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg"; name = "e2wm-direx"; }; packageRequires = [ direx e2wm ]; meta = { - homepage = "http://melpa.org/#/e2wm-direx"; + homepage = "https://melpa.org/#/e2wm-direx"; license = lib.licenses.free; }; }) {}; @@ -5518,13 +5855,13 @@ sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-pkgex4pl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-pkgex4pl"; sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil"; name = "e2wm-pkgex4pl"; }; packageRequires = [ e2wm plsense-direx ]; meta = { - homepage = "http://melpa.org/#/e2wm-pkgex4pl"; + homepage = "https://melpa.org/#/e2wm-pkgex4pl"; license = lib.licenses.free; }; }) {}; @@ -5539,13 +5876,13 @@ sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-sww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-sww"; sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8"; name = "e2wm-sww"; }; packageRequires = [ e2wm ]; meta = { - homepage = "http://melpa.org/#/e2wm-sww"; + homepage = "https://melpa.org/#/e2wm-sww"; license = lib.licenses.free; }; }) {}; @@ -5560,13 +5897,13 @@ sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/e2wm-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-term"; sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g"; name = "e2wm-term"; }; packageRequires = [ e2wm log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/e2wm-term"; + homepage = "https://melpa.org/#/e2wm-term"; license = lib.licenses.free; }; }) {}; @@ -5581,13 +5918,13 @@ sha256 = "0r56nqrj6iaz57ys6hqdq5qkyliv7dj6dv274l228r7x0axrwd9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-kill"; sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i"; name = "easy-kill"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/easy-kill"; + homepage = "https://melpa.org/#/easy-kill"; license = lib.licenses.free; }; }) {}; @@ -5602,13 +5939,13 @@ sha256 = "18fdlxz9k961k8wafdw0gq0y514bvrfvx6qc1lmm4pk3gdcfbbi0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-kill-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-kill-extras"; sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy"; name = "easy-kill-extras"; }; packageRequires = [ easy-kill ]; meta = { - homepage = "http://melpa.org/#/easy-kill-extras"; + homepage = "https://melpa.org/#/easy-kill-extras"; license = lib.licenses.free; }; }) {}; @@ -5623,13 +5960,13 @@ sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/easy-repeat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-repeat"; sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06"; name = "easy-repeat"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/easy-repeat"; + homepage = "https://melpa.org/#/easy-repeat"; license = lib.licenses.free; }; }) {}; @@ -5644,13 +5981,13 @@ sha256 = "0ysym38xaqyx1wc7xd3fvjm62dmiq4727dnjvyxv7hs4czff1gcb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebal"; sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg"; name = "ebal"; }; packageRequires = [ emacs f ido-completing-read-plus ]; meta = { - homepage = "http://melpa.org/#/ebal"; + homepage = "https://melpa.org/#/ebal"; license = lib.licenses.free; }; }) {}; @@ -5665,34 +6002,34 @@ sha256 = "16hiwz8a1hyyiflzn53v97704v783pg18yxapn7pqk90fbcf7czw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebf"; sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb"; name = "ebf"; }; packageRequires = [ cl-lib dash dash-functional ]; meta = { - homepage = "http://melpa.org/#/ebf"; + homepage = "https://melpa.org/#/ebf"; license = lib.licenses.free; }; }) {}; ebib = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib }: melpaBuild { pname = "ebib"; - version = "2.5.2"; + version = "2.5.4"; src = fetchFromGitHub { owner = "joostkremers"; repo = "ebib"; - rev = "e9f92df575d747992e9ada768b18dee475cfee55"; - sha256 = "159w19hx3gmhv8n2amkm6i999vdrz5132bjwk28qpiq37v1v7dd5"; + rev = "069ecbe32a4d5f1273e2d749204750652fbb5d91"; + sha256 = "1kcmbr4a2jxd62s4nc8xshrksb36xwb17j6c0hjzvb75r544xy6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebib"; sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid"; name = "ebib"; }; packageRequires = [ dash emacs parsebib ]; meta = { - homepage = "http://melpa.org/#/ebib"; + homepage = "https://melpa.org/#/ebib"; license = lib.licenses.free; }; }) {}; @@ -5707,13 +6044,13 @@ sha256 = "1s9r1qj7cjsjvvphdpyjff6y598xpbrm9qjv5ncq15w6ac7yxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ecb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ecb"; sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89"; name = "ecb"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ecb"; + homepage = "https://melpa.org/#/ecb"; license = lib.licenses.free; }; }) {}; @@ -5728,13 +6065,13 @@ sha256 = "1r5hlcspznvfm111l1z0r4isd582qj64sa8cqk6hyi3y1hyp1xxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ecukes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ecukes"; sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0"; name = "ecukes"; }; packageRequires = [ ansi commander dash espuds f s ]; meta = { - homepage = "http://melpa.org/#/ecukes"; + homepage = "https://melpa.org/#/ecukes"; license = lib.licenses.free; }; }) {}; @@ -5749,13 +6086,13 @@ sha256 = "0xy3q68i47a3s81jwr0rdvc1722bp78ng56xm53pri05g1z0db9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi"; sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr"; name = "edbi"; }; packageRequires = [ concurrent ctable epc ]; meta = { - homepage = "http://melpa.org/#/edbi"; + homepage = "https://melpa.org/#/edbi"; license = lib.licenses.free; }; }) {}; @@ -5770,13 +6107,13 @@ sha256 = "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-indirect"; sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439"; name = "edit-indirect"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/edit-indirect"; + homepage = "https://melpa.org/#/edit-indirect"; license = lib.licenses.free; }; }) {}; @@ -5791,13 +6128,13 @@ sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-list"; sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv"; name = "edit-list"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/edit-list"; + homepage = "https://melpa.org/#/edit-list"; license = lib.licenses.free; }; }) {}; @@ -5812,76 +6149,34 @@ sha256 = "12dp1xj09jrp0kxp9xb6cak9dn6zkyis1wfn4fnhzmxxnrd8c5rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edit-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-server"; sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0"; name = "edit-server"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/edit-server"; + homepage = "https://melpa.org/#/edit-server"; license = lib.licenses.free; }; }) {}; - editorconfig = callPackage ({ editorconfig-core, fetchFromGitHub, fetchurl, lib, melpaBuild }: + editorconfig = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "editorconfig"; - version = "0.7.3"; + version = "0.7.5"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-emacs"; - rev = "a327a42f3fdc2ab6d0e8226b3a22f4bab7e536bb"; - sha256 = "0x6kb6zwkacw344zp8lprfmhm1mz2x7arn9ddgm53x410sbs71kx"; + rev = "268478773c11bf5fb47b47b8c322bcd589e4c990"; + sha256 = "1119yk2ilhd5apmsmg56w6bhi3qrlb8sgykpv15hr2hj0x3p2k61"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig"; - sha256 = "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/editorconfig"; + sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc"; name = "editorconfig"; }; - packageRequires = [ editorconfig-core ]; - meta = { - homepage = "http://melpa.org/#/editorconfig"; - license = lib.licenses.free; - }; - }) {}; - editorconfig-core = callPackage ({ cl-lib ? null, editorconfig-fnmatch, fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "editorconfig-core"; - version = "0.7.3"; - src = fetchFromGitHub { - owner = "editorconfig"; - repo = "editorconfig-emacs"; - rev = "a327a42f3fdc2ab6d0e8226b3a22f4bab7e536bb"; - sha256 = "0x6kb6zwkacw344zp8lprfmhm1mz2x7arn9ddgm53x410sbs71kx"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig-core"; - sha256 = "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r"; - name = "editorconfig-core"; - }; - packageRequires = [ cl-lib editorconfig-fnmatch ]; - meta = { - homepage = "http://melpa.org/#/editorconfig-core"; - license = lib.licenses.free; - }; - }) {}; - editorconfig-fnmatch = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "editorconfig-fnmatch"; - version = "0.7.3"; - src = fetchFromGitHub { - owner = "editorconfig"; - repo = "editorconfig-emacs"; - rev = "a327a42f3fdc2ab6d0e8226b3a22f4bab7e536bb"; - sha256 = "0x6kb6zwkacw344zp8lprfmhm1mz2x7arn9ddgm53x410sbs71kx"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/editorconfig-fnmatch"; - sha256 = "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv"; - name = "editorconfig-fnmatch"; - }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/editorconfig-fnmatch"; + homepage = "https://melpa.org/#/editorconfig"; license = lib.licenses.free; }; }) {}; @@ -5896,13 +6191,13 @@ sha256 = "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edn"; sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg"; name = "edn"; }; packageRequires = [ cl-lib dash emacs peg s ]; meta = { - homepage = "http://melpa.org/#/edn"; + homepage = "https://melpa.org/#/edn"; license = lib.licenses.free; }; }) {}; @@ -5917,13 +6212,13 @@ sha256 = "1a1apa48n24yisd2zw5k4lfkngx3016x6y11qi80hg75vrnmg7f1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/edts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edts"; sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr"; name = "edts"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/edts"; + homepage = "https://melpa.org/#/edts"; license = lib.licenses.free; }; }) {}; @@ -5938,34 +6233,34 @@ sha256 = "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/egg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/egg"; sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i"; name = "egg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/egg"; + homepage = "https://melpa.org/#/egg"; license = lib.licenses.free; }; }) {}; egison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "egison-mode"; - version = "3.5.10"; + version = "3.6.0"; src = fetchFromGitHub { owner = "egisatoshi"; repo = "egison3"; - rev = "6debb5f36074811a1b2f9c9741dc8c1f3bd869de"; - sha256 = "16m7h477z10bmaymmgpj2id6l98iyrsp5wf69wd56534kh6qcajg"; + rev = "a3241316207b6b623c5ae61e8fe8fb17783b981b"; + sha256 = "07vdvjy4x21gyw2r4rxrj929hj1jp4a8igwgb2m5a5x50capwzhy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/egison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/egison-mode"; sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi"; name = "egison-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/egison-mode"; + homepage = "https://melpa.org/#/egison-mode"; license = lib.licenses.free; }; }) {}; @@ -5975,37 +6270,58 @@ src = fetchgit { url = "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git"; rev = "524494fd2b23217c6807b30b43bb95b5724f809e"; - sha256 = "3f41ade3332a3f1dc5cfb0b33077396feb7b683b2cf2c235b7a5f07f0b2e3271"; + sha256 = "0w9j5q5pzw55nwsw5wic7dl7psvg75vk1cxhrz2isgra6gissh9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eide"; sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz"; name = "eide"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eide"; + homepage = "https://melpa.org/#/eide"; license = lib.licenses.free; }; }) {}; - ein = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request, websocket }: + ein = callPackage ({ cl-generic, fetchFromGitHub, fetchurl, lib, melpaBuild, request, websocket }: melpaBuild { pname = "ein"; - version = "0.7.1"; + version = "0.8.1"; src = fetchFromGitHub { owner = "millejoh"; repo = "emacs-ipython-notebook"; - rev = "2c08c68125ab7323e5068401a3097b90879571f8"; - sha256 = "1si9zk4iwgkfn5p9x48hy1laz8r5m5vbyahy1andxrfxnb9fi0kj"; + rev = "9fc8dd3be4a556d7abf6977c889887a38232929f"; + sha256 = "0w2j0bbqnba1wr12f0zk87zwnxf6xhchx224fwgwqd3kg0x5z0r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ein"; sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp"; name = "ein"; }; - packageRequires = [ request websocket ]; + packageRequires = [ cl-generic request websocket ]; meta = { - homepage = "http://melpa.org/#/ein"; + homepage = "https://melpa.org/#/ein"; + license = lib.licenses.free; + }; + }) {}; + eink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "eink-theme"; + version = "1.0.0"; + src = fetchFromGitHub { + owner = "maio"; + repo = "eink-emacs"; + rev = "93d25c097b105594472c4f99d693f439b4b709f0"; + sha256 = "0m7qsk378c30fva2n2ag99rsdklx5nsqc395msg1ab11sbpxvis0"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eink-theme"; + sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn"; + name = "eink-theme"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/eink-theme"; license = lib.licenses.free; }; }) {}; @@ -6020,13 +6336,13 @@ sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-autoyas"; sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c"; name = "el-autoyas"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el-autoyas"; + homepage = "https://melpa.org/#/el-autoyas"; license = lib.licenses.free; }; }) {}; @@ -6041,13 +6357,13 @@ sha256 = "1awyh9ffd6a4cia239s89asb88ddqlnrv757d76vcb701pq412bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-get"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-get"; sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz"; name = "el-get"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el-get"; + homepage = "https://melpa.org/#/el-get"; license = lib.licenses.free; }; }) {}; @@ -6062,13 +6378,13 @@ sha256 = "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-init"; sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5"; name = "el-init"; }; packageRequires = [ anaphora cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/el-init"; + homepage = "https://melpa.org/#/el-init"; license = lib.licenses.free; }; }) {}; @@ -6083,13 +6399,13 @@ sha256 = "1488wv0f9ihzzf9fl8cki044k61b0kva604hdwpb2qk9gnjr4g1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-init-viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-init-viewer"; sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m"; name = "el-init-viewer"; }; packageRequires = [ anaphora cl-lib ctable dash el-init emacs ]; meta = { - homepage = "http://melpa.org/#/el-init-viewer"; + homepage = "https://melpa.org/#/el-init-viewer"; license = lib.licenses.free; }; }) {}; @@ -6104,13 +6420,13 @@ sha256 = "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-mock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-mock"; sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l"; name = "el-mock"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el-mock"; + homepage = "https://melpa.org/#/el-mock"; license = lib.licenses.free; }; }) {}; @@ -6125,13 +6441,13 @@ sha256 = "0390pfgfgj7hwfmkwikwhip0hmwkgx784l529cqvalc31jchi94i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-spice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-spice"; sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg"; name = "el-spice"; }; packageRequires = [ thingatpt-plus ]; meta = { - homepage = "http://melpa.org/#/el-spice"; + homepage = "https://melpa.org/#/el-spice"; license = lib.licenses.free; }; }) {}; @@ -6146,13 +6462,13 @@ sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/el-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-x"; sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g"; name = "el-x"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/el-x"; + homepage = "https://melpa.org/#/el-x"; license = lib.licenses.free; }; }) {}; @@ -6167,13 +6483,13 @@ sha256 = "0hlj6jn9gmi00sqghxswkxpgk65c4gy2k7010vpkr2257rd4f3gq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elang"; sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy"; name = "elang"; }; packageRequires = [ names ]; meta = { - homepage = "http://melpa.org/#/elang"; + homepage = "https://melpa.org/#/elang"; license = lib.licenses.free; }; }) {}; @@ -6188,34 +6504,34 @@ sha256 = "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eldoc-eval"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eldoc-eval"; sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c"; name = "eldoc-eval"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eldoc-eval"; + homepage = "https://melpa.org/#/eldoc-eval"; license = lib.licenses.free; }; }) {}; electric-operator = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "electric-operator"; - version = "0.1"; + version = "0.2"; src = fetchFromGitHub { owner = "davidshepherd7"; repo = "electric-operator"; - rev = "3d34101e065396389cfbb8fec333c78641a71dc6"; - sha256 = "1bqdg5sr4hkiqndr4hcdjscfdyj56jb4wr1kqgwy1hy4ccr9mkrr"; + rev = "96a3696851abc47d369f8985bf6f790e68a4a9aa"; + sha256 = "1ji6rdbqwk8j0nl6yk3rdqrpgxir99lj9pf6i9rx55l63qyrdfc4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/electric-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/electric-operator"; sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2"; name = "electric-operator"; }; packageRequires = [ dash emacs names ]; meta = { - homepage = "http://melpa.org/#/electric-operator"; + homepage = "https://melpa.org/#/electric-operator"; license = lib.licenses.free; }; }) {}; @@ -6230,13 +6546,13 @@ sha256 = "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed"; sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9"; name = "elfeed"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/elfeed"; + homepage = "https://melpa.org/#/elfeed"; license = lib.licenses.free; }; }) {}; @@ -6251,13 +6567,13 @@ sha256 = "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elfeed-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed-web"; sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n"; name = "elfeed-web"; }; packageRequires = [ elfeed emacs simple-httpd ]; meta = { - homepage = "http://melpa.org/#/elfeed-web"; + homepage = "https://melpa.org/#/elfeed-web"; license = lib.licenses.free; }; }) {}; @@ -6272,34 +6588,34 @@ sha256 = "1k7kprdknqm18dc0nwl7gachm0rivcpa8ng7p7ximalja3nsg2j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elisp-slime-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elisp-slime-nav"; sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c"; name = "elisp-slime-nav"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/elisp-slime-nav"; + homepage = "https://melpa.org/#/elisp-slime-nav"; license = lib.licenses.free; }; }) {}; elixir-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "elixir-mode"; - version = "2.2.8"; + version = "2.3.1"; src = fetchFromGitHub { owner = "elixir-lang"; repo = "emacs-elixir"; - rev = "bfc95d9d444bf4002d340d37ad30954dd86c0e94"; - sha256 = "07kgzdla31nc146xya21rn4hyr76h5lyabla8yh4qjsvnknb7cbj"; + rev = "a1f4d60ec555574c945201359d2e32b183c69f4b"; + sha256 = "06bi68x49v6f7flpz279mm4jpg31ll3s274givm3pvr8slcxs6xg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elixir-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elixir-mode"; sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf"; name = "elixir-mode"; }; packageRequires = [ emacs pkg-info ]; meta = { - homepage = "http://melpa.org/#/elixir-mode"; + homepage = "https://melpa.org/#/elixir-mode"; license = lib.licenses.free; }; }) {}; @@ -6314,34 +6630,34 @@ sha256 = "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elixir-yasnippets"; - sha256 = "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elixir-yasnippets"; + sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579"; name = "elixir-yasnippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/elixir-yasnippets"; + homepage = "https://melpa.org/#/elixir-yasnippets"; license = lib.licenses.free; }; }) {}; elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: melpaBuild { pname = "elm-mode"; - version = "0.9.5"; + version = "0.11.1"; src = fetchFromGitHub { owner = "jcollard"; repo = "elm-mode"; - rev = "47ea2e8d06e9f39be4e1d5a79b6cc634f9d46e58"; - sha256 = "0qiwzcpwiwlkjy89pxvss3gvjvbp4d6qpaxnbm50va1gbn21n72v"; + rev = "4fb26ae8e10d7b88e05a9e3a5c1b2cf3c8c2d6c3"; + sha256 = "0ly8i5x9ii781681xf9iisj5g83sfj2wf786072clll36ym4a7c1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elm-mode"; sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1"; name = "elm-mode"; }; packageRequires = [ emacs f let-alist s ]; meta = { - homepage = "http://melpa.org/#/elm-mode"; + homepage = "https://melpa.org/#/elm-mode"; license = lib.licenses.free; }; }) {}; @@ -6356,13 +6672,13 @@ sha256 = "0l2iincskpks9yvj3y9zh1b48xli1q39wybr5n96rys5gv0drc9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elmacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elmacro"; sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz"; name = "elmacro"; }; packageRequires = [ cl-lib dash s ]; meta = { - homepage = "http://melpa.org/#/elmacro"; + homepage = "https://melpa.org/#/elmacro"; license = lib.licenses.free; }; }) {}; @@ -6377,13 +6693,13 @@ sha256 = "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elmine"; sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz"; name = "elmine"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/elmine"; + homepage = "https://melpa.org/#/elmine"; license = lib.licenses.free; }; }) {}; @@ -6398,13 +6714,13 @@ sha256 = "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpa-audit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpa-audit"; sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52"; name = "elpa-audit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/elpa-audit"; + homepage = "https://melpa.org/#/elpa-audit"; license = lib.licenses.free; }; }) {}; @@ -6419,13 +6735,13 @@ sha256 = "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpa-mirror"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpa-mirror"; sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8"; name = "elpa-mirror"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/elpa-mirror"; + homepage = "https://melpa.org/#/elpa-mirror"; license = lib.licenses.free; }; }) {}; @@ -6440,7 +6756,7 @@ sha256 = "1xjm9b32a9nfzvphj6vm0dqcr4i072zcx29kcgiyyni8zbgbwmwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elpy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpy"; sha256 = "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709"; name = "elpy"; }; @@ -6452,7 +6768,7 @@ yasnippet ]; meta = { - homepage = "http://melpa.org/#/elpy"; + homepage = "https://melpa.org/#/elpy"; license = lib.licenses.free; }; }) {}; @@ -6467,13 +6783,13 @@ sha256 = "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-mew"; sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4"; name = "elscreen-mew"; }; packageRequires = [ elscreen ]; meta = { - homepage = "http://melpa.org/#/elscreen-mew"; + homepage = "https://melpa.org/#/elscreen-mew"; license = lib.licenses.free; }; }) {}; @@ -6488,13 +6804,13 @@ sha256 = "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elscreen-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-persist"; sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k"; name = "elscreen-persist"; }; packageRequires = [ elscreen revive ]; meta = { - homepage = "http://melpa.org/#/elscreen-persist"; + homepage = "https://melpa.org/#/elscreen-persist"; license = lib.licenses.free; }; }) {}; @@ -6509,34 +6825,34 @@ sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elwm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elwm"; sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9"; name = "elwm"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/elwm"; + homepage = "https://melpa.org/#/elwm"; license = lib.licenses.free; }; }) {}; elx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elx"; - version = "0.10.0"; + version = "0.10.1"; src = fetchFromGitHub { owner = "tarsius"; repo = "elx"; - rev = "8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb"; - sha256 = "12svv24qclkcdb5sniq0xbbsj34hq835s2v636xkb07dpmy644lg"; + rev = "24bb321b275d441ca532c4ca7417143a79a88dcf"; + sha256 = "0n5y3xq5dmqpsd9hhg9ac1jkj5qi9y7lgvg5nir3ghd8ldmrg09s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/elx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elx"; sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x"; name = "elx"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/elx"; + homepage = "https://melpa.org/#/elx"; license = lib.licenses.free; }; }) {}; @@ -6551,13 +6867,13 @@ sha256 = "0b9hr3xg53nap6sik9d2cwqi8vfwzv8yqjcin4hab6rg2fkr5mra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacs-eclim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacs-eclim"; sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv"; name = "emacs-eclim"; }; packageRequires = [ dash json popup s ]; meta = { - homepage = "http://melpa.org/#/emacs-eclim"; + homepage = "https://melpa.org/#/emacs-eclim"; license = lib.licenses.free; }; }) {}; @@ -6572,13 +6888,13 @@ sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacs-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacs-setup"; sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh"; name = "emacs-setup"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emacs-setup"; + homepage = "https://melpa.org/#/emacs-setup"; license = lib.licenses.free; }; }) {}; @@ -6593,13 +6909,13 @@ sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsagist"; sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64"; name = "emacsagist"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/emacsagist"; + homepage = "https://melpa.org/#/emacsagist"; license = lib.licenses.free; }; }) {}; @@ -6614,97 +6930,97 @@ sha256 = "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsc"; sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk"; name = "emacsc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emacsc"; + homepage = "https://melpa.org/#/emacsc"; license = lib.licenses.free; }; }) {}; emacsql = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, finalize, lib, melpaBuild }: melpaBuild { pname = "emacsql"; - version = "2.0.0"; + version = "2.0.1"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; - rev = "03d478870834a683f433e7f0e288476748eec624"; - sha256 = "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i"; + rev = "176cf10063a158a114f2308f0ec0aea299ad5d24"; + sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql"; sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax"; name = "emacsql"; }; packageRequires = [ cl-lib emacs finalize ]; meta = { - homepage = "http://melpa.org/#/emacsql"; + homepage = "https://melpa.org/#/emacsql"; license = lib.licenses.free; }; }) {}; emacsql-mysql = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsql-mysql"; - version = "2.0.0"; + version = "2.0.1"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; - rev = "03d478870834a683f433e7f0e288476748eec624"; - sha256 = "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i"; + rev = "176cf10063a158a114f2308f0ec0aea299ad5d24"; + sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-mysql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-mysql"; sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy"; name = "emacsql-mysql"; }; packageRequires = [ cl-lib emacs emacsql ]; meta = { - homepage = "http://melpa.org/#/emacsql-mysql"; + homepage = "https://melpa.org/#/emacsql-mysql"; license = lib.licenses.free; }; }) {}; emacsql-psql = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild, pg }: melpaBuild { pname = "emacsql-psql"; - version = "2.0.0"; + version = "2.0.1"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; - rev = "03d478870834a683f433e7f0e288476748eec624"; - sha256 = "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i"; + rev = "176cf10063a158a114f2308f0ec0aea299ad5d24"; + sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-psql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-psql"; sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3"; name = "emacsql-psql"; }; packageRequires = [ cl-lib emacs emacsql pg ]; meta = { - homepage = "http://melpa.org/#/emacsql-psql"; + homepage = "https://melpa.org/#/emacsql-psql"; license = lib.licenses.free; }; }) {}; - emacsql-sqlite = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + emacsql-sqlite = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsql-sqlite"; - version = "2.0.0"; + version = "2.0.1"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; - rev = "03d478870834a683f433e7f0e288476748eec624"; - sha256 = "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i"; + rev = "176cf10063a158a114f2308f0ec0aea299ad5d24"; + sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emacsql-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-sqlite"; sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i"; name = "emacsql-sqlite"; }; - packageRequires = []; + packageRequires = [ cl-lib emacs emacsql ]; meta = { - homepage = "http://melpa.org/#/emacsql-sqlite"; + homepage = "https://melpa.org/#/emacsql-sqlite"; license = lib.licenses.free; }; }) {}; @@ -6719,13 +7035,13 @@ sha256 = "1a9925n0jcgxcgiz2kmh9zbb1rg9039rlrbr9fr80by9znfwmy67"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emamux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emamux"; sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; name = "emamux"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/emamux"; + homepage = "https://melpa.org/#/emamux"; license = lib.licenses.free; }; }) {}; @@ -6735,18 +7051,18 @@ version = "1.0.8"; src = fetchFromGitHub { owner = "smihica"; - repo = "emmet"; + repo = "emmet-mode"; rev = "bf76d717c60f33d223cdac35513105e9f9244885"; sha256 = "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emmet-mode"; - sha256 = "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emmet-mode"; + sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr"; name = "emmet-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emmet-mode"; + homepage = "https://melpa.org/#/emmet-mode"; license = lib.licenses.free; }; }) {}; @@ -6761,34 +7077,34 @@ sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-mode-line-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-mode-line-cycle"; sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca"; name = "emms-mode-line-cycle"; }; packageRequires = [ emacs emms ]; meta = { - homepage = "http://melpa.org/#/emms-mode-line-cycle"; + homepage = "https://melpa.org/#/emms-mode-line-cycle"; license = lib.licenses.free; }; }) {}; emms-player-mpv = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-player-mpv"; - version = "0.0.7"; + version = "0.0.8"; src = fetchFromGitHub { owner = "dochang"; repo = "emms-player-mpv"; - rev = "a1be1d266530ede3780dd69a7243d898f1016127"; - sha256 = "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m"; + rev = "69ebe6d9539769d4c4daa484693ec0d6f67a3cca"; + sha256 = "104iw4bl6y33diqs5ayrvdljkhb6f9g2m5p5kh8klgy7z1yjhp4p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-player-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-player-mpv"; sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y"; name = "emms-player-mpv"; }; packageRequires = [ emms ]; meta = { - homepage = "http://melpa.org/#/emms-player-mpv"; + homepage = "https://melpa.org/#/emms-player-mpv"; license = lib.licenses.free; }; }) {}; @@ -6803,13 +7119,34 @@ sha256 = "15bb8fp2lwr5brfrsjwa47yvja5g2wyaac5a4sh5rn734s64x2sq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emms-player-simple-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-player-simple-mpv"; sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1"; name = "emms-player-simple-mpv"; }; packageRequires = [ cl-lib emacs emms ]; meta = { - homepage = "http://melpa.org/#/emms-player-simple-mpv"; + homepage = "https://melpa.org/#/emms-player-simple-mpv"; + license = lib.licenses.free; + }; + }) {}; + emms-status = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "emms-status"; + version = "0.1"; + src = fetchFromGitHub { + owner = "alezost"; + repo = "emms-status.el"; + rev = "4ec65baf5786442246f0e47ab910c949a41c6495"; + sha256 = "0dfgb0jdadz8vgiald67cy3p256mwa66z1cdv1i8lhli3710j74d"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-status"; + sha256 = "1nfyhp8l22ylh60hpk8fvr4hgmww8k2xi3q7dzpn5m2ph06fkdqa"; + name = "emms-status"; + }; + packageRequires = [ emms ]; + meta = { + homepage = "https://melpa.org/#/emms-status"; license = lib.licenses.free; }; }) {}; @@ -6824,13 +7161,13 @@ sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emoji-cheat-sheet-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emoji-cheat-sheet-plus"; sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv"; name = "emoji-cheat-sheet-plus"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/emoji-cheat-sheet-plus"; + homepage = "https://melpa.org/#/emoji-cheat-sheet-plus"; license = lib.licenses.free; }; }) {}; @@ -6845,13 +7182,13 @@ sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emoji-fontset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emoji-fontset"; sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d"; name = "emoji-fontset"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/emoji-fontset"; + homepage = "https://melpa.org/#/emoji-fontset"; license = lib.licenses.free; }; }) {}; @@ -6866,13 +7203,13 @@ sha256 = "0nrf6p4h66i17nz850kpdrnk5h5ra4l3icjjrq34sxvmsssp6zhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emojify"; - sha256 = "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emojify"; + sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp"; name = "emojify"; }; packageRequires = [ emacs ht seq ]; meta = { - homepage = "http://melpa.org/#/emojify"; + homepage = "https://melpa.org/#/emojify"; license = lib.licenses.free; }; }) {}; @@ -6887,7 +7224,7 @@ sha256 = "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/emr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emr"; sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x"; name = "emr"; }; @@ -6903,7 +7240,7 @@ s ]; meta = { - homepage = "http://melpa.org/#/emr"; + homepage = "https://melpa.org/#/emr"; license = lib.licenses.free; }; }) {}; @@ -6918,13 +7255,13 @@ sha256 = "1dsa3r39ip20ddbw0m9vq8z3r4ahrxvb37adyqi4mbdgyr6fq6sw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/engine-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/engine-mode"; sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c"; name = "engine-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/engine-mode"; + homepage = "https://melpa.org/#/engine-mode"; license = lib.licenses.free; }; }) {}; @@ -6939,13 +7276,13 @@ sha256 = "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enlive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enlive"; sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz"; name = "enlive"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/enlive"; + homepage = "https://melpa.org/#/enlive"; license = lib.licenses.free; }; }) {}; @@ -6960,13 +7297,13 @@ sha256 = "1in4wbwkxn8qfcsfjbczzk73z74w4ixlml61wk666dw0kpscgbs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/enotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enotify"; sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi"; name = "enotify"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/enotify"; + homepage = "https://melpa.org/#/enotify"; license = lib.licenses.free; }; }) {}; @@ -6981,13 +7318,13 @@ sha256 = "1yn9jn6jl6rmknj50g18z5yvpa1d8mzzx3j1pfdwfn36ak4nc9ba"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eopengrok"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eopengrok"; sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av"; name = "eopengrok"; }; packageRequires = [ cl-lib dash magit s ]; meta = { - homepage = "http://melpa.org/#/eopengrok"; + homepage = "https://melpa.org/#/eopengrok"; license = lib.licenses.free; }; }) {}; @@ -7002,13 +7339,34 @@ sha256 = "05r2m7zghbdrgscg0x78jnhk1g6fq8iylar4cx699zm6pzvlq98z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epc"; sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx"; name = "epc"; }; packageRequires = [ concurrent ctable ]; meta = { - homepage = "http://melpa.org/#/epc"; + homepage = "https://melpa.org/#/epc"; + license = lib.licenses.free; + }; + }) {}; + epkg = callPackage ({ closql, dash, emacs, fetchFromGitLab, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "epkg"; + version = "1.0.0"; + src = fetchFromGitLab { + owner = "tarsius"; + repo = "epkg"; + rev = "99df36a50fb39976c6b6086db2f5f640f5d917b7"; + sha256 = "0z60g9ln651cjfrjhwdm28x53kcpmap8zw26v0vjng288hlj8f9c"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epkg"; + sha256 = "0vc1g29rfmgd2ks4lbz4599rbgcax7rgdva53ahhvp6say8fy22q"; + name = "epkg"; + }; + packageRequires = [ closql dash emacs ]; + meta = { + homepage = "https://melpa.org/#/epkg"; license = lib.licenses.free; }; }) {}; @@ -7023,13 +7381,13 @@ sha256 = "0sjxd5y5hxhrbgfkpwx6m724r3841b53hgc61a0g5zwispw5pmrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/epl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epl"; sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn"; name = "epl"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/epl"; + homepage = "https://melpa.org/#/epl"; license = lib.licenses.free; }; }) {}; @@ -7044,13 +7402,13 @@ sha256 = "1xw56sir6gkr0p9g4s6p4qc0rajnl6ifbzrky07j28y9vsa59nsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-crypt"; sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3"; name = "erc-crypt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-crypt"; + homepage = "https://melpa.org/#/erc-crypt"; license = lib.licenses.free; }; }) {}; @@ -7064,13 +7422,13 @@ sha256 = "0bk4vr26abhbiwkmpns4hdlg23pxa25lca78fhz1900jkv4imk0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-hipchatify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-hipchatify"; sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x"; name = "erc-hipchatify"; }; packageRequires = [ alert emacs request s ]; meta = { - homepage = "http://melpa.org/#/erc-hipchatify"; + homepage = "https://melpa.org/#/erc-hipchatify"; license = lib.licenses.free; }; }) {}; @@ -7085,13 +7443,34 @@ sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-hl-nicks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-hl-nicks"; sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja"; name = "erc-hl-nicks"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erc-hl-nicks"; + homepage = "https://melpa.org/#/erc-hl-nicks"; + license = lib.licenses.free; + }; + }) {}; + erc-twitch = callPackage ({ erc ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: + melpaBuild { + pname = "erc-twitch"; + version = "1.1"; + src = fetchFromGitHub { + owner = "vibhavp"; + repo = "erc-twitch"; + rev = "6938191c787d66fef4c13674e0a98a9d64eff364"; + sha256 = "1xsxykmhz34gmyj4jb26qfai7j95kzlc7vfydrajc6is7xlrwhfk"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-twitch"; + sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia"; + name = "erc-twitch"; + }; + packageRequires = [ erc json ]; + meta = { + homepage = "https://melpa.org/#/erc-twitch"; license = lib.licenses.free; }; }) {}; @@ -7106,13 +7485,13 @@ sha256 = "0p1j08rrdsqmkb8zz8h8ba24hr59nx3xh2m044ry468hfd2bp6vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erc-youtube"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-youtube"; sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx"; name = "erc-youtube"; }; packageRequires = [ erc ]; meta = { - homepage = "http://melpa.org/#/erc-youtube"; + homepage = "https://melpa.org/#/erc-youtube"; license = lib.licenses.free; }; }) {}; @@ -7127,13 +7506,13 @@ sha256 = "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ercn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ercn"; sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp"; name = "ercn"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ercn"; + homepage = "https://melpa.org/#/ercn"; license = lib.licenses.free; }; }) {}; @@ -7148,13 +7527,13 @@ sha256 = "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erefactor"; sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7"; name = "erefactor"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/erefactor"; + homepage = "https://melpa.org/#/erefactor"; license = lib.licenses.free; }; }) {}; @@ -7169,34 +7548,34 @@ sha256 = "19m6chwc2awbsk5z03q1yhq84m481pff2609a8bxymcvm6yaamvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ergoemacs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ergoemacs-mode"; sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62"; name = "ergoemacs-mode"; }; packageRequires = [ emacs undo-tree ]; meta = { - homepage = "http://melpa.org/#/ergoemacs-mode"; + homepage = "https://melpa.org/#/ergoemacs-mode"; license = lib.licenses.free; }; }) {}; erlang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erlang"; - version = "18.2.3"; + version = "18.3.1"; src = fetchFromGitHub { owner = "erlang"; repo = "otp"; - rev = "d96471b3f404f7341279d8598dd74d92fb1a923c"; - sha256 = "1g7grv3zs5lydkxhwzdc3caqym11m20mx43m3hd5jgc96smg0433"; + rev = "afe72bfc1448ff426c38eceb7412f69e973aef62"; + sha256 = "0p16jjrqkacjwi3ih4hamp1rcak7mmj76m2kzswm3x54fmicw1kx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/erlang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erlang"; sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc"; name = "erlang"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/erlang"; + homepage = "https://melpa.org/#/erlang"; license = lib.licenses.free; }; }) {}; @@ -7211,13 +7590,13 @@ sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-async"; sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5"; name = "ert-async"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ert-async"; + homepage = "https://melpa.org/#/ert-async"; license = lib.licenses.free; }; }) {}; @@ -7228,16 +7607,16 @@ src = fetchgit { url = "https://bitbucket.org/olanilsson/ert-junit"; rev = "341c755e7b60f8d2081303951377968b1d1a6c23"; - sha256 = "63a8fb532260f56569ce20f911788054624a7a29f149ed6036d9f997ae0457c3"; + sha256 = "1hsp0jp9gyfr6rhfsjgi55x4lqjlh1w13y90rrlnbxb0499zpa33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-junit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-junit"; sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g"; name = "ert-junit"; }; packageRequires = [ ert ]; meta = { - homepage = "http://melpa.org/#/ert-junit"; + homepage = "https://melpa.org/#/ert-junit"; license = lib.licenses.free; }; }) {}; @@ -7252,13 +7631,13 @@ sha256 = "0rdgdslspzb4s0n4a68hnwfm8vm8baasa8nzrdinf0nryn7rrhbf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ert-runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-runner"; sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48"; name = "ert-runner"; }; packageRequires = [ ansi commander dash f s shut-up ]; meta = { - homepage = "http://melpa.org/#/ert-runner"; + homepage = "https://melpa.org/#/ert-runner"; license = lib.licenses.free; }; }) {}; @@ -7273,13 +7652,13 @@ sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-lib"; sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n"; name = "es-lib"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/es-lib"; + homepage = "https://melpa.org/#/es-lib"; license = lib.licenses.free; }; }) {}; @@ -7294,13 +7673,13 @@ sha256 = "0avvkfmqsa1ld5f6cx98sliidzi42iax1c78059r4k5z5kz24x37"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-mode"; sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp"; name = "es-mode"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/es-mode"; + homepage = "https://melpa.org/#/es-mode"; license = lib.licenses.free; }; }) {}; @@ -7315,13 +7694,34 @@ sha256 = "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/es-windows"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-windows"; sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx"; name = "es-windows"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/es-windows"; + homepage = "https://melpa.org/#/es-windows"; + license = lib.licenses.free; + }; + }) {}; + esa = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "esa"; + version = "0.8.13"; + src = fetchFromGitHub { + owner = "nabinno"; + repo = "esa.el"; + rev = "0f69f9f45ac15018c48853509ac38e68286f9c0e"; + sha256 = "0cairmqsaghl2ddb2v8zhcwy5ik756m7gkair8xrbigz4jklpcv9"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esa"; + sha256 = "1kbsv4xsp7p9v0g22had0dr7w5zsr24bgi2xzryy76699pxq4h6c"; + name = "esa"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/esa"; license = lib.licenses.free; }; }) {}; @@ -7336,13 +7736,13 @@ sha256 = "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-autojump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-autojump"; sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5"; name = "eshell-autojump"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eshell-autojump"; + homepage = "https://melpa.org/#/eshell-autojump"; license = lib.licenses.free; }; }) {}; @@ -7357,13 +7757,13 @@ sha256 = "179xqh0rs8w3d03gygg9sy4qp5xqgfgl4c0ycrknip9zrnbmph4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eshell-z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-z"; sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d"; name = "eshell-z"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/eshell-z"; + homepage = "https://melpa.org/#/eshell-z"; license = lib.licenses.free; }; }) {}; @@ -7378,13 +7778,13 @@ sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/espuds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/espuds"; sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c"; name = "espuds"; }; packageRequires = [ dash f s ]; meta = { - homepage = "http://melpa.org/#/espuds"; + homepage = "https://melpa.org/#/espuds"; license = lib.licenses.free; }; }) {}; @@ -7399,13 +7799,13 @@ sha256 = "0lvr14xlxsdad4ihywkpbwwj9lyal0w4p616ska5rk7gg5i8v74p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess"; sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i"; name = "ess"; }; packageRequires = [ julia-mode ]; meta = { - homepage = "http://melpa.org/#/ess"; + homepage = "https://melpa.org/#/ess"; license = lib.licenses.free; }; }) {}; @@ -7420,13 +7820,13 @@ sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-R-data-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-R-data-view"; sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0"; name = "ess-R-data-view"; }; packageRequires = [ ctable ess popup ]; meta = { - homepage = "http://melpa.org/#/ess-R-data-view"; + homepage = "https://melpa.org/#/ess-R-data-view"; license = lib.licenses.free; }; }) {}; @@ -7441,13 +7841,13 @@ sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-R-object-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-R-object-popup"; sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj"; name = "ess-R-object-popup"; }; packageRequires = [ ess popup ]; meta = { - homepage = "http://melpa.org/#/ess-R-object-popup"; + homepage = "https://melpa.org/#/ess-R-object-popup"; license = lib.licenses.free; }; }) {}; @@ -7462,13 +7862,13 @@ sha256 = "1avb6dng4xgw3bp7bw0j60wl6s4y26alfys9vwwj29rlzvjrlh74"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ess-smart-underscore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-smart-underscore"; sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2"; name = "ess-smart-underscore"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ess-smart-underscore"; + homepage = "https://melpa.org/#/ess-smart-underscore"; license = lib.licenses.free; }; }) {}; @@ -7483,13 +7883,13 @@ sha256 = "1pzbd2ka6h5ipiivfwfgq1hq80ww59xvyldmx406mdd5vn7yqk5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esup"; sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0"; name = "esup"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/esup"; + homepage = "https://melpa.org/#/esup"; license = lib.licenses.free; }; }) {}; @@ -7504,34 +7904,34 @@ sha256 = "0k4vqlbk3h2snfiriraxhnjpdxgs49vcaazl191p9s2f799msd8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/esxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esxml"; sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz"; name = "esxml"; }; packageRequires = [ kv ]; meta = { - homepage = "http://melpa.org/#/esxml"; + homepage = "https://melpa.org/#/esxml"; license = lib.licenses.free; }; }) {}; eval-in-repl = callPackage ({ ace-window, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "eval-in-repl"; - version = "0.9.0"; + version = "0.9.2"; src = fetchFromGitHub { owner = "kaz-yos"; repo = "eval-in-repl"; - rev = "ce5c304993d316750a4ff998ed199121d55dca8b"; - sha256 = "1a33yy455yx2188vxnhylgzg4zc0hhrw52dmpc4svxs7h1229pwg"; + rev = "2b5d1bee767de4f21b14cefd7ce310f862226bd7"; + sha256 = "077rj7yj6laxyhcsmrmlpg438962jv0fm2yiqx6i365fbgyx0hck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eval-in-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eval-in-repl"; sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63"; name = "eval-in-repl"; }; packageRequires = [ ace-window dash paredit ]; meta = { - homepage = "http://melpa.org/#/eval-in-repl"; + homepage = "https://melpa.org/#/eval-in-repl"; license = lib.licenses.free; }; }) {}; @@ -7546,13 +7946,13 @@ sha256 = "0lwpl9akdxml9f51pgsv0g7k7mr8dvqm94l01i7vq8jl6vd6v6i5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eval-sexp-fu"; sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs"; name = "eval-sexp-fu"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eval-sexp-fu"; + homepage = "https://melpa.org/#/eval-sexp-fu"; license = lib.licenses.free; }; }) {}; @@ -7567,33 +7967,33 @@ sha256 = "1a3y69s7lb24zdivxcpsjh9l6adxyjqxbpgradnj0q1n6kdyq679"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evalator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evalator"; sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk"; name = "evalator"; }; packageRequires = [ helm-core ]; meta = { - homepage = "http://melpa.org/#/evalator"; + homepage = "https://melpa.org/#/evalator"; license = lib.licenses.free; }; }) {}; evil = callPackage ({ fetchhg, fetchurl, goto-chg, lib, melpaBuild, undo-tree }: melpaBuild { pname = "evil"; - version = "1.2.10"; + version = "1.2.12"; src = fetchhg { url = "https://bitbucket.com/lyro/evil"; - rev = "70005dd4c11e"; - sha256 = "0hdysszfc3796d19nyw1f4cqzisspih1if0hh9hp2xjgxh3vj0mw"; + rev = "5bbbfd0c8832"; + sha256 = "037d5skihr3z1v3pvd1qg10pgygb4adznf6z0bysdvisjny298nv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil"; sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc"; name = "evil"; }; packageRequires = [ goto-chg undo-tree ]; meta = { - homepage = "http://melpa.org/#/evil"; + homepage = "https://melpa.org/#/evil"; license = lib.licenses.free; }; }) {}; @@ -7608,13 +8008,13 @@ sha256 = "0lw7fg4gqwj30r0l6k2ni36sxqkf65zf0d0z3rxnpwbxlf8dlkrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-anzu"; sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70"; name = "evil-anzu"; }; packageRequires = [ anzu evil ]; meta = { - homepage = "http://melpa.org/#/evil-anzu"; + homepage = "https://melpa.org/#/evil-anzu"; license = lib.licenses.free; }; }) {}; @@ -7629,13 +8029,13 @@ sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-args"; sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w"; name = "evil-args"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-args"; + homepage = "https://melpa.org/#/evil-args"; license = lib.licenses.free; }; }) {}; @@ -7650,13 +8050,13 @@ sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-commentary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-commentary"; sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz"; name = "evil-commentary"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-commentary"; + homepage = "https://melpa.org/#/evil-commentary"; license = lib.licenses.free; }; }) {}; @@ -7671,55 +8071,34 @@ sha256 = "0cj17gk7cxia2p9xzqnlnmqqbw2afd3x61gfw9fpf65j9wik5hbz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-escape"; sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k"; name = "evil-escape"; }; packageRequires = [ cl-lib emacs evil ]; meta = { - homepage = "http://melpa.org/#/evil-escape"; + homepage = "https://melpa.org/#/evil-escape"; license = lib.licenses.free; }; }) {}; evil-iedit-state = callPackage ({ evil, fetchFromGitHub, fetchurl, iedit, lib, melpaBuild }: melpaBuild { pname = "evil-iedit-state"; - version = "1.0"; + version = "1.1"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-iedit-state"; - rev = "0bf8d5d1777f1e8a3c46b6a1c7dceb082fcc6779"; - sha256 = "0r2367lbzcdhglvjjcamrzn5fmqy0jalcws8r0yc2al1vbsrn0fr"; + rev = "eab7d5e3e7d25c4a852fedb6c0c7f50dd9e9bd7c"; + sha256 = "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-iedit-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-iedit-state"; sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl"; name = "evil-iedit-state"; }; packageRequires = [ evil iedit ]; meta = { - homepage = "http://melpa.org/#/evil-iedit-state"; - license = lib.licenses.free; - }; - }) {}; - evil-jumper = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "evil-jumper"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "bling"; - repo = "evil-jumper"; - rev = "16ff9e7b90519a139acc88bb80d4629c6e3b592c"; - sha256 = "1yrd9zvp23xwmxvw9hrhfwhwfczh4lxxk65mcvy69q6wwd03z5vn"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-jumper"; - sha256 = "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x"; - name = "evil-jumper"; - }; - packageRequires = [ cl-lib evil ]; - meta = { - homepage = "http://melpa.org/#/evil-jumper"; + homepage = "https://melpa.org/#/evil-iedit-state"; license = lib.licenses.free; }; }) {}; @@ -7734,34 +8113,55 @@ sha256 = "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-leader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-leader"; sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6"; name = "evil-leader"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-leader"; + homepage = "https://melpa.org/#/evil-leader"; license = lib.licenses.free; }; }) {}; - evil-lisp-state = callPackage ({ evil, evil-leader, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: + evil-lisp-state = callPackage ({ bind-map, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: melpaBuild { pname = "evil-lisp-state"; - version = "7.1"; + version = "8.2"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-lisp-state"; - rev = "e5792ec68a5615bd07bf2c6e9eb3f49d1bc7810d"; - sha256 = "12l3gnhirq8jz0dqyj9m02l1fg5rh78fdyskslprxp5vfa4ngzkh"; + rev = "3c65fecd9917a41eaf6460f22187e2323821f3ce"; + sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-lisp-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-lisp-state"; sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy"; name = "evil-lisp-state"; }; - packageRequires = [ evil evil-leader smartparens ]; + packageRequires = [ bind-map evil smartparens ]; meta = { - homepage = "http://melpa.org/#/evil-lisp-state"; + homepage = "https://melpa.org/#/evil-lisp-state"; + license = lib.licenses.free; + }; + }) {}; + evil-magit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: + melpaBuild { + pname = "evil-magit"; + version = "0.3"; + src = fetchFromGitHub { + owner = "justbur"; + repo = "evil-magit"; + rev = "d01f776475480b712facd764eeb3d76a50a400f6"; + sha256 = "040iam8ayb4q5f2w2cn40y9rgljv2gsa5yf0vky1ayjf1zl57g3n"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-magit"; + sha256 = "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6"; + name = "evil-magit"; + }; + packageRequires = [ evil magit ]; + meta = { + homepage = "https://melpa.org/#/evil-magit"; license = lib.licenses.free; }; }) {}; @@ -7776,34 +8176,55 @@ sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-mark-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-mark-replace"; sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0"; name = "evil-mark-replace"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-mark-replace"; + homepage = "https://melpa.org/#/evil-mark-replace"; license = lib.licenses.free; }; }) {}; evil-matchit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-matchit"; - version = "2.1.2"; + version = "2.1.3"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "evil-matchit"; - rev = "8b80b3df9472217d55962981025539f2da603296"; - sha256 = "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi"; + rev = "6346825fd89ee115fab974746fdba338adee856c"; + sha256 = "0x6rc98g7hvvmlgq31n7qanylrld6dzvg6n8qgzp4s544l0dwfw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-matchit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-matchit"; sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq"; name = "evil-matchit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/evil-matchit"; + homepage = "https://melpa.org/#/evil-matchit"; + license = lib.licenses.free; + }; + }) {}; + evil-multiedit = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, iedit, lib, melpaBuild }: + melpaBuild { + pname = "evil-multiedit"; + version = "1.2.4"; + src = fetchFromGitHub { + owner = "hlissner"; + repo = "evil-multiedit"; + rev = "02c78e55d1ab8f4fb64590b975eaea559917f048"; + sha256 = "0xizqg6azhd9iwkp91sgqkxgg1qhs05cafncbjxw7qvnv68y6qy6"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-multiedit"; + sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp"; + name = "evil-multiedit"; + }; + packageRequires = [ cl-lib emacs evil iedit ]; + meta = { + homepage = "https://melpa.org/#/evil-multiedit"; license = lib.licenses.free; }; }) {}; @@ -7818,13 +8239,13 @@ sha256 = "16wn74690572n3xpxvnvka524fzswxxni3dy98bwpvsqj6yx2ds5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-nerd-commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-nerd-commenter"; sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d"; name = "evil-nerd-commenter"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/evil-nerd-commenter"; + homepage = "https://melpa.org/#/evil-nerd-commenter"; license = lib.licenses.free; }; }) {}; @@ -7839,13 +8260,13 @@ sha256 = "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-numbers"; sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2"; name = "evil-numbers"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/evil-numbers"; + homepage = "https://melpa.org/#/evil-numbers"; license = lib.licenses.free; }; }) {}; @@ -7860,13 +8281,13 @@ sha256 = "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-org"; sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c"; name = "evil-org"; }; packageRequires = [ evil org ]; meta = { - homepage = "http://melpa.org/#/evil-org"; + homepage = "https://melpa.org/#/evil-org"; license = lib.licenses.free; }; }) {}; @@ -7881,13 +8302,13 @@ sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-quickscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-quickscope"; sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489"; name = "evil-quickscope"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-quickscope"; + homepage = "https://melpa.org/#/evil-quickscope"; license = lib.licenses.free; }; }) {}; @@ -7902,13 +8323,13 @@ sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-rsi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-rsi"; sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345"; name = "evil-rsi"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-rsi"; + homepage = "https://melpa.org/#/evil-rsi"; license = lib.licenses.free; }; }) {}; @@ -7923,13 +8344,13 @@ sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-search-highlight-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-search-highlight-persist"; sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy"; name = "evil-search-highlight-persist"; }; packageRequires = [ highlight ]; meta = { - homepage = "http://melpa.org/#/evil-search-highlight-persist"; + homepage = "https://melpa.org/#/evil-search-highlight-persist"; license = lib.licenses.free; }; }) {}; @@ -7944,34 +8365,34 @@ sha256 = "0j2m3rsszivyjhv8bjid5fdqaf1vwp8rf55b27y4vc2489wrw415"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-smartparens"; sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza"; name = "evil-smartparens"; }; packageRequires = [ cl-lib emacs evil smartparens ]; meta = { - homepage = "http://melpa.org/#/evil-smartparens"; + homepage = "https://melpa.org/#/evil-smartparens"; license = lib.licenses.free; }; }) {}; - evil-snipe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + evil-snipe = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-snipe"; - version = "1.0"; + version = "2.0.1"; src = fetchFromGitHub { owner = "hlissner"; repo = "evil-snipe"; - rev = "9df049eb83789ea5711632672e077cebf4c54e14"; - sha256 = "143lgpvbjrddbgnyh9dfdhjj0gp69slv4fkiq53czz85ffwli5ig"; + rev = "b51bdb7a8efbc5c8de5b23984d072271d71974c6"; + sha256 = "1ip2ibgsir6rhj7ci2f128z18n1yrwd6pg0i42j1flc3m4shs6ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-snipe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-snipe"; sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn"; name = "evil-snipe"; }; - packageRequires = []; + packageRequires = [ cl-lib evil ]; meta = { - homepage = "http://melpa.org/#/evil-snipe"; + homepage = "https://melpa.org/#/evil-snipe"; license = lib.licenses.free; }; }) {}; @@ -7986,13 +8407,13 @@ sha256 = "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-space"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-space"; sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23"; name = "evil-space"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-space"; + homepage = "https://melpa.org/#/evil-space"; license = lib.licenses.free; }; }) {}; @@ -8007,13 +8428,13 @@ sha256 = "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-textobj-anyblock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-textobj-anyblock"; sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa"; name = "evil-textobj-anyblock"; }; packageRequires = [ cl-lib evil ]; meta = { - homepage = "http://melpa.org/#/evil-textobj-anyblock"; + homepage = "https://melpa.org/#/evil-textobj-anyblock"; license = lib.licenses.free; }; }) {}; @@ -8028,13 +8449,13 @@ sha256 = "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-tutor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-tutor"; sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn"; name = "evil-tutor"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-tutor"; + homepage = "https://melpa.org/#/evil-tutor"; license = lib.licenses.free; }; }) {}; @@ -8049,13 +8470,13 @@ sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-visual-mark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-visual-mark-mode"; sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48"; name = "evil-visual-mark-mode"; }; packageRequires = [ dash evil ]; meta = { - homepage = "http://melpa.org/#/evil-visual-mark-mode"; + homepage = "https://melpa.org/#/evil-visual-mark-mode"; license = lib.licenses.free; }; }) {}; @@ -8070,13 +8491,13 @@ sha256 = "11y2jrwbsw4fcx77zkhj1cn2hl1zcdqy00bv3mpbcrs03jywssrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evil-visualstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-visualstar"; sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy"; name = "evil-visualstar"; }; packageRequires = [ evil ]; meta = { - homepage = "http://melpa.org/#/evil-visualstar"; + homepage = "https://melpa.org/#/evil-visualstar"; license = lib.licenses.free; }; }) {}; @@ -8091,13 +8512,13 @@ sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/evm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evm"; sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03"; name = "evm"; }; packageRequires = [ dash f ]; meta = { - homepage = "http://melpa.org/#/evm"; + homepage = "https://melpa.org/#/evm"; license = lib.licenses.free; }; }) {}; @@ -8112,13 +8533,13 @@ sha256 = "0gs6bi3s2sszc6v2b26929azmn5513kvyin99n4d0ark1jdbjmv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eww-lnum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eww-lnum"; sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79"; name = "eww-lnum"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/eww-lnum"; + homepage = "https://melpa.org/#/eww-lnum"; license = lib.licenses.free; }; }) {}; @@ -8133,13 +8554,13 @@ sha256 = "0nhc3m88i6rl2y426ksmjbbaqwfrjnwbzqq1bvd6r0bkcwgfwfml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/exec-path-from-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/exec-path-from-shell"; sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9"; name = "exec-path-from-shell"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/exec-path-from-shell"; + homepage = "https://melpa.org/#/exec-path-from-shell"; license = lib.licenses.free; }; }) {}; @@ -8154,13 +8575,13 @@ sha256 = "0rvkhjfkhamr3ys9iarblfwvwq7n4wishdjgnwj1lx7m80h1hzbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/expand-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/expand-region"; sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg"; name = "expand-region"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/expand-region"; + homepage = "https://melpa.org/#/expand-region"; license = lib.licenses.free; }; }) {}; @@ -8175,13 +8596,13 @@ sha256 = "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/express"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/express"; sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9"; name = "express"; }; packageRequires = [ string-utils ]; meta = { - homepage = "http://melpa.org/#/express"; + homepage = "https://melpa.org/#/express"; license = lib.licenses.free; }; }) {}; @@ -8196,13 +8617,13 @@ sha256 = "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/extend-dnd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/extend-dnd"; sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417"; name = "extend-dnd"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/extend-dnd"; + homepage = "https://melpa.org/#/extend-dnd"; license = lib.licenses.free; }; }) {}; @@ -8217,34 +8638,34 @@ sha256 = "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/eyebrowse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eyebrowse"; sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861"; name = "eyebrowse"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/eyebrowse"; + homepage = "https://melpa.org/#/eyebrowse"; license = lib.licenses.free; }; }) {}; f = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "f"; - version = "0.17.3"; + version = "0.18.2"; src = fetchFromGitHub { owner = "rejeep"; repo = "f.el"; - rev = "e0259ee060ff9a3f12204adcc8630869080acd68"; - sha256 = "0lzqfr5xgc3qvpbs6vf63yiw7pc2mybfvsrhczf9ghlmlawqa6k1"; + rev = "6f80f25ef87fb9df58cbc86faa2a2f037dcc2e7e"; + sha256 = "095ka87144jms5gi9spjcmkq346a56kzzy3in6naaha0djd4d607"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/f"; sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2"; name = "f"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/f"; + homepage = "https://melpa.org/#/f"; license = lib.licenses.free; }; }) {}; @@ -8259,13 +8680,13 @@ sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fabric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fabric"; sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m"; name = "fabric"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fabric"; + homepage = "https://melpa.org/#/fabric"; license = lib.licenses.free; }; }) {}; @@ -8280,13 +8701,13 @@ sha256 = "01l8dlfpyy97b17djbza46rq11xlbkhd5kn2r26r2xac8klj4pka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/factlog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/factlog"; sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7"; name = "factlog"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/factlog"; + homepage = "https://melpa.org/#/factlog"; license = lib.licenses.free; }; }) {}; @@ -8301,13 +8722,13 @@ sha256 = "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fancy-battery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fancy-battery"; sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii"; name = "fancy-battery"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/fancy-battery"; + homepage = "https://melpa.org/#/fancy-battery"; license = lib.licenses.free; }; }) {}; @@ -8322,13 +8743,13 @@ sha256 = "10ds6nlzm1s5xsp53a52qlzrnph7in6gib67qhgnwpj33wp8gs91"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fancy-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fancy-narrow"; sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv"; name = "fancy-narrow"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fancy-narrow"; + homepage = "https://melpa.org/#/fancy-narrow"; license = lib.licenses.free; }; }) {}; @@ -8343,13 +8764,13 @@ sha256 = "0h32w63vv451797zi6206j529fd4j8l3fp7rqip3s8xn8d4728x1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fastnav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fastnav"; sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5"; name = "fastnav"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fastnav"; + homepage = "https://melpa.org/#/fastnav"; license = lib.licenses.free; }; }) {}; @@ -8364,13 +8785,13 @@ sha256 = "03w68zbgprly45i6ps7iviwvjf3acbc7f7acvjpzj2plf0g5i19z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fcitx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fcitx"; sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx"; name = "fcitx"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fcitx"; + homepage = "https://melpa.org/#/fcitx"; license = lib.licenses.free; }; }) {}; @@ -8385,13 +8806,13 @@ sha256 = "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/feature-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/feature-mode"; sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg"; name = "feature-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/feature-mode"; + homepage = "https://melpa.org/#/feature-mode"; license = lib.licenses.free; }; }) {}; @@ -8406,13 +8827,13 @@ sha256 = "0fghhy5xqsdwal4fwlr6hxr5kpnfw71q79mxpp9db59ldnj9f5y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fill-column-indicator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fill-column-indicator"; sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma"; name = "fill-column-indicator"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fill-column-indicator"; + homepage = "https://melpa.org/#/fill-column-indicator"; license = lib.licenses.free; }; }) {}; @@ -8427,13 +8848,13 @@ sha256 = "1r9y9zschavi28c5ysrlh56vxszjfyhh5r36fhn74i0b5iiy15rx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/finalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/finalize"; sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq"; name = "finalize"; }; packageRequires = [ cl-lib eieio emacs ]; meta = { - homepage = "http://melpa.org/#/finalize"; + homepage = "https://melpa.org/#/finalize"; license = lib.licenses.free; }; }) {}; @@ -8448,34 +8869,34 @@ sha256 = "1xjb66pydm3yf0jxnm2mri98pxq3b26xvwjkaj1488qgj27i05jr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-by-pinyin-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-by-pinyin-dired"; sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq"; name = "find-by-pinyin-dired"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/find-by-pinyin-dired"; + homepage = "https://melpa.org/#/find-by-pinyin-dired"; license = lib.licenses.free; }; }) {}; find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "find-file-in-project"; - version = "4.5"; + version = "4.8"; src = fetchFromGitHub { owner = "technomancy"; repo = "find-file-in-project"; - rev = "908cc56c0fd715001da4d97b30cba5eb7af3a609"; - sha256 = "0bf32nhpmjvvgnr6g9xqh8pqnhr3dl24y3g40lsv4pc8ffs70ydm"; + rev = "78c4053db2e98a75b9fc76454038e29974a9d6b7"; + sha256 = "1mi25nb3h6a7i2lg3dbqkqr8lhh8zsq1bibbib0mhfd0qs07ya5d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-file-in-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-file-in-project"; sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy"; name = "find-file-in-project"; }; packageRequires = [ emacs swiper ]; meta = { - homepage = "http://melpa.org/#/find-file-in-project"; + homepage = "https://melpa.org/#/find-file-in-project"; license = lib.licenses.free; }; }) {}; @@ -8490,13 +8911,13 @@ sha256 = "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/find-file-in-repository"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-file-in-repository"; sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6"; name = "find-file-in-repository"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/find-file-in-repository"; + homepage = "https://melpa.org/#/find-file-in-repository"; license = lib.licenses.free; }; }) {}; @@ -8505,19 +8926,19 @@ pname = "fiplr"; version = "0.2.4"; src = fetchFromGitHub { - owner = "d11wtq"; + owner = "grizzl"; repo = "fiplr"; rev = "100dfc33f43da8c49e50e8a2222b9d95532f6e24"; sha256 = "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fiplr"; - sha256 = "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fiplr"; + sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca"; name = "fiplr"; }; packageRequires = [ grizzl ]; meta = { - homepage = "http://melpa.org/#/fiplr"; + homepage = "https://melpa.org/#/fiplr"; license = lib.licenses.free; }; }) {}; @@ -8532,13 +8953,13 @@ sha256 = "1rz56n2gmw11w2yxlhn0i8xmig9m8lxihgaikg65xmy9nqa5j7bj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firefox-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firefox-controller"; sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6"; name = "firefox-controller"; }; packageRequires = [ cl-lib moz popwin ]; meta = { - homepage = "http://melpa.org/#/firefox-controller"; + homepage = "https://melpa.org/#/firefox-controller"; license = lib.licenses.free; }; }) {}; @@ -8553,13 +8974,13 @@ sha256 = "174x0qyrwswppc9p1q1nn4424r3zg7g49zk329k5aq18vyjz52d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fireplace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fireplace"; sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw"; name = "fireplace"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fireplace"; + homepage = "https://melpa.org/#/fireplace"; license = lib.licenses.free; }; }) {}; @@ -8574,13 +8995,13 @@ sha256 = "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/firestarter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firestarter"; sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp"; name = "firestarter"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/firestarter"; + homepage = "https://melpa.org/#/firestarter"; license = lib.licenses.free; }; }) {}; @@ -8595,13 +9016,13 @@ sha256 = "17djaz79spms9il71m4xdfjhm58dzswb6fpncngkgx8kxvcy9y24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fish-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fish-mode"; sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14"; name = "fish-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/fish-mode"; + homepage = "https://melpa.org/#/fish-mode"; license = lib.licenses.free; }; }) {}; @@ -8616,13 +9037,13 @@ sha256 = "16rd23ygh76fs4i7rni94k8gwa9n360h40qmhm65snp31kqnpr1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fix-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fix-input"; sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p"; name = "fix-input"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/fix-input"; + homepage = "https://melpa.org/#/fix-input"; license = lib.licenses.free; }; }) {}; @@ -8637,13 +9058,13 @@ sha256 = "1hj5jp4vbkcmnc8l2hqsvjc76f7c9zcsq8znwcwv2nv9xj9hlbkr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fix-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fix-word"; sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc"; name = "fix-word"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/fix-word"; + homepage = "https://melpa.org/#/fix-word"; license = lib.licenses.free; }; }) {}; @@ -8658,7 +9079,7 @@ sha256 = "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fixmee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fixmee"; sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp"; name = "fixmee"; }; @@ -8671,28 +9092,28 @@ tabulated-list ]; meta = { - homepage = "http://melpa.org/#/fixmee"; + homepage = "https://melpa.org/#/fixmee"; license = lib.licenses.free; }; }) {}; floobits = callPackage ({ fetchFromGitHub, fetchurl, highlight, json ? null, lib, melpaBuild }: melpaBuild { pname = "floobits"; - version = "1.6.3"; + version = "1.7.0"; src = fetchFromGitHub { owner = "Floobits"; repo = "floobits-emacs"; - rev = "9c052942524169c1ba98e644ccbeaea583275530"; - sha256 = "12b1b7avjdbfm184mcg3bh3s6k0ygfz1sraz8q7qnrsyw4170893"; + rev = "87ae6b1257f7c2ae91b100920b03363dd26d7dd9"; + sha256 = "10irvd9bi25fbx66dlc3v6zcqznng0aqcdb8656cz0qx7hrz56pw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/floobits"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/floobits"; sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf"; name = "floobits"; }; packageRequires = [ highlight json ]; meta = { - homepage = "http://melpa.org/#/floobits"; + homepage = "https://melpa.org/#/floobits"; license = lib.licenses.free; }; }) {}; @@ -8707,13 +9128,13 @@ sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flx"; sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9"; name = "flx"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/flx"; + homepage = "https://melpa.org/#/flx"; license = lib.licenses.free; }; }) {}; @@ -8728,13 +9149,13 @@ sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flx-ido"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flx-ido"; sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc"; name = "flx-ido"; }; packageRequires = [ cl-lib flx ]; meta = { - homepage = "http://melpa.org/#/flx-ido"; + homepage = "https://melpa.org/#/flx-ido"; license = lib.licenses.free; }; }) {}; @@ -8749,13 +9170,34 @@ sha256 = "19mnx2zm71qrf7qf3mk5kriv5vgq0nl67lj029n63wqd8jcjb5fi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck"; sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr"; name = "flycheck"; }; packageRequires = [ cl-lib dash emacs let-alist pkg-info seq ]; meta = { - homepage = "http://melpa.org/#/flycheck"; + homepage = "https://melpa.org/#/flycheck"; + license = lib.licenses.free; + }; + }) {}; + flycheck-apertium = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: + melpaBuild { + pname = "flycheck-apertium"; + version = "0.2"; + src = fetchFromGitHub { + owner = "unhammer"; + repo = "flycheck-apertium"; + rev = "71cf49d5aaee962b995583384bfa045a1d4c3db7"; + sha256 = "14idjjz6fhmq806mmncmqnr9bvcjks6spin8z6jb0gqcg1dbhm06"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-apertium"; + sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7"; + name = "flycheck-apertium"; + }; + packageRequires = [ flycheck ]; + meta = { + homepage = "https://melpa.org/#/flycheck-apertium"; license = lib.licenses.free; }; }) {}; @@ -8770,34 +9212,34 @@ sha256 = "1c3igqfd42dm42kfjm2q2xgr673vws10n9jn2jjlsk4g33brc7h4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-cask"; sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7"; name = "flycheck-cask"; }; packageRequires = [ dash emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-cask"; + homepage = "https://melpa.org/#/flycheck-cask"; license = lib.licenses.free; }; }) {}; flycheck-checkbashisms = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-checkbashisms"; - version = "1.4"; + version = "1.5"; src = fetchFromGitHub { owner = "Gnouc"; repo = "flycheck-checkbashisms"; - rev = "6acb957a33a21e61764792b80ba4e33e88f2271f"; - sha256 = "18nhfj0vx8rg2236nb9475s27rhyb34m81i7l6zkhifqba6rb0bb"; + rev = "39362240b8e38e6ddc1da2e2c2229e3fecdf6057"; + sha256 = "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-checkbashisms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-checkbashisms"; sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz"; name = "flycheck-checkbashisms"; }; packageRequires = [ emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-checkbashisms"; + homepage = "https://melpa.org/#/flycheck-checkbashisms"; license = lib.licenses.free; }; }) {}; @@ -8812,13 +9254,13 @@ sha256 = "1i824iyjsg4d786kx5chsb64wlqd8vn2vsrhq6rmdx2x3gzdfcsx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-clojure"; sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28"; name = "flycheck-clojure"; }; packageRequires = [ cider emacs flycheck let-alist ]; meta = { - homepage = "http://melpa.org/#/flycheck-clojure"; + homepage = "https://melpa.org/#/flycheck-clojure"; license = lib.licenses.free; }; }) {}; @@ -8833,13 +9275,13 @@ sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-color-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-color-mode-line"; sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq"; name = "flycheck-color-mode-line"; }; packageRequires = [ dash emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-color-mode-line"; + homepage = "https://melpa.org/#/flycheck-color-mode-line"; license = lib.licenses.free; }; }) {}; @@ -8854,34 +9296,34 @@ sha256 = "1ap5hgvaccmf2xkfvyp7rqcfjwmiy6mhr6ccgahxm2z0vm51kpyh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-dmd-dub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-dmd-dub"; sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm"; name = "flycheck-dmd-dub"; }; packageRequires = [ flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-dmd-dub"; + homepage = "https://melpa.org/#/flycheck-dmd-dub"; license = lib.licenses.free; }; }) {}; flycheck-gometalinter = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-gometalinter"; - version = "0.1.1"; + version = "0.1.3"; src = fetchFromGitHub { owner = "favadi"; repo = "flycheck-gometalinter"; - rev = "4b6f26aa5062f9d4164b24ce021bc18d00f9308e"; - sha256 = "0j2mvf3zjznwkm8dykcgs1v5sz0i882mrivghxqr3h6n3ni4wag4"; + rev = "6da19fbf8f750f56891c5b57bfb37997af09de77"; + sha256 = "0frgyj57mrggq5ib6xi71696m97ch0bw6cc208d2qbnb55sf4fgb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-gometalinter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-gometalinter"; sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2"; name = "flycheck-gometalinter"; }; packageRequires = [ emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-gometalinter"; + homepage = "https://melpa.org/#/flycheck-gometalinter"; license = lib.licenses.free; }; }) {}; @@ -8896,13 +9338,13 @@ sha256 = "0143lcn6g46g7skm4r6lqq09s8mr3268rikbzlh65qg80rpg9frj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-haskell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-haskell"; sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7"; name = "flycheck-haskell"; }; packageRequires = [ dash emacs flycheck haskell-mode let-alist ]; meta = { - homepage = "http://melpa.org/#/flycheck-haskell"; + homepage = "https://melpa.org/#/flycheck-haskell"; license = lib.licenses.free; }; }) {}; @@ -8917,13 +9359,34 @@ sha256 = "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-hdevtools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-hdevtools"; sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93"; name = "flycheck-hdevtools"; }; packageRequires = [ flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-hdevtools"; + homepage = "https://melpa.org/#/flycheck-hdevtools"; + license = lib.licenses.free; + }; + }) {}; + flycheck-irony = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, irony, lib, melpaBuild }: + melpaBuild { + pname = "flycheck-irony"; + version = "0.1.0"; + src = fetchFromGitHub { + owner = "Sarcasm"; + repo = "flycheck-irony"; + rev = "34940ae5ab8f4c721d9c1118ebfc3496d7e67a84"; + sha256 = "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-irony"; + sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z"; + name = "flycheck-irony"; + }; + packageRequires = [ emacs flycheck irony ]; + meta = { + homepage = "https://melpa.org/#/flycheck-irony"; license = lib.licenses.free; }; }) {}; @@ -8938,13 +9401,13 @@ sha256 = "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ledger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ledger"; sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl"; name = "flycheck-ledger"; }; packageRequires = [ flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-ledger"; + homepage = "https://melpa.org/#/flycheck-ledger"; license = lib.licenses.free; }; }) {}; @@ -8959,13 +9422,13 @@ sha256 = "1phfarws2aajkgcl96hqa4ydmb1yncg10q2ldzf8ff6yd6mvk51l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ocaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ocaml"; sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7"; name = "flycheck-ocaml"; }; packageRequires = [ emacs flycheck let-alist merlin ]; meta = { - homepage = "http://melpa.org/#/flycheck-ocaml"; + homepage = "https://melpa.org/#/flycheck-ocaml"; license = lib.licenses.free; }; }) {}; @@ -8980,13 +9443,13 @@ sha256 = "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-package"; sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d"; name = "flycheck-package"; }; packageRequires = [ cl-lib emacs flycheck ]; meta = { - homepage = "http://melpa.org/#/flycheck-package"; + homepage = "https://melpa.org/#/flycheck-package"; license = lib.licenses.free; }; }) {}; @@ -9001,13 +9464,13 @@ sha256 = "0v23yc8znzjp44lrpfzqb4hc3psad14hsnvqcp8f1yyhgvdx35n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-pos-tip"; sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; name = "flycheck-pos-tip"; }; packageRequires = [ dash flycheck pos-tip ]; meta = { - homepage = "http://melpa.org/#/flycheck-pos-tip"; + homepage = "https://melpa.org/#/flycheck-pos-tip"; license = lib.licenses.free; }; }) {}; @@ -9022,13 +9485,13 @@ sha256 = "1xxvri9ax5cjrkxhjqhs7zqbch9cx8kvrn7sg611frl68qawkjsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-status-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-status-emoji"; sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p"; name = "flycheck-status-emoji"; }; packageRequires = [ emacs flycheck let-alist ]; meta = { - homepage = "http://melpa.org/#/flycheck-status-emoji"; + homepage = "https://melpa.org/#/flycheck-status-emoji"; license = lib.licenses.free; }; }) {}; @@ -9043,13 +9506,13 @@ sha256 = "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-tip"; sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656"; name = "flycheck-tip"; }; packageRequires = [ emacs flycheck popup ]; meta = { - homepage = "http://melpa.org/#/flycheck-tip"; + homepage = "https://melpa.org/#/flycheck-tip"; license = lib.licenses.free; }; }) {}; @@ -9064,13 +9527,13 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flycheck-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ycmd"; sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv"; name = "flycheck-ycmd"; }; packageRequires = [ dash emacs flycheck ycmd ]; meta = { - homepage = "http://melpa.org/#/flycheck-ycmd"; + homepage = "https://melpa.org/#/flycheck-ycmd"; license = lib.licenses.free; }; }) {}; @@ -9085,13 +9548,13 @@ sha256 = "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-coffee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-coffee"; sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d"; name = "flymake-coffee"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-coffee"; + homepage = "https://melpa.org/#/flymake-coffee"; license = lib.licenses.free; }; }) {}; @@ -9106,13 +9569,13 @@ sha256 = "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-css"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-css"; sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5"; name = "flymake-css"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-css"; + homepage = "https://melpa.org/#/flymake-css"; license = lib.licenses.free; }; }) {}; @@ -9127,13 +9590,13 @@ sha256 = "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-easy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-easy"; sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7"; name = "flymake-easy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flymake-easy"; + homepage = "https://melpa.org/#/flymake-easy"; license = lib.licenses.free; }; }) {}; @@ -9148,13 +9611,13 @@ sha256 = "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-gjshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-gjshint"; sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44"; name = "flymake-gjshint"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flymake-gjshint"; + homepage = "https://melpa.org/#/flymake-gjshint"; license = lib.licenses.free; }; }) {}; @@ -9169,13 +9632,13 @@ sha256 = "1b3lf5jwan03k7rb97g4bb982dacdwsfdddnwc0inx9gs3qq1zni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-haml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-haml"; sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1"; name = "flymake-haml"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-haml"; + homepage = "https://melpa.org/#/flymake-haml"; license = lib.licenses.free; }; }) {}; @@ -9190,13 +9653,13 @@ sha256 = "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-haskell-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-haskell-multi"; sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij"; name = "flymake-haskell-multi"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-haskell-multi"; + homepage = "https://melpa.org/#/flymake-haskell-multi"; license = lib.licenses.free; }; }) {}; @@ -9211,13 +9674,13 @@ sha256 = "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-hlint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-hlint"; sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x"; name = "flymake-hlint"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-hlint"; + homepage = "https://melpa.org/#/flymake-hlint"; license = lib.licenses.free; }; }) {}; @@ -9232,13 +9695,13 @@ sha256 = "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-jslint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-jslint"; sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm"; name = "flymake-jslint"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flymake-jslint"; + homepage = "https://melpa.org/#/flymake-jslint"; license = lib.licenses.free; }; }) {}; @@ -9253,13 +9716,13 @@ sha256 = "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-json"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-json"; sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d"; name = "flymake-json"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-json"; + homepage = "https://melpa.org/#/flymake-json"; license = lib.licenses.free; }; }) {}; @@ -9274,13 +9737,13 @@ sha256 = "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-less"; sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0"; name = "flymake-less"; }; packageRequires = [ less-css-mode ]; meta = { - homepage = "http://melpa.org/#/flymake-less"; + homepage = "https://melpa.org/#/flymake-less"; license = lib.licenses.free; }; }) {}; @@ -9295,13 +9758,13 @@ sha256 = "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-perlcritic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-perlcritic"; sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8"; name = "flymake-perlcritic"; }; packageRequires = [ flymake ]; meta = { - homepage = "http://melpa.org/#/flymake-perlcritic"; + homepage = "https://melpa.org/#/flymake-perlcritic"; license = lib.licenses.free; }; }) {}; @@ -9316,13 +9779,13 @@ sha256 = "0dzyid0av9icp77wv0zcsygpw46z24qibq1ra0iwnkzl3kqvkyzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-php"; sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk"; name = "flymake-php"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-php"; + homepage = "https://melpa.org/#/flymake-php"; license = lib.licenses.free; }; }) {}; @@ -9337,13 +9800,13 @@ sha256 = "0l8qpcbzfi32h3vy7iwydx3hg2w60x9l3v3rabzjx412m5d00gsh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-python-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-python-pyflakes"; sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497"; name = "flymake-python-pyflakes"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-python-pyflakes"; + homepage = "https://melpa.org/#/flymake-python-pyflakes"; license = lib.licenses.free; }; }) {}; @@ -9358,13 +9821,13 @@ sha256 = "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-ruby"; sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr"; name = "flymake-ruby"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-ruby"; + homepage = "https://melpa.org/#/flymake-ruby"; license = lib.licenses.free; }; }) {}; @@ -9379,13 +9842,13 @@ sha256 = "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-sass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-sass"; sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d"; name = "flymake-sass"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-sass"; + homepage = "https://melpa.org/#/flymake-sass"; license = lib.licenses.free; }; }) {}; @@ -9400,13 +9863,13 @@ sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flymake-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-shell"; sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i"; name = "flymake-shell"; }; packageRequires = [ flymake-easy ]; meta = { - homepage = "http://melpa.org/#/flymake-shell"; + homepage = "https://melpa.org/#/flymake-shell"; license = lib.licenses.free; }; }) {}; @@ -9421,13 +9884,13 @@ sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flyspell-lazy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flyspell-lazy"; sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y"; name = "flyspell-lazy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/flyspell-lazy"; + homepage = "https://melpa.org/#/flyspell-lazy"; license = lib.licenses.free; }; }) {}; @@ -9442,13 +9905,13 @@ sha256 = "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/flyspell-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flyspell-popup"; sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql"; name = "flyspell-popup"; }; packageRequires = [ popup ]; meta = { - homepage = "http://melpa.org/#/flyspell-popup"; + homepage = "https://melpa.org/#/flyspell-popup"; license = lib.licenses.free; }; }) {}; @@ -9463,13 +9926,13 @@ sha256 = "0r2j238iyxnww60xpbxggjmz6y2waayw4m51f0l39hszbhags2cv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fm"; sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f"; name = "fm"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fm"; + homepage = "https://melpa.org/#/fm"; license = lib.licenses.free; }; }) {}; @@ -9484,13 +9947,13 @@ sha256 = "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/focus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/focus"; sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8"; name = "focus"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/focus"; + homepage = "https://melpa.org/#/focus"; license = lib.licenses.free; }; }) {}; @@ -9505,13 +9968,13 @@ sha256 = "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-dwim"; sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x"; name = "fold-dwim"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fold-dwim"; + homepage = "https://melpa.org/#/fold-dwim"; license = lib.licenses.free; }; }) {}; @@ -9526,13 +9989,13 @@ sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-dwim-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-dwim-org"; sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn"; name = "fold-dwim-org"; }; packageRequires = [ fold-dwim ]; meta = { - homepage = "http://melpa.org/#/fold-dwim-org"; + homepage = "https://melpa.org/#/fold-dwim-org"; license = lib.licenses.free; }; }) {}; @@ -9547,13 +10010,13 @@ sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fold-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-this"; sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d"; name = "fold-this"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fold-this"; + homepage = "https://melpa.org/#/fold-this"; license = lib.licenses.free; }; }) {}; @@ -9568,13 +10031,13 @@ sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/font-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/font-utils"; sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5"; name = "font-utils"; }; packageRequires = [ pcache persistent-soft ]; meta = { - homepage = "http://melpa.org/#/font-utils"; + homepage = "https://melpa.org/#/font-utils"; license = lib.licenses.free; }; }) {}; @@ -9589,34 +10052,34 @@ sha256 = "0qq13jhn9i2ls6n3fbay4i2r0hfs426pkmmif43b87gjxb510irc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fontawesome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fontawesome"; sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3"; name = "fontawesome"; }; packageRequires = [ cl-lib helm-core ]; meta = { - homepage = "http://melpa.org/#/fontawesome"; + homepage = "https://melpa.org/#/fontawesome"; license = lib.licenses.free; }; }) {}; forecast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "forecast"; - version = "0.2.0"; + version = "0.4.0"; src = fetchFromGitHub { owner = "cadadr"; repo = "forecast.el"; - rev = "e96252759d23fda2ffb254685309b0c5b8a17a95"; - sha256 = "12135l9crjkans3w40by3qflj07awdqs5qm855jkngb3ri9xsfvv"; + rev = "95bb9c92aad42ed0195fb93551b442a4fc45f452"; + sha256 = "05m1ryn9fi4m49d7p68q25svrzfxpl1h9sisa8jlvbiapwmghvgj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/forecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/forecast"; sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc"; name = "forecast"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/forecast"; + homepage = "https://melpa.org/#/forecast"; license = lib.licenses.free; }; }) {}; @@ -9631,13 +10094,13 @@ sha256 = "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/foreman-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/foreman-mode"; sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv"; name = "foreman-mode"; }; packageRequires = [ dash dash-functional emacs f s ]; meta = { - homepage = "http://melpa.org/#/foreman-mode"; + homepage = "https://melpa.org/#/foreman-mode"; license = lib.licenses.free; }; }) {}; @@ -9652,13 +10115,13 @@ sha256 = "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/form-feed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/form-feed"; sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh"; name = "form-feed"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/form-feed"; + homepage = "https://melpa.org/#/form-feed"; license = lib.licenses.free; }; }) {}; @@ -9673,13 +10136,13 @@ sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/format-sql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/format-sql"; sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj"; name = "format-sql"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/format-sql"; + homepage = "https://melpa.org/#/format-sql"; license = lib.licenses.free; }; }) {}; @@ -9694,13 +10157,13 @@ sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fountain-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fountain-mode"; sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840"; name = "fountain-mode"; }; packageRequires = [ emacs s ]; meta = { - homepage = "http://melpa.org/#/fountain-mode"; + homepage = "https://melpa.org/#/fountain-mode"; license = lib.licenses.free; }; }) {}; @@ -9715,13 +10178,13 @@ sha256 = "1vznkbly0lyh5kri9lcgy309ws96q3d5m1lghck9l8ain8hphhqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/frame-restore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/frame-restore"; sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm"; name = "frame-restore"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/frame-restore"; + homepage = "https://melpa.org/#/frame-restore"; license = lib.licenses.free; }; }) {}; @@ -9736,34 +10199,34 @@ sha256 = "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fringe-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fringe-helper"; sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv"; name = "fringe-helper"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fringe-helper"; + homepage = "https://melpa.org/#/fringe-helper"; license = lib.licenses.free; }; }) {}; - fsharp-mode = callPackage ({ auto-complete, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip, s }: + fsharp-mode = callPackage ({ company, company-quickhelp, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip, s }: melpaBuild { pname = "fsharp-mode"; - version = "1.7.3"; + version = "1.8.1"; src = fetchFromGitHub { owner = "rneatherway"; repo = "emacs-fsharp-mode-bin"; - rev = "b2a70da8ba3c573e02c6a9951ef5f0089cec6c78"; - sha256 = "115xl18nsg2j9sbp3qqzrjfpnzczk1zmrwrfrpqjq3jmv21ilsv3"; + rev = "51bad86059528f1ce87ef12e1657531aa11a386d"; + sha256 = "00api7q86mrfv8z2g7skh34mhlkxwymf4gfpxa6zcvirhlpglyxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fsharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fsharp-mode"; sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z"; name = "fsharp-mode"; }; - packageRequires = [ auto-complete dash popup pos-tip s ]; + packageRequires = [ company company-quickhelp dash popup pos-tip s ]; meta = { - homepage = "http://melpa.org/#/fsharp-mode"; + homepage = "https://melpa.org/#/fsharp-mode"; license = lib.licenses.free; }; }) {}; @@ -9773,16 +10236,16 @@ src = fetchgit { url = "git://factorcode.org/git/factor.git"; rev = "905ec06d864537fb6be9c46ad98f1b6d101dfbf0"; - sha256 = "b348e285923e480fe696f888783c95becb392a6e05abc553d8be649987c7d190"; + sha256 = "146iqy3rjr5yv19wbaq5dqm3kjxyjly7i27qjvk0yj1yja2y4j5k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuel"; sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756"; name = "fuel"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fuel"; + homepage = "https://melpa.org/#/fuel"; license = lib.licenses.free; }; }) {}; @@ -9797,13 +10260,13 @@ sha256 = "0c3w3xs2jbdqgsqw0qmdbwii6p395qfznird4gg0hfr7lby2kmjq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/full-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/full-ack"; sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309"; name = "full-ack"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/full-ack"; + homepage = "https://melpa.org/#/full-ack"; license = lib.licenses.free; }; }) {}; @@ -9818,13 +10281,13 @@ sha256 = "1narmlcd8ycwkmsrgk64l7q0ljsbq2fsikl8hjbrsc20nma032m4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fullframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fullframe"; sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a"; name = "fullframe"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/fullframe"; + homepage = "https://melpa.org/#/fullframe"; license = lib.licenses.free; }; }) {}; @@ -9839,13 +10302,13 @@ sha256 = "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/function-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/function-args"; sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak"; name = "function-args"; }; packageRequires = [ swiper ]; meta = { - homepage = "http://melpa.org/#/function-args"; + homepage = "https://melpa.org/#/function-args"; license = lib.licenses.free; }; }) {}; @@ -9860,13 +10323,13 @@ sha256 = "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuzzy"; sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h"; name = "fuzzy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fuzzy"; + homepage = "https://melpa.org/#/fuzzy"; license = lib.licenses.free; }; }) {}; @@ -9881,13 +10344,13 @@ sha256 = "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fvwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fvwm-mode"; sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb"; name = "fvwm-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fvwm-mode"; + homepage = "https://melpa.org/#/fvwm-mode"; license = lib.licenses.free; }; }) {}; @@ -9902,13 +10365,13 @@ sha256 = "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fwb-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fwb-cmds"; sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx"; name = "fwb-cmds"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/fwb-cmds"; + homepage = "https://melpa.org/#/fwb-cmds"; license = lib.licenses.free; }; }) {}; @@ -9923,13 +10386,13 @@ sha256 = "1sk2z71xfi4wqb7ap8jvad8cbzdbilwzqx9vy45zmgx1jh7g4ba9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fxrd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fxrd-mode"; sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r"; name = "fxrd-mode"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/fxrd-mode"; + homepage = "https://melpa.org/#/fxrd-mode"; license = lib.licenses.free; }; }) {}; @@ -9944,13 +10407,34 @@ sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/fzf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fzf"; sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0"; name = "fzf"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/fzf"; + homepage = "https://melpa.org/#/fzf"; + license = lib.licenses.free; + }; + }) {}; + gams-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "gams-mode"; + version = "6.1"; + src = fetchFromGitHub { + owner = "ShiroTakeda"; + repo = "gams-mode"; + rev = "268ee8b4554446104d200de3ffbd2f067b20cb3f"; + sha256 = "16x3fz2ljrmqhjy7w96fhp3j9ja2gib042c363yfrzwa7q5rxzd2"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gams-mode"; + sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci"; + name = "gams-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/gams-mode"; license = lib.licenses.free; }; }) {}; @@ -9965,13 +10449,13 @@ sha256 = "1q9bz294bc6bplwfrfzsczh444v9152wv7zm2l1pcpwv8n8581p6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gather"; sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk"; name = "gather"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gather"; + homepage = "https://melpa.org/#/gather"; license = lib.licenses.free; }; }) {}; @@ -9986,13 +10470,13 @@ sha256 = "1667zln7bav0bdhrc4b5z36n8rn36xvwh4y9ffgns67zfgwi64kk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/geiser"; sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596"; name = "geiser"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/geiser"; + homepage = "https://melpa.org/#/geiser"; license = lib.licenses.free; }; }) {}; @@ -10007,13 +10491,13 @@ sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/genrnc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/genrnc"; sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm"; name = "genrnc"; }; packageRequires = [ concurrent deferred log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/genrnc"; + homepage = "https://melpa.org/#/genrnc"; license = lib.licenses.free; }; }) {}; @@ -10028,13 +10512,13 @@ sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/german-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/german-holidays"; sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn"; name = "german-holidays"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/german-holidays"; + homepage = "https://melpa.org/#/german-holidays"; license = lib.licenses.free; }; }) {}; @@ -10049,13 +10533,13 @@ sha256 = "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ggo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ggo-mode"; sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p"; name = "ggo-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ggo-mode"; + homepage = "https://melpa.org/#/ggo-mode"; license = lib.licenses.free; }; }) {}; @@ -10070,13 +10554,13 @@ sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ggtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ggtags"; sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw"; name = "ggtags"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/ggtags"; + homepage = "https://melpa.org/#/ggtags"; license = lib.licenses.free; }; }) {}; @@ -10091,13 +10575,13 @@ sha256 = "0a5v91k9gm9vv15d3m8czicv8n39f0hvqhcr6lfw0w82n26xwsms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gh"; sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0"; name = "gh"; }; packageRequires = [ eieio logito pcache ]; meta = { - homepage = "http://melpa.org/#/gh"; + homepage = "https://melpa.org/#/gh"; license = lib.licenses.free; }; }) {}; @@ -10106,19 +10590,19 @@ pname = "ghc"; version = "5.5.0.0"; src = fetchFromGitHub { - owner = "kazu-yamamoto"; + owner = "DanielG"; repo = "ghc-mod"; rev = "bd021e42b36e6cf3bc2ca3ef908299ba97ceeee5"; sha256 = "1m5q2s9nxm0m18njaxzryjly8rl3m598r94nn53xpazd4i5ln8cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghc"; - sha256 = "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghc"; + sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5"; name = "ghc"; }; packageRequires = [ haskell-mode ]; meta = { - homepage = "http://melpa.org/#/ghc"; + homepage = "https://melpa.org/#/ghc"; license = lib.licenses.free; }; }) {}; @@ -10133,13 +10617,13 @@ sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ghc-imported-from"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghc-imported-from"; sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5"; name = "ghc-imported-from"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ghc-imported-from"; + homepage = "https://melpa.org/#/ghc-imported-from"; license = lib.licenses.free; }; }) {}; @@ -10154,13 +10638,13 @@ sha256 = "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gist"; sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3"; name = "gist"; }; packageRequires = [ emacs gh ]; meta = { - homepage = "http://melpa.org/#/gist"; + homepage = "https://melpa.org/#/gist"; license = lib.licenses.free; }; }) {}; @@ -10175,13 +10659,13 @@ sha256 = "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git"; sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5"; name = "git"; }; packageRequires = [ dash f s ]; meta = { - homepage = "http://melpa.org/#/git"; + homepage = "https://melpa.org/#/git"; license = lib.licenses.free; }; }) {}; @@ -10196,13 +10680,13 @@ sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-auto-commit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-auto-commit-mode"; sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl"; name = "git-auto-commit-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/git-auto-commit-mode"; + homepage = "https://melpa.org/#/git-auto-commit-mode"; license = lib.licenses.free; }; }) {}; @@ -10217,34 +10701,34 @@ sha256 = "0a3ws852ypi34ash39srkwzkfish4n3c5lma10d9xzddjrwapgj9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-command"; sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg"; name = "git-command"; }; packageRequires = [ git-ps1-mode term-run with-editor ]; meta = { - homepage = "http://melpa.org/#/git-command"; + homepage = "https://melpa.org/#/git-command"; license = lib.licenses.free; }; }) {}; git-commit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }: melpaBuild { pname = "git-commit"; - version = "2.5.0"; + version = "2.6.2"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "a3747edc8a4cddc408f7718a3371b46a4b610744"; - sha256 = "0dydm0gj6jbybi5nkqrpi5bic5yxhz0p5k5gayqzqzmnb1fhl247"; + rev = "2e6dcf8fe8672dca67e59a72975c2d850ce9bc16"; + sha256 = "0qdahg3vqha391nnspbqa5bjvi2g3jb277c5wzbfs132m4n076j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-commit"; sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2"; name = "git-commit"; }; packageRequires = [ dash emacs with-editor ]; meta = { - homepage = "http://melpa.org/#/git-commit"; + homepage = "https://melpa.org/#/git-commit"; license = lib.licenses.free; }; }) {}; @@ -10259,13 +10743,13 @@ sha256 = "0n02nss7gp0m898g7zw4rkj2kzrdiwp6mli0753p1fqph28j0gvm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter"; sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg"; name = "git-gutter"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/git-gutter"; + homepage = "https://melpa.org/#/git-gutter"; license = lib.licenses.free; }; }) {}; @@ -10280,13 +10764,13 @@ sha256 = "1cw5x1w14lxy8mqpxdrd9brgps0nig2prjjjda4a19wfsvy3clmv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter-fringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter-fringe"; sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z"; name = "git-gutter-fringe"; }; packageRequires = [ cl-lib emacs fringe-helper git-gutter ]; meta = { - homepage = "http://melpa.org/#/git-gutter-fringe"; + homepage = "https://melpa.org/#/git-gutter-fringe"; license = lib.licenses.free; }; }) {}; @@ -10301,13 +10785,13 @@ sha256 = "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter-fringe+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter-fringe+"; sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc"; name = "git-gutter-fringe-plus"; }; packageRequires = [ fringe-helper git-gutter-plus ]; meta = { - homepage = "http://melpa.org/#/git-gutter-fringe+"; + homepage = "https://melpa.org/#/git-gutter-fringe+"; license = lib.licenses.free; }; }) {}; @@ -10322,13 +10806,13 @@ sha256 = "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-gutter+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter+"; sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0"; name = "git-gutter-plus"; }; packageRequires = [ git-commit ]; meta = { - homepage = "http://melpa.org/#/git-gutter+"; + homepage = "https://melpa.org/#/git-gutter+"; license = lib.licenses.free; }; }) {}; @@ -10343,34 +10827,34 @@ sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-lens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-lens"; sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb"; name = "git-lens"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/git-lens"; + homepage = "https://melpa.org/#/git-lens"; license = lib.licenses.free; }; }) {}; git-link = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-link"; - version = "0.3.0"; + version = "0.4.1"; src = fetchFromGitHub { owner = "sshaw"; repo = "git-link"; - rev = "8ed8f209fe40b3852613691bd968484d6da79e5b"; - sha256 = "171w8vx1r2v9yclnlk3mwbfaxhg0kbvk575jvi6vr9shpjqnrb0z"; + rev = "3cb4ced58c48d372230efd10ee4a7f55f54945ea"; + sha256 = "0a1kxdz05ly9wbzyxcb79xlmy11q38xplf5s8w8klmyajdn43g1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-link"; sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7"; name = "git-link"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/git-link"; + homepage = "https://melpa.org/#/git-link"; license = lib.licenses.free; }; }) {}; @@ -10385,13 +10869,13 @@ sha256 = "139yivbxdpmv8j6qz406769b040nbmj3j8r28n9gqy54zlwblgv8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-messenger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-messenger"; sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn"; name = "git-messenger"; }; packageRequires = [ cl-lib popup ]; meta = { - homepage = "http://melpa.org/#/git-messenger"; + homepage = "https://melpa.org/#/git-messenger"; license = lib.licenses.free; }; }) {}; @@ -10406,13 +10890,13 @@ sha256 = "1hyq3il03cm6apfawps60r4km8r6pw0vphzba30smsqfk50z3ya3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-ps1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-ps1-mode"; sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6"; name = "git-ps1-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/git-ps1-mode"; + homepage = "https://melpa.org/#/git-ps1-mode"; license = lib.licenses.free; }; }) {}; @@ -10427,13 +10911,13 @@ sha256 = "1brz9dc7ngywndlxbqbi3pbjbjydgqc9bjzf05lgx0pzr1ppc3w3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-timemachine"; sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq"; name = "git-timemachine"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/git-timemachine"; + homepage = "https://melpa.org/#/git-timemachine"; license = lib.licenses.free; }; }) {}; @@ -10448,34 +10932,34 @@ sha256 = "0igawn43i81icshimj5agv33ab120hd6182knlrn3i46p7lcs3lx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/git-wip-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-wip-timemachine"; sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw"; name = "git-wip-timemachine"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/git-wip-timemachine"; + homepage = "https://melpa.org/#/git-wip-timemachine"; license = lib.licenses.free; }; }) {}; gitattributes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitattributes-mode"; - version = "1.2.0"; + version = "1.2.2"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; - rev = "9d8f6eda6ee97963e4085da8988cad2c0547b8df"; - sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; + rev = "7ccc5de55fc370c328d7ec08de559e351b1ac94c"; + sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitattributes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitattributes-mode"; sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x"; name = "gitattributes-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gitattributes-mode"; + homepage = "https://melpa.org/#/gitattributes-mode"; license = lib.licenses.free; }; }) {}; @@ -10490,34 +10974,34 @@ sha256 = "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitconfig"; sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7"; name = "gitconfig"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gitconfig"; + homepage = "https://melpa.org/#/gitconfig"; license = lib.licenses.free; }; }) {}; gitconfig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitconfig-mode"; - version = "1.2.0"; + version = "1.2.2"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; - rev = "9d8f6eda6ee97963e4085da8988cad2c0547b8df"; - sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; + rev = "7ccc5de55fc370c328d7ec08de559e351b1ac94c"; + sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitconfig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitconfig-mode"; sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1"; name = "gitconfig-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gitconfig-mode"; + homepage = "https://melpa.org/#/gitconfig-mode"; license = lib.licenses.free; }; }) {}; @@ -10532,13 +11016,13 @@ sha256 = "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-browse-file"; sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr"; name = "github-browse-file"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/github-browse-file"; + homepage = "https://melpa.org/#/github-browse-file"; license = lib.licenses.free; }; }) {}; @@ -10553,34 +11037,34 @@ sha256 = "18c169nxvdl7iv18pyqx690ldg6pkc8njaxdg1cww6ykqzqnfxh7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/github-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-clone"; sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9"; name = "github-clone"; }; packageRequires = [ emacs gh magit ]; meta = { - homepage = "http://melpa.org/#/github-clone"; + homepage = "https://melpa.org/#/github-clone"; license = lib.licenses.free; }; }) {}; gitignore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitignore-mode"; - version = "1.2.0"; + version = "1.2.2"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; - rev = "9d8f6eda6ee97963e4085da8988cad2c0547b8df"; - sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; + rev = "7ccc5de55fc370c328d7ec08de559e351b1ac94c"; + sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitignore-mode"; sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn"; name = "gitignore-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gitignore-mode"; + homepage = "https://melpa.org/#/gitignore-mode"; license = lib.licenses.free; }; }) {}; @@ -10595,13 +11079,13 @@ sha256 = "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitlab"; sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq"; name = "gitlab"; }; packageRequires = [ dash pkg-info request s ]; meta = { - homepage = "http://melpa.org/#/gitlab"; + homepage = "https://melpa.org/#/gitlab"; license = lib.licenses.free; }; }) {}; @@ -10616,13 +11100,13 @@ sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmail-message-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmail-message-mode"; sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk"; name = "gmail-message-mode"; }; packageRequires = [ ham-mode ]; meta = { - homepage = "http://melpa.org/#/gmail-message-mode"; + homepage = "https://melpa.org/#/gmail-message-mode"; license = lib.licenses.free; }; }) {}; @@ -10637,13 +11121,13 @@ sha256 = "0p6n52m3y56nx7chwvmnslrnwc0xmh4fmmlkbkfz9n58hlmw8x1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmail2bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmail2bbdb"; sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j"; name = "gmail2bbdb"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gmail2bbdb"; + homepage = "https://melpa.org/#/gmail2bbdb"; license = lib.licenses.free; }; }) {}; @@ -10658,13 +11142,13 @@ sha256 = "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gmpl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmpl-mode"; sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz"; name = "gmpl-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gmpl-mode"; + homepage = "https://melpa.org/#/gmpl-mode"; license = lib.licenses.free; }; }) {}; @@ -10679,13 +11163,13 @@ sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnome-calendar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnome-calendar"; sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6"; name = "gnome-calendar"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gnome-calendar"; + homepage = "https://melpa.org/#/gnome-calendar"; license = lib.licenses.free; }; }) {}; @@ -10700,13 +11184,13 @@ sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gntp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gntp"; sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f"; name = "gntp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gntp"; + homepage = "https://melpa.org/#/gntp"; license = lib.licenses.free; }; }) {}; @@ -10721,13 +11205,13 @@ sha256 = "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnuplot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnuplot"; sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds"; name = "gnuplot"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gnuplot"; + homepage = "https://melpa.org/#/gnuplot"; license = lib.licenses.free; }; }) {}; @@ -10737,18 +11221,18 @@ version = "1.4"; src = fetchFromGitHub { owner = "wavexx"; - repo = "gnus-desktop-notify"; + repo = "gnus-desktop-notify.el"; rev = "210c70f0021ee78e724f1d8e00ca96e1e99928ca"; sha256 = "08j8x0iaz5s9q0b68d8h3153w0z6vak5l8qgw3dd1drz5p9xnvyw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-desktop-notify"; - sha256 = "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-desktop-notify"; + sha256 = "08k32vhdp6i8c03rp1k6b5jmvj5ijplj26mdblrgasklcqbdnlfs"; name = "gnus-desktop-notify"; }; packageRequires = [ gnus ]; meta = { - homepage = "http://melpa.org/#/gnus-desktop-notify"; + homepage = "https://melpa.org/#/gnus-desktop-notify"; license = lib.licenses.free; }; }) {}; @@ -10763,13 +11247,13 @@ sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gnus-x-gm-raw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-x-gm-raw"; sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg"; name = "gnus-x-gm-raw"; }; packageRequires = [ log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/gnus-x-gm-raw"; + homepage = "https://melpa.org/#/gnus-x-gm-raw"; license = lib.licenses.free; }; }) {}; @@ -10784,13 +11268,13 @@ sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-autocomplete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-autocomplete"; sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a"; name = "go-autocomplete"; }; packageRequires = [ auto-complete ]; meta = { - homepage = "http://melpa.org/#/go-autocomplete"; + homepage = "https://melpa.org/#/go-autocomplete"; license = lib.licenses.free; }; }) {}; @@ -10805,34 +11289,34 @@ sha256 = "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-direx"; sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7"; name = "go-direx"; }; packageRequires = [ cl-lib direx ]; meta = { - homepage = "http://melpa.org/#/go-direx"; + homepage = "https://melpa.org/#/go-direx"; license = lib.licenses.free; }; }) {}; go-eldoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-eldoc"; - version = "0.26"; + version = "0.27"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-go-eldoc"; - rev = "af6bfdcbcf12c240da46412efb381a5ee6c3aec5"; - sha256 = "0ha07nhd2g43l84r1r5dz6c8m3fmmn4bx5mhvi6as33achhip7bn"; + rev = "ebf17e486bb64af494278f851f674303c954432c"; + sha256 = "1n5fnlfq9cy9rbn2hizqqsy0iryw5g2blaa7nd75ya03gxm10p8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-eldoc"; sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk"; name = "go-eldoc"; }; packageRequires = [ cl-lib go-mode ]; meta = { - homepage = "http://melpa.org/#/go-eldoc"; + homepage = "https://melpa.org/#/go-eldoc"; license = lib.licenses.free; }; }) {}; @@ -10847,13 +11331,34 @@ sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-errcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-errcheck"; sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs"; name = "go-errcheck"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/go-errcheck"; + homepage = "https://melpa.org/#/go-errcheck"; + license = lib.licenses.free; + }; + }) {}; + go-impl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "go-impl"; + version = "0.0.1"; + src = fetchFromGitHub { + owner = "dominikh"; + repo = "go-impl.el"; + rev = "d4b7f4575360d560609e735bfaa65b691fa9df40"; + sha256 = "199aa2crddx2a5lvl0wrzylzdc23rcm3wcbbwas17ary3gl4z8jg"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-impl"; + sha256 = "0yhcl6y26s4wxaa3jj8d13i4zr879kp1lwnhlnqskpq8l8n3nmpz"; + name = "go-impl"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/go-impl"; license = lib.licenses.free; }; }) {}; @@ -10868,13 +11373,13 @@ sha256 = "1qqsck11v3ki18qld7hrb7dis60c2ylmq15s7srsppzwil8wm3fx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-mode"; sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx"; name = "go-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/go-mode"; + homepage = "https://melpa.org/#/go-mode"; license = lib.licenses.free; }; }) {}; @@ -10889,13 +11394,13 @@ sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/go-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-scratch"; sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5"; name = "go-scratch"; }; packageRequires = [ emacs go-mode ]; meta = { - homepage = "http://melpa.org/#/go-scratch"; + homepage = "https://melpa.org/#/go-scratch"; license = lib.licenses.free; }; }) {}; @@ -10910,13 +11415,13 @@ sha256 = "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/golden-ratio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/golden-ratio"; sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81"; name = "golden-ratio"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/golden-ratio"; + homepage = "https://melpa.org/#/golden-ratio"; license = lib.licenses.free; }; }) {}; @@ -10931,13 +11436,13 @@ sha256 = "0j31062zfqmcd0zsbp19f3h7gq7dn78sg4xf2x838sr9421x6w8x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-this"; sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c"; name = "google-this"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/google-this"; + homepage = "https://melpa.org/#/google-this"; license = lib.licenses.free; }; }) {}; @@ -10952,55 +11457,76 @@ sha256 = "0hvxyqkxv5hfsa9sv71m7d98g25a1xc962r961nw6vmbvsf64z6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/google-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-translate"; sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47"; name = "google-translate"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/google-translate"; + homepage = "https://melpa.org/#/google-translate"; + license = lib.licenses.free; + }; + }) {}; + goose-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "goose-theme"; + version = "1.0.0"; + src = fetchFromGitHub { + owner = "thwg"; + repo = "goose-theme"; + rev = "52244bd5ee3e7b42599d9697007a5df3b026aafc"; + sha256 = "1d1x5ffpn9gq9byd0qavxr081sl3qf0lihdxfdqvhwd815kravxk"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goose-theme"; + sha256 = "18kfz61mhf8pvp3z5cdvjklla9p840p1dazylrgjb1g5hdwqw0n9"; + name = "goose-theme"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/goose-theme"; license = lib.licenses.free; }; }) {}; gotest = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }: melpaBuild { pname = "gotest"; - version = "0.10.0"; + version = "0.12.0"; src = fetchFromGitHub { owner = "nlamirault"; repo = "gotest.el"; - rev = "57f894e68b47352aeacaf0d9c61039b24ba42918"; - sha256 = "0vf42j9jpa75879pxb1h7qgflcrrg78dgq5lg8v0sbpy7z86zaxr"; + rev = "c7ead398b69ab25db695f5dab73ceaa0aba572fa"; + sha256 = "1idhnsl8vkq3v3nbvhkmxmvgqp97aycxvmkj7894mj9hvhib68l9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gotest"; sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9"; name = "gotest"; }; packageRequires = [ emacs f go-mode s ]; meta = { - homepage = "http://melpa.org/#/gotest"; + homepage = "https://melpa.org/#/gotest"; license = lib.licenses.free; }; }) {}; gotham-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gotham-theme"; - version = "1.1.5"; + version = "1.1.6"; src = fetchFromGitHub { owner = "wasamasa"; repo = "gotham-theme"; - rev = "d41b0ea37ad5a4d0060ea05e25d80581f113b662"; - sha256 = "0pxzi56lw9ry91f70hjnvrsbyhcaqknlwicjjbhf6rhv57fplw8h"; + rev = "ba781db5c0e6e8e5d20bdc0f623f6b187daf0d9f"; + sha256 = "1lgljlfxs3gwxr072bvpl55r0b4z78wiww2g093sy7dgxgzgzmq6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gotham-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gotham-theme"; sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl"; name = "gotham-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gotham-theme"; + homepage = "https://melpa.org/#/gotham-theme"; license = lib.licenses.free; }; }) {}; @@ -11015,13 +11541,13 @@ sha256 = "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/goto-gem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goto-gem"; sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a"; name = "goto-gem"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/goto-gem"; + homepage = "https://melpa.org/#/goto-gem"; license = lib.licenses.free; }; }) {}; @@ -11036,13 +11562,34 @@ sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/goto-last-change"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goto-last-change"; sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx"; name = "goto-last-change"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/goto-last-change"; + homepage = "https://melpa.org/#/goto-last-change"; + license = lib.licenses.free; + }; + }) {}; + govc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json-mode, lib, magit-popup, melpaBuild, s }: + melpaBuild { + pname = "govc"; + version = "0.5.0"; + src = fetchFromGitHub { + owner = "vmware"; + repo = "govmomi"; + rev = "c1b29993f383c32fc3fadb90892909668699810a"; + sha256 = "1wxk6r4729g6qirrc45kkjhb8lq24wb1a5k35c0fg8ddj15kvnah"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/govc"; + sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v"; + name = "govc"; + }; + packageRequires = [ dash emacs json-mode magit-popup s ]; + meta = { + homepage = "https://melpa.org/#/govc"; license = lib.licenses.free; }; }) {}; @@ -11057,34 +11604,55 @@ sha256 = "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gradle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gradle-mode"; sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g"; name = "gradle-mode"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/gradle-mode"; + homepage = "https://melpa.org/#/gradle-mode"; + license = lib.licenses.free; + }; + }) {}; + grails = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "grails"; + version = "0.4.1"; + src = fetchFromGitHub { + owner = "lifeisfoo"; + repo = "emacs-grails"; + rev = "fa638abe5c37f3f8af4fcd32f212453185ce50b1"; + sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grails"; + sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw"; + name = "grails"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/grails"; license = lib.licenses.free; }; }) {}; grails-projectile-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "grails-projectile-mode"; - version = "1.1.1"; + version = "1.1.2"; src = fetchFromGitHub { owner = "yveszoundi"; repo = "grails-projectile-mode"; - rev = "e6667dc737cdb224bbadc70a5fcfb82d0fce6f8f"; - sha256 = "1rv6klh59y70shc7kwdzlksdzmy0881ss49c0h5m93cn5pd6aj1l"; + rev = "8efca50ce92b556fe9d467b157d7aec635bcc017"; + sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grails-projectile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grails-projectile-mode"; sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn"; name = "grails-projectile-mode"; }; packageRequires = [ cl-lib emacs projectile ]; meta = { - homepage = "http://melpa.org/#/grails-projectile-mode"; + homepage = "https://melpa.org/#/grails-projectile-mode"; license = lib.licenses.free; }; }) {}; @@ -11099,13 +11667,13 @@ sha256 = "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grandshell-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grandshell-theme"; sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa"; name = "grandshell-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/grandshell-theme"; + homepage = "https://melpa.org/#/grandshell-theme"; license = lib.licenses.free; }; }) {}; @@ -11120,7 +11688,7 @@ sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphene"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphene"; sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k"; name = "graphene"; }; @@ -11138,7 +11706,7 @@ web-mode ]; meta = { - homepage = "http://melpa.org/#/graphene"; + homepage = "https://melpa.org/#/graphene"; license = lib.licenses.free; }; }) {}; @@ -11153,13 +11721,13 @@ sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphene-meta-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphene-meta-theme"; sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q"; name = "graphene-meta-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/graphene-meta-theme"; + homepage = "https://melpa.org/#/graphene-meta-theme"; license = lib.licenses.free; }; }) {}; @@ -11174,13 +11742,13 @@ sha256 = "1zk664ilyz14p11csmqgzs73gx08hy32h3pnyymzqkavmgb6h3s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/graphviz-dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphviz-dot-mode"; sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2"; name = "graphviz-dot-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/graphviz-dot-mode"; + homepage = "https://melpa.org/#/graphviz-dot-mode"; license = lib.licenses.free; }; }) {}; @@ -11195,13 +11763,13 @@ sha256 = "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grapnel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grapnel"; sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r"; name = "grapnel"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/grapnel"; + homepage = "https://melpa.org/#/grapnel"; license = lib.licenses.free; }; }) {}; @@ -11211,17 +11779,17 @@ version = "0.1"; src = fetchhg { url = "https://bitbucket.com/tws/grass-mode.el"; - rev = "aa8cc5eff764"; - sha256 = "0djv2ps2ahw9b1b5i45hgy7l7cch7cgh7rzq601c0r6vi7gm2ac5"; + rev = "25414dff1fc5"; + sha256 = "0mnwmsn078hz317xfz6c05r7narx3k8956v1ajz5myxx8xrcr24z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grass-mode"; sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v"; name = "grass-mode"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/grass-mode"; + homepage = "https://melpa.org/#/grass-mode"; license = lib.licenses.free; }; }) {}; @@ -11234,13 +11802,13 @@ sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grin"; sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk"; name = "grin"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/grin"; + homepage = "https://melpa.org/#/grin"; license = lib.licenses.free; }; }) {}; @@ -11249,19 +11817,19 @@ pname = "grizzl"; version = "0.1.1"; src = fetchFromGitHub { - owner = "d11wtq"; + owner = "grizzl"; repo = "grizzl"; rev = "c775de1c34d1e5a374e2f40c1ae2396b4b003fe7"; sha256 = "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grizzl"; - sha256 = "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grizzl"; + sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb"; name = "grizzl"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/grizzl"; + homepage = "https://melpa.org/#/grizzl"; license = lib.licenses.free; }; }) {}; @@ -11276,13 +11844,13 @@ sha256 = "14h0rcd3nkw3pmx8jwip20p6rzl9qdkip5g52gfjjbqfvaffsrkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gruber-darker-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gruber-darker-theme"; sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi"; name = "gruber-darker-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gruber-darker-theme"; + homepage = "https://melpa.org/#/gruber-darker-theme"; license = lib.licenses.free; }; }) {}; @@ -11297,13 +11865,13 @@ sha256 = "0zpmhjwj64s72iv3dgsy07pfh20f25ngsy3pszmlrfkxk0926d8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/grunt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grunt"; sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz"; name = "grunt"; }; packageRequires = [ ansi-color dash ]; meta = { - homepage = "http://melpa.org/#/grunt"; + homepage = "https://melpa.org/#/grunt"; license = lib.licenses.free; }; }) {}; @@ -11318,13 +11886,13 @@ sha256 = "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/gscholar-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gscholar-bibtex"; sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az"; name = "gscholar-bibtex"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/gscholar-bibtex"; + homepage = "https://melpa.org/#/gscholar-bibtex"; license = lib.licenses.free; }; }) {}; @@ -11339,13 +11907,13 @@ sha256 = "1bmcvn8a7g9ahpv2fww673hx9pa7nnrj9kpljq65azf61vq2an2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guide-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guide-key"; sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf"; name = "guide-key"; }; packageRequires = [ popwin ]; meta = { - homepage = "http://melpa.org/#/guide-key"; + homepage = "https://melpa.org/#/guide-key"; license = lib.licenses.free; }; }) {}; @@ -11360,13 +11928,13 @@ sha256 = "040mcfhj2gggp8w1pgip7rxb1bnb23rxlm02wl6x1qv5i0q7g5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guide-key-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guide-key-tip"; sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06"; name = "guide-key-tip"; }; packageRequires = [ guide-key pos-tip ]; meta = { - homepage = "http://melpa.org/#/guide-key-tip"; + homepage = "https://melpa.org/#/guide-key-tip"; license = lib.licenses.free; }; }) {}; @@ -11381,34 +11949,34 @@ sha256 = "1y46qd9cgkfb0wp2cvksjncyp77hd2jnr4bm4zafqirc3qhbysx0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/guru-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guru-mode"; sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs"; name = "guru-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/guru-mode"; + homepage = "https://melpa.org/#/guru-mode"; license = lib.licenses.free; }; }) {}; hackernews = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "hackernews"; - version = "0.2"; + version = "0.3.1"; src = fetchFromGitHub { owner = "clarete"; repo = "hackernews.el"; - rev = "97b178acfa26b929fc23177b25fb0c62d2958e32"; - sha256 = "1ffk39lnmg9gfffkaj595p768d1p99q6sqym5g5ch6fmi6cx3a84"; + rev = "452e939211ebc0af7256a2f0e8cdad5c426694e6"; + sha256 = "1c49lfm5saafxks591qyy2nilymxz3aqlxpsmnad5d0kfhvjr47z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hackernews"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hackernews"; sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a"; name = "hackernews"; }; packageRequires = [ json ]; meta = { - homepage = "http://melpa.org/#/hackernews"; + homepage = "https://melpa.org/#/hackernews"; license = lib.licenses.free; }; }) {}; @@ -11423,13 +11991,13 @@ sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ham-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ham-mode"; sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz"; name = "ham-mode"; }; packageRequires = [ html-to-markdown markdown-mode ]; meta = { - homepage = "http://melpa.org/#/ham-mode"; + homepage = "https://melpa.org/#/ham-mode"; license = lib.licenses.free; }; }) {}; @@ -11444,13 +12012,13 @@ sha256 = "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haml-mode"; sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f"; name = "haml-mode"; }; packageRequires = [ ruby-mode ]; meta = { - homepage = "http://melpa.org/#/haml-mode"; + homepage = "https://melpa.org/#/haml-mode"; license = lib.licenses.free; }; }) {}; @@ -11465,34 +12033,55 @@ sha256 = "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hardcore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hardcore-mode"; sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd"; name = "hardcore-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hardcore-mode"; + homepage = "https://melpa.org/#/hardcore-mode"; license = lib.licenses.free; }; }) {}; hardhat = callPackage ({ fetchFromGitHub, fetchurl, ignoramus, lib, melpaBuild }: melpaBuild { pname = "hardhat"; - version = "0.4.4"; + version = "0.4.6"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "hardhat"; - rev = "fa42fa4a07dc59f253950c5a8aa5257263a41cdf"; - sha256 = "0mbdnsm903s380ajjgjjqa0m4mxsddzqfjdafrngy0pxgs16iv1f"; + rev = "9038a49ab55cd4c502cf7f07ed0d1b9b6bc3626e"; + sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hardhat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hardhat"; sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z"; name = "hardhat"; }; packageRequires = [ ignoramus ]; meta = { - homepage = "http://melpa.org/#/hardhat"; + homepage = "https://melpa.org/#/hardhat"; + license = lib.licenses.free; + }; + }) {}; + harvest = callPackage ({ fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, s, swiper }: + melpaBuild { + pname = "harvest"; + version = "0.3.8"; + src = fetchFromGitHub { + owner = "kostajh"; + repo = "harvest.el"; + rev = "69041907bdca68d3ab6802e08ec698c3448f28a1"; + sha256 = "0rqxi668wra1mfzq4fqscjghis5gqnwpazgidgix13brybaxydx4"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/harvest"; + sha256 = "1qfhfzjwlnqpbq4kfxvs97fa3xks8zi02fnwv0ik8wb1ppbb77qd"; + name = "harvest"; + }; + packageRequires = [ hydra s swiper ]; + meta = { + homepage = "https://melpa.org/#/harvest"; license = lib.licenses.free; }; }) {}; @@ -11507,13 +12096,13 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs"; sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6"; name = "haskell-emacs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/haskell-emacs"; + homepage = "https://melpa.org/#/haskell-emacs"; license = lib.licenses.free; }; }) {}; @@ -11528,13 +12117,13 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs-base"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs-base"; sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb"; name = "haskell-emacs-base"; }; packageRequires = [ haskell-emacs ]; meta = { - homepage = "http://melpa.org/#/haskell-emacs-base"; + homepage = "https://melpa.org/#/haskell-emacs-base"; license = lib.licenses.free; }; }) {}; @@ -11549,34 +12138,34 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-emacs-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs-text"; sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy"; name = "haskell-emacs-text"; }; packageRequires = [ haskell-emacs ]; meta = { - homepage = "http://melpa.org/#/haskell-emacs-text"; + homepage = "https://melpa.org/#/haskell-emacs-text"; license = lib.licenses.free; }; }) {}; - haskell-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + haskell-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haskell-mode"; - version = "13.18"; + version = "13.20"; src = fetchFromGitHub { owner = "haskell"; repo = "haskell-mode"; - rev = "e37c4e53775067ecc0dad67976bb10971b2b118f"; - sha256 = "0433ay8azn1q9fk7rc5aw4klc9r2p7s44xzd87i0pgpdp154h52g"; + rev = "163f264124cd12d40b16c023c7e5394f42c410af"; + sha256 = "1hxjqr448z7sfk3wb48s1y4q51870gb2zv5bfam30lvwxbl3znkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-mode"; sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp"; name = "haskell-mode"; }; - packageRequires = [ cl-lib ]; + packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/haskell-mode"; + homepage = "https://melpa.org/#/haskell-mode"; license = lib.licenses.free; }; }) {}; @@ -11591,13 +12180,13 @@ sha256 = "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-snippets"; sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2"; name = "haskell-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/haskell-snippets"; + homepage = "https://melpa.org/#/haskell-snippets"; license = lib.licenses.free; }; }) {}; @@ -11608,16 +12197,16 @@ src = fetchgit { url = "https://git.spwhitton.name/haskell-tab-indent"; rev = "38d50e9bb8f64ba13ffbd9bcff32db820403a0fc"; - sha256 = "02786f437bbbbb221c9c810a8d110bb4af172b986733ac35c932b18b38af7201"; + sha256 = "00bjmww8pc9jr4ssqcv7k0migbxl1c8qs2l1khf25fxvgd1nyy02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haskell-tab-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-tab-indent"; sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7"; name = "haskell-tab-indent"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/haskell-tab-indent"; + homepage = "https://melpa.org/#/haskell-tab-indent"; license = lib.licenses.free; }; }) {}; @@ -11632,13 +12221,13 @@ sha256 = "14m8z13nvfqqgx40vzzbn0z9crwi3hhacmk1zfbv9cmhs95dwy6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/haxor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haxor-mode"; sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5"; name = "haxor-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/haxor-mode"; + homepage = "https://melpa.org/#/haxor-mode"; license = lib.licenses.free; }; }) {}; @@ -11653,34 +12242,34 @@ sha256 = "15h1wkl1d9f2xfhm0nffqicg31rw7z2q0sizjphys9ljgxm43is4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hcl-mode"; sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin"; name = "hcl-mode"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/hcl-mode"; + homepage = "https://melpa.org/#/hcl-mode"; license = lib.licenses.free; }; }) {}; helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: melpaBuild { pname = "helm"; - version = "1.9.2"; + version = "1.9.4"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "a80e0b48e2ee22a022a76a5f483d1b68efe8a9e3"; - sha256 = "0cylf0mnfj0m1wm9mxpxrkiinrlvpax99mdnsc6zfj3zrn1qghnp"; + rev = "92786bba2e533eca50b6504413bc22edd957e5ee"; + sha256 = "19ahlm144yfs5jjc513m4f3n4p0zpk1v2xaw3rkrvnb8xay6f1gn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm"; sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9"; name = "helm"; }; packageRequires = [ async emacs helm-core popup ]; meta = { - homepage = "http://melpa.org/#/helm"; + homepage = "https://melpa.org/#/helm"; license = lib.licenses.free; }; }) {}; @@ -11695,34 +12284,34 @@ sha256 = "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ack"; sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni"; name = "helm-ack"; }; packageRequires = [ cl-lib helm ]; meta = { - homepage = "http://melpa.org/#/helm-ack"; + homepage = "https://melpa.org/#/helm-ack"; license = lib.licenses.free; }; }) {}; helm-ag = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ag"; - version = "0.51"; + version = "0.53"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-ag"; - rev = "8f45c7e3294bea1bc583b2b46a02870cc7073311"; - sha256 = "0ksx48n3g5n7ny2ny65bp3xx3p5g464dwxq30aji2b40yivaj0sz"; + rev = "8028bd28cdfc92b08dff082e97f7df525e545f58"; + sha256 = "1aay6fs6gz08rw7j3996dv75mpw1inaa33kfih5384q660rbf0zp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ag"; sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf"; name = "helm-ag"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-ag"; + homepage = "https://melpa.org/#/helm-ag"; license = lib.licenses.free; }; }) {}; @@ -11737,13 +12326,13 @@ sha256 = "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-aws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-aws"; sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5"; name = "helm-aws"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-aws"; + homepage = "https://melpa.org/#/helm-aws"; license = lib.licenses.free; }; }) {}; @@ -11758,13 +12347,34 @@ sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-backup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-backup"; sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3"; name = "helm-backup"; }; packageRequires = [ cl-lib helm s ]; meta = { - homepage = "http://melpa.org/#/helm-backup"; + homepage = "https://melpa.org/#/helm-backup"; + license = lib.licenses.free; + }; + }) {}; + helm-bm = callPackage ({ bm, cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: + melpaBuild { + pname = "helm-bm"; + version = "0.3"; + src = fetchFromGitHub { + owner = "yasuyk"; + repo = "helm-bm"; + rev = "d66341f5646c23178d4d8bffb6cfebe3fb73f1d7"; + sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bm"; + sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh"; + name = "helm-bm"; + }; + packageRequires = [ bm cl-lib helm s ]; + meta = { + homepage = "https://melpa.org/#/helm-bm"; license = lib.licenses.free; }; }) {}; @@ -11779,13 +12389,13 @@ sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-bundle-show"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bundle-show"; sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7"; name = "helm-bundle-show"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-bundle-show"; + homepage = "https://melpa.org/#/helm-bundle-show"; license = lib.licenses.free; }; }) {}; @@ -11800,13 +12410,13 @@ sha256 = "108584bmadgidqkdfvf333zkyb5v9f84pasz5h01fkh57ks8by9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-c-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-c-yasnippet"; sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90"; name = "helm-c-yasnippet"; }; packageRequires = [ cl-lib helm-core yasnippet ]; meta = { - homepage = "http://melpa.org/#/helm-c-yasnippet"; + homepage = "https://melpa.org/#/helm-c-yasnippet"; license = lib.licenses.free; }; }) {}; @@ -11821,13 +12431,13 @@ sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-circe"; sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v"; name = "helm-circe"; }; packageRequires = [ circe cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-circe"; + homepage = "https://melpa.org/#/helm-circe"; license = lib.licenses.free; }; }) {}; @@ -11842,34 +12452,34 @@ sha256 = "1l61csd1gqz7kg5zjx60cfy824g42p682z7pk0rqzlrz8498wvkh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-commandlinefu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-commandlinefu"; sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd"; name = "helm-commandlinefu"; }; packageRequires = [ emacs helm json let-alist ]; meta = { - homepage = "http://melpa.org/#/helm-commandlinefu"; + homepage = "https://melpa.org/#/helm-commandlinefu"; license = lib.licenses.free; }; }) {}; helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-core"; - version = "1.9.2"; + version = "1.9.4"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "a80e0b48e2ee22a022a76a5f483d1b68efe8a9e3"; - sha256 = "0cylf0mnfj0m1wm9mxpxrkiinrlvpax99mdnsc6zfj3zrn1qghnp"; + rev = "92786bba2e533eca50b6504413bc22edd957e5ee"; + sha256 = "19ahlm144yfs5jjc513m4f3n4p0zpk1v2xaw3rkrvnb8xay6f1gn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-core"; sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda"; name = "helm-core"; }; packageRequires = [ async emacs ]; meta = { - homepage = "http://melpa.org/#/helm-core"; + homepage = "https://melpa.org/#/helm-core"; license = lib.licenses.free; }; }) {}; @@ -11884,13 +12494,13 @@ sha256 = "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-cscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-cscope"; sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4"; name = "helm-cscope"; }; packageRequires = [ cl-lib emacs helm xcscope ]; meta = { - homepage = "http://melpa.org/#/helm-cscope"; + homepage = "https://melpa.org/#/helm-cscope"; license = lib.licenses.free; }; }) {}; @@ -11905,13 +12515,13 @@ sha256 = "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-dash"; sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy"; name = "helm-dash"; }; packageRequires = [ cl-lib helm ]; meta = { - homepage = "http://melpa.org/#/helm-dash"; + homepage = "https://melpa.org/#/helm-dash"; license = lib.licenses.free; }; }) {}; @@ -11926,13 +12536,13 @@ sha256 = "1cm2vaw0j1x2w2m45k6iqbzm7nydfdx1x89673vsvb90whdgvjbp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-descbinds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-descbinds"; sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7"; name = "helm-descbinds"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-descbinds"; + homepage = "https://melpa.org/#/helm-descbinds"; license = lib.licenses.free; }; }) {}; @@ -11947,13 +12557,34 @@ sha256 = "0vmlpj6zfif5f3wzgq8lkfqprl3z5gjsqj86347krblgfzhqlz30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-firefox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-firefox"; sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs"; name = "helm-firefox"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-firefox"; + homepage = "https://melpa.org/#/helm-firefox"; + license = lib.licenses.free; + }; + }) {}; + helm-flycheck = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, helm, lib, melpaBuild }: + melpaBuild { + pname = "helm-flycheck"; + version = "0.3"; + src = fetchFromGitHub { + owner = "yasuyk"; + repo = "helm-flycheck"; + rev = "29f3d050056760e1fb5c1c4b83207c02beb7fd56"; + sha256 = "1fg786m4m6x7brbbchpdf4pwvwma7sn4597p5lzmhvh187z6g525"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-flycheck"; + sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b"; + name = "helm-flycheck"; + }; + packageRequires = [ dash flycheck helm ]; + meta = { + homepage = "https://melpa.org/#/helm-flycheck"; license = lib.licenses.free; }; }) {}; @@ -11968,13 +12599,13 @@ sha256 = "00ls9v3jdpz3wka90crd193z3ipwnf1b0slmldn4vb9ivrndh6wn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ghc"; sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d"; name = "helm-ghc"; }; packageRequires = [ cl-lib emacs ghc helm ]; meta = { - homepage = "http://melpa.org/#/helm-ghc"; + homepage = "https://melpa.org/#/helm-ghc"; license = lib.licenses.free; }; }) {}; @@ -11989,13 +12620,34 @@ sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ghq"; sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6"; name = "helm-ghq"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-ghq"; + homepage = "https://melpa.org/#/helm-ghq"; + license = lib.licenses.free; + }; + }) {}; + helm-git-grep = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: + melpaBuild { + pname = "helm-git-grep"; + version = "0.7.1"; + src = fetchFromGitHub { + owner = "yasuyk"; + repo = "helm-git-grep"; + rev = "1fde3b3e3da02cdbec27c48bca6a94b0219217e4"; + sha256 = "1hx9m18dfpl97xaskadhqdrd8syk271shxjasn3jnqa8a07m2983"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-git-grep"; + sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi"; + name = "helm-git-grep"; + }; + packageRequires = [ helm ]; + meta = { + homepage = "https://melpa.org/#/helm-git-grep"; license = lib.licenses.free; }; }) {}; @@ -12010,13 +12662,13 @@ sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-github-stars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-github-stars"; sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy"; name = "helm-github-stars"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-github-stars"; + homepage = "https://melpa.org/#/helm-github-stars"; license = lib.licenses.free; }; }) {}; @@ -12031,34 +12683,55 @@ sha256 = "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-gitlab"; sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd"; name = "helm-gitlab"; }; packageRequires = [ dash gitlab helm s ]; meta = { - homepage = "http://melpa.org/#/helm-gitlab"; + homepage = "https://melpa.org/#/helm-gitlab"; + license = lib.licenses.free; + }; + }) {}; + helm-go-package = callPackage ({ deferred, fetchFromGitHub, fetchurl, go-mode, helm, lib, melpaBuild }: + melpaBuild { + pname = "helm-go-package"; + version = "0.1"; + src = fetchFromGitHub { + owner = "yasuyk"; + repo = "helm-go-package"; + rev = "2204710b8a8e68c8cd4c8528eb6de4ad900941da"; + sha256 = "0h3iql8dxq80vpr1cv7fdaw0aniykp2rfzh07j5941jkiy4q63h0"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-go-package"; + sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6"; + name = "helm-go-package"; + }; + packageRequires = [ deferred go-mode helm ]; + meta = { + homepage = "https://melpa.org/#/helm-go-package"; license = lib.licenses.free; }; }) {}; helm-gtags = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-gtags"; - version = "1.5.4"; + version = "1.5.6"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-gtags"; - rev = "f14ff7140d0f070b089df7567f2cc6b437ab9924"; - sha256 = "1hqmwbdcjssvvl7prdykhlgbfrf4qylkvqp0nnnxp8r1wy6h6aws"; + rev = "dbe0d2d9d08058d469ad2d729bd782515b5b3b62"; + sha256 = "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-gtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-gtags"; sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl"; name = "helm-gtags"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-gtags"; + homepage = "https://melpa.org/#/helm-gtags"; license = lib.licenses.free; }; }) {}; @@ -12073,13 +12746,13 @@ sha256 = "189dv3qqqmfyhsqa1n52cgcn1xv7k49f92ndn43y2v20234nhl9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-hatena-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-hatena-bookmark"; sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id"; name = "helm-hatena-bookmark"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-hatena-bookmark"; + homepage = "https://melpa.org/#/helm-hatena-bookmark"; license = lib.licenses.free; }; }) {}; @@ -12094,13 +12767,13 @@ sha256 = "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-hayoo"; sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32"; name = "helm-hayoo"; }; packageRequires = [ haskell-mode helm json ]; meta = { - homepage = "http://melpa.org/#/helm-hayoo"; + homepage = "https://melpa.org/#/helm-hayoo"; license = lib.licenses.free; }; }) {}; @@ -12115,13 +12788,13 @@ sha256 = "0bz2ngw816jvpw1a10j31y5hf1knz0mzz60l073h33qci11jbwid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ispell"; sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0"; name = "helm-ispell"; }; packageRequires = [ helm-core ]; meta = { - homepage = "http://melpa.org/#/helm-ispell"; + homepage = "https://melpa.org/#/helm-ispell"; license = lib.licenses.free; }; }) {}; @@ -12136,13 +12809,13 @@ sha256 = "1nd562lffc41r3y5x7y46f37ra97avllk2m95w23f9g42h47f1ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-lobsters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-lobsters"; sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp"; name = "helm-lobsters"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/helm-lobsters"; + homepage = "https://melpa.org/#/helm-lobsters"; license = lib.licenses.free; }; }) {}; @@ -12157,13 +12830,13 @@ sha256 = "0azs971d7pqd4ddxzy7bfs52cmrjbafwrcnf57afw39d772rzpdf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ls-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ls-git"; sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj"; name = "helm-ls-git"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-ls-git"; + homepage = "https://melpa.org/#/helm-ls-git"; license = lib.licenses.free; }; }) {}; @@ -12178,13 +12851,13 @@ sha256 = "1hma79i69l8ilkr3l4b8zqk3ny62vqr1ym2blymia4ibwk4zqbda"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-ls-hg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ls-hg"; sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh"; name = "helm-ls-hg"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-ls-hg"; + homepage = "https://melpa.org/#/helm-ls-hg"; license = lib.licenses.free; }; }) {}; @@ -12199,13 +12872,13 @@ sha256 = "17ls0bplnja2qvg3129x2irgsgs7l4bjj0qi7b9z16i6knjkwfya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-make"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-make"; sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc"; name = "helm-make"; }; packageRequires = [ helm projectile ]; meta = { - homepage = "http://melpa.org/#/helm-make"; + homepage = "https://melpa.org/#/helm-make"; license = lib.licenses.free; }; }) {}; @@ -12220,13 +12893,13 @@ sha256 = "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-migemo"; sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x"; name = "helm-migemo"; }; packageRequires = [ cl-lib helm-core migemo ]; meta = { - homepage = "http://melpa.org/#/helm-migemo"; + homepage = "https://melpa.org/#/helm-migemo"; license = lib.licenses.free; }; }) {}; @@ -12241,13 +12914,13 @@ sha256 = "1srx5f0s9x7zan7ayqd6scxfhcvr3nkd4yzs96hphd87rb18apzk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-mode-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-mode-manager"; sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd"; name = "helm-mode-manager"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-mode-manager"; + homepage = "https://melpa.org/#/helm-mode-manager"; license = lib.licenses.free; }; }) {}; @@ -12262,13 +12935,13 @@ sha256 = "0gknncyhr2392xkvghgy5mh6gdv6qzvswidx2wy04ypb4s0vxgq2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-mt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-mt"; sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a"; name = "helm-mt"; }; packageRequires = [ cl-lib emacs helm multi-term ]; meta = { - homepage = "http://melpa.org/#/helm-mt"; + homepage = "https://melpa.org/#/helm-mt"; license = lib.licenses.free; }; }) {}; @@ -12283,13 +12956,13 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-nixos-options"; sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933"; name = "helm-nixos-options"; }; packageRequires = [ helm nixos-options ]; meta = { - homepage = "http://melpa.org/#/helm-nixos-options"; + homepage = "https://melpa.org/#/helm-nixos-options"; license = lib.licenses.free; }; }) {}; @@ -12304,13 +12977,34 @@ sha256 = "1hq1nnmgkx0a8sv6g8k4v9f0102qg7jga0hcjnr8lcji51nqrcya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-open-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-open-github"; sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx"; name = "helm-open-github"; }; packageRequires = [ cl-lib gh helm-core ]; meta = { - homepage = "http://melpa.org/#/helm-open-github"; + homepage = "https://melpa.org/#/helm-open-github"; + license = lib.licenses.free; + }; + }) {}; + helm-org-rifle = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: + melpaBuild { + pname = "helm-org-rifle"; + version = "1.2.0"; + src = fetchFromGitHub { + owner = "alphapapa"; + repo = "helm-org-rifle"; + rev = "c3913b6e1d19e957c0b5a2d0243388e224a42a8a"; + sha256 = "02yjnag9wr9dk93z41f0i5mqij9bz57fxkv4nddabyc18k7zfrhj"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-org-rifle"; + sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3"; + name = "helm-org-rifle"; + }; + packageRequires = [ dash emacs f helm s ]; + meta = { + homepage = "https://melpa.org/#/helm-org-rifle"; license = lib.licenses.free; }; }) {}; @@ -12325,13 +13019,13 @@ sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-orgcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-orgcard"; sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p"; name = "helm-orgcard"; }; packageRequires = [ helm-core ]; meta = { - homepage = "http://melpa.org/#/helm-orgcard"; + homepage = "https://melpa.org/#/helm-orgcard"; license = lib.licenses.free; }; }) {}; @@ -12346,13 +13040,13 @@ sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-package"; sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y"; name = "helm-package"; }; packageRequires = [ cl-lib helm ]; meta = { - homepage = "http://melpa.org/#/helm-package"; + homepage = "https://melpa.org/#/helm-package"; license = lib.licenses.free; }; }) {}; @@ -12367,13 +13061,13 @@ sha256 = "1r2ndmrw5ivawb940j8jnmqzxv46qrzd3cqh9fvxx5yicf020fjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pages"; sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj"; name = "helm-pages"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-pages"; + homepage = "https://melpa.org/#/helm-pages"; license = lib.licenses.free; }; }) {}; @@ -12388,13 +13082,13 @@ sha256 = "01cj2897hqz02mfz32nxlyyp59iwm0gz1zj11s8ll7pwy9q3r90g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-perldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-perldoc"; sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb"; name = "helm-perldoc"; }; packageRequires = [ cl-lib deferred helm ]; meta = { - homepage = "http://melpa.org/#/helm-perldoc"; + homepage = "https://melpa.org/#/helm-perldoc"; license = lib.licenses.free; }; }) {}; @@ -12409,13 +13103,13 @@ sha256 = "0y0a18bj2k459fk51z7svnnasqkl78bx61y5ha1yv3sqnppgdw2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-proc"; sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx"; name = "helm-proc"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-proc"; + homepage = "https://melpa.org/#/helm-proc"; license = lib.licenses.free; }; }) {}; @@ -12430,13 +13124,13 @@ sha256 = "1q7hfj8ldwivhjp9ns5pvsn0ds6pyvl2zhl366c22s6q8jmbr8ik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-project-persist"; sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld"; name = "helm-project-persist"; }; packageRequires = [ helm project-persist ]; meta = { - homepage = "http://melpa.org/#/helm-project-persist"; + homepage = "https://melpa.org/#/helm-project-persist"; license = lib.licenses.free; }; }) {}; @@ -12451,13 +13145,13 @@ sha256 = "0jm6nnnjyd4kmm1knh0mq3xhnw2hvs3linwlynj8yaliqvlv6brv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pt"; sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi"; name = "helm-pt"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-pt"; + homepage = "https://melpa.org/#/helm-pt"; license = lib.licenses.free; }; }) {}; @@ -12472,13 +13166,13 @@ sha256 = "1jy9l4an2aqynj86pw2qxpzw446xm376n2ykiz17qlimqbxhwkgz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-purpose"; sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6"; name = "helm-purpose"; }; packageRequires = [ emacs helm window-purpose ]; meta = { - homepage = "http://melpa.org/#/helm-purpose"; + homepage = "https://melpa.org/#/helm-purpose"; license = lib.licenses.free; }; }) {}; @@ -12493,13 +13187,13 @@ sha256 = "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-pydoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pydoc"; sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7"; name = "helm-pydoc"; }; packageRequires = [ cl-lib helm-core ]; meta = { - homepage = "http://melpa.org/#/helm-pydoc"; + homepage = "https://melpa.org/#/helm-pydoc"; license = lib.licenses.free; }; }) {}; @@ -12514,13 +13208,13 @@ sha256 = "1f1ijna97dn190if3nwk5s5rldlpryfb7wvgg0imwqyp25h4all7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-recoll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-recoll"; sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b"; name = "helm-recoll"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-recoll"; + homepage = "https://melpa.org/#/helm-recoll"; license = lib.licenses.free; }; }) {}; @@ -12535,13 +13229,13 @@ sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-robe"; sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw"; name = "helm-robe"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-robe"; + homepage = "https://melpa.org/#/helm-robe"; license = lib.licenses.free; }; }) {}; @@ -12556,13 +13250,13 @@ sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-rubygems-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rubygems-org"; sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs"; name = "helm-rubygems-org"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-rubygems-org"; + homepage = "https://melpa.org/#/helm-rubygems-org"; license = lib.licenses.free; }; }) {}; @@ -12577,34 +13271,34 @@ sha256 = "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-sage"; sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj"; name = "helm-sage"; }; packageRequires = [ cl-lib helm sage-shell-mode ]; meta = { - homepage = "http://melpa.org/#/helm-sage"; + homepage = "https://melpa.org/#/helm-sage"; license = lib.licenses.free; }; }) {}; helm-spaces = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, spaces }: melpaBuild { pname = "helm-spaces"; - version = "0.2"; + version = "0.3"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-spaces"; - rev = "8b4f5a1e3cb823ceee1e341ce45f9b18a1b8057c"; - sha256 = "0kz0vfp43n7f9l53rji2pb8v6ylg63i37q0bmidmjjvsinimwj44"; + rev = "141266a958feaf7a2e474ff4a5d4cd686919e942"; + sha256 = "13j3rgg5zfpxds6vsyq0aqws1f3p5y5dsq8558nqsymqvycpn047"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-spaces"; sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791"; name = "helm-spaces"; }; packageRequires = [ helm spaces ]; meta = { - homepage = "http://melpa.org/#/helm-spaces"; + homepage = "https://melpa.org/#/helm-spaces"; license = lib.licenses.free; }; }) {}; @@ -12619,13 +13313,13 @@ sha256 = "1lkjrz9ma2bxr8vskdm3sgrmsyiic798q3271dw38d453bhv4bl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-swoop"; sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8"; name = "helm-swoop"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-swoop"; + homepage = "https://melpa.org/#/helm-swoop"; license = lib.licenses.free; }; }) {}; @@ -12640,13 +13334,13 @@ sha256 = "0rzbdrs5d5a0icpxrqik2iaz8i5bacw6nm2caf75s9w9j0j6s9li"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-themes"; sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j"; name = "helm-themes"; }; packageRequires = [ helm ]; meta = { - homepage = "http://melpa.org/#/helm-themes"; + homepage = "https://melpa.org/#/helm-themes"; license = lib.licenses.free; }; }) {}; @@ -12661,13 +13355,13 @@ sha256 = "14lbdvs9xdnipsn3lywbvgsqwqnbm8fxm6d1ilq0cj5z6zkxkya0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-unicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-unicode"; sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4"; name = "helm-unicode"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-unicode"; + homepage = "https://melpa.org/#/helm-unicode"; license = lib.licenses.free; }; }) {}; @@ -12682,13 +13376,13 @@ sha256 = "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-w32-launcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-w32-launcher"; sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri"; name = "helm-w32-launcher"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-w32-launcher"; + homepage = "https://melpa.org/#/helm-w32-launcher"; license = lib.licenses.free; }; }) {}; @@ -12703,13 +13397,34 @@ sha256 = "1j6ssbjbm5ym3pg0icpfp735y4dfhlky9qhl9hwp2n3wmba5g9h1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/helm-zhihu-daily"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-zhihu-daily"; sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r"; name = "helm-zhihu-daily"; }; packageRequires = [ cl-lib emacs helm ]; meta = { - homepage = "http://melpa.org/#/helm-zhihu-daily"; + homepage = "https://melpa.org/#/helm-zhihu-daily"; + license = lib.licenses.free; + }; + }) {}; + hfst-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "hfst-mode"; + version = "0.3.0"; + src = fetchFromGitHub { + owner = "unhammer"; + repo = "hfst-mode"; + rev = "d145a21e3e175b0fe2b0592981533c9492bd289c"; + sha256 = "1zr59kcnkd9bm5676shmz63n0wpnfr7yl9g4l01ng0xcili1n13i"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hfst-mode"; + sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7"; + name = "hfst-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/hfst-mode"; license = lib.licenses.free; }; }) {}; @@ -12724,13 +13439,13 @@ sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hi2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hi2"; sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2"; name = "hi2"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hi2"; + homepage = "https://melpa.org/#/hi2"; license = lib.licenses.free; }; }) {}; @@ -12745,13 +13460,13 @@ sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-blocks"; sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1"; name = "highlight-blocks"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/highlight-blocks"; + homepage = "https://melpa.org/#/highlight-blocks"; license = lib.licenses.free; }; }) {}; @@ -12766,13 +13481,13 @@ sha256 = "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-defined"; sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms"; name = "highlight-defined"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/highlight-defined"; + homepage = "https://melpa.org/#/highlight-defined"; license = lib.licenses.free; }; }) {}; @@ -12787,13 +13502,13 @@ sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-indentation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-indentation"; sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6"; name = "highlight-indentation"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-indentation"; + homepage = "https://melpa.org/#/highlight-indentation"; license = lib.licenses.free; }; }) {}; @@ -12808,13 +13523,13 @@ sha256 = "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-numbers"; sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv"; name = "highlight-numbers"; }; packageRequires = [ emacs parent-mode ]; meta = { - homepage = "http://melpa.org/#/highlight-numbers"; + homepage = "https://melpa.org/#/highlight-numbers"; license = lib.licenses.free; }; }) {}; @@ -12823,19 +13538,19 @@ pname = "highlight-parentheses"; version = "1.1.0"; src = fetchFromGitHub { - owner = "nschum"; + owner = "tsdh"; repo = "highlight-parentheses.el"; rev = "5aa800a68e3795716de1e7f2722e836781190f31"; sha256 = "08ld4wjrkd77cghmrf1n2hn2yzid7bdqwz6b1rzzqaiwxl138iy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-parentheses"; - sha256 = "1b0n9mz4a6baljvvgb881w53391smm35c9pwd45g861hk1qvrk5k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-parentheses"; + sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5"; name = "highlight-parentheses"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-parentheses"; + homepage = "https://melpa.org/#/highlight-parentheses"; license = lib.licenses.free; }; }) {}; @@ -12850,13 +13565,13 @@ sha256 = "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-quoted"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-quoted"; sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl"; name = "highlight-quoted"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/highlight-quoted"; + homepage = "https://melpa.org/#/highlight-quoted"; license = lib.licenses.free; }; }) {}; @@ -12871,13 +13586,13 @@ sha256 = "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-symbol"; sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4"; name = "highlight-symbol"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/highlight-symbol"; + homepage = "https://melpa.org/#/highlight-symbol"; license = lib.licenses.free; }; }) {}; @@ -12892,13 +13607,13 @@ sha256 = "0hb74j5137yj3rm2si16xzwmcvkiwx8ywh1qrlnrzv5gl4viyjzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hindent"; sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz"; name = "hindent"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/hindent"; + homepage = "https://melpa.org/#/hindent"; license = lib.licenses.free; }; }) {}; @@ -12913,13 +13628,13 @@ sha256 = "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hippie-expand-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hippie-expand-slime"; sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m"; name = "hippie-expand-slime"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hippie-expand-slime"; + homepage = "https://melpa.org/#/hippie-expand-slime"; license = lib.licenses.free; }; }) {}; @@ -12934,13 +13649,13 @@ sha256 = "0nfr8ad0klqwi97fjchvwx9mfc672lhv3ll166sr8vn6jlh7rkv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hippie-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hippie-namespace"; sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0"; name = "hippie-namespace"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hippie-namespace"; + homepage = "https://melpa.org/#/hippie-namespace"; license = lib.licenses.free; }; }) {}; @@ -12955,13 +13670,13 @@ sha256 = "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/history"; sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g"; name = "history"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/history"; + homepage = "https://melpa.org/#/history"; license = lib.licenses.free; }; }) {}; @@ -12976,13 +13691,13 @@ sha256 = "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/historyf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/historyf"; sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s"; name = "historyf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/historyf"; + homepage = "https://melpa.org/#/historyf"; license = lib.licenses.free; }; }) {}; @@ -12991,19 +13706,19 @@ pname = "hl-anything"; version = "0.0.9"; src = fetchFromGitHub { - owner = "boyw165"; - repo = "hl-anything"; - rev = "990fe4b323b6222d6c6a35898d8128cddda34848"; - sha256 = "12ab825dldiqymy4md8ssfnbbhrgczkwdiwd3llsdq6sayar16as"; + owner = "hl-anything"; + repo = "hl-anything-emacs"; + rev = "de631c87d3a6602cdbf84c1623558334fda354fa"; + sha256 = "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-anything"; - sha256 = "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-anything"; + sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa"; name = "hl-anything"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/hl-anything"; + homepage = "https://melpa.org/#/hl-anything"; license = lib.licenses.free; }; }) {}; @@ -13018,13 +13733,13 @@ sha256 = "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-sentence"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-sentence"; sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs"; name = "hl-sentence"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hl-sentence"; + homepage = "https://melpa.org/#/hl-sentence"; license = lib.licenses.free; }; }) {}; @@ -13039,34 +13754,34 @@ sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-sexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-sexp"; sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy"; name = "hl-sexp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hl-sexp"; + homepage = "https://melpa.org/#/hl-sexp"; license = lib.licenses.free; }; }) {}; hl-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-todo"; - version = "1.4.5"; + version = "1.5.0"; src = fetchFromGitHub { owner = "tarsius"; repo = "hl-todo"; - rev = "878220c111add155b9ee1aeb3d3475cc5e488525"; - sha256 = "07irwpg794fdzsixmcbi1lnafj5gynhrdam7frcpmvb26a0l8fxq"; + rev = "6507868d63f3569a6f196716c38e09cf2b57d4e9"; + sha256 = "1ljakm15bsl9hv1rbg6lj0mnbc4qna5fr9rwkalnlwknjpka1bx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hl-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-todo"; sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4"; name = "hl-todo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hl-todo"; + homepage = "https://melpa.org/#/hl-todo"; license = lib.licenses.free; }; }) {}; @@ -13081,34 +13796,34 @@ sha256 = "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hoa-pp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hoa-pp-mode"; sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla"; name = "hoa-pp-mode"; }; packageRequires = [ emacs names ]; meta = { - homepage = "http://melpa.org/#/hoa-pp-mode"; + homepage = "https://melpa.org/#/hoa-pp-mode"; license = lib.licenses.free; }; }) {}; homebrew-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "homebrew-mode"; - version = "1.3.2"; + version = "1.3.5"; src = fetchFromGitHub { owner = "dunn"; repo = "homebrew-mode"; - rev = "359b5a0e42c6dab618bb9bcf03ad3dfe3b2a3d12"; - sha256 = "1n8r4jrk71dg25ca6bsw11ky0dszdj4pvqwsmy3msqlji1ckvqyn"; + rev = "11e952b9fd9c7aa9c18933f7605cd10bac31e227"; + sha256 = "0yh9v5zng1j2kfjjadfkdds67jws79q52kvl2mx9s8mq28263idm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/homebrew-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/homebrew-mode"; sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj"; name = "homebrew-mode"; }; packageRequires = [ dash emacs inf-ruby ]; meta = { - homepage = "http://melpa.org/#/homebrew-mode"; + homepage = "https://melpa.org/#/homebrew-mode"; license = lib.licenses.free; }; }) {}; @@ -13123,13 +13838,13 @@ sha256 = "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hookify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hookify"; sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy"; name = "hookify"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/hookify"; + homepage = "https://melpa.org/#/hookify"; license = lib.licenses.free; }; }) {}; @@ -13144,13 +13859,13 @@ sha256 = "0k09n66jar0prq9aal2h3izp1y67jibdx0gjr0g4jx1p1yxig1dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ht"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ht"; sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd"; name = "ht"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ht"; + homepage = "https://melpa.org/#/ht"; license = lib.licenses.free; }; }) {}; @@ -13165,13 +13880,13 @@ sha256 = "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/html-to-markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/html-to-markdown"; sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv"; name = "html-to-markdown"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/html-to-markdown"; + homepage = "https://melpa.org/#/html-to-markdown"; license = lib.licenses.free; }; }) {}; @@ -13186,13 +13901,13 @@ sha256 = "1h9n388fi17nbyfciqywgrq3n165kpiildbimx59qyk2ac3v7rqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/httpcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/httpcode"; sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh"; name = "httpcode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/httpcode"; + homepage = "https://melpa.org/#/httpcode"; license = lib.licenses.free; }; }) {}; @@ -13207,13 +13922,13 @@ sha256 = "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/httprepl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/httprepl"; sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh"; name = "httprepl"; }; packageRequires = [ dash emacs s ]; meta = { - homepage = "http://melpa.org/#/httprepl"; + homepage = "https://melpa.org/#/httprepl"; license = lib.licenses.free; }; }) {}; @@ -13228,13 +13943,13 @@ sha256 = "1b8992vzq5bh01pjlj181nzqjrqs4fbjpwvv8h7gjq42sf8w59sm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hyai"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hyai"; sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s"; name = "hyai"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/hyai"; + homepage = "https://melpa.org/#/hyai"; license = lib.licenses.free; }; }) {}; @@ -13249,13 +13964,13 @@ sha256 = "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hyde"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hyde"; sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3"; name = "hyde"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/hyde"; + homepage = "https://melpa.org/#/hyde"; license = lib.licenses.free; }; }) {}; @@ -13270,13 +13985,13 @@ sha256 = "08iw95lyizcyf6cjl37fm8wvay0vsk9758pk9gq9f2xiafcchl7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/hydra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hydra"; sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw"; name = "hydra"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/hydra"; + homepage = "https://melpa.org/#/hydra"; license = lib.licenses.free; }; }) {}; @@ -13291,13 +14006,13 @@ sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-projectile"; sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk"; name = "ibuffer-projectile"; }; packageRequires = [ projectile ]; meta = { - homepage = "http://melpa.org/#/ibuffer-projectile"; + homepage = "https://melpa.org/#/ibuffer-projectile"; license = lib.licenses.free; }; }) {}; @@ -13312,13 +14027,13 @@ sha256 = "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ibuffer-vc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-vc"; sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla"; name = "ibuffer-vc"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/ibuffer-vc"; + homepage = "https://melpa.org/#/ibuffer-vc"; license = lib.licenses.free; }; }) {}; @@ -13333,13 +14048,13 @@ sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/identica-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/identica-mode"; sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q"; name = "identica-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/identica-mode"; + homepage = "https://melpa.org/#/identica-mode"; license = lib.licenses.free; }; }) {}; @@ -13354,13 +14069,13 @@ sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idle-highlight-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idle-highlight-mode"; sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc"; name = "idle-highlight-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/idle-highlight-mode"; + homepage = "https://melpa.org/#/idle-highlight-mode"; license = lib.licenses.free; }; }) {}; @@ -13375,13 +14090,13 @@ sha256 = "1ffmsmi31jc0gqnbdxrd8ipsy790bn6hgq3rmayylavmdpg3qfd5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-complete-space-or-hyphen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-complete-space-or-hyphen"; sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc"; name = "ido-complete-space-or-hyphen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ido-complete-space-or-hyphen"; + homepage = "https://melpa.org/#/ido-complete-space-or-hyphen"; license = lib.licenses.free; }; }) {}; @@ -13396,13 +14111,13 @@ sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-completing-read+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-completing-read+"; sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh"; name = "ido-completing-read-plus"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/ido-completing-read+"; + homepage = "https://melpa.org/#/ido-completing-read+"; license = lib.licenses.free; }; }) {}; @@ -13417,13 +14132,13 @@ sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-describe-bindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-describe-bindings"; sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2"; name = "ido-describe-bindings"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/ido-describe-bindings"; + homepage = "https://melpa.org/#/ido-describe-bindings"; license = lib.licenses.free; }; }) {}; @@ -13438,13 +14153,13 @@ sha256 = "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-grid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-grid-mode"; sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr"; name = "ido-grid-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ido-grid-mode"; + homepage = "https://melpa.org/#/ido-grid-mode"; license = lib.licenses.free; }; }) {}; @@ -13459,13 +14174,13 @@ sha256 = "1z7az7h90v72llxvdclcywvf1qd0nhkfa45bp99xi7cy7sqsqssf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-load-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-load-library"; sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj"; name = "ido-load-library"; }; packageRequires = [ pcache persistent-soft ]; meta = { - homepage = "http://melpa.org/#/ido-load-library"; + homepage = "https://melpa.org/#/ido-load-library"; license = lib.licenses.free; }; }) {}; @@ -13480,13 +14195,13 @@ sha256 = "0j12li001yq08vzwh1b25qyq09llizrkgaay9k07g9pvfxlx6zb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-occur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-occur"; sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji"; name = "ido-occur"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/ido-occur"; + homepage = "https://melpa.org/#/ido-occur"; license = lib.licenses.free; }; }) {}; @@ -13501,13 +14216,13 @@ sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-ubiquitous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-ubiquitous"; sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp"; name = "ido-ubiquitous"; }; packageRequires = [ cl-lib emacs ido-completing-read-plus ]; meta = { - homepage = "http://melpa.org/#/ido-ubiquitous"; + homepage = "https://melpa.org/#/ido-ubiquitous"; license = lib.licenses.free; }; }) {}; @@ -13522,13 +14237,13 @@ sha256 = "1lv82q639xjnmvby56nwqn23ijh6f163bk675s33dkingm8csj8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-vertical-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-vertical-mode"; sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm"; name = "ido-vertical-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ido-vertical-mode"; + homepage = "https://melpa.org/#/ido-vertical-mode"; license = lib.licenses.free; }; }) {}; @@ -13543,13 +14258,13 @@ sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ido-yes-or-no"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-yes-or-no"; sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana"; name = "ido-yes-or-no"; }; packageRequires = [ ido-completing-read-plus ]; meta = { - homepage = "http://melpa.org/#/ido-yes-or-no"; + homepage = "https://melpa.org/#/ido-yes-or-no"; license = lib.licenses.free; }; }) {}; @@ -13564,13 +14279,13 @@ sha256 = "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idomenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idomenu"; sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h"; name = "idomenu"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/idomenu"; + homepage = "https://melpa.org/#/idomenu"; license = lib.licenses.free; }; }) {}; @@ -13585,13 +14300,13 @@ sha256 = "0iwgbaq2797k1f7ql86i2pjfa67cha4s2v0mgmrd0qcgqkxsdq92"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/idris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idris-mode"; sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s"; name = "idris-mode"; }; packageRequires = [ cl-lib emacs prop-menu ]; meta = { - homepage = "http://melpa.org/#/idris-mode"; + homepage = "https://melpa.org/#/idris-mode"; license = lib.licenses.free; }; }) {}; @@ -13606,13 +14321,13 @@ sha256 = "06qv95bgcb6n3zcjs2i1q80v9040z7m9pb9xbhxmqzcx68vpbpdm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iedit"; sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04"; name = "iedit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/iedit"; + homepage = "https://melpa.org/#/iedit"; license = lib.licenses.free; }; }) {}; @@ -13627,34 +14342,34 @@ sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iflipb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iflipb"; sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d"; name = "iflipb"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/iflipb"; + homepage = "https://melpa.org/#/iflipb"; license = lib.licenses.free; }; }) {}; ignoramus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ignoramus"; - version = "0.7.0"; + version = "0.7.4"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "ignoramus"; - rev = "37536286eb1da6d7bb9590e039485c456fdfd245"; - sha256 = "1j40ldvgd7nr7pabi8mhzdvi0ml9n62m8mfjlh9nrbnkcsifs9rk"; + rev = "00385fcd0d42de3a470f61c1fdbe7e19fbef9c5b"; + sha256 = "1ca2n6vv2z7c3550w0jzwmp6xp0rmrrbljr1ik2ijign62r35a3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ignoramus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ignoramus"; sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9"; name = "ignoramus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ignoramus"; + homepage = "https://melpa.org/#/ignoramus"; license = lib.licenses.free; }; }) {}; @@ -13669,13 +14384,13 @@ sha256 = "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image-archive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image-archive"; sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp"; name = "image-archive"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/image-archive"; + homepage = "https://melpa.org/#/image-archive"; license = lib.licenses.free; }; }) {}; @@ -13690,13 +14405,13 @@ sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image-dired+"; sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy"; name = "image-dired-plus"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/image-dired+"; + homepage = "https://melpa.org/#/image-dired+"; license = lib.licenses.free; }; }) {}; @@ -13711,13 +14426,34 @@ sha256 = "0k69xbih0273xvmj035vcmm67l6hgjb99pb1jbva5x0pnszb1vdv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/image+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image+"; sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg"; name = "image-plus"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/image+"; + homepage = "https://melpa.org/#/image+"; + license = lib.licenses.free; + }; + }) {}; + imapfilter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "imapfilter"; + version = "1.0.1"; + src = fetchFromGitHub { + owner = "tarsius"; + repo = "imapfilter"; + rev = "f3aca4c07178c56080e4c85875f78321e94a9649"; + sha256 = "15lflvpapm5749qq7jzdwbd0isb89i6df3np4wn9y9gjl7y92wk7"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imapfilter"; + sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz"; + name = "imapfilter"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/imapfilter"; license = lib.licenses.free; }; }) {}; @@ -13726,19 +14462,19 @@ pname = "imenu-anywhere"; version = "0.9.0"; src = fetchFromGitHub { - owner = "vitoshka"; + owner = "vspinu"; repo = "imenu-anywhere"; rev = "a090132492a3a98b6547240babe0bc0fa6154bb2"; sha256 = "0qc96p5f7paxaxzv73w072cba8jb6ibdbhml7n7cm85b0rz1wf16"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenu-anywhere"; - sha256 = "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenu-anywhere"; + sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq"; name = "imenu-anywhere"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/imenu-anywhere"; + homepage = "https://melpa.org/#/imenu-anywhere"; license = lib.licenses.free; }; }) {}; @@ -13753,34 +14489,34 @@ sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenu-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenu-list"; sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s"; name = "imenu-list"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/imenu-list"; + homepage = "https://melpa.org/#/imenu-list"; license = lib.licenses.free; }; }) {}; imenus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenus"; - version = "0.1"; + version = "0.2"; src = fetchFromGitHub { owner = "alezost"; repo = "imenus.el"; - rev = "7409021864a4e74a237a00d1e1d2597dc80ef7f0"; - sha256 = "18nx5z2vn0ikv4gxjprsqr63pcgf9s02gc3f769h8dji560kqxd4"; + rev = "ee1bbd2228dbb86df2865dc9004d375421b171ba"; + sha256 = "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imenus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenus"; sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r"; name = "imenus"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/imenus"; + homepage = "https://melpa.org/#/imenus"; license = lib.licenses.free; }; }) {}; @@ -13795,13 +14531,13 @@ sha256 = "19jqcbiwqknlpij9q63m1p69k4zb3v1qdx0858drprc2rl1p55cd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/imgix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imgix"; sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q"; name = "imgix"; }; packageRequires = [ cl-lib dash ht json s ]; meta = { - homepage = "http://melpa.org/#/imgix"; + homepage = "https://melpa.org/#/imgix"; license = lib.licenses.free; }; }) {}; @@ -13816,34 +14552,34 @@ sha256 = "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/immutant-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/immutant-server"; sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i"; name = "immutant-server"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/immutant-server"; + homepage = "https://melpa.org/#/immutant-server"; license = lib.licenses.free; }; }) {}; import-js = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "import-js"; - version = "0.4.1"; + version = "0.6.0"; src = fetchFromGitHub { owner = "trotzig"; repo = "import-js"; - rev = "732cd36da156398c1ee3b5f08e5c3c3d020f24f8"; - sha256 = "00gpyz63lqb2ydvjxjagf2cpja8gw6xbyw82cdj64k53mn86cyvl"; + rev = "560519eb2a2a3c295c2b839c753ec410769d04ab"; + sha256 = "14sq387cq76p3dhbglg87qxaagfmavw98221d30siyz31w6fsbd2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/import-js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/import-js"; sha256 = "1grvzy378qj14wlbmhb3j7fx2zkl9wp65b5g0brjimav08nz7bls"; name = "import-js"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/import-js"; + homepage = "https://melpa.org/#/import-js"; license = lib.licenses.free; }; }) {}; @@ -13858,13 +14594,13 @@ sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/import-popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/import-popwin"; sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy"; name = "import-popwin"; }; packageRequires = [ cl-lib popwin ]; meta = { - homepage = "http://melpa.org/#/import-popwin"; + homepage = "https://melpa.org/#/import-popwin"; license = lib.licenses.free; }; }) {}; @@ -13879,13 +14615,13 @@ sha256 = "1dmr1arqy2vs9jdjha513mvw3yfwgkn4zs728q83asjy91sfcz7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-clojure"; sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl"; name = "inf-clojure"; }; packageRequires = [ clojure-mode emacs ]; meta = { - homepage = "http://melpa.org/#/inf-clojure"; + homepage = "https://melpa.org/#/inf-clojure"; license = lib.licenses.free; }; }) {}; @@ -13900,13 +14636,13 @@ sha256 = "11zsprv5ycnfqi358dd4cx70dbn6a8hccd4prf28lln7vhldbmjz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-ruby"; sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp"; name = "inf-ruby"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/inf-ruby"; + homepage = "https://melpa.org/#/inf-ruby"; license = lib.licenses.free; }; }) {}; @@ -13921,13 +14657,13 @@ sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inflections"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inflections"; sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70"; name = "inflections"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/inflections"; + homepage = "https://melpa.org/#/inflections"; license = lib.licenses.free; }; }) {}; @@ -13942,13 +14678,13 @@ sha256 = "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/init-loader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/init-loader"; sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r"; name = "init-loader"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/init-loader"; + homepage = "https://melpa.org/#/init-loader"; license = lib.licenses.free; }; }) {}; @@ -13963,13 +14699,13 @@ sha256 = "06w1vnfhjy8g62z6xajin5akgh30pa0kk56am61kv6mi5ia8fc96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/init-open-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/init-open-recentf"; sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r"; name = "init-open-recentf"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/init-open-recentf"; + homepage = "https://melpa.org/#/init-open-recentf"; license = lib.licenses.free; }; }) {}; @@ -13984,13 +14720,13 @@ sha256 = "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/initsplit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/initsplit"; sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq"; name = "initsplit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/initsplit"; + homepage = "https://melpa.org/#/initsplit"; license = lib.licenses.free; }; }) {}; @@ -14005,13 +14741,13 @@ sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inline-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inline-crypt"; sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n"; name = "inline-crypt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/inline-crypt"; + homepage = "https://melpa.org/#/inline-crypt"; license = lib.licenses.free; }; }) {}; @@ -14026,13 +14762,13 @@ sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/inlineR"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inlineR"; sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw"; name = "inlineR"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/inlineR"; + homepage = "https://melpa.org/#/inlineR"; license = lib.licenses.free; }; }) {}; @@ -14047,13 +14783,13 @@ sha256 = "1mqnz40zirnyn3wa71wzzjph3a0sbgvzcywcr7xnzqpl6sp7g93f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/insert-shebang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/insert-shebang"; sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v"; name = "insert-shebang"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/insert-shebang"; + homepage = "https://melpa.org/#/insert-shebang"; license = lib.licenses.free; }; }) {}; @@ -14067,13 +14803,13 @@ sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/instapaper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/instapaper"; sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn"; name = "instapaper"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/instapaper"; + homepage = "https://melpa.org/#/instapaper"; license = lib.licenses.free; }; }) {}; @@ -14088,13 +14824,13 @@ sha256 = "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/interleave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/interleave"; sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy"; name = "interleave"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/interleave"; + homepage = "https://melpa.org/#/interleave"; license = lib.licenses.free; }; }) {}; @@ -14109,13 +14845,13 @@ sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/iplayer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iplayer"; sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r"; name = "iplayer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/iplayer"; + homepage = "https://melpa.org/#/iplayer"; license = lib.licenses.free; }; }) {}; @@ -14130,34 +14866,34 @@ sha256 = "036q933yw7pimnnq43ydaqqfccgf4iwvjhjmsavp7l6y1w16rvmy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ir-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ir-black-theme"; sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v"; name = "ir-black-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ir-black-theme"; + homepage = "https://melpa.org/#/ir-black-theme"; license = lib.licenses.free; }; }) {}; - irony = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + irony = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "irony"; - version = "0.1.2"; + version = "0.2.0"; src = fetchFromGitHub { owner = "Sarcasm"; repo = "irony-mode"; - rev = "9f0b33a5369806ba9c2f62238f64d6455a67af9e"; - sha256 = "1wsh72dzm54srxdnlhnmbi8llc30syhbckycj5wmsamw8b89p7c2"; + rev = "3d64dec24b01bc582801db537ed12a5812f4f0ee"; + sha256 = "1y72xhs978ah53fmp10pa8riscx94y9bjvr26wk2f3zc94c6cq3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/irony"; sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a"; name = "irony"; }; - packageRequires = [ cl-lib ]; + packageRequires = [ cl-lib json ]; meta = { - homepage = "http://melpa.org/#/irony"; + homepage = "https://melpa.org/#/irony"; license = lib.licenses.free; }; }) {}; @@ -14172,13 +14908,34 @@ sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/isgd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isgd"; sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi"; name = "isgd"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/isgd"; + homepage = "https://melpa.org/#/isgd"; + license = lib.licenses.free; + }; + }) {}; + ivy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ivy"; + version = "0.8.0"; + src = fetchFromGitHub { + owner = "abo-abo"; + repo = "swiper"; + rev = "c24a3728538dd7d11de9f141b3ad1d8e0996c330"; + sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ivy"; + sha256 = "1w6dh05k1m1b1m3qy1mhfrl9rck0h1x6kh2b2llidwbv346wp17g"; + name = "ivy"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/ivy"; license = lib.licenses.free; }; }) {}; @@ -14193,13 +14950,34 @@ sha256 = "0rpxh1jv98dl9b5ldjkljk70z4hkl61kcmvy1lhpj3lxn8ysv87a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ix"; sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3"; name = "ix"; }; packageRequires = [ grapnel ]; meta = { - homepage = "http://melpa.org/#/ix"; + homepage = "https://melpa.org/#/ix"; + license = lib.licenses.free; + }; + }) {}; + iy-go-to-char = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "iy-go-to-char"; + version = "3.2.1"; + src = fetchFromGitHub { + owner = "doitian"; + repo = "iy-go-to-char"; + rev = "77b40d64eef9dad11eca59f4e3fbc6e849de7434"; + sha256 = "1mb0k4lmbkbpn6qzzg8n14pybhd5zla77ppqac6a9kw89fj2qj4i"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iy-go-to-char"; + sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz"; + name = "iy-go-to-char"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/iy-go-to-char"; license = lib.licenses.free; }; }) {}; @@ -14214,13 +14992,13 @@ sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/j-mode"; sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i"; name = "j-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/j-mode"; + homepage = "https://melpa.org/#/j-mode"; license = lib.licenses.free; }; }) {}; @@ -14230,16 +15008,16 @@ src = fetchgit { url = "git://git.code.sf.net/p/emacs-jabber/git"; rev = "2999f58619dd9c20cc6cac8060c4c850a504cbbd"; - sha256 = "af89d7052e555c7b5efb0c21387a50699056659fb83698691b70e75c88e4cd34"; + sha256 = "0d6dwj45rrvh3dlrhdmqkxjmd439a1x3h88czdg7np2m5q2xg2dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jabber"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jabber"; sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8"; name = "jabber"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jabber"; + homepage = "https://melpa.org/#/jabber"; license = lib.licenses.free; }; }) {}; @@ -14254,13 +15032,13 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jade-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jade-mode"; sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94"; name = "jade-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jade-mode"; + homepage = "https://melpa.org/#/jade-mode"; license = lib.licenses.free; }; }) {}; @@ -14275,13 +15053,13 @@ sha256 = "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jammer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jammer"; sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z"; name = "jammer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jammer"; + homepage = "https://melpa.org/#/jammer"; license = lib.licenses.free; }; }) {}; @@ -14296,13 +15074,13 @@ sha256 = "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/japanlaw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/japanlaw"; sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa"; name = "japanlaw"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/japanlaw"; + homepage = "https://melpa.org/#/japanlaw"; license = lib.licenses.free; }; }) {}; @@ -14317,13 +15095,13 @@ sha256 = "1bngn6v6w60qb3zz7s3px7v3wk99a3hfvzrg9l06dz1q7xgyvsi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/java-imports"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/java-imports"; sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98"; name = "java-imports"; }; packageRequires = [ emacs pcache s ]; meta = { - homepage = "http://melpa.org/#/java-imports"; + homepage = "https://melpa.org/#/java-imports"; license = lib.licenses.free; }; }) {}; @@ -14338,13 +15116,13 @@ sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/javadoc-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/javadoc-lookup"; sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79"; name = "javadoc-lookup"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/javadoc-lookup"; + homepage = "https://melpa.org/#/javadoc-lookup"; license = lib.licenses.free; }; }) {}; @@ -14359,13 +15137,13 @@ sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jedi"; sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4"; name = "jedi"; }; packageRequires = [ auto-complete emacs jedi-core ]; meta = { - homepage = "http://melpa.org/#/jedi"; + homepage = "https://melpa.org/#/jedi"; license = lib.licenses.free; }; }) {}; @@ -14380,13 +15158,13 @@ sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jedi-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jedi-core"; sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f"; name = "jedi-core"; }; packageRequires = [ cl-lib emacs epc python-environment ]; meta = { - homepage = "http://melpa.org/#/jedi-core"; + homepage = "https://melpa.org/#/jedi-core"; license = lib.licenses.free; }; }) {}; @@ -14401,13 +15179,13 @@ sha256 = "0ws0297v6sairvsk665wrfzymfi599g5ljshfnpmi81qnnnbwjgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jq-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jq-mode"; sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin"; name = "jq-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/jq-mode"; + homepage = "https://melpa.org/#/jq-mode"; license = lib.licenses.free; }; }) {}; @@ -14422,13 +15200,13 @@ sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js-comint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js-comint"; sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1"; name = "js-comint"; }; packageRequires = [ nvm ]; meta = { - homepage = "http://melpa.org/#/js-comint"; + homepage = "https://melpa.org/#/js-comint"; license = lib.licenses.free; }; }) {}; @@ -14443,13 +15221,13 @@ sha256 = "0d2hqlgm09rw0azha5dxmq63b56sa8b9qj7gd7invibl6nnyjh4a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-closure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-closure"; sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7"; name = "js2-closure"; }; packageRequires = [ js2-mode ]; meta = { - homepage = "http://melpa.org/#/js2-closure"; + homepage = "https://melpa.org/#/js2-closure"; license = lib.licenses.free; }; }) {}; @@ -14464,13 +15242,13 @@ sha256 = "0r2szaxr3q0gvxqd9asn03q8jf3nclxv4mqdsjn96s98n45x388l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-highlight-vars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-highlight-vars"; sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475"; name = "js2-highlight-vars"; }; packageRequires = [ js2-mode ]; meta = { - homepage = "http://melpa.org/#/js2-highlight-vars"; + homepage = "https://melpa.org/#/js2-highlight-vars"; license = lib.licenses.free; }; }) {}; @@ -14485,13 +15263,13 @@ sha256 = "0xj87grvg7pbhh4d239gaqai5gl72klhpp9yksaqn77qnm98q4fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-mode"; sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv"; name = "js2-mode"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/js2-mode"; + homepage = "https://melpa.org/#/js2-mode"; license = lib.licenses.free; }; }) {}; @@ -14506,13 +15284,13 @@ sha256 = "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-refactor"; sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r"; name = "js2-refactor"; }; packageRequires = [ dash js2-mode multiple-cursors s yasnippet ]; meta = { - homepage = "http://melpa.org/#/js2-refactor"; + homepage = "https://melpa.org/#/js2-refactor"; license = lib.licenses.free; }; }) {}; @@ -14527,13 +15305,13 @@ sha256 = "17d0nf1kz7mgv5qz57q6khy4w5vrmsliqirggahk9s6nnsx1j56n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/js3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js3-mode"; sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r"; name = "js3-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/js3-mode"; + homepage = "https://melpa.org/#/js3-mode"; license = lib.licenses.free; }; }) {}; @@ -14548,13 +15326,13 @@ sha256 = "0pjmslxwmlb9cb3j5qfsyxq1lg1ywzw1p9dvj330c2m7nla1j70x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jsfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jsfmt"; sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd"; name = "jsfmt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jsfmt"; + homepage = "https://melpa.org/#/jsfmt"; license = lib.licenses.free; }; }) {}; @@ -14569,13 +15347,13 @@ sha256 = "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-mode"; sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70"; name = "json-mode"; }; packageRequires = [ json-reformat json-snatcher ]; meta = { - homepage = "http://melpa.org/#/json-mode"; + homepage = "https://melpa.org/#/json-mode"; license = lib.licenses.free; }; }) {}; @@ -14590,13 +15368,13 @@ sha256 = "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-reformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-reformat"; sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na"; name = "json-reformat"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/json-reformat"; + homepage = "https://melpa.org/#/json-reformat"; license = lib.licenses.free; }; }) {}; @@ -14611,13 +15389,13 @@ sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/json-snatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-snatcher"; sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4"; name = "json-snatcher"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/json-snatcher"; + homepage = "https://melpa.org/#/json-snatcher"; license = lib.licenses.free; }; }) {}; @@ -14632,34 +15410,13 @@ sha256 = "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jsx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jsx-mode"; sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b"; name = "jsx-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jsx-mode"; - license = lib.licenses.free; - }; - }) {}; - julia-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "julia-mode"; - version = "0.4.3"; - src = fetchFromGitHub { - owner = "JuliaLang"; - repo = "julia"; - rev = "a2f713dea5ac6320d8dcf2835ac4a37ea751af05"; - sha256 = "0kvk1qiy2cj0iw2c0mx0dyr3jjvhyj1gwym6l43n7clp5kqcij1z"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/julia-mode"; - sha256 = "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm"; - name = "julia-mode"; - }; - packageRequires = []; - meta = { - homepage = "http://melpa.org/#/julia-mode"; + homepage = "https://melpa.org/#/jsx-mode"; license = lib.licenses.free; }; }) {}; @@ -14674,13 +15431,13 @@ sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jump"; sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364"; name = "jump"; }; packageRequires = [ findr inflections ]; meta = { - homepage = "http://melpa.org/#/jump"; + homepage = "https://melpa.org/#/jump"; license = lib.licenses.free; }; }) {}; @@ -14695,13 +15452,13 @@ sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jump-to-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jump-to-line"; sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr"; name = "jump-to-line"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/jump-to-line"; + homepage = "https://melpa.org/#/jump-to-line"; license = lib.licenses.free; }; }) {}; @@ -14716,13 +15473,13 @@ sha256 = "1785nsv61m51lpykai2wxrv6zmwbm5654v937fgw177p37054s83"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/jvm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jvm-mode"; sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w"; name = "jvm-mode"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/jvm-mode"; + homepage = "https://melpa.org/#/jvm-mode"; license = lib.licenses.free; }; }) {}; @@ -14737,13 +15494,13 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar"; sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l"; name = "kaesar"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/kaesar"; + homepage = "https://melpa.org/#/kaesar"; license = lib.licenses.free; }; }) {}; @@ -14758,13 +15515,13 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar-file"; sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc"; name = "kaesar-file"; }; packageRequires = [ kaesar ]; meta = { - homepage = "http://melpa.org/#/kaesar-file"; + homepage = "https://melpa.org/#/kaesar-file"; license = lib.licenses.free; }; }) {}; @@ -14779,13 +15536,13 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kaesar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar-mode"; sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry"; name = "kaesar-mode"; }; packageRequires = [ cl-lib kaesar ]; meta = { - homepage = "http://melpa.org/#/kaesar-mode"; + homepage = "https://melpa.org/#/kaesar-mode"; license = lib.licenses.free; }; }) {}; @@ -14800,13 +15557,13 @@ sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kakapo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kakapo-mode"; sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss"; name = "kakapo-mode"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/kakapo-mode"; + homepage = "https://melpa.org/#/kakapo-mode"; license = lib.licenses.free; }; }) {}; @@ -14821,13 +15578,13 @@ sha256 = "0avcg307r4navvgj3hjkggk4gr7mzs4mljhxh223r8g69l9bm6m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/karma"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/karma"; sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc"; name = "karma"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/karma"; + homepage = "https://melpa.org/#/karma"; license = lib.licenses.free; }; }) {}; @@ -14842,13 +15599,13 @@ sha256 = "14ijniyvcfmj4y77yhiplsclincng2r3jbdnmmdnwzliv65f7l6q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-combo"; sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf"; name = "key-combo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/key-combo"; + homepage = "https://melpa.org/#/key-combo"; license = lib.licenses.free; }; }) {}; @@ -14863,34 +15620,34 @@ sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/key-seq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-seq"; sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74"; name = "key-seq"; }; packageRequires = [ key-chord ]; meta = { - homepage = "http://melpa.org/#/key-seq"; + homepage = "https://melpa.org/#/key-seq"; license = lib.licenses.free; }; }) {}; keychain-environment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keychain-environment"; - version = "2.2.0"; + version = "2.3.0"; src = fetchFromGitHub { owner = "tarsius"; repo = "keychain-environment"; - rev = "40eba65a3d5581473d6a30f3a7abf73e5832b8c8"; - sha256 = "07h6s1wdc83cqf08vqm4gh2r7bihbar4a31wr0140fn4rbhicwdw"; + rev = "1ca091f72ad1d1a7620552289ae43484d853e968"; + sha256 = "0xgm80dbg45bs3k8psd3pv49z1xbvzm156xs55gmxdzbgxbzpazr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keychain-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keychain-environment"; sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v"; name = "keychain-environment"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/keychain-environment"; + homepage = "https://melpa.org/#/keychain-environment"; license = lib.licenses.free; }; }) {}; @@ -14905,13 +15662,13 @@ sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keydef"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keydef"; sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992"; name = "keydef"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/keydef"; + homepage = "https://melpa.org/#/keydef"; license = lib.licenses.free; }; }) {}; @@ -14926,34 +15683,34 @@ sha256 = "0ways4ksb9pk2kkpgclsxgc0ycfwcr8vghlbv5ic4y0c4ycmlb2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keyfreq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keyfreq"; sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7"; name = "keyfreq"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/keyfreq"; + homepage = "https://melpa.org/#/keyfreq"; license = lib.licenses.free; }; }) {}; keymap-utils = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keymap-utils"; - version = "0.5.2"; + version = "0.6.0"; src = fetchFromGitHub { owner = "tarsius"; repo = "keymap-utils"; - rev = "dd396093899a3792ef88742657e799339fd8aed5"; - sha256 = "06ajkqxv71hcrwc707ybzwfw4yzbsp6basnbs493ryr41gnvmnzs"; + rev = "dbb5ec9fa28ff3c0fbb9efcc9f75329a5aca3798"; + sha256 = "1c4qqfq7c1d31v9ap7fgq019l5vds7jzqq9c2dp4gj7j00d9vvlx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keymap-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keymap-utils"; sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9"; name = "keymap-utils"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/keymap-utils"; + homepage = "https://melpa.org/#/keymap-utils"; license = lib.licenses.free; }; }) {}; @@ -14968,13 +15725,13 @@ sha256 = "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/keyset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keyset"; sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg"; name = "keyset"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/keyset"; + homepage = "https://melpa.org/#/keyset"; license = lib.licenses.free; }; }) {}; @@ -14989,13 +15746,13 @@ sha256 = "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kibit-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kibit-helper"; sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s"; name = "kibit-helper"; }; packageRequires = [ emacs s ]; meta = { - homepage = "http://melpa.org/#/kibit-helper"; + homepage = "https://melpa.org/#/kibit-helper"; license = lib.licenses.free; }; }) {}; @@ -15010,13 +15767,13 @@ sha256 = "1c5al7cyfnb0p5ya2aa5afadzbrrc079jx3r6zpkr64psskrhdv5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kill-or-bury-alive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kill-or-bury-alive"; sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8"; name = "kill-or-bury-alive"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/kill-or-bury-alive"; + homepage = "https://melpa.org/#/kill-or-bury-alive"; license = lib.licenses.free; }; }) {}; @@ -15031,13 +15788,13 @@ sha256 = "0axvhikhg4fikiz4ifg0p4a5ygphbpjs0wd0gcbx29n0y54d1i93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kill-ring-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kill-ring-search"; sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan"; name = "kill-ring-search"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kill-ring-search"; + homepage = "https://melpa.org/#/kill-ring-search"; license = lib.licenses.free; }; }) {}; @@ -15052,13 +15809,13 @@ sha256 = "0imylcaiwpzvvb3g8kpsna1vk7v7bwdjfcsa98i41m1rv9yla86l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/killer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/killer"; sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma"; name = "killer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/killer"; + homepage = "https://melpa.org/#/killer"; license = lib.licenses.free; }; }) {}; @@ -15073,13 +15830,13 @@ sha256 = "0rzzjzkzgpiadm9awkj7wrh2hg97lhgwxg74gvdis3fc1xg2hyri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kivy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kivy-mode"; sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1"; name = "kivy-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/kivy-mode"; + homepage = "https://melpa.org/#/kivy-mode"; license = lib.licenses.free; }; }) {}; @@ -15094,13 +15851,13 @@ sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/know-your-http-well"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/know-your-http-well"; sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q"; name = "know-your-http-well"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/know-your-http-well"; + homepage = "https://melpa.org/#/know-your-http-well"; license = lib.licenses.free; }; }) {}; @@ -15115,13 +15872,13 @@ sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/kurecolor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kurecolor"; sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f"; name = "kurecolor"; }; packageRequires = [ emacs s ]; meta = { - homepage = "http://melpa.org/#/kurecolor"; + homepage = "https://melpa.org/#/kurecolor"; license = lib.licenses.free; }; }) {}; @@ -15136,34 +15893,34 @@ sha256 = "1i8wbhc6i88plpq48ccka0avdj2x5rcxm81j93dmwp70ld0zws8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/langtool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/langtool"; sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw"; name = "langtool"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/langtool"; + homepage = "https://melpa.org/#/langtool"; license = lib.licenses.free; }; }) {}; latex-extra = callPackage ({ auctex, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-extra"; - version = "1.11"; + version = "1.13"; src = fetchFromGitHub { owner = "Malabarba"; repo = "latex-extra"; - rev = "455b7873de095cbce6aa256f33cf64dba3dbaa29"; - sha256 = "1rr6cgx70avqf1b19la7g8cav926676a76cflkkw18c1bsw83ss3"; + rev = "d5b759fa61da968c3ca998ba0d2ef4a73647e5fd"; + sha256 = "07aavdr1dlw8hca27l8a0i8cs5ga1wqqdf1v1iyvjz61vygld77a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-extra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-extra"; sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj"; name = "latex-extra"; }; packageRequires = [ auctex cl-lib ]; meta = { - homepage = "http://melpa.org/#/latex-extra"; + homepage = "https://melpa.org/#/latex-extra"; license = lib.licenses.free; }; }) {}; @@ -15178,34 +15935,34 @@ sha256 = "118xrgrnwsmsysmframf6bmb0gkrdrm3jbkgivzxs41cw92fhbzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-math-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-math-preview"; sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr"; name = "latex-math-preview"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/latex-math-preview"; + homepage = "https://melpa.org/#/latex-math-preview"; license = lib.licenses.free; }; }) {}; latex-unicode-math-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-unicode-math-mode"; - version = "0.2.3"; + version = "0.2.5"; src = fetchFromGitHub { owner = "Christoph-D"; repo = "latex-unicode-math-mode"; - rev = "71da85b55870aa870be722ced9d1f7df54b17f97"; - sha256 = "165qhh6cfrr24yg0qvpq4vk64a70z30nchkbbhhwg4f6ib7v5f5h"; + rev = "79edf60793eb6928a5b4831268bf09694fd092ec"; + sha256 = "10i4r81pm95990d4yrabzdm49gp47mqpv15h4r4sih10p1kbn83h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/latex-unicode-math-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-unicode-math-mode"; sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr"; name = "latex-unicode-math-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/latex-unicode-math-mode"; + homepage = "https://melpa.org/#/latex-unicode-math-mode"; license = lib.licenses.free; }; }) {}; @@ -15216,17 +15973,17 @@ src = fetchFromGitHub { owner = "ledger"; repo = "ledger"; - rev = "b7f84d69001f75a18807772dee514f5918e3a926"; - sha256 = "0vm32jv36s6kprmqbij5rpjg9djj3qsla4gpbpm8nycfg73bgylw"; + rev = "b08c03f05e2cfe7c4071a51075e83221edb24c33"; + sha256 = "0g0lz66lclr8fjlv6rr86l3sx3ib6s78ryvzffc3yy7pwz4xl0gx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ledger-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ledger-mode"; sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s"; name = "ledger-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ledger-mode"; + homepage = "https://melpa.org/#/ledger-mode"; license = lib.licenses.free; }; }) {}; @@ -15241,13 +15998,13 @@ sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lentic"; sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m"; name = "lentic"; }; packageRequires = [ dash emacs f m-buffer s ]; meta = { - homepage = "http://melpa.org/#/lentic"; + homepage = "https://melpa.org/#/lentic"; license = lib.licenses.free; }; }) {}; @@ -15262,13 +16019,13 @@ sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/less-css-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/less-css-mode"; sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8"; name = "less-css-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/less-css-mode"; + homepage = "https://melpa.org/#/less-css-mode"; license = lib.licenses.free; }; }) {}; @@ -15283,34 +16040,34 @@ sha256 = "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/letcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/letcheck"; sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2"; name = "letcheck"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/letcheck"; + homepage = "https://melpa.org/#/letcheck"; license = lib.licenses.free; }; }) {}; lfe-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lfe-mode"; - version = "0.10.1"; + version = "1.0.2"; src = fetchFromGitHub { owner = "rvirding"; repo = "lfe"; - rev = "d7bc80da04aedd0a607f17d8d149eba363872b4b"; - sha256 = "1w9n5v4g4w34gii6nk2aan4w230dmm0dhml4s9q1fzmvk1ngld6k"; + rev = "cd96efc3d2a73ecff7f3e2ef3563b73b098e4844"; + sha256 = "1n84vqxv4jqy5mnb1hbrqrhavq0y8c4mjsp0smg48bzi18350irl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lfe-mode"; - sha256 = "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lfe-mode"; + sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs"; name = "lfe-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lfe-mode"; + homepage = "https://melpa.org/#/lfe-mode"; license = lib.licenses.free; }; }) {}; @@ -15325,13 +16082,13 @@ sha256 = "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lice"; sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x"; name = "lice"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lice"; + homepage = "https://melpa.org/#/lice"; license = lib.licenses.free; }; }) {}; @@ -15346,13 +16103,13 @@ sha256 = "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lingr"; sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff"; name = "lingr"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lingr"; + homepage = "https://melpa.org/#/lingr"; license = lib.licenses.free; }; }) {}; @@ -15367,13 +16124,13 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/link"; sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8"; name = "link"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/link"; + homepage = "https://melpa.org/#/link"; license = lib.licenses.free; }; }) {}; @@ -15388,13 +16145,13 @@ sha256 = "1v4fadxv7ym6lc09nd2xpz2k5vrikjv7annw99ii5cqrwhqa5838"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/link-hint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/link-hint"; sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89"; name = "link-hint"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/link-hint"; + homepage = "https://melpa.org/#/link-hint"; license = lib.licenses.free; }; }) {}; @@ -15409,13 +16166,13 @@ sha256 = "1m4g4b96cxs05pfln7kdi6gvrdbv76f8dk806py5lq0gq7da2csc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/linum-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/linum-relative"; sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj"; name = "linum-relative"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/linum-relative"; + homepage = "https://melpa.org/#/linum-relative"; license = lib.licenses.free; }; }) {}; @@ -15430,7 +16187,7 @@ sha256 = "05iqhnhj61f30yk4ih63rimmyp134gyq18frc8qgrnwym64dsm6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lispy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lispy"; sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g"; name = "lispy"; }; @@ -15443,7 +16200,7 @@ swiper ]; meta = { - homepage = "http://melpa.org/#/lispy"; + homepage = "https://melpa.org/#/lispy"; license = lib.licenses.free; }; }) {}; @@ -15458,13 +16215,13 @@ sha256 = "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lispyscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lispyscript-mode"; sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr"; name = "lispyscript-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lispyscript-mode"; + homepage = "https://melpa.org/#/lispyscript-mode"; license = lib.licenses.free; }; }) {}; @@ -15479,13 +16236,13 @@ sha256 = "197cqkiwxgamhfwbc8h492cmjll3fypkwzcphj26dfnr22v63kwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-packages-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-packages-ext"; sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk"; name = "list-packages-ext"; }; packageRequires = [ ht persistent-soft s ]; meta = { - homepage = "http://melpa.org/#/list-packages-ext"; + homepage = "https://melpa.org/#/list-packages-ext"; license = lib.licenses.free; }; }) {}; @@ -15500,34 +16257,34 @@ sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-unicode-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-unicode-display"; sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha"; name = "list-unicode-display"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/list-unicode-display"; + homepage = "https://melpa.org/#/list-unicode-display"; license = lib.licenses.free; }; }) {}; list-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-utils"; - version = "0.4.2"; + version = "0.4.4"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "list-utils"; - rev = "ecd6c91c71e37734af9ff4df003cb96b9d236a97"; - sha256 = "0dmcmvf3dxmp1f71nq5xwsdrnyb04qr14ay4ckpaca2bmi7q0x5x"; + rev = "acf18aca1131a90f8d673974673e3c5d8fdc6a86"; + sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/list-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-utils"; sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3"; name = "list-utils"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/list-utils"; + homepage = "https://melpa.org/#/list-utils"; license = lib.licenses.free; }; }) {}; @@ -15542,13 +16299,13 @@ sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lit-mode"; sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59"; name = "lit-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lit-mode"; + homepage = "https://melpa.org/#/lit-mode"; license = lib.licenses.free; }; }) {}; @@ -15563,13 +16320,13 @@ sha256 = "1fh9wrw5irn0g3dy8gkk63csdcxgi3w2038mxx3sk6ki3r2bmhw8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/literate-coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/literate-coffee-mode"; sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40"; name = "literate-coffee-mode"; }; packageRequires = [ coffee-mode ]; meta = { - homepage = "http://melpa.org/#/literate-coffee-mode"; + homepage = "https://melpa.org/#/literate-coffee-mode"; license = lib.licenses.free; }; }) {}; @@ -15584,34 +16341,55 @@ sha256 = "1cwydbhhbs5v9y2s872zxc5lflqmfrdvnc8xz0qars52d7lg4br5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/live-code-talks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/live-code-talks"; sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma"; name = "live-code-talks"; }; packageRequires = [ cl-lib emacs narrowed-page-navigation ]; meta = { - homepage = "http://melpa.org/#/live-code-talks"; + homepage = "https://melpa.org/#/live-code-talks"; license = lib.licenses.free; }; }) {}; live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "live-py-mode"; - version = "2.9.0"; + version = "2.10.1"; src = fetchFromGitHub { owner = "donkirkby"; repo = "live-py-plugin"; - rev = "d7e8f86e615186afb514c1fdeb6eb9e62babd10a"; - sha256 = "0bkrs12b6zprkia9p41r5sd2n6y66bgxa6fmbz16v1gjpzzqdayq"; + rev = "f040dab8f3f09c3cc68f5ffaa06df92b50422c8f"; + sha256 = "03ickn42s7a4rxx6p596l13nsh1vgq2s3194bgd6gbm3i0f3mlhy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/live-py-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/live-py-mode"; sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq"; name = "live-py-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/live-py-mode"; + homepage = "https://melpa.org/#/live-py-mode"; + license = lib.licenses.free; + }; + }) {}; + load-relative = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "load-relative"; + version = "1.0"; + src = fetchFromGitHub { + owner = "rocky"; + repo = "emacs-load-relative"; + rev = "15ffaa9ebf1b7bbfcc307d1716eec135253b3b8d"; + sha256 = "1fq4bnngbh9a18hq8mvnqkzs74k3g4c0lmwsncbhy6n21njv3kdy"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/load-relative"; + sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay"; + name = "load-relative"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/load-relative"; license = lib.licenses.free; }; }) {}; @@ -15626,13 +16404,13 @@ sha256 = "1089sbx20r30sis39vwy29fxhb2n3hh35rdv09lpzdxdq01s8wwp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/loc-changes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/loc-changes"; sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh"; name = "loc-changes"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/loc-changes"; + homepage = "https://melpa.org/#/loc-changes"; license = lib.licenses.free; }; }) {}; @@ -15647,34 +16425,13 @@ sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/log4e"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/log4e"; sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34"; name = "log4e"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/log4e"; - license = lib.licenses.free; - }; - }) {}; - log4j-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "log4j-mode"; - version = "1.3"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "log4j-mode"; - rev = "ec3de92cfe60dd3d0de613e9062476196dea0faf"; - sha256 = "14dmmjdmcc0zag8i947n59ihjc2df2l44f7issf66767ym3839kk"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/553e27a3523ade9dc4951086d9340e8240d5d943/recipes/log4j-mode"; - sha256 = "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg"; - name = "log4j-mode"; - }; - packageRequires = []; - meta = { - homepage = "http://melpa.org/#/log4j-mode"; + homepage = "https://melpa.org/#/log4e"; license = lib.licenses.free; }; }) {}; @@ -15689,13 +16446,13 @@ sha256 = "0g5vq9xy9lwczs77lr91c1srhhfmasnnnmjvgc55hbl6iwmbizbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logalimacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logalimacs"; sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6"; name = "logalimacs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/logalimacs"; + homepage = "https://melpa.org/#/logalimacs"; license = lib.licenses.free; }; }) {}; @@ -15710,13 +16467,13 @@ sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logito"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logito"; sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l"; name = "logito"; }; packageRequires = [ eieio ]; meta = { - homepage = "http://melpa.org/#/logito"; + homepage = "https://melpa.org/#/logito"; license = lib.licenses.free; }; }) {}; @@ -15731,13 +16488,13 @@ sha256 = "1yacic778ranlqblrcdhyf5igbrcin8aj30vjdm4klpmqb73hf1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/logview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logview"; sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh"; name = "logview"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/logview"; + homepage = "https://melpa.org/#/logview"; license = lib.licenses.free; }; }) {}; @@ -15752,13 +16509,13 @@ sha256 = "1rpvw0dvym559vb4nrfy74jq06nbsz2b0n60lcykagcir8mpcidk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/loop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/loop"; sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar"; name = "loop"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/loop"; + homepage = "https://melpa.org/#/loop"; license = lib.licenses.free; }; }) {}; @@ -15773,13 +16530,13 @@ sha256 = "11y5jyq4xg9zlm1qi2y97nh05vhva9pai9yyr4x2pr41xz3s8fpk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/love-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/love-minor-mode"; sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m"; name = "love-minor-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/love-minor-mode"; + homepage = "https://melpa.org/#/love-minor-mode"; license = lib.licenses.free; }; }) {}; @@ -15794,13 +16551,13 @@ sha256 = "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/lua-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lua-mode"; sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94"; name = "lua-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/lua-mode"; + homepage = "https://melpa.org/#/lua-mode"; license = lib.licenses.free; }; }) {}; @@ -15815,13 +16572,13 @@ sha256 = "01847f8xmjfxvvi7hf73l7ypkdazwg8ciinm117zp4jkgnv0apz0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/m-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/m-buffer"; sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc"; name = "m-buffer"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/m-buffer"; + homepage = "https://melpa.org/#/m-buffer"; license = lib.licenses.free; }; }) {}; @@ -15836,34 +16593,34 @@ sha256 = "0dgsl1x6r8m9vvff1ia0kmz21h0dji2jl5cqlpx1m947zh45dahj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/macro-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/macro-math"; sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00"; name = "macro-math"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/macro-math"; + homepage = "https://melpa.org/#/macro-math"; license = lib.licenses.free; }; }) {}; - macrostep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + macrostep = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "macrostep"; - version = "0.8"; + version = "0.9"; src = fetchFromGitHub { owner = "joddie"; repo = "macrostep"; - rev = "8950313a4e6e3e4bc1d9b0ce4ad4e3bf2f3eb73a"; - sha256 = "0dkigxa39f3cmndxw79mgadwsj7w3bphns6l2hzhv6w0wdllpifp"; + rev = "1e2593279f3722e31d8a8f07e297a5c546586cba"; + sha256 = "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/macrostep"; sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c"; name = "macrostep"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/macrostep"; + homepage = "https://melpa.org/#/macrostep"; license = lib.licenses.free; }; }) {}; @@ -15878,28 +16635,28 @@ sha256 = "0i38942lr4b7d624313hgydyy0ynmd6psjkz8xcvbb7gw0kcc436"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magic-filetype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magic-filetype"; sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg"; name = "magic-filetype"; }; packageRequires = [ emacs s ]; meta = { - homepage = "http://melpa.org/#/magic-filetype"; + homepage = "https://melpa.org/#/magic-filetype"; license = lib.licenses.free; }; }) {}; magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }: melpaBuild { pname = "magit"; - version = "2.5.0"; + version = "2.6.2"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "a3747edc8a4cddc408f7718a3371b46a4b610744"; - sha256 = "0dydm0gj6jbybi5nkqrpi5bic5yxhz0p5k5gayqzqzmnb1fhl247"; + rev = "2e6dcf8fe8672dca67e59a72975c2d850ce9bc16"; + sha256 = "0qdahg3vqha391nnspbqa5bjvi2g3jb277c5wzbfs132m4n076j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit"; sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q"; name = "magit"; }; @@ -15912,7 +16669,7 @@ with-editor ]; meta = { - homepage = "http://melpa.org/#/magit"; + homepage = "https://melpa.org/#/magit"; license = lib.licenses.free; }; }) {}; @@ -15927,13 +16684,13 @@ sha256 = "0d7dick96g1vj6c9wh10rgwhwv5j3ixgw1m3z45szszswlrp1bih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-annex"; sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys"; name = "magit-annex"; }; packageRequires = [ cl-lib magit ]; meta = { - homepage = "http://melpa.org/#/magit-annex"; + homepage = "https://melpa.org/#/magit-annex"; license = lib.licenses.free; }; }) {}; @@ -15948,13 +16705,13 @@ sha256 = "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-filenotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-filenotify"; sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7"; name = "magit-filenotify"; }; packageRequires = [ emacs magit ]; meta = { - homepage = "http://melpa.org/#/magit-filenotify"; + homepage = "https://melpa.org/#/magit-filenotify"; license = lib.licenses.free; }; }) {}; @@ -15963,19 +16720,19 @@ pname = "magit-find-file"; version = "2.1.0"; src = fetchFromGitHub { - owner = "bradleywright"; + owner = "bradwright"; repo = "magit-find-file.el"; rev = "035da838b1a19e7a5ee135b4ca8475f4e235b61e"; sha256 = "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-find-file"; - sha256 = "1d5flydyhwhvhlhi541zcnz2b03bi07zrp21bfz5sm069bf2c96b"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-find-file"; + sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik"; name = "magit-find-file"; }; packageRequires = [ dash magit ]; meta = { - homepage = "http://melpa.org/#/magit-find-file"; + homepage = "https://melpa.org/#/magit-find-file"; license = lib.licenses.free; }; }) {}; @@ -15990,13 +16747,13 @@ sha256 = "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gerrit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gerrit"; sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4"; name = "magit-gerrit"; }; packageRequires = [ magit ]; meta = { - homepage = "http://melpa.org/#/magit-gerrit"; + homepage = "https://melpa.org/#/magit-gerrit"; license = lib.licenses.free; }; }) {}; @@ -16011,76 +16768,76 @@ sha256 = "19iqa2kzarpa75xy34hqvpy1y7dzx84pj540wwkj04dnpb4fwj2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gh-pulls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gh-pulls"; sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d"; name = "magit-gh-pulls"; }; packageRequires = [ emacs gh magit pcache s ]; meta = { - homepage = "http://melpa.org/#/magit-gh-pulls"; + homepage = "https://melpa.org/#/magit-gh-pulls"; license = lib.licenses.free; }; }) {}; magit-gitflow = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild }: melpaBuild { pname = "magit-gitflow"; - version = "2.0.1"; + version = "2.0.2"; src = fetchFromGitHub { owner = "jtatarik"; repo = "magit-gitflow"; - rev = "46dc3f20b6f6d5e91e9765da372c909e9cc7b355"; - sha256 = "1ar9gdp4svymibr9arrlxil1xm1x41gxinlifdb8lgpmawb62d9w"; + rev = "e65ac501b603f245737b0fb73e71520356924f3f"; + sha256 = "0g9wqd4dbd0spal7ss9k679nak02hr1z0mgq6k4g5nkgngwn6l2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-gitflow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gitflow"; sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf"; name = "magit-gitflow"; }; packageRequires = [ magit magit-popup ]; meta = { - homepage = "http://melpa.org/#/magit-gitflow"; + homepage = "https://melpa.org/#/magit-gitflow"; license = lib.licenses.free; }; }) {}; magit-popup = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "magit-popup"; - version = "2.5.0"; + version = "2.6.2"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "a3747edc8a4cddc408f7718a3371b46a4b610744"; - sha256 = "0dydm0gj6jbybi5nkqrpi5bic5yxhz0p5k5gayqzqzmnb1fhl247"; + rev = "2e6dcf8fe8672dca67e59a72975c2d850ce9bc16"; + sha256 = "0qdahg3vqha391nnspbqa5bjvi2g3jb277c5wzbfs132m4n076j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-popup"; sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj"; name = "magit-popup"; }; packageRequires = [ async dash emacs ]; meta = { - homepage = "http://melpa.org/#/magit-popup"; + homepage = "https://melpa.org/#/magit-popup"; license = lib.licenses.free; }; }) {}; magit-rockstar = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-rockstar"; - version = "1.0.0"; + version = "1.0.2"; src = fetchFromGitHub { owner = "tarsius"; repo = "magit-rockstar"; - rev = "6d572b9371c366814b3b071aa6301e503a47fbdd"; - sha256 = "1pqbrrp4366kwfk1d32h2lb70id32ynfc03i7m2832w97f1xp16c"; + rev = "16b576c45d5ce1ffda80f0db5d779b9c548a5adb"; + sha256 = "1wxk7h1v123h4m20fk5h70an17zzkfr437xyqjpcy085qqz679jr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-rockstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-rockstar"; sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n"; name = "magit-rockstar"; }; packageRequires = [ dash magit ]; meta = { - homepage = "http://melpa.org/#/magit-rockstar"; + homepage = "https://melpa.org/#/magit-rockstar"; license = lib.licenses.free; }; }) {}; @@ -16095,13 +16852,13 @@ sha256 = "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-stgit"; sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv"; name = "magit-stgit"; }; packageRequires = [ emacs magit ]; meta = { - homepage = "http://melpa.org/#/magit-stgit"; + homepage = "https://melpa.org/#/magit-stgit"; license = lib.licenses.free; }; }) {}; @@ -16116,13 +16873,13 @@ sha256 = "1g8zq0s38di96wlhljp370kyj4a0ir1z3vb94k66v2m5nj83ap68"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-svn"; sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0"; name = "magit-svn"; }; packageRequires = [ emacs magit ]; meta = { - homepage = "http://melpa.org/#/magit-svn"; + homepage = "https://melpa.org/#/magit-svn"; license = lib.licenses.free; }; }) {}; @@ -16137,13 +16894,13 @@ sha256 = "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/magit-topgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-topgit"; sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i"; name = "magit-topgit"; }; packageRequires = [ emacs magit ]; meta = { - homepage = "http://melpa.org/#/magit-topgit"; + homepage = "https://melpa.org/#/magit-topgit"; license = lib.licenses.free; }; }) {}; @@ -16158,13 +16915,13 @@ sha256 = "0fp5gbin1sgsdz39spk74vadkzig3ydwhpzx9vg7f231kk5f6wzx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/make-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/make-color"; sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k"; name = "make-color"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/make-color"; + homepage = "https://melpa.org/#/make-color"; license = lib.licenses.free; }; }) {}; @@ -16179,13 +16936,13 @@ sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/makey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/makey"; sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4"; name = "makey"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/makey"; + homepage = "https://melpa.org/#/makey"; license = lib.licenses.free; }; }) {}; @@ -16200,13 +16957,13 @@ sha256 = "0z0ml7l1a45ych61qfc5fvkybl9hh37pgl6lzkaz6mcif1sl8gn1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/malabar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/malabar-mode"; sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk"; name = "malabar-mode"; }; packageRequires = [ fringe-helper ]; meta = { - homepage = "http://melpa.org/#/malabar-mode"; + homepage = "https://melpa.org/#/malabar-mode"; license = lib.licenses.free; }; }) {}; @@ -16221,13 +16978,13 @@ sha256 = "0hwxwwjzjxv2mmkxmalr2hp3x8apwcyvn2bz4d4yd4wrzcscay97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/malinka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/malinka"; sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp"; name = "malinka"; }; packageRequires = [ cl-lib dash f projectile rtags s ]; meta = { - homepage = "http://melpa.org/#/malinka"; + homepage = "https://melpa.org/#/malinka"; license = lib.licenses.free; }; }) {}; @@ -16242,13 +16999,13 @@ sha256 = "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mallard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mallard-mode"; sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd"; name = "mallard-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mallard-mode"; + homepage = "https://melpa.org/#/mallard-mode"; license = lib.licenses.free; }; }) {}; @@ -16263,13 +17020,13 @@ sha256 = "1fkijm0gikbwmxa9hf7s1rcwb0ipzjygd1mlicsm78rxvdd8k877"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/map-progress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/map-progress"; sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7"; name = "map-progress"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/map-progress"; + homepage = "https://melpa.org/#/map-progress"; license = lib.licenses.free; }; }) {}; @@ -16284,13 +17041,13 @@ sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/map-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/map-regexp"; sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj"; name = "map-regexp"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/map-regexp"; + homepage = "https://melpa.org/#/map-regexp"; license = lib.licenses.free; }; }) {}; @@ -16305,13 +17062,13 @@ sha256 = "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marcopolo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marcopolo"; sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0"; name = "marcopolo"; }; packageRequires = [ dash pkg-info request s ]; meta = { - homepage = "http://melpa.org/#/marcopolo"; + homepage = "https://melpa.org/#/marcopolo"; license = lib.licenses.free; }; }) {}; @@ -16326,13 +17083,13 @@ sha256 = "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mark-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mark-tools"; sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq"; name = "mark-tools"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mark-tools"; + homepage = "https://melpa.org/#/mark-tools"; license = lib.licenses.free; }; }) {}; @@ -16347,13 +17104,13 @@ sha256 = "098lf4n4rpx00sm07sy8dwp683a4sb7x0p15mrfp268apir3kkxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-mode"; sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14"; name = "markdown-mode"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/markdown-mode"; + homepage = "https://melpa.org/#/markdown-mode"; license = lib.licenses.free; }; }) {}; @@ -16368,13 +17125,13 @@ sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-mode+"; sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00"; name = "markdown-mode-plus"; }; packageRequires = [ markdown-mode ]; meta = { - homepage = "http://melpa.org/#/markdown-mode+"; + homepage = "https://melpa.org/#/markdown-mode+"; license = lib.licenses.free; }; }) {}; @@ -16389,34 +17146,34 @@ sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-preview-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-preview-mode"; sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg"; name = "markdown-preview-mode"; }; packageRequires = [ cl-lib markdown-mode websocket ]; meta = { - homepage = "http://melpa.org/#/markdown-preview-mode"; + homepage = "https://melpa.org/#/markdown-preview-mode"; license = lib.licenses.free; }; }) {}; markdown-toc = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, s }: melpaBuild { pname = "markdown-toc"; - version = "0.0.9"; + version = "0.1.0"; src = fetchFromGitHub { owner = "ardumont"; repo = "markdown-toc"; - rev = "c2ac578113015ba7d3377c0756a4d00c61ba2e17"; - sha256 = "0jgr327qlh7acwi6sld27xdsvr89parspk6wmfklwszvy1v13633"; + rev = "c5d44470f8fb0f61bc96e58dec998010edcc0e95"; + sha256 = "0l687bna8rrc49y1fyn1ldjcwh290qgvi3p86c63yj4xy24fmdm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markdown-toc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-toc"; sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv"; name = "markdown-toc"; }; packageRequires = [ dash markdown-mode s ]; meta = { - homepage = "http://melpa.org/#/markdown-toc"; + homepage = "https://melpa.org/#/markdown-toc"; license = lib.licenses.free; }; }) {}; @@ -16431,13 +17188,13 @@ sha256 = "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/markup-faces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markup-faces"; sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq"; name = "markup-faces"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/markup-faces"; + homepage = "https://melpa.org/#/markup-faces"; license = lib.licenses.free; }; }) {}; @@ -16452,13 +17209,13 @@ sha256 = "0pbli67wia8pximvgd68x6i9acdgsk51g9hjpqfm49rqg5nqalh9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marmalade"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marmalade"; sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s"; name = "marmalade"; }; packageRequires = [ furl ]; meta = { - homepage = "http://melpa.org/#/marmalade"; + homepage = "https://melpa.org/#/marmalade"; license = lib.licenses.free; }; }) {}; @@ -16473,33 +17230,54 @@ sha256 = "0sriyjjhgis7fgq276j5mw6n84jdwxf8lq0iqqiaqwmc66l985mv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/marshal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marshal"; sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl"; name = "marshal"; }; packageRequires = [ eieio json ]; meta = { - homepage = "http://melpa.org/#/marshal"; + homepage = "https://melpa.org/#/marshal"; + license = lib.licenses.free; + }; + }) {}; + math-symbol-lists = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "math-symbol-lists"; + version = "1.1"; + src = fetchFromGitHub { + owner = "vspinu"; + repo = "math-symbol-lists"; + rev = "d11f74fef06d93637e28f32e16edfb5b0ccd064d"; + sha256 = "127q9xp015j28gjcna988dnrkadznn0xw8sdfvi943nhhqy4yvri"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/math-symbol-lists"; + sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27"; + name = "math-symbol-lists"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/math-symbol-lists"; license = lib.licenses.free; }; }) {}; matrix-client = callPackage ({ fetchgit, fetchurl, json ? null, lib, melpaBuild, request }: melpaBuild { pname = "matrix-client"; - version = "0.3.0"; + version = "1.0.0"; src = fetchgit { url = "git://fort.kickass.systems/personal/rrix/pub/matrix.el"; - rev = "421ad8ebf3858acc99634a4cca442c57ca2b3707"; - sha256 = "34e1f7bd0c4ab21b2b0ca6d2a6ba83c9a1a5591e9de9ceb1c5f8fe06a4738acb"; + rev = "087e5520a3a1f9a8fcaa1ce61b4c06bc55a63605"; + sha256 = "0z79l8md683vvc51fz0nmbazb6i7hklkm0asglflr96pldil50l8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/matrix-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/matrix-client"; sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6"; name = "matrix-client"; }; packageRequires = [ json request ]; meta = { - homepage = "http://melpa.org/#/matrix-client"; + homepage = "https://melpa.org/#/matrix-client"; license = lib.licenses.free; }; }) {}; @@ -16514,13 +17292,13 @@ sha256 = "0x92b1qrhyrdh0z0xriyjc12h0wpk16x4yawj5i828ca6mz0qh5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maven-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maven-test-mode"; sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm"; name = "maven-test-mode"; }; packageRequires = [ emacs s ]; meta = { - homepage = "http://melpa.org/#/maven-test-mode"; + homepage = "https://melpa.org/#/maven-test-mode"; license = lib.licenses.free; }; }) {}; @@ -16535,34 +17313,34 @@ sha256 = "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/maxframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maxframe"; sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj"; name = "maxframe"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/maxframe"; + homepage = "https://melpa.org/#/maxframe"; license = lib.licenses.free; }; }) {}; mb-url = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mb-url"; - version = "0.0.3"; + version = "0.0.5"; src = fetchFromGitHub { owner = "dochang"; repo = "mb-url"; - rev = "34234214d1e62b9980cc64dac582e6771c92638d"; - sha256 = "1si2givpzihjb1szbcdm3iy9kkm7bj0hq10s0h2dfm8axdnlirm5"; + rev = "0ffd1a67161ebbe10fa6ad8064343eead2f79eae"; + sha256 = "1g90f8ysj35bw9686gb3sczxqg3ilj3a7xnfskrkbp2llpvd5y43"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mb-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mb-url"; sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h"; name = "mb-url"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/mb-url"; + homepage = "https://melpa.org/#/mb-url"; license = lib.licenses.free; }; }) {}; @@ -16577,13 +17355,13 @@ sha256 = "00gwd2jf5ncgyay5w2jc2mhv18jf4ydnzpfkxaxw9zjbdxg4ym2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mbe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mbe"; sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3"; name = "mbe"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/mbe"; + homepage = "https://melpa.org/#/mbe"; license = lib.licenses.free; }; }) {}; @@ -16598,13 +17376,13 @@ sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mc-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mc-extras"; sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym"; name = "mc-extras"; }; packageRequires = [ multiple-cursors ]; meta = { - homepage = "http://melpa.org/#/mc-extras"; + homepage = "https://melpa.org/#/mc-extras"; license = lib.licenses.free; }; }) {}; @@ -16619,13 +17397,13 @@ sha256 = "1vsla0a5x4kfyj3ca4r1v8cspp12dadi0frpailclaxfmpmpl5d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mediawiki"; sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6"; name = "mediawiki"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mediawiki"; + homepage = "https://melpa.org/#/mediawiki"; license = lib.licenses.free; }; }) {}; @@ -16640,13 +17418,13 @@ sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/melpa-upstream-visit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/melpa-upstream-visit"; sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf"; name = "melpa-upstream-visit"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/melpa-upstream-visit"; + homepage = "https://melpa.org/#/melpa-upstream-visit"; license = lib.licenses.free; }; }) {}; @@ -16661,13 +17439,13 @@ sha256 = "1y4ra5z3ayw3w7dszzlkk3qz3nv2jg1vvx8cf0y5j1pqpx8vy3jf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mentor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mentor"; sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s"; name = "mentor"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mentor"; + homepage = "https://melpa.org/#/mentor"; license = lib.licenses.free; }; }) {}; @@ -16678,38 +17456,38 @@ src = fetchFromGitHub { owner = "the-lambda-church"; repo = "merlin"; - rev = "a532512e15b10d04ffd8281ac5406160f2764005"; - sha256 = "1amb375dpy5al1ddh2ln9l1lw6xqfjigld6y5k7vvh730zild824"; + rev = "708b083ac8081c5b07e8bfb6e179a0c6e7d171ac"; + sha256 = "09yjgf3li4hgljcrwlg195wa6a8l7zm8ia1slbpsrjgwnc15wqrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/merlin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/merlin"; sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp"; name = "merlin"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/merlin"; + homepage = "https://melpa.org/#/merlin"; license = lib.licenses.free; }; }) {}; metafmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "metafmt"; - version = "0.0.1"; + version = "0.0.3"; src = fetchFromGitHub { owner = "lvillani"; repo = "metafmt"; - rev = "19dc36b3d085bba6f8e59ddbb1cbb7e2c085c461"; - sha256 = "0zxal6alf99a2zfzizckibp5iwdk9kklfhml2r0r3wfvswb0rb3z"; + rev = "bd20fc67d0affd48c1199315b7da06a7182e7d76"; + sha256 = "0n4nv1s25z70xfy3bl1wy467abz3agj4qmpx4rwdwzbarnqp9ps3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/metafmt"; - sha256 = "0vx1xrjr10nd90cr6ppgd3kc3c8bhkg3m4clnb50zagkpfqsy9ma"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/metafmt"; + sha256 = "1ca102al7r3k2g92b4jkqv53crnmxy3z7cz31w1rprf41s69mn75"; name = "metafmt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/metafmt"; + homepage = "https://melpa.org/#/metafmt"; license = lib.licenses.free; }; }) {}; @@ -16719,18 +17497,18 @@ version = "0.1.1"; src = fetchFromGitHub { owner = "punchagan"; - repo = "metaweblog.el"; + repo = "metaweblog"; rev = "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb"; sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/metaweblog"; - sha256 = "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/metaweblog"; + sha256 = "10kwqnfafby4ap0572mfkkdssr13y9p2gl9z3nmxqjjy04fkfi8b"; name = "metaweblog"; }; packageRequires = [ xml-rpc ]; meta = { - homepage = "http://melpa.org/#/metaweblog"; + homepage = "https://melpa.org/#/metaweblog"; license = lib.licenses.free; }; }) {}; @@ -16745,13 +17523,13 @@ sha256 = "1dhws4a298zrm88cdn66sikdk06n0p60d32cxsgybakkhg5c5wgr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mew"; sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk"; name = "mew"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mew"; + homepage = "https://melpa.org/#/mew"; license = lib.licenses.free; }; }) {}; @@ -16766,13 +17544,34 @@ sha256 = "1bp4xqklf422n0zwwyj0ag3a4nndg8klazrga6rlvpy01hgg3drl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mhc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mhc"; sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql"; name = "mhc"; }; packageRequires = [ calfw ]; meta = { - homepage = "http://melpa.org/#/mhc"; + homepage = "https://melpa.org/#/mhc"; + license = lib.licenses.free; + }; + }) {}; + mic-paren = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "mic-paren"; + version = "3.10"; + src = fetchFromGitHub { + owner = "emacsmirror"; + repo = "mic-paren"; + rev = "e4cf6e1a0ee91e849a9d42ecdcd6ed0287f8a521"; + sha256 = "1cdjpqrsv2vhpdmv67krsds7wz19z9ajkabawr3yhxqii4myl4ik"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mic-paren"; + sha256 = "042dzp0nal18nxq94qlwwksh0nnypsyc0yykmc6l3kayp9pv4hw7"; + name = "mic-paren"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/mic-paren"; license = lib.licenses.free; }; }) {}; @@ -16787,13 +17586,13 @@ sha256 = "1ckb5hymwj4wmsxakalsky4mkzn9vxhxr6416b2cr6r5jxj4xgsl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/migemo"; sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr"; name = "migemo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/migemo"; + homepage = "https://melpa.org/#/migemo"; license = lib.licenses.free; }; }) {}; @@ -16808,13 +17607,13 @@ sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/milkode"; sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh"; name = "milkode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/milkode"; + homepage = "https://melpa.org/#/milkode"; license = lib.licenses.free; }; }) {}; @@ -16829,13 +17628,13 @@ sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minibuffer-complete-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minibuffer-complete-cycle"; sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2"; name = "minibuffer-complete-cycle"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/minibuffer-complete-cycle"; + homepage = "https://melpa.org/#/minibuffer-complete-cycle"; license = lib.licenses.free; }; }) {}; @@ -16850,13 +17649,13 @@ sha256 = "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minibuffer-cua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minibuffer-cua"; sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw"; name = "minibuffer-cua"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/minibuffer-cua"; + homepage = "https://melpa.org/#/minibuffer-cua"; license = lib.licenses.free; }; }) {}; @@ -16871,13 +17670,13 @@ sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/miniedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/miniedit"; sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87"; name = "miniedit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/miniedit"; + homepage = "https://melpa.org/#/miniedit"; license = lib.licenses.free; }; }) {}; @@ -16892,13 +17691,13 @@ sha256 = "0kjhn48sf2ps3k5pv06gqmqc4hlk6di9ld3ssw6vwfh8313x1fc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minimal-session-saver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minimal-session-saver"; sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i"; name = "minimal-session-saver"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/minimal-session-saver"; + homepage = "https://melpa.org/#/minimal-session-saver"; license = lib.licenses.free; }; }) {}; @@ -16913,13 +17712,13 @@ sha256 = "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/minitest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minitest"; sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw"; name = "minitest"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/minitest"; + homepage = "https://melpa.org/#/minitest"; license = lib.licenses.free; }; }) {}; @@ -16933,13 +17732,13 @@ sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmm-mako"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmm-mako"; sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn"; name = "mmm-mako"; }; packageRequires = [ mmm-mode ]; meta = { - homepage = "http://melpa.org/#/mmm-mako"; + homepage = "https://melpa.org/#/mmm-mako"; license = lib.licenses.free; }; }) {}; @@ -16954,13 +17753,13 @@ sha256 = "097s4xnwfy8d1wzmz65g2f8bnjjjlj67w1yzwn4d3yasb171nbv8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmm-mode"; sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw"; name = "mmm-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mmm-mode"; + homepage = "https://melpa.org/#/mmm-mode"; license = lib.licenses.free; }; }) {}; @@ -16975,34 +17774,34 @@ sha256 = "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmt"; sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq"; name = "mmt"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/mmt"; + homepage = "https://melpa.org/#/mmt"; license = lib.licenses.free; }; }) {}; mocha = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: melpaBuild { pname = "mocha"; - version = "1.0"; + version = "1.1"; src = fetchFromGitHub { owner = "scottaj"; repo = "mocha.el"; - rev = "ea042751717b920a61770b6a945999431badbc39"; - sha256 = "1v915yy920yrwrrnw9bxggm1zvlm9ndjwv9ydln3r07b0a1mkka2"; + rev = "4ca9495d4b00b753f055152bd4256c07d7b208f4"; + sha256 = "0yj9kc59c227727kh1zjxwrhijzd7rdhix7qqm4na1z6s4ycpxbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mocha"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mocha"; sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx"; name = "mocha"; }; packageRequires = [ js2-mode ]; meta = { - homepage = "http://melpa.org/#/mocha"; + homepage = "https://melpa.org/#/mocha"; license = lib.licenses.free; }; }) {}; @@ -17017,13 +17816,13 @@ sha256 = "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mocker"; sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3"; name = "mocker"; }; packageRequires = [ eieio el-x ]; meta = { - homepage = "http://melpa.org/#/mocker"; + homepage = "https://melpa.org/#/mocker"; license = lib.licenses.free; }; }) {}; @@ -17038,33 +17837,34 @@ sha256 = "0r24186d1q9436h3qhqz1z8q978d01an0dvpvzirf4x9ickrib3k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/modalka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/modalka"; sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c"; name = "modalka"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/modalka"; + homepage = "https://melpa.org/#/modalka"; license = lib.licenses.free; }; }) {}; - mode-icons = callPackage ({ cl-lib ? null, emacs, fetchgit, fetchurl, lib, melpaBuild }: + mode-icons = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mode-icons"; - version = "0.3.0"; - src = fetchgit { - url = "git://ryuslash.org/mode-icons.git"; - rev = "d2c9926a8e79e13ef9942fe96b8109add24a9978"; - sha256 = "cb98bc1e199688337efd03bbd18a340514740257f9ede19089f01f5ad6e69b74"; + version = "0.4.0"; + src = fetchFromGitHub { + owner = "ryuslash"; + repo = "mode-icons"; + rev = "37581ed911e4469f773ddfb7b40a85592d323b76"; + sha256 = "1ykj68d4h92i4qv90zgwrf9jhy1n22l2h9k5f1zsn8hvz9mhj1av"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mode-icons"; - sha256 = "18w221zjrrsfcymprv5x75i3qv04zy4bxl9mqjv0ys7qcc8xf1dp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mode-icons"; + sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf"; name = "mode-icons"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/mode-icons"; + homepage = "https://melpa.org/#/mode-icons"; license = lib.licenses.free; }; }) {}; @@ -17079,13 +17879,13 @@ sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mode-line-debug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mode-line-debug"; sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd"; name = "mode-line-debug"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mode-line-debug"; + homepage = "https://melpa.org/#/mode-line-debug"; license = lib.licenses.free; }; }) {}; @@ -17100,13 +17900,13 @@ sha256 = "02w7k4s4698p4adjy4a36na28sb1s2zw4xsjs7p2hv9iiw9kmyvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monokai-theme"; sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a"; name = "monokai-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/monokai-theme"; + homepage = "https://melpa.org/#/monokai-theme"; license = lib.licenses.free; }; }) {}; @@ -17121,13 +17921,13 @@ sha256 = "1a0pv8fkv1cjdb0k5bmjd67a273bzcmxjwzgy4jpb3ng1qbb2xnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/monroe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monroe"; sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig"; name = "monroe"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/monroe"; + homepage = "https://melpa.org/#/monroe"; license = lib.licenses.free; }; }) {}; @@ -17142,13 +17942,13 @@ sha256 = "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/morlock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/morlock"; sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna"; name = "morlock"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/morlock"; + homepage = "https://melpa.org/#/morlock"; license = lib.licenses.free; }; }) {}; @@ -17163,13 +17963,13 @@ sha256 = "01mdy7sps0xryz5gfpl083rv7ixkxs2rkz5yaqjlam2rypdcsyy2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/move-dup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/move-dup"; sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f"; name = "move-dup"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/move-dup"; + homepage = "https://melpa.org/#/move-dup"; license = lib.licenses.free; }; }) {}; @@ -17184,13 +17984,13 @@ sha256 = "1mg7arw4wbbm84frq3sws5937fh901qn0xnjk9jcp3pvc4d0sxwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mowedline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mowedline"; sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb"; name = "mowedline"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mowedline"; + homepage = "https://melpa.org/#/mowedline"; license = lib.licenses.free; }; }) {}; @@ -17205,13 +18005,13 @@ sha256 = "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/moz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/moz"; sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi"; name = "moz"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/moz"; + homepage = "https://melpa.org/#/moz"; license = lib.licenses.free; }; }) {}; @@ -17226,13 +18026,34 @@ sha256 = "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/moz-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/moz-controller"; sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd"; name = "moz-controller"; }; packageRequires = [ moz ]; meta = { - homepage = "http://melpa.org/#/moz-controller"; + homepage = "https://melpa.org/#/moz-controller"; + license = lib.licenses.free; + }; + }) {}; + mozc-temp = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }: + melpaBuild { + pname = "mozc-temp"; + version = "1.0.0"; + src = fetchFromGitHub { + owner = "HKey"; + repo = "mozc-temp"; + rev = "7f5dd5fc8ceeca9b1822f7e056a4be67e2e74959"; + sha256 = "1gdi2pz8450h11aknz3hbgjlx09w6c4l8d8sz0zv3pb1z8cqkgqv"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mozc-temp"; + sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d"; + name = "mozc-temp"; + }; + packageRequires = [ dash emacs mozc ]; + meta = { + homepage = "https://melpa.org/#/mozc-temp"; license = lib.licenses.free; }; }) {}; @@ -17247,13 +18068,13 @@ sha256 = "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mpv"; sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l"; name = "mpv"; }; packageRequires = [ cl-lib emacs json names org ]; meta = { - homepage = "http://melpa.org/#/mpv"; + homepage = "https://melpa.org/#/mpv"; license = lib.licenses.free; }; }) {}; @@ -17268,13 +18089,13 @@ sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/msvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/msvc"; sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3"; name = "msvc"; }; packageRequires = [ ac-clang cedet cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/msvc"; + homepage = "https://melpa.org/#/msvc"; license = lib.licenses.free; }; }) {}; @@ -17289,13 +18110,13 @@ sha256 = "0wrg6f7czn61f9wmrk27dzcdskznm5i1pwwjck5h768j0y9dfv6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mu4e-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mu4e-alert"; sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm"; name = "mu4e-alert"; }; packageRequires = [ alert emacs s ]; meta = { - homepage = "http://melpa.org/#/mu4e-alert"; + homepage = "https://melpa.org/#/mu4e-alert"; license = lib.licenses.free; }; }) {}; @@ -17310,13 +18131,13 @@ sha256 = "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mu4e-maildirs-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mu4e-maildirs-extension"; sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi"; name = "mu4e-maildirs-extension"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mu4e-maildirs-extension"; + homepage = "https://melpa.org/#/mu4e-maildirs-extension"; license = lib.licenses.free; }; }) {}; @@ -17331,13 +18152,13 @@ sha256 = "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi"; sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig"; name = "multi"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/multi"; + homepage = "https://melpa.org/#/multi"; license = lib.licenses.free; }; }) {}; @@ -17352,13 +18173,13 @@ sha256 = "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multi-web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-web-mode"; sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5"; name = "multi-web-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/multi-web-mode"; + homepage = "https://melpa.org/#/multi-web-mode"; license = lib.licenses.free; }; }) {}; @@ -17373,13 +18194,13 @@ sha256 = "10k4c9vl0bfidrry0msyqamijizjghg54g26yaqbr2vi0mbbz22k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/multiple-cursors"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multiple-cursors"; sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x"; name = "multiple-cursors"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/multiple-cursors"; + homepage = "https://melpa.org/#/multiple-cursors"; license = lib.licenses.free; }; }) {}; @@ -17394,13 +18215,13 @@ sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mustache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mustache-mode"; sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs"; name = "mustache-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mustache-mode"; + homepage = "https://melpa.org/#/mustache-mode"; license = lib.licenses.free; }; }) {}; @@ -17415,13 +18236,13 @@ sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mwim"; sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k"; name = "mwim"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/mwim"; + homepage = "https://melpa.org/#/mwim"; license = lib.licenses.free; }; }) {}; @@ -17436,13 +18257,13 @@ sha256 = "0550k0rfm0zai306642v689mcpsw9pbd5vs0il82cihwvrxjifc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/mykie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mykie"; sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj"; name = "mykie"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/mykie"; + homepage = "https://melpa.org/#/mykie"; license = lib.licenses.free; }; }) {}; @@ -17457,13 +18278,13 @@ sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/name-this-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/name-this-color"; sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb"; name = "name-this-color"; }; packageRequires = [ cl-lib dash emacs ]; meta = { - homepage = "http://melpa.org/#/name-this-color"; + homepage = "https://melpa.org/#/name-this-color"; license = lib.licenses.free; }; }) {}; @@ -17478,13 +18299,13 @@ sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/names"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/names"; sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg"; name = "names"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/names"; + homepage = "https://melpa.org/#/names"; license = lib.licenses.free; }; }) {}; @@ -17499,13 +18320,13 @@ sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/narrow-reindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/narrow-reindent"; sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0"; name = "narrow-reindent"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/narrow-reindent"; + homepage = "https://melpa.org/#/narrow-reindent"; license = lib.licenses.free; }; }) {}; @@ -17520,13 +18341,13 @@ sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/narrowed-page-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/narrowed-page-navigation"; sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7"; name = "narrowed-page-navigation"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/narrowed-page-navigation"; + homepage = "https://melpa.org/#/narrowed-page-navigation"; license = lib.licenses.free; }; }) {}; @@ -17541,13 +18362,13 @@ sha256 = "1l7asqwi5gcvb2mn8608025lwypf2vqzrkc3a9phdfjp0qn2apdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nasm-mode"; sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17"; name = "nasm-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/nasm-mode"; + homepage = "https://melpa.org/#/nasm-mode"; license = lib.licenses.free; }; }) {}; @@ -17562,13 +18383,13 @@ sha256 = "119hy8rs83f17d6zizdaxn2ck3sylxbyz7adszbznjc8zrbaw0ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nav-flash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nav-flash"; sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3"; name = "nav-flash"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nav-flash"; + homepage = "https://melpa.org/#/nav-flash"; license = lib.licenses.free; }; }) {}; @@ -17583,13 +18404,13 @@ sha256 = "15jh1lsgqfnpbmrikm8kdh5bj60yb96f2as2anppjjsgl6w96glh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/navi-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/navi-mode"; sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi"; name = "navi-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/navi-mode"; + homepage = "https://melpa.org/#/navi-mode"; license = lib.licenses.free; }; }) {}; @@ -17604,13 +18425,13 @@ sha256 = "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/navorski"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/navorski"; sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7"; name = "navorski"; }; packageRequires = [ dash multi-term s ]; meta = { - homepage = "http://melpa.org/#/navorski"; + homepage = "https://melpa.org/#/navorski"; license = lib.licenses.free; }; }) {}; @@ -17625,13 +18446,13 @@ sha256 = "16i1k1zr6ng1dlxb1b73mxjf25f4kvf3x5vfffsi3qnfm960bg3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ncl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ncl-mode"; sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9"; name = "ncl-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ncl-mode"; + homepage = "https://melpa.org/#/ncl-mode"; license = lib.licenses.free; }; }) {}; @@ -17646,13 +18467,13 @@ sha256 = "19xxg4ya6vndk2ljdnl284zs8qf9dkq4ghr7pmsclp9n7zh46v48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nemerle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nemerle"; sha256 = "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6"; name = "nemerle"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nemerle"; + homepage = "https://melpa.org/#/nemerle"; license = lib.licenses.free; }; }) {}; @@ -17667,13 +18488,13 @@ sha256 = "1gmi0xxwkh33w5gxc8488m1vv6ycizqhlw1kpn81zhqdzzq3s06n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/neotree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/neotree"; sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06"; name = "neotree"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/neotree"; + homepage = "https://melpa.org/#/neotree"; license = lib.licenses.free; }; }) {}; @@ -17688,13 +18509,34 @@ sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nginx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nginx-mode"; sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c"; name = "nginx-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nginx-mode"; + homepage = "https://melpa.org/#/nginx-mode"; + license = lib.licenses.free; + }; + }) {}; + niceify-info = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "niceify-info"; + version = "1.0.1"; + src = fetchFromGitHub { + owner = "aaron-em"; + repo = "niceify-info.el"; + rev = "66b45916f1994e16ee023d29fa7cf8fec48078f1"; + sha256 = "0dzcaa88l7yjc7fhyhkvbzs7bmhi6bb6rx41wsnnidlnpzbgdrk7"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/niceify-info"; + sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl"; + name = "niceify-info"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/niceify-info"; license = lib.licenses.free; }; }) {}; @@ -17709,13 +18551,13 @@ sha256 = "1wc0cvmfhpvfzdy127d1n812q93dd9sp3mmqnc8jzy8i3frqqqq6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ninja-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ninja-mode"; sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik"; name = "ninja-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ninja-mode"; + homepage = "https://melpa.org/#/ninja-mode"; license = lib.licenses.free; }; }) {}; @@ -17730,13 +18572,13 @@ sha256 = "1rvi30xyj2vj3gmzagy51smrhb1xwlsfgnyg30hblj88yn0wh5sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nix-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nix-mode"; sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s"; name = "nix-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nix-mode"; + homepage = "https://melpa.org/#/nix-mode"; license = lib.licenses.free; }; }) {}; @@ -17751,13 +18593,13 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nixos-options"; sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm"; name = "nixos-options"; }; packageRequires = [ emacs json ]; meta = { - homepage = "http://melpa.org/#/nixos-options"; + homepage = "https://melpa.org/#/nixos-options"; license = lib.licenses.free; }; }) {}; @@ -17772,13 +18614,13 @@ sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/noccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/noccur"; sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g"; name = "noccur"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/noccur"; + homepage = "https://melpa.org/#/noccur"; license = lib.licenses.free; }; }) {}; @@ -17793,13 +18635,13 @@ sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nodejs-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nodejs-repl"; sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907"; name = "nodejs-repl"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nodejs-repl"; + homepage = "https://melpa.org/#/nodejs-repl"; license = lib.licenses.free; }; }) {}; @@ -17812,32 +18654,32 @@ sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nose"; sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk"; name = "nose"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nose"; + homepage = "https://melpa.org/#/nose"; license = lib.licenses.free; }; }) {}; notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "notmuch"; - version = "0.21"; + version = "0.22pre1"; src = fetchgit { url = "git://git.notmuchmail.org/git/notmuch"; - rev = "bf511cb6979ede33d17d9da6f46f71ea287461d8"; - sha256 = "fd2669401c276af12b6c9b739e835ee76b7910bba34bf850e4909c00e79adbd4"; + rev = "2434ecfba3617f4affaf0bd5a8cde4b918155302"; + sha256 = "0s979vb13pr5ycrsr2p25gha5dn5bb44mghbrbn2sky8nvyf7dxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/notmuch"; - sha256 = "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/notmuch"; + sha256 = "173d1gf5rd4nbjwg91486ibg54n3qlpwgyvkcy4d30jm4vqwqrqv"; name = "notmuch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/notmuch"; + homepage = "https://melpa.org/#/notmuch"; license = lib.licenses.free; }; }) {}; @@ -17852,13 +18694,13 @@ sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/notmuch-labeler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/notmuch-labeler"; sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0"; name = "notmuch-labeler"; }; packageRequires = [ notmuch ]; meta = { - homepage = "http://melpa.org/#/notmuch-labeler"; + homepage = "https://melpa.org/#/notmuch-labeler"; license = lib.licenses.free; }; }) {}; @@ -17873,13 +18715,13 @@ sha256 = "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nrepl-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nrepl-sync"; sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd"; name = "nrepl-sync"; }; packageRequires = [ cider ]; meta = { - homepage = "http://melpa.org/#/nrepl-sync"; + homepage = "https://melpa.org/#/nrepl-sync"; license = lib.licenses.free; }; }) {}; @@ -17894,13 +18736,13 @@ sha256 = "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nsis-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nsis-mode"; sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l"; name = "nsis-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nsis-mode"; + homepage = "https://melpa.org/#/nsis-mode"; license = lib.licenses.free; }; }) {}; @@ -17915,34 +18757,34 @@ sha256 = "1624jj922l0bbav1v8szdr0lpyx0ng959fg3sspg1j15kgkir8kf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nvm"; sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34"; name = "nvm"; }; packageRequires = [ dash dash-functional f s ]; meta = { - homepage = "http://melpa.org/#/nvm"; + homepage = "https://melpa.org/#/nvm"; license = lib.licenses.free; }; }) {}; nyan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nyan-mode"; - version = "1.0.0"; + version = "1.1.0"; src = fetchFromGitHub { owner = "TeMPOraL"; repo = "nyan-mode"; - rev = "251d8f9c3686183294d76abcd816c8d69b6a71a3"; - sha256 = "14vd0f4y5l470hx7kg54sx3352459mhjnrh7jl822gkl8c904lmw"; + rev = "95034cefb34df3b11a547e75a4b85c423502341d"; + sha256 = "1gxwss5rr4j6pv74fadmvnhdzlhk839am15cr9bj4qm47vrr98jl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nyan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nyan-mode"; sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv"; name = "nyan-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nyan-mode"; + homepage = "https://melpa.org/#/nyan-mode"; license = lib.licenses.free; }; }) {}; @@ -17957,13 +18799,13 @@ sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/nyan-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nyan-prompt"; sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb"; name = "nyan-prompt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/nyan-prompt"; + homepage = "https://melpa.org/#/nyan-prompt"; license = lib.licenses.free; }; }) {}; @@ -17978,34 +18820,55 @@ sha256 = "0r12023yy8j96bp8z2ml6ffyr2c9rcd5abkh6vqnkwsdxkzx6wrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/o-blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/o-blog"; sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja"; name = "o-blog"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/o-blog"; + homepage = "https://melpa.org/#/o-blog"; license = lib.licenses.free; }; }) {}; ob-http = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ob-http"; - version = "0.0.3"; + version = "0.0.4"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-http"; - rev = "89ba18b22cf6b8533358a9c76a82326343391f0b"; - sha256 = "1zbqiqilms8vxqlvzb3gjh8gh2cl7cpmh3yiqsj94jx69w8dy4xl"; + rev = "e10b35accd4c758d781ab9f6e00b7b792dccf380"; + sha256 = "0bqr6yl1hpykpykjpfb247xnpnz510zrg9yv7nkxlrig4pjgdcx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-http"; sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss"; name = "ob-http"; }; packageRequires = [ cl-lib s ]; meta = { - homepage = "http://melpa.org/#/ob-http"; + homepage = "https://melpa.org/#/ob-http"; + license = lib.licenses.free; + }; + }) {}; + ob-sagemath = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, sage-shell-mode }: + melpaBuild { + pname = "ob-sagemath"; + version = "0.2"; + src = fetchFromGitHub { + owner = "stakemori"; + repo = "ob-sagemath"; + rev = "fec3fbabaef5f5d679ef1ccbbc39958a4d01b839"; + sha256 = "0hapjgzbd4s5jif8jdm9svl58h6a504gxc8jq57sibfcbwkjbfk4"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-sagemath"; + sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7"; + name = "ob-sagemath"; + }; + packageRequires = [ emacs s sage-shell-mode ]; + meta = { + homepage = "https://melpa.org/#/ob-sagemath"; license = lib.licenses.free; }; }) {}; @@ -18020,13 +18883,13 @@ sha256 = "1xx6hyq3gk4bavcx6i9bhipbn4mn5rv2ga9lryq09qgq2l9znclk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-sml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-sml"; sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn"; name = "ob-sml"; }; packageRequires = [ sml-mode ]; meta = { - homepage = "http://melpa.org/#/ob-sml"; + homepage = "https://melpa.org/#/ob-sml"; license = lib.licenses.free; }; }) {}; @@ -18041,13 +18904,13 @@ sha256 = "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ob-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-translate"; sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz"; name = "ob-translate"; }; packageRequires = [ google-translate org ]; meta = { - homepage = "http://melpa.org/#/ob-translate"; + homepage = "https://melpa.org/#/ob-translate"; license = lib.licenses.free; }; }) {}; @@ -18062,13 +18925,13 @@ sha256 = "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ocodo-svg-modelines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ocodo-svg-modelines"; sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay"; name = "ocodo-svg-modelines"; }; packageRequires = [ svg-mode-line-themes ]; meta = { - homepage = "http://melpa.org/#/ocodo-svg-modelines"; + homepage = "https://melpa.org/#/ocodo-svg-modelines"; license = lib.licenses.free; }; }) {}; @@ -18083,13 +18946,13 @@ sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ocp-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ocp-indent"; sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw"; name = "ocp-indent"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ocp-indent"; + homepage = "https://melpa.org/#/ocp-indent"; license = lib.licenses.free; }; }) {}; @@ -18104,13 +18967,13 @@ sha256 = "19fg6r7aiirfsbp2h1a824476sn1ln4nz8kvpdzkzvyf1hzx68gw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/octicons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/octicons"; sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk"; name = "octicons"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/octicons"; + homepage = "https://melpa.org/#/octicons"; license = lib.licenses.free; }; }) {}; @@ -18125,13 +18988,13 @@ sha256 = "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/offlineimap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/offlineimap"; sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b"; name = "offlineimap"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/offlineimap"; + homepage = "https://melpa.org/#/offlineimap"; license = lib.licenses.free; }; }) {}; @@ -18146,13 +19009,13 @@ sha256 = "1rj97yg2n9fi80qlb4z6iahqid3yinlhx9mrbh6gi1niz58ws69h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/olivetti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/olivetti"; sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd"; name = "olivetti"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/olivetti"; + homepage = "https://melpa.org/#/olivetti"; license = lib.licenses.free; }; }) {}; @@ -18167,13 +19030,13 @@ sha256 = "07grj81alrr6qgs3jmqkjzphkvi26w6jm5hf1f5wyx7h6q293ady"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-kill"; sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k"; name = "omni-kill"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/omni-kill"; + homepage = "https://melpa.org/#/omni-kill"; license = lib.licenses.free; }; }) {}; @@ -18188,13 +19051,13 @@ sha256 = "030f983n19n64f8irif102nncvam04xpx020vfgja9886wlj40pk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-log"; sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r"; name = "omni-log"; }; packageRequires = [ dash emacs ht s ]; meta = { - homepage = "http://melpa.org/#/omni-log"; + homepage = "https://melpa.org/#/omni-log"; license = lib.licenses.free; }; }) {}; @@ -18209,13 +19072,13 @@ sha256 = "1rfs6z56pnacy6m7yvm2hrb0ykfvaiyichivcmb9ssdgqp92cbxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-scratch"; sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9"; name = "omni-scratch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/omni-scratch"; + homepage = "https://melpa.org/#/omni-scratch"; license = lib.licenses.free; }; }) {}; @@ -18230,13 +19093,13 @@ sha256 = "0c34rci5793hd674x2srhqvnj46llrbkrw1xpzf73s4ib5zhh7xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omni-tags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-tags"; sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl"; name = "omni-tags"; }; packageRequires = [ cl-lib pcre2el ]; meta = { - homepage = "http://melpa.org/#/omni-tags"; + homepage = "https://melpa.org/#/omni-tags"; license = lib.licenses.free; }; }) {}; @@ -18251,7 +19114,7 @@ sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/omnisharp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omnisharp"; sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad"; name = "omnisharp"; }; @@ -18266,7 +19129,7 @@ s ]; meta = { - homepage = "http://melpa.org/#/omnisharp"; + homepage = "https://melpa.org/#/omnisharp"; license = lib.licenses.free; }; }) {}; @@ -18281,13 +19144,13 @@ sha256 = "119pk7gg4fw5bdvir8077ra603b5nbqvd7ph9cqrwxa056jzvry8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/opam"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/opam"; sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa"; name = "opam"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/opam"; + homepage = "https://melpa.org/#/opam"; license = lib.licenses.free; }; }) {}; @@ -18302,13 +19165,13 @@ sha256 = "0n64l1jrrk60g192nn0240qcv2p9r138mi9gb38qq5k65wffbc21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/opencl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/opencl-mode"; sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79"; name = "opencl-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/opencl-mode"; + homepage = "https://melpa.org/#/opencl-mode"; license = lib.licenses.free; }; }) {}; @@ -18323,13 +19186,13 @@ sha256 = "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/operate-on-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/operate-on-number"; sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk"; name = "operate-on-number"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/operate-on-number"; + homepage = "https://melpa.org/#/operate-on-number"; license = lib.licenses.free; }; }) {}; @@ -18344,13 +19207,13 @@ sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-ac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-ac"; sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr"; name = "org-ac"; }; packageRequires = [ auto-complete-pcmp log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/org-ac"; + homepage = "https://melpa.org/#/org-ac"; license = lib.licenses.free; }; }) {}; @@ -18365,13 +19228,13 @@ sha256 = "0gkxxzdk8bd1yi5x9217pkq9d01ccq8znxc7h8qcw0p1336rigfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-agenda-property"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-agenda-property"; sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk"; name = "org-agenda-property"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/org-agenda-property"; + homepage = "https://melpa.org/#/org-agenda-property"; license = lib.licenses.free; }; }) {}; @@ -18386,13 +19249,34 @@ sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-autolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-autolist"; sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj"; name = "org-autolist"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-autolist"; + homepage = "https://melpa.org/#/org-autolist"; + license = lib.licenses.free; + }; + }) {}; + org-bookmark-heading = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "org-bookmark-heading"; + version = "1.0.0"; + src = fetchFromGitHub { + owner = "alphapapa"; + repo = "org-bookmark-heading"; + rev = "70b014e09977371a8c9bad03085c116693062b19"; + sha256 = "0j765rb2yfwnc0ri53jb8d6lxj6knpmy495bk3sd63492kdrxf93"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-bookmark-heading"; + sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9"; + name = "org-bookmark-heading"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/org-bookmark-heading"; license = lib.licenses.free; }; }) {}; @@ -18407,13 +19291,13 @@ sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-bullets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-bullets"; sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75"; name = "org-bullets"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-bullets"; + homepage = "https://melpa.org/#/org-bullets"; license = lib.licenses.free; }; }) {}; @@ -18428,13 +19312,13 @@ sha256 = "0cxccxz17pj67wgmyxr74n381mknqgqkyav3jkxs4ghg59g5nygl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-dp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-dp"; sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq"; name = "org-dp"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/org-dp"; + homepage = "https://melpa.org/#/org-dp"; license = lib.licenses.free; }; }) {}; @@ -18449,13 +19333,13 @@ sha256 = "18x8c6jcqkfam79z4hskr8h1lvzvd5rlfgymmj1ps6p6hd3j4ihl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-elisp-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-elisp-help"; sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h"; name = "org-elisp-help"; }; packageRequires = [ cl-lib org ]; meta = { - homepage = "http://melpa.org/#/org-elisp-help"; + homepage = "https://melpa.org/#/org-elisp-help"; license = lib.licenses.free; }; }) {}; @@ -18470,13 +19354,13 @@ sha256 = "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-gcal"; sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q"; name = "org-gcal"; }; packageRequires = [ alert cl-lib emacs org request-deferred ]; meta = { - homepage = "http://melpa.org/#/org-gcal"; + homepage = "https://melpa.org/#/org-gcal"; license = lib.licenses.free; }; }) {}; @@ -18491,13 +19375,13 @@ sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-gnome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-gnome"; sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v"; name = "org-gnome"; }; packageRequires = [ alert gnome-calendar telepathy ]; meta = { - homepage = "http://melpa.org/#/org-gnome"; + homepage = "https://melpa.org/#/org-gnome"; license = lib.licenses.free; }; }) {}; @@ -18512,13 +19396,13 @@ sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-if"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-if"; sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96"; name = "org-if"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-if"; + homepage = "https://melpa.org/#/org-if"; license = lib.licenses.free; }; }) {}; @@ -18528,18 +19412,18 @@ version = "1.10.2"; src = fetchFromGitHub { owner = "bastibe"; - repo = "emacs-journal"; + repo = "org-journal"; rev = "68974d86f1ef518defb3085e415d882ba4575714"; sha256 = "0980scx1dzslbdzmhv720branc4jd4bdkyji34gahinx4w9brj79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-journal"; - sha256 = "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-journal"; + sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b"; name = "org-journal"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-journal"; + homepage = "https://melpa.org/#/org-journal"; license = lib.licenses.free; }; }) {}; @@ -18554,13 +19438,13 @@ sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-link-travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-link-travis"; sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs"; name = "org-link-travis"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/org-link-travis"; + homepage = "https://melpa.org/#/org-link-travis"; license = lib.licenses.free; }; }) {}; @@ -18575,13 +19459,13 @@ sha256 = "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-linkany"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-linkany"; sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c"; name = "org-linkany"; }; packageRequires = [ log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/org-linkany"; + homepage = "https://melpa.org/#/org-linkany"; license = lib.licenses.free; }; }) {}; @@ -18592,16 +19476,16 @@ src = fetchgit { url = "git://orgmode.org/org-mode.git"; rev = "592dc2ee7e4c80b9b61efb77117c8dc22d6cefd1"; - sha256 = "5cb84c3c4bf3f7c3e0c9ab869dababb785d44198b1e1072dc9c0937fc483aa14"; + sha256 = "055ahg27z4y0r4nhgqdik10x91dpmfmrv1mbr7hc7xzk9cy4rf2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-mac-iCal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-mac-iCal"; sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw"; name = "org-mac-iCal"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-mac-iCal"; + homepage = "https://melpa.org/#/org-mac-iCal"; license = lib.licenses.free; }; }) {}; @@ -18616,13 +19500,13 @@ sha256 = "0yxfhzygiki8sha1dddac4g72r51yi4jnga2scmk51f9jgwqbihp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-multiple-keymap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-multiple-keymap"; sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f"; name = "org-multiple-keymap"; }; packageRequires = [ cl-lib emacs org ]; meta = { - homepage = "http://melpa.org/#/org-multiple-keymap"; + homepage = "https://melpa.org/#/org-multiple-keymap"; license = lib.licenses.free; }; }) {}; @@ -18637,13 +19521,13 @@ sha256 = "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-outlook"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-outlook"; sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9"; name = "org-outlook"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-outlook"; + homepage = "https://melpa.org/#/org-outlook"; license = lib.licenses.free; }; }) {}; @@ -18658,13 +19542,13 @@ sha256 = "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-page"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-page"; sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v"; name = "org-page"; }; packageRequires = [ ht htmlize mustache org ]; meta = { - homepage = "http://melpa.org/#/org-page"; + homepage = "https://melpa.org/#/org-page"; license = lib.licenses.free; }; }) {}; @@ -18679,13 +19563,13 @@ sha256 = "14lshgyrlzjcrqdfsn17llm70ijbs86cv9mccy87vlr01rbsz6lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-pdfview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-pdfview"; sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab"; name = "org-pdfview"; }; packageRequires = [ org pdf-tools ]; meta = { - homepage = "http://melpa.org/#/org-pdfview"; + homepage = "https://melpa.org/#/org-pdfview"; license = lib.licenses.free; }; }) {}; @@ -18700,13 +19584,13 @@ sha256 = "1fjdza723615bhdm5x6gbd03vi7ywzpbjn8p59saimczqngfdpmw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-pomodoro"; sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27"; name = "org-pomodoro"; }; packageRequires = [ alert cl-lib ]; meta = { - homepage = "http://melpa.org/#/org-pomodoro"; + homepage = "https://melpa.org/#/org-pomodoro"; license = lib.licenses.free; }; }) {}; @@ -18721,13 +19605,13 @@ sha256 = "16aq5p65q5a0an14q9xzsnkaa5bzkrwhm9cv5ljajjfcjsjcvmb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-projectile"; sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm"; name = "org-projectile"; }; packageRequires = [ dash projectile ]; meta = { - homepage = "http://melpa.org/#/org-projectile"; + homepage = "https://melpa.org/#/org-projectile"; license = lib.licenses.free; }; }) {}; @@ -18742,13 +19626,13 @@ sha256 = "1cxjzj955rvp0ijbp7ifpmkxdhimz8hqjw5c9gv6zwjqb5iih9ry"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-protocol-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-protocol-jekyll"; sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs"; name = "org-protocol-jekyll"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-protocol-jekyll"; + homepage = "https://melpa.org/#/org-protocol-jekyll"; license = lib.licenses.free; }; }) {}; @@ -18763,13 +19647,13 @@ sha256 = "1bi09hd5m994rkqcx0a045h20419b6n4vvwiiggzsi0723dd9fb9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-random-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-random-todo"; sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr"; name = "org-random-todo"; }; packageRequires = [ alert emacs ]; meta = { - homepage = "http://melpa.org/#/org-random-todo"; + homepage = "https://melpa.org/#/org-random-todo"; license = lib.licenses.free; }; }) {}; @@ -18784,13 +19668,34 @@ sha256 = "0hhgfw0sqvl9jmmslwxn6v3dii99v09yz2h0ia5np9lzyxsc207a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-readme"; sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh"; name = "org-readme"; }; packageRequires = [ header2 http-post-simple lib-requires yaoddmuse ]; meta = { - homepage = "http://melpa.org/#/org-readme"; + homepage = "https://melpa.org/#/org-readme"; + license = lib.licenses.free; + }; + }) {}; + org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, hydra, key-chord, lib, melpaBuild, s }: + melpaBuild { + pname = "org-ref"; + version = "0.7.1"; + src = fetchFromGitHub { + owner = "jkitchin"; + repo = "org-ref"; + rev = "a188bb8af194a50ad2f023ad1773d4e33d8cf21a"; + sha256 = "07w41v1sczn98v70xw2rlfq8v1wrhs38gkyziibi96w4y3g6i7k0"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-ref"; + sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08"; + name = "org-ref"; + }; + packageRequires = [ dash emacs f helm helm-bibtex hydra key-chord s ]; + meta = { + homepage = "https://melpa.org/#/org-ref"; license = lib.licenses.free; }; }) {}; @@ -18805,13 +19710,13 @@ sha256 = "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-repo-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-repo-todo"; sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1"; name = "org-repo-todo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-repo-todo"; + homepage = "https://melpa.org/#/org-repo-todo"; license = lib.licenses.free; }; }) {}; @@ -18826,13 +19731,13 @@ sha256 = "0zx9gpvm5gy9k45lbhaks9s935id727lszsh40gmpdp5zxf3rjk1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-sync"; sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad"; name = "org-sync"; }; packageRequires = [ cl-lib emacs org ]; meta = { - homepage = "http://melpa.org/#/org-sync"; + homepage = "https://melpa.org/#/org-sync"; license = lib.licenses.free; }; }) {}; @@ -18847,34 +19752,34 @@ sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-table-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-table-comment"; sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz"; name = "org-table-comment"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-table-comment"; + homepage = "https://melpa.org/#/org-table-comment"; license = lib.licenses.free; }; }) {}; org-tfl = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-tfl"; - version = "0.3.1"; + version = "0.3.3"; src = fetchFromGitHub { owner = "storax"; repo = "org-tfl"; - rev = "c9e024ac55d9e0c61a273e75bd68981a623c9ab2"; - sha256 = "1x241jaw726zjsplwf6svbvr8af09k6kqj7icpvcbyayivkbhxy2"; + rev = "308251618e215eb78d5436e7412a0c14216fa890"; + sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tfl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tfl"; sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf"; name = "org-tfl"; }; packageRequires = [ cl-lib emacs org ]; meta = { - homepage = "http://melpa.org/#/org-tfl"; + homepage = "https://melpa.org/#/org-tfl"; license = lib.licenses.free; }; }) {}; @@ -18889,13 +19794,13 @@ sha256 = "12fksqi9flf84h1lbmbcjnqxa7dairp50wvlwfhbp1hbb8l9z63a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-themis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-themis"; sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln"; name = "org-themis"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/org-themis"; + homepage = "https://melpa.org/#/org-themis"; license = lib.licenses.free; }; }) {}; @@ -18910,13 +19815,13 @@ sha256 = "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-time-budgets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-time-budgets"; sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah"; name = "org-time-budgets"; }; packageRequires = [ alert cl-lib ]; meta = { - homepage = "http://melpa.org/#/org-time-budgets"; + homepage = "https://melpa.org/#/org-time-budgets"; license = lib.licenses.free; }; }) {}; @@ -18931,34 +19836,34 @@ sha256 = "0qqa62fsmra6v4061kpki8wbhfcwkgnb2gzxwvnaqlcmhivksg6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-toodledo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-toodledo"; sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3"; name = "org-toodledo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-toodledo"; + homepage = "https://melpa.org/#/org-toodledo"; license = lib.licenses.free; }; }) {}; org-tracktable = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-tracktable"; - version = "0.2"; + version = "0.3"; src = fetchFromGitHub { owner = "tty-tourist"; repo = "org-tracktable"; - rev = "28ef6772cdcf436cf38095f15c6bb681473180ce"; - sha256 = "053wf36lq9piyzq7rv2lid34zanj6l9fvawp3r3nsniy5nlfckqx"; + rev = "c38a0019fdc5aac0f9b65e04c86c997fe5a32fb0"; + sha256 = "1yh4p3i0ajfnsvh057h8dpf4rqvvblmfgzj6vyn9dmcl5is1ir2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tracktable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tracktable"; sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00"; name = "org-tracktable"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/org-tracktable"; + homepage = "https://melpa.org/#/org-tracktable"; license = lib.licenses.free; }; }) {}; @@ -18973,13 +19878,13 @@ sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-transform-tree-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-transform-tree-table"; sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r"; name = "org-transform-tree-table"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/org-transform-tree-table"; + homepage = "https://melpa.org/#/org-transform-tree-table"; license = lib.licenses.free; }; }) {}; @@ -18994,28 +19899,28 @@ sha256 = "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-tree-slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tree-slide"; sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn"; name = "org-tree-slide"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-tree-slide"; + homepage = "https://melpa.org/#/org-tree-slide"; license = lib.licenses.free; }; }) {}; org-trello = callPackage ({ dash, dash-functional, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred, s }: melpaBuild { pname = "org-trello"; - version = "0.7.6"; + version = "0.7.8"; src = fetchFromGitHub { owner = "org-trello"; repo = "org-trello"; - rev = "1ecb8f4f1dd41c8f41073c13a9557c0c583d7c88"; - sha256 = "0pinp7485mwi99f8qx8xhcdymn5yyd7irxh514j3f23n4b90hk4l"; + rev = "321a74585bceafdd82f96433e014f13b4f3fa674"; + sha256 = "061nf6gwrzi36q3m3b1hn4bj33a6q4yic3fxdxxwvwrzi42bl74a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-trello"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-trello"; sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i"; name = "org-trello"; }; @@ -19028,7 +19933,7 @@ s ]; meta = { - homepage = "http://melpa.org/#/org-trello"; + homepage = "https://melpa.org/#/org-trello"; license = lib.licenses.free; }; }) {}; @@ -19043,13 +19948,13 @@ sha256 = "1qf4pqsg12y1qx7di0y5dp0f4slyp69h2q6y21hldzknhwxx4yy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-vcard"; sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl"; name = "org-vcard"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/org-vcard"; + homepage = "https://melpa.org/#/org-vcard"; license = lib.licenses.free; }; }) {}; @@ -19064,34 +19969,34 @@ sha256 = "0av1477jn3s4s5kymd7sbb0av437vb5mnfc6rpfgzwji7b8mfr7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org2blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org2blog"; sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq"; name = "org2blog"; }; packageRequires = [ metaweblog org xml-rpc ]; meta = { - homepage = "http://melpa.org/#/org2blog"; + homepage = "https://melpa.org/#/org2blog"; license = lib.licenses.free; }; }) {}; org2jekyll = callPackage ({ dash-functional, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "org2jekyll"; - version = "0.1.8"; + version = "0.1.9"; src = fetchFromGitHub { owner = "ardumont"; repo = "org2jekyll"; - rev = "a12173b9507b3ef54dfebb5751503ba1ee93c6aa"; - sha256 = "064kw64w9snm0lbshxn8d6yd9xvyislhg37fmhq1w7vy8lm61xvf"; + rev = "35e11ffa24b140d2e247df195489fca344bd0c08"; + sha256 = "089nqbda5mg1ippqnsl5wcx9n1gpnaqhl6kz54n47kivb400bidh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/org2jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org2jekyll"; sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv"; name = "org2jekyll"; }; packageRequires = [ dash-functional deferred s ]; meta = { - homepage = "http://melpa.org/#/org2jekyll"; + homepage = "https://melpa.org/#/org2jekyll"; license = lib.licenses.free; }; }) {}; @@ -19106,13 +20011,13 @@ sha256 = "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgbox"; sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8"; name = "orgbox"; }; packageRequires = [ cl-lib org ]; meta = { - homepage = "http://melpa.org/#/orgbox"; + homepage = "https://melpa.org/#/orgbox"; license = lib.licenses.free; }; }) {}; @@ -19127,34 +20032,34 @@ sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgit"; sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w"; name = "orgit"; }; packageRequires = [ dash emacs magit org ]; meta = { - homepage = "http://melpa.org/#/orgit"; + homepage = "https://melpa.org/#/orgit"; license = lib.licenses.free; }; }) {}; - orglink = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: + orglink = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "orglink"; - version = "0.2.3"; + version = "0.2.4"; src = fetchFromGitHub { owner = "tarsius"; repo = "orglink"; - rev = "4f3750227b9279f248bc8ee5724d3c27ea97e2e1"; - sha256 = "00vhzblzscp3mkl6x1nz116i4isjwcc5gkpdksym3mr5nqvqhd97"; + rev = "09c564022acda5973256e71a467849637473d7e6"; + sha256 = "076q8j70vqabirri6ckl1f0y60pq4bnilds6s34mxsxz1k3z3m1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/orglink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orglink"; sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b"; name = "orglink"; }; - packageRequires = [ dash org ]; + packageRequires = [ dash emacs org ]; meta = { - homepage = "http://melpa.org/#/orglink"; + homepage = "https://melpa.org/#/orglink"; license = lib.licenses.free; }; }) {}; @@ -19169,13 +20074,34 @@ sha256 = "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-browse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-browse"; sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm"; name = "osx-browse"; }; packageRequires = [ browse-url-dwim string-utils ]; meta = { - homepage = "http://melpa.org/#/osx-browse"; + homepage = "https://melpa.org/#/osx-browse"; + license = lib.licenses.free; + }; + }) {}; + osx-clipboard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "osx-clipboard"; + version = "0.1"; + src = fetchFromGitHub { + owner = "joddie"; + repo = "osx-clipboard-mode"; + rev = "e46dd31327a3f92f77b013b4c9b1e5fdd0e5c73d"; + sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-clipboard"; + sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f"; + name = "osx-clipboard"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/osx-clipboard"; license = lib.licenses.free; }; }) {}; @@ -19190,13 +20116,13 @@ sha256 = "1vywqzw8hydi944q4ghgxbbvvmwfpa9wj5nmrnixfcw8h4mfcxvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-dictionary"; sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82"; name = "osx-dictionary"; }; packageRequires = [ chinese-word-at-point cl-lib ]; meta = { - homepage = "http://melpa.org/#/osx-dictionary"; + homepage = "https://melpa.org/#/osx-dictionary"; license = lib.licenses.free; }; }) {}; @@ -19211,13 +20137,13 @@ sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-location"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-location"; sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c"; name = "osx-location"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/osx-location"; + homepage = "https://melpa.org/#/osx-location"; license = lib.licenses.free; }; }) {}; @@ -19232,13 +20158,13 @@ sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-plist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-plist"; sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8"; name = "osx-plist"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/osx-plist"; + homepage = "https://melpa.org/#/osx-plist"; license = lib.licenses.free; }; }) {}; @@ -19253,13 +20179,13 @@ sha256 = "1pn6xvq41di1jb5d3i8wgs54w0m2414cq3f1vk0xpibshkq7sr4a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/osx-trash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-trash"; sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj"; name = "osx-trash"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/osx-trash"; + homepage = "https://melpa.org/#/osx-trash"; license = lib.licenses.free; }; }) {}; @@ -19274,13 +20200,13 @@ sha256 = "1v9kx5xr7xcr6i664h2g6j8824yjsjdn5pvgmawvxrrplbjmiqnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outorg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outorg"; sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx"; name = "outorg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/outorg"; + homepage = "https://melpa.org/#/outorg"; license = lib.licenses.free; }; }) {}; @@ -19295,13 +20221,13 @@ sha256 = "1v04iyx57w8scw3iqrivii7q0sh8sa7xacswdhd18mw9kvjrbj98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/outshine"; - sha256 = "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outshine"; + sha256 = "1ajddzcrnvfgx3xa5wm0bcll9dax52syg1p521mv0ffkld63jyfl"; name = "outshine"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/outshine"; + homepage = "https://melpa.org/#/outshine"; license = lib.licenses.free; }; }) {}; @@ -19316,13 +20242,13 @@ sha256 = "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ov"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ov"; sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb"; name = "ov"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ov"; + homepage = "https://melpa.org/#/ov"; license = lib.licenses.free; }; }) {}; @@ -19337,13 +20263,13 @@ sha256 = "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/overseer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/overseer"; sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg"; name = "overseer"; }; packageRequires = [ dash emacs pkg-info ]; meta = { - homepage = "http://melpa.org/#/overseer"; + homepage = "https://melpa.org/#/overseer"; license = lib.licenses.free; }; }) {}; @@ -19358,13 +20284,13 @@ sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/owdriver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/owdriver"; sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd"; name = "owdriver"; }; packageRequires = [ log4e smartrep yaxception ]; meta = { - homepage = "http://melpa.org/#/owdriver"; + homepage = "https://melpa.org/#/owdriver"; license = lib.licenses.free; }; }) {}; @@ -19379,13 +20305,13 @@ sha256 = "047fcvpvwzaqisw4q3p6hxgjyqsi2n9nms1qx9w4znvxrnjq8jz3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-ioslide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-ioslide"; sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc"; name = "ox-ioslide"; }; packageRequires = [ cl-lib emacs f org ]; meta = { - homepage = "http://melpa.org/#/ox-ioslide"; + homepage = "https://melpa.org/#/ox-ioslide"; license = lib.licenses.free; }; }) {}; @@ -19400,34 +20326,34 @@ sha256 = "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-pandoc"; sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc"; name = "ox-pandoc"; }; packageRequires = [ dash emacs ht org ]; meta = { - homepage = "http://melpa.org/#/ox-pandoc"; + homepage = "https://melpa.org/#/ox-pandoc"; license = lib.licenses.free; }; }) {}; ox-twbs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ox-twbs"; - version = "1.0.5"; + version = "1.0.7"; src = fetchFromGitHub { owner = "marsmining"; repo = "ox-twbs"; - rev = "cfe67353d148e65a7676f1609d8cc22a4c8fbc78"; - sha256 = "026g48sgqwnqs5zmrabhiv3l8052l4c1vsbsf6bdxv4a6yp0l654"; + rev = "d2def6a33d179c8c9778d1bf8a72ab347cbc42e3"; + sha256 = "08dw3h1417cr6ddd8gl8zcd11pxqpmkd67bknzhjpj7bbqznfqwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ox-twbs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-twbs"; sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx"; name = "ox-twbs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ox-twbs"; + homepage = "https://melpa.org/#/ox-twbs"; license = lib.licenses.free; }; }) {}; @@ -19442,13 +20368,13 @@ sha256 = "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pabbrev"; sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3"; name = "pabbrev"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pabbrev"; + homepage = "https://melpa.org/#/pabbrev"; license = lib.licenses.free; }; }) {}; @@ -19463,13 +20389,13 @@ sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package+"; sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn"; name = "package-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/package+"; + homepage = "https://melpa.org/#/package+"; license = lib.licenses.free; }; }) {}; @@ -19484,34 +20410,34 @@ sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-safe-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-safe-delete"; sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw"; name = "package-safe-delete"; }; packageRequires = [ emacs epl ]; meta = { - homepage = "http://melpa.org/#/package-safe-delete"; + homepage = "https://melpa.org/#/package-safe-delete"; license = lib.licenses.free; }; }) {}; - package-utils = callPackage ({ epl, fetchFromGitHub, fetchurl, lib, melpaBuild }: + package-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-utils"; - version = "0.3.0"; + version = "0.4.0"; src = fetchFromGitHub { owner = "Silex"; repo = "package-utils"; - rev = "4a56f411f98fd455556a3f1d6c16a577a22057a2"; - sha256 = "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa"; + rev = "8aad83652944e7414a52c82e3c34f8ef78142118"; + sha256 = "0fs0a274c7sxldjj0m8wfx9vx7fkq41wngsvk8drzc38qa965vs0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/package-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-utils"; sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; name = "package-utils"; }; - packageRequires = [ epl ]; + packageRequires = []; meta = { - homepage = "http://melpa.org/#/package-utils"; + homepage = "https://melpa.org/#/package-utils"; license = lib.licenses.free; }; }) {}; @@ -19522,17 +20448,17 @@ src = fetchFromGitHub { owner = "tarsius"; repo = "packed"; - rev = "8ab8332a6078a1279d80830e397faf52e12eb283"; - sha256 = "1czjja6npjxm8vmv74796zxhd5gaqjk477cl0fnmm45dny1h7sr7"; + rev = "4b278931c3694c467e5aaa0246956227806065a0"; + sha256 = "1zzm43x0y90j4cr4zpwn3fs8apl7n0jhl6qlfkcbar7bb62pi66q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/packed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/packed"; sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z"; name = "packed"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/packed"; + homepage = "https://melpa.org/#/packed"; license = lib.licenses.free; }; }) {}; @@ -19547,13 +20473,13 @@ sha256 = "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/page-break-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/page-break-lines"; sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7"; name = "page-break-lines"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/page-break-lines"; + homepage = "https://melpa.org/#/page-break-lines"; license = lib.licenses.free; }; }) {}; @@ -19568,34 +20494,34 @@ sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pallet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pallet"; sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7"; name = "pallet"; }; packageRequires = [ cask dash f s ]; meta = { - homepage = "http://melpa.org/#/pallet"; + homepage = "https://melpa.org/#/pallet"; license = lib.licenses.free; }; }) {}; pandoc-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }: melpaBuild { pname = "pandoc-mode"; - version = "2.15"; + version = "2.17.2"; src = fetchFromGitHub { owner = "joostkremers"; repo = "pandoc-mode"; - rev = "60d3abea189467e04b5ce7dbe38d8b76ce5686cf"; - sha256 = "0g2iab5fmz85z532102lqn2wp1wgqy07bxkca95azi2gkbg0kbmj"; + rev = "7f184c178d759e573eaed486d9d70c9b5c8c1eb0"; + sha256 = "17ibs2szjvy4ar4gidlyg6w20926fr1z59m851akghiwf4aqly7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pandoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pandoc-mode"; sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781"; name = "pandoc-mode"; }; packageRequires = [ dash hydra ]; meta = { - homepage = "http://melpa.org/#/pandoc-mode"; + homepage = "https://melpa.org/#/pandoc-mode"; license = lib.licenses.free; }; }) {}; @@ -19610,13 +20536,13 @@ sha256 = "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pangu-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pangu-spacing"; sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8"; name = "pangu-spacing"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pangu-spacing"; + homepage = "https://melpa.org/#/pangu-spacing"; license = lib.licenses.free; }; }) {}; @@ -19631,34 +20557,34 @@ sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paper-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paper-theme"; sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50"; name = "paper-theme"; }; packageRequires = [ emacs hexrgb ]; meta = { - homepage = "http://melpa.org/#/paper-theme"; + homepage = "https://melpa.org/#/paper-theme"; license = lib.licenses.free; }; }) {}; paradox = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, let-alist, lib, melpaBuild, seq, spinner }: melpaBuild { pname = "paradox"; - version = "2.3.7"; + version = "2.4"; src = fetchFromGitHub { owner = "Malabarba"; repo = "paradox"; - rev = "8eca9880ed52d0d53d7d5e28858ec95987fa22e1"; - sha256 = "1vc59n9jmsn5d15v2m9xl64564h3q0c78pv4a4n3dhd1iz797l3x"; + rev = "67f7d546c841e2d8f245e2b84e18619115188651"; + sha256 = "0mg9glbrvhk7xl2grr8fs08wksqvwcgsdgwx0s8fhf8ygcvqcqix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paradox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paradox"; sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2"; name = "paradox"; }; packageRequires = [ emacs hydra let-alist seq spinner ]; meta = { - homepage = "http://melpa.org/#/paradox"; + homepage = "https://melpa.org/#/paradox"; license = lib.licenses.free; }; }) {}; @@ -19668,16 +20594,16 @@ src = fetchgit { url = "http://mumble.net/~campbell/git/paredit.git"; rev = "82bb75ceb2ddc272d6618d94874b7fc13181a409"; - sha256 = "7587cd2cf6e5b245678bbca8cbad07db8576ff976a504cd8d6e52fa85cf99f8f"; + sha256 = "13wzz5fahbz5svc4ql3ajzzpd1fv0ynwpa5widklbcp5yqncv1vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paredit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paredit"; sha256 = "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr"; name = "paredit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/paredit"; + homepage = "https://melpa.org/#/paredit"; license = lib.licenses.free; }; }) {}; @@ -19692,34 +20618,34 @@ sha256 = "0jbjwjl92pf0kih3p2x20ms2kpyzzam8fir661nimpmk802ahgkj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paredit-everywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paredit-everywhere"; sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36"; name = "paredit-everywhere"; }; packageRequires = [ paredit ]; meta = { - homepage = "http://melpa.org/#/paredit-everywhere"; + homepage = "https://melpa.org/#/paredit-everywhere"; license = lib.licenses.free; }; }) {}; paren-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "paren-face"; - version = "0.2.0"; + version = "0.2.1"; src = fetchFromGitHub { owner = "tarsius"; repo = "paren-face"; - rev = "835d817295d81e2a6def9beb37f05aaf97870e86"; - sha256 = "033gdya7f6p4kkapnmnbxlm88g4rbsmym4cc4jkcmp91idh63syq"; + rev = "932cd9681be30096b766717869ad0d3180d3b637"; + sha256 = "1l0rq3k78k68ky58bv1mhya3mnl7n5wgr88n95na2lcil1dk8ghh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paren-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paren-face"; sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf"; name = "paren-face"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/paren-face"; + homepage = "https://melpa.org/#/paren-face"; license = lib.licenses.free; }; }) {}; @@ -19734,13 +20660,13 @@ sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/parent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/parent-mode"; sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig"; name = "parent-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/parent-mode"; + homepage = "https://melpa.org/#/parent-mode"; license = lib.licenses.free; }; }) {}; @@ -19755,13 +20681,13 @@ sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/parsebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/parsebib"; sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd"; name = "parsebib"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/parsebib"; + homepage = "https://melpa.org/#/parsebib"; license = lib.licenses.free; }; }) {}; @@ -19776,13 +20702,13 @@ sha256 = "18m0973l670cjbzpa1vfv06gymhsa2f1pjcp329s0npb735x5whj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pass"; sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr"; name = "pass"; }; packageRequires = [ emacs f password-store ]; meta = { - homepage = "http://melpa.org/#/pass"; + homepage = "https://melpa.org/#/pass"; license = lib.licenses.free; }; }) {}; @@ -19797,13 +20723,13 @@ sha256 = "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/passthword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/passthword"; sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn"; name = "passthword"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/passthword"; + homepage = "https://melpa.org/#/passthword"; license = lib.licenses.free; }; }) {}; @@ -19814,16 +20740,16 @@ src = fetchgit { url = "http://git.zx2c4.com/password-store"; rev = "1aac79d9617431bbaf218f9a9d270929762d2816"; - sha256 = "f71d0b36570983c35e08b6672c186b5c308b57536a96a747f09665bab794be30"; + sha256 = "0c5yjjvvlrcny13sg5kaadbqnc2wdcc2qrxn11gc70q9awv0n7gp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/password-store"; sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss"; name = "password-store"; }; packageRequires = [ dash f s ]; meta = { - homepage = "http://melpa.org/#/password-store"; + homepage = "https://melpa.org/#/password-store"; license = lib.licenses.free; }; }) {}; @@ -19838,13 +20764,13 @@ sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastehub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastehub"; sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v"; name = "pastehub"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pastehub"; + homepage = "https://melpa.org/#/pastehub"; license = lib.licenses.free; }; }) {}; @@ -19859,13 +20785,34 @@ sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pastelmac-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastelmac-theme"; sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f"; name = "pastelmac-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/pastelmac-theme"; + homepage = "https://melpa.org/#/pastelmac-theme"; + license = lib.licenses.free; + }; + }) {}; + pathify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "pathify"; + version = "0.1"; + src = fetchFromGitHub { + owner = "alezost"; + repo = "pathify.el"; + rev = "335332a900717ae01bde5ccb8f3dc97a5350f123"; + sha256 = "1brdyrp2sz1pszdfr6f4w94qxk5lrd6kphc1xa5pywfns14c9386"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pathify"; + sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f"; + name = "pathify"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/pathify"; license = lib.licenses.free; }; }) {}; @@ -19880,13 +20827,13 @@ sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/paxedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paxedit"; sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic"; name = "paxedit"; }; packageRequires = [ cl-lib paredit ]; meta = { - homepage = "http://melpa.org/#/paxedit"; + homepage = "https://melpa.org/#/paxedit"; license = lib.licenses.free; }; }) {}; @@ -19901,13 +20848,13 @@ sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcache"; sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l"; name = "pcache"; }; packageRequires = [ eieio ]; meta = { - homepage = "http://melpa.org/#/pcache"; + homepage = "https://melpa.org/#/pcache"; license = lib.licenses.free; }; }) {}; @@ -19922,13 +20869,34 @@ sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcomplete-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcomplete-extension"; sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc"; name = "pcomplete-extension"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/pcomplete-extension"; + homepage = "https://melpa.org/#/pcomplete-extension"; + license = lib.licenses.free; + }; + }) {}; + pcre2el = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "pcre2el"; + version = "1.8"; + src = fetchFromGitHub { + owner = "joddie"; + repo = "pcre2el"; + rev = "166a10472002010692dbc35f323ffb8110a294c5"; + sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcre2el"; + sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3"; + name = "pcre2el"; + }; + packageRequires = [ cl-lib emacs ]; + meta = { + homepage = "https://melpa.org/#/pcre2el"; license = lib.licenses.free; }; }) {}; @@ -19943,13 +20911,13 @@ sha256 = "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pcsv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcsv"; sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl"; name = "pcsv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pcsv"; + homepage = "https://melpa.org/#/pcsv"; license = lib.licenses.free; }; }) {}; @@ -19964,13 +20932,13 @@ sha256 = "19sy49r3ijh36m7hl4vspw5c4i8pnfqdn4ldm2sqchxigkw56ayl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pdf-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pdf-tools"; sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw"; name = "pdf-tools"; }; packageRequires = [ emacs let-alist tablist ]; meta = { - homepage = "http://melpa.org/#/pdf-tools"; + homepage = "https://melpa.org/#/pdf-tools"; license = lib.licenses.free; }; }) {}; @@ -19985,54 +20953,54 @@ sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/peg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/peg"; sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm"; name = "peg"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/peg"; + homepage = "https://melpa.org/#/peg"; license = lib.licenses.free; }; }) {}; per-buffer-theme = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "per-buffer-theme"; - version = "1.3"; + version = "1.5"; src = fetchhg { url = "https://bitbucket.com/inigoserna/per-buffer-theme.el"; - rev = "2b82a04b28d0"; - sha256 = "1rh87jf0a15q35a8h00bx6k5wa931rb6gh600zbs7j4r3y8qsylf"; + rev = "9e6200da91b3"; + sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/per-buffer-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/per-buffer-theme"; sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn"; name = "per-buffer-theme"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/per-buffer-theme"; + homepage = "https://melpa.org/#/per-buffer-theme"; license = lib.licenses.free; }; }) {}; persistent-scratch = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "persistent-scratch"; - version = "0.2.3"; + version = "0.2.5"; src = fetchFromGitHub { owner = "Fanael"; repo = "persistent-scratch"; - rev = "f0554b9edb4b05150f297b5c14a2da003209d3bf"; - sha256 = "0h05j55y3csq91a5m2fg99y4rzsh7zca7hnifb6kic5zb3nahi00"; + rev = "107cf4022bed13692e6ac6a544c06227f30e3535"; + sha256 = "0j72rqd96dz9pp9zwc88q3358m4b891dg0szmbyvs4myp3yandz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persistent-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persistent-scratch"; sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1"; name = "persistent-scratch"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/persistent-scratch"; + homepage = "https://melpa.org/#/persistent-scratch"; license = lib.licenses.free; }; }) {}; @@ -20047,13 +21015,13 @@ sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persistent-soft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persistent-soft"; sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc"; name = "persistent-soft"; }; packageRequires = [ list-utils pcache ]; meta = { - homepage = "http://melpa.org/#/persistent-soft"; + homepage = "https://melpa.org/#/persistent-soft"; license = lib.licenses.free; }; }) {}; @@ -20068,13 +21036,13 @@ sha256 = "090b73969namf3h7pbf8xc969dygj3frzlkf0h2x29wl1fmag5kr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/persp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persp-mode"; sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w"; name = "persp-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/persp-mode"; + homepage = "https://melpa.org/#/persp-mode"; license = lib.licenses.free; }; }) {}; @@ -20089,13 +21057,13 @@ sha256 = "12c2rrhysrcl2arc6hpzv6lxbb1r3bzlvdp23hnp9sci6yc10k3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/perspective"; sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml"; name = "perspective"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/perspective"; + homepage = "https://melpa.org/#/perspective"; license = lib.licenses.free; }; }) {}; @@ -20110,13 +21078,13 @@ sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ph"; sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l"; name = "ph"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ph"; + homepage = "https://melpa.org/#/ph"; license = lib.licenses.free; }; }) {}; @@ -20131,13 +21099,13 @@ sha256 = "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phi-search-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-search-mc"; sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8"; name = "phi-search-mc"; }; packageRequires = [ multiple-cursors phi-search ]; meta = { - homepage = "http://melpa.org/#/phi-search-mc"; + homepage = "https://melpa.org/#/phi-search-mc"; license = lib.licenses.free; }; }) {}; @@ -20152,13 +21120,13 @@ sha256 = "0zs11811kx6x1zgc1icd8gw420saa7z6zshpzmrddnbznya4qql6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-auto-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-auto-yasnippets"; sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn"; name = "php-auto-yasnippets"; }; packageRequires = [ php-mode yasnippet ]; meta = { - homepage = "http://melpa.org/#/php-auto-yasnippets"; + homepage = "https://melpa.org/#/php-auto-yasnippets"; license = lib.licenses.free; }; }) {}; @@ -20173,13 +21141,13 @@ sha256 = "0pwhw59ki19f9rkgvvnjzhby67s0y9hpsrg6cwqxakjlm66w96q3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/php-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-mode"; sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y"; name = "php-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/php-mode"; + homepage = "https://melpa.org/#/php-mode"; license = lib.licenses.free; }; }) {}; @@ -20194,13 +21162,13 @@ sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phpcbf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phpcbf"; sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv"; name = "phpcbf"; }; packageRequires = [ s ]; meta = { - homepage = "http://melpa.org/#/phpcbf"; + homepage = "https://melpa.org/#/phpcbf"; license = lib.licenses.free; }; }) {}; @@ -20215,13 +21183,13 @@ sha256 = "1s4a0ygm79shv6f0rghrkq9jb7jc7sh9cjxzlzj0c8zpvsxl0hlz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/phpunit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phpunit"; sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8"; name = "phpunit"; }; packageRequires = [ f pkg-info s ]; meta = { - homepage = "http://melpa.org/#/phpunit"; + homepage = "https://melpa.org/#/phpunit"; license = lib.licenses.free; }; }) {}; @@ -20236,13 +21204,13 @@ sha256 = "12jhdkgfck2a6d5jj65l9d98dm34gsyi0ya4h21dbbvz35zivz70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pinyin-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pinyin-search"; sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z"; name = "pinyin-search"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pinyin-search"; + homepage = "https://melpa.org/#/pinyin-search"; license = lib.licenses.free; }; }) {}; @@ -20257,13 +21225,13 @@ sha256 = "1dsg49156mfhkd8ip4ny03sc06zchxr1qpbcx48f5sn4m9j5d3vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pip-requirements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pip-requirements"; sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz"; name = "pip-requirements"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/pip-requirements"; + homepage = "https://melpa.org/#/pip-requirements"; license = lib.licenses.free; }; }) {}; @@ -20278,13 +21246,13 @@ sha256 = "1wg8pcwd70ixn2bxh01934zl12ry4pgx3l9dccpbjdi40gira00d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pixiv-novel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pixiv-novel-mode"; sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px"; name = "pixiv-novel-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pixiv-novel-mode"; + homepage = "https://melpa.org/#/pixiv-novel-mode"; license = lib.licenses.free; }; }) {}; @@ -20299,13 +21267,13 @@ sha256 = "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pkg-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pkg-info"; sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx"; name = "pkg-info"; }; packageRequires = [ epl ]; meta = { - homepage = "http://melpa.org/#/pkg-info"; + homepage = "https://melpa.org/#/pkg-info"; license = lib.licenses.free; }; }) {}; @@ -20320,34 +21288,55 @@ sha256 = "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pkgbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pkgbuild-mode"; sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x"; name = "pkgbuild-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pkgbuild-mode"; + homepage = "https://melpa.org/#/pkgbuild-mode"; license = lib.licenses.free; }; }) {}; platformio-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "platformio-mode"; - version = "0.2.1"; + version = "0.2.2"; src = fetchFromGitHub { - owner = "zachmassia"; - repo = "platformio-mode"; - rev = "6d12f34548f93dec3c6fe40843d87a8a67ec25c7"; - sha256 = "1k3bqv5y2xp1jl2hpf8qhs11yzhcl8k40fxqjzv7mvc0ysq9y6wb"; + owner = "ZachMassia"; + repo = "PlatformIO-Mode"; + rev = "470a80c1d764a6e1680a2b41ca5a847869a07a27"; + sha256 = "1nznbkl06cdq4pyqmvkp9jynsjibn0fd6ai4mggz6ggcwzcixbf0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/platformio-mode"; - sha256 = "022l20sfyfkvp6kmmqxr7gcmcdx6b1dgsakjjnx8fknrpxr5kyps"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/platformio-mode"; + sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f"; name = "platformio-mode"; }; packageRequires = [ projectile ]; meta = { - homepage = "http://melpa.org/#/platformio-mode"; + homepage = "https://melpa.org/#/platformio-mode"; + license = lib.licenses.free; + }; + }) {}; + play-routes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "play-routes-mode"; + version = "1.0"; + src = fetchFromGitHub { + owner = "brocode"; + repo = "play-routes-mode"; + rev = "d7eb682cd474d90b3a3d005290cd6d4fe9f94cae"; + sha256 = "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/play-routes-mode"; + sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz"; + name = "play-routes-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/play-routes-mode"; license = lib.licenses.free; }; }) {}; @@ -20362,13 +21351,13 @@ sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plenv"; sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4"; name = "plenv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/plenv"; + homepage = "https://melpa.org/#/plenv"; license = lib.licenses.free; }; }) {}; @@ -20383,13 +21372,13 @@ sha256 = "0f00dv5jwbhs99j4jc6lvr5n0mv1y80yg7zpp6yrmhww6829l5rg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plsense"; sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va"; name = "plsense"; }; packageRequires = [ auto-complete log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/plsense"; + homepage = "https://melpa.org/#/plsense"; license = lib.licenses.free; }; }) {}; @@ -20404,13 +21393,13 @@ sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/plsense-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plsense-direx"; sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j"; name = "plsense-direx"; }; packageRequires = [ direx log4e plsense yaxception ]; meta = { - homepage = "http://melpa.org/#/plsense-direx"; + homepage = "https://melpa.org/#/plsense-direx"; license = lib.licenses.free; }; }) {}; @@ -20419,40 +21408,40 @@ pname = "pony-snippets"; version = "0.0.1"; src = fetchFromGitHub { - owner = "seantallen"; + owner = "SeanTAllen"; repo = "pony-snippets"; rev = "56018b23a11563c6766ed706024b22aa5a4556b4"; sha256 = "0xjvxfkrl6wl31s7rvbv9zczn6d6i9vf20waqlr3c2ff3zy55ygy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pony-snippets"; - sha256 = "06rrzfg20kzpscnqr2lin9jvrcydq4wnrv7nj1d0lm6988qz88jx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pony-snippets"; + sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn"; name = "pony-snippets"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/pony-snippets"; + homepage = "https://melpa.org/#/pony-snippets"; license = lib.licenses.free; }; }) {}; ponylang-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ponylang-mode"; - version = "0.0.1"; + version = "0.0.5"; src = fetchFromGitHub { owner = "SeanTAllen"; repo = "ponylang-mode"; - rev = "d05425eca7c924109263bdac72083137a7967454"; - sha256 = "0jlycv0ck5kbszwc0v2gbka6k5h39nz8763ws0v8jada7zzmyvxm"; + rev = "e6c713a1e43f4e5a3ee78e102050fff4efe334fb"; + sha256 = "0ay44hp82ly4kdsgwhhk16gvw26kyvpl8h3fziyicfl5swy954nb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ponylang-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ponylang-mode"; sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1"; name = "ponylang-mode"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/ponylang-mode"; + homepage = "https://melpa.org/#/ponylang-mode"; license = lib.licenses.free; }; }) {}; @@ -20467,13 +21456,13 @@ sha256 = "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pophint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pophint"; sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72"; name = "pophint"; }; packageRequires = [ log4e popup yaxception ]; meta = { - homepage = "http://melpa.org/#/pophint"; + homepage = "https://melpa.org/#/pophint"; license = lib.licenses.free; }; }) {}; @@ -20488,13 +21477,13 @@ sha256 = "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup"; sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2"; name = "popup"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/popup"; + homepage = "https://melpa.org/#/popup"; license = lib.licenses.free; }; }) {}; @@ -20509,34 +21498,34 @@ sha256 = "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-complete"; sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1"; name = "popup-complete"; }; packageRequires = [ popup ]; meta = { - homepage = "http://melpa.org/#/popup-complete"; + homepage = "https://melpa.org/#/popup-complete"; license = lib.licenses.free; }; }) {}; popup-imenu = callPackage ({ dash, fetchFromGitHub, fetchurl, flx-ido, lib, melpaBuild, popup }: melpaBuild { pname = "popup-imenu"; - version = "0.3"; + version = "0.5"; src = fetchFromGitHub { owner = "ancane"; repo = "popup-imenu"; - rev = "bc363f34d1764300708f9cd3a71a57a2ff4a0d53"; - sha256 = "083q5q53j1dcv4m2jdamh28bdk6ajzcypmyb3xr52dnqdm3bw6im"; + rev = "540e8c0473fd50ff0a85c870057e397a0d3c5eb5"; + sha256 = "19mqzfpki2zlnibp2vzymhdld1m20jinxwgdhmbl6zdfx74zbz7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popup-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-imenu"; sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn"; name = "popup-imenu"; }; packageRequires = [ dash flx-ido popup ]; meta = { - homepage = "http://melpa.org/#/popup-imenu"; + homepage = "https://melpa.org/#/popup-imenu"; license = lib.licenses.free; }; }) {}; @@ -20551,13 +21540,13 @@ sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popwin"; sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf"; name = "popwin"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/popwin"; + homepage = "https://melpa.org/#/popwin"; license = lib.licenses.free; }; }) {}; @@ -20572,13 +21561,13 @@ sha256 = "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pos-tip"; sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh"; name = "pos-tip"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pos-tip"; + homepage = "https://melpa.org/#/pos-tip"; license = lib.licenses.free; }; }) {}; @@ -20593,13 +21582,13 @@ sha256 = "1nx3b24i26kgm52xw21x4m15qjkxw3sg5r6qyvck0fyhj0gw69gr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/powerline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/powerline"; sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx"; name = "powerline"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/powerline"; + homepage = "https://melpa.org/#/powerline"; license = lib.licenses.free; }; }) {}; @@ -20614,13 +21603,13 @@ sha256 = "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/powershell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/powershell"; sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk"; name = "powershell"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/powershell"; + homepage = "https://melpa.org/#/powershell"; license = lib.licenses.free; }; }) {}; @@ -20635,13 +21624,13 @@ sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ppd-sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ppd-sr-speedbar"; sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8"; name = "ppd-sr-speedbar"; }; packageRequires = [ project-persist-drawer sr-speedbar ]; meta = { - homepage = "http://melpa.org/#/ppd-sr-speedbar"; + homepage = "https://melpa.org/#/ppd-sr-speedbar"; license = lib.licenses.free; }; }) {}; @@ -20656,13 +21645,13 @@ sha256 = "013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pretty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pretty-mode"; sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f"; name = "pretty-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pretty-mode"; + homepage = "https://melpa.org/#/pretty-mode"; license = lib.licenses.free; }; }) {}; @@ -20677,13 +21666,13 @@ sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/processing-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/processing-mode"; sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m"; name = "processing-mode"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/processing-mode"; + homepage = "https://melpa.org/#/processing-mode"; license = lib.licenses.free; }; }) {}; @@ -20698,13 +21687,13 @@ sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/processing-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/processing-snippets"; sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r"; name = "processing-snippets"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/processing-snippets"; + homepage = "https://melpa.org/#/processing-snippets"; license = lib.licenses.free; }; }) {}; @@ -20719,13 +21708,13 @@ sha256 = "0r32rjfsbna0g2376gdv0c0im1lzw1cwbp9690rgqjj95ls4saa3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prodigy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prodigy"; sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85"; name = "prodigy"; }; packageRequires = [ dash emacs f s ]; meta = { - homepage = "http://melpa.org/#/prodigy"; + homepage = "https://melpa.org/#/prodigy"; license = lib.licenses.free; }; }) {}; @@ -20740,13 +21729,13 @@ sha256 = "1hv8ifrpwn434sm41vkgbwni21ma5kfybkwasi6zp0f2b5i9ziw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-explorer"; sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m"; name = "project-explorer"; }; packageRequires = [ cl-lib emacs es-lib es-windows ]; meta = { - homepage = "http://melpa.org/#/project-explorer"; + homepage = "https://melpa.org/#/project-explorer"; license = lib.licenses.free; }; }) {}; @@ -20761,13 +21750,13 @@ sha256 = "1x7hwda1w59b8hvzxyk996wdz6phs6rchh3f1ydf0ab6x7m7xvjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-persist"; sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24"; name = "project-persist"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/project-persist"; + homepage = "https://melpa.org/#/project-persist"; license = lib.licenses.free; }; }) {}; @@ -20782,13 +21771,13 @@ sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-persist-drawer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-persist-drawer"; sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb"; name = "project-persist-drawer"; }; packageRequires = [ project-persist ]; meta = { - homepage = "http://melpa.org/#/project-persist-drawer"; + homepage = "https://melpa.org/#/project-persist-drawer"; license = lib.licenses.free; }; }) {}; @@ -20802,13 +21791,13 @@ sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/project-root"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-root"; sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb"; name = "project-root"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/project-root"; + homepage = "https://melpa.org/#/project-root"; license = lib.licenses.free; }; }) {}; @@ -20823,34 +21812,34 @@ sha256 = "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile"; sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn"; name = "projectile"; }; packageRequires = [ dash pkg-info ]; meta = { - homepage = "http://melpa.org/#/projectile"; + homepage = "https://melpa.org/#/projectile"; license = lib.licenses.free; }; }) {}; projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }: melpaBuild { pname = "projectile-rails"; - version = "0.7.0"; + version = "0.8.3"; src = fetchFromGitHub { owner = "asok"; repo = "projectile-rails"; - rev = "21ce05e412b0efebfeab9f84d38c679758ddbf76"; - sha256 = "0f0siz230xsv20h8wmwa1i8wdsp964y6qmb2i3l485yh03bz1x95"; + rev = "6d44cd771fc70adbf639f2f2a320fdcc88a5fb27"; + sha256 = "0k4ai896yfbjym01ay5gzgyw41lnqs45c9ndl3i5c8006ggikc0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-rails"; sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq"; name = "projectile-rails"; }; packageRequires = [ emacs f inf-ruby inflections projectile rake ]; meta = { - homepage = "http://melpa.org/#/projectile-rails"; + homepage = "https://melpa.org/#/projectile-rails"; license = lib.licenses.free; }; }) {}; @@ -20865,13 +21854,13 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projectile-sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-sift"; sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i"; name = "projectile-sift"; }; packageRequires = [ projectile sift ]; meta = { - homepage = "http://melpa.org/#/projectile-sift"; + homepage = "https://melpa.org/#/projectile-sift"; license = lib.licenses.free; }; }) {}; @@ -20886,13 +21875,13 @@ sha256 = "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/projekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projekt"; sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8"; name = "projekt"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/projekt"; + homepage = "https://melpa.org/#/projekt"; license = lib.licenses.free; }; }) {}; @@ -20907,13 +21896,13 @@ sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prompt-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prompt-text"; sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc"; name = "prompt-text"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/prompt-text"; + homepage = "https://melpa.org/#/prompt-text"; license = lib.licenses.free; }; }) {}; @@ -20928,13 +21917,13 @@ sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/prop-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prop-menu"; sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i"; name = "prop-menu"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/prop-menu"; + homepage = "https://melpa.org/#/prop-menu"; license = lib.licenses.free; }; }) {}; @@ -20949,13 +21938,13 @@ sha256 = "03df8zvx2sry3jz2x4pi3l32qyfqa7w8kj8jdbz30nzy0h7aa070"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/protobuf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/protobuf-mode"; sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj"; name = "protobuf-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/protobuf-mode"; + homepage = "https://melpa.org/#/protobuf-mode"; license = lib.licenses.free; }; }) {}; @@ -20970,13 +21959,13 @@ sha256 = "0wgxrwl7dpy084sc76wiwpixycb171g7xwc66m5gnlrv79qyac73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psci"; sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g"; name = "psci"; }; packageRequires = [ dash deferred f purescript-mode s ]; meta = { - homepage = "http://melpa.org/#/psci"; + homepage = "https://melpa.org/#/psci"; license = lib.licenses.free; }; }) {}; @@ -20991,13 +21980,13 @@ sha256 = "0msa8c29djhy5h3zpdvx25f4y1c50rgsk8iz6r127psrxdlfrvg8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/psession"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psession"; sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a"; name = "psession"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/psession"; + homepage = "https://melpa.org/#/psession"; license = lib.licenses.free; }; }) {}; @@ -21012,34 +22001,34 @@ sha256 = "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pt"; sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj"; name = "pt"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pt"; + homepage = "https://melpa.org/#/pt"; license = lib.licenses.free; }; }) {}; puml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "puml-mode"; - version = "0.6.4"; + version = "0.6.5"; src = fetchFromGitHub { owner = "skuro"; repo = "puml-mode"; - rev = "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b"; - sha256 = "15c2p5ffvkp80v6fvxa3bgrk8mj18famngqkz2dammxnbppvnvvz"; + rev = "56cd3f393d4b5bb268a098c3fda3cf73e7d761ba"; + sha256 = "19bcf3wbmp186yxvrdsm2ax4npvi2x0id94zi13pdnw4cz7zch3v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/puml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/puml-mode"; sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn"; name = "puml-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/puml-mode"; + homepage = "https://melpa.org/#/puml-mode"; license = lib.licenses.free; }; }) {}; @@ -21054,13 +22043,13 @@ sha256 = "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/punctuality-logger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/punctuality-logger"; sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm"; name = "punctuality-logger"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/punctuality-logger"; + homepage = "https://melpa.org/#/punctuality-logger"; license = lib.licenses.free; }; }) {}; @@ -21075,13 +22064,13 @@ sha256 = "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pungi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pungi"; sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1"; name = "pungi"; }; packageRequires = [ jedi pyvenv ]; meta = { - homepage = "http://melpa.org/#/pungi"; + homepage = "https://melpa.org/#/pungi"; license = lib.licenses.free; }; }) {}; @@ -21096,13 +22085,13 @@ sha256 = "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/puppet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/puppet-mode"; sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc"; name = "puppet-mode"; }; packageRequires = [ cl-lib emacs pkg-info ]; meta = { - homepage = "http://melpa.org/#/puppet-mode"; + homepage = "https://melpa.org/#/puppet-mode"; license = lib.licenses.free; }; }) {}; @@ -21117,13 +22106,13 @@ sha256 = "1wk319akv0scvyyjsd48pisi2i1gkahhsan9hfszrs6xx3anvfd9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/purescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/purescript-mode"; sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m"; name = "purescript-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/purescript-mode"; + homepage = "https://melpa.org/#/purescript-mode"; license = lib.licenses.free; }; }) {}; @@ -21138,13 +22127,13 @@ sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pushbullet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pushbullet"; sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl"; name = "pushbullet"; }; packageRequires = [ grapnel json ]; meta = { - homepage = "http://melpa.org/#/pushbullet"; + homepage = "https://melpa.org/#/pushbullet"; license = lib.licenses.free; }; }) {}; @@ -21159,13 +22148,13 @@ sha256 = "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-autopep8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-autopep8"; sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp"; name = "py-autopep8"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/py-autopep8"; + homepage = "https://melpa.org/#/py-autopep8"; license = lib.licenses.free; }; }) {}; @@ -21180,13 +22169,13 @@ sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-isort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-isort"; sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb"; name = "py-isort"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/py-isort"; + homepage = "https://melpa.org/#/py-isort"; license = lib.licenses.free; }; }) {}; @@ -21201,13 +22190,13 @@ sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/py-yapf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-yapf"; sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f"; name = "py-yapf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/py-yapf"; + homepage = "https://melpa.org/#/py-yapf"; license = lib.licenses.free; }; }) {}; @@ -21222,13 +22211,13 @@ sha256 = "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pycarddavel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pycarddavel"; sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a"; name = "pycarddavel"; }; packageRequires = [ emacs helm ]; meta = { - homepage = "http://melpa.org/#/pycarddavel"; + homepage = "https://melpa.org/#/pycarddavel"; license = lib.licenses.free; }; }) {}; @@ -21243,13 +22232,13 @@ sha256 = "1y3q1k195wp2kgp00a1y34i20zm80wdv2kxigh6gbn2r6qzkqrar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyenv-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyenv-mode"; sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59"; name = "pyenv-mode"; }; packageRequires = [ pythonic ]; meta = { - homepage = "http://melpa.org/#/pyenv-mode"; + homepage = "https://melpa.org/#/pyenv-mode"; license = lib.licenses.free; }; }) {}; @@ -21264,13 +22253,13 @@ sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-environment"; sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7"; name = "python-environment"; }; packageRequires = [ deferred ]; meta = { - homepage = "http://melpa.org/#/python-environment"; + homepage = "https://melpa.org/#/python-environment"; license = lib.licenses.free; }; }) {}; @@ -21285,13 +22274,13 @@ sha256 = "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/python-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-x"; sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn"; name = "python-x"; }; packageRequires = [ folding python ]; meta = { - homepage = "http://melpa.org/#/python-x"; + homepage = "https://melpa.org/#/python-x"; license = lib.licenses.free; }; }) {}; @@ -21306,13 +22295,13 @@ sha256 = "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pythonic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pythonic"; sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51"; name = "pythonic"; }; packageRequires = [ cl-lib dash emacs f s ]; meta = { - homepage = "http://melpa.org/#/pythonic"; + homepage = "https://melpa.org/#/pythonic"; license = lib.licenses.free; }; }) {}; @@ -21327,13 +22316,13 @@ sha256 = "0jidmc608amd0chs4598zkj0nvyll0al093121hkczsbpgbllq9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/pyvenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyvenv"; sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v"; name = "pyvenv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/pyvenv"; + homepage = "https://melpa.org/#/pyvenv"; license = lib.licenses.free; }; }) {}; @@ -21348,13 +22337,13 @@ sha256 = "110z27n3h7p2yalicfhnv832ikfcf7p0hrf5qkryz1sdmz79wb3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/qiita"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/qiita"; sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl"; name = "qiita"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/qiita"; + homepage = "https://melpa.org/#/qiita"; license = lib.licenses.free; }; }) {}; @@ -21369,13 +22358,13 @@ sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/qml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/qml-mode"; sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n"; name = "qml-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/qml-mode"; + homepage = "https://melpa.org/#/qml-mode"; license = lib.licenses.free; }; }) {}; @@ -21390,13 +22379,13 @@ sha256 = "0lfmdlb626b3gbmlvacwn84vpqam6gk9lp29wk0hcraw69vaw1v8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quasi-monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quasi-monochrome-theme"; sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0"; name = "quasi-monochrome-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/quasi-monochrome-theme"; + homepage = "https://melpa.org/#/quasi-monochrome-theme"; license = lib.licenses.free; }; }) {}; @@ -21411,13 +22400,13 @@ sha256 = "1iypwvdgdh30c9br7jnibgwbdca2mqjy95x2ppsc51sik2mz2db1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/quickrun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quickrun"; sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy"; name = "quickrun"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/quickrun"; + homepage = "https://melpa.org/#/quickrun"; license = lib.licenses.free; }; }) {}; @@ -21432,34 +22421,34 @@ sha256 = "02bddznlqys37fnhdpp2g9xa9m7kfgrj1vl0hc5kr42hggk9wwmg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/r-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/r-autoyas"; sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4"; name = "r-autoyas"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/r-autoyas"; + homepage = "https://melpa.org/#/r-autoyas"; license = lib.licenses.free; }; }) {}; racer = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode, s }: melpaBuild { pname = "racer"; - version = "1.0.1"; + version = "1.0.2"; src = fetchFromGitHub { owner = "racer-rust"; repo = "emacs-racer"; - rev = "9b7b4b1e8b04f630d29f771ad268025ff9380236"; - sha256 = "0pbswxzgfqcp6vjlwhvnablj91kxq588j2fmcjzhf0aigkj7dxfb"; + rev = "9025fab5af8c6a487341e397a62bca08f14e9bf5"; + sha256 = "1r1gq6b33iv5a3kf96s73xp5y7yw2lq36cczmwbb9ix5bh5jhcyk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/racer"; sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi"; name = "racer"; }; packageRequires = [ dash emacs rust-mode s ]; meta = { - homepage = "http://melpa.org/#/racer"; + homepage = "https://melpa.org/#/racer"; license = lib.licenses.free; }; }) {}; @@ -21474,13 +22463,13 @@ sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-blocks"; sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8"; name = "rainbow-blocks"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rainbow-blocks"; + homepage = "https://melpa.org/#/rainbow-blocks"; license = lib.licenses.free; }; }) {}; @@ -21495,13 +22484,13 @@ sha256 = "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-delimiters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-delimiters"; sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg"; name = "rainbow-delimiters"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rainbow-delimiters"; + homepage = "https://melpa.org/#/rainbow-delimiters"; license = lib.licenses.free; }; }) {}; @@ -21516,13 +22505,13 @@ sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rainbow-identifiers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-identifiers"; sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp"; name = "rainbow-identifiers"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/rainbow-identifiers"; + homepage = "https://melpa.org/#/rainbow-identifiers"; license = lib.licenses.free; }; }) {}; @@ -21537,34 +22526,34 @@ sha256 = "1q65jj6bghvzhlqmpg61a7vn8izc01wp2fjiqx013zxpg9awvzmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rake"; sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns"; name = "rake"; }; packageRequires = [ cl-lib dash f ]; meta = { - homepage = "http://melpa.org/#/rake"; + homepage = "https://melpa.org/#/rake"; license = lib.licenses.free; }; }) {}; ranger = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ranger"; - version = "0.9.7"; + version = "0.9.8.1"; src = fetchFromGitHub { owner = "ralesi"; repo = "ranger.el"; - rev = "4b778da7aafe1dc4077a3c891ae918eae929fae6"; - sha256 = "0fkj89p0rb0r472p1rk8xpx8c74pg968pc2mmw3838y4fpc8i198"; + rev = "9367c681c96aad394069d8145ecfe683708d27fd"; + sha256 = "1r2k9s46njys2acacwk57mkr9szbpxz93xd4rnjf5gx551khlhjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ranger"; sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4"; name = "ranger"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ranger"; + homepage = "https://melpa.org/#/ranger"; license = lib.licenses.free; }; }) {}; @@ -21579,13 +22568,34 @@ sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rase"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rase"; sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0"; name = "rase"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rase"; + homepage = "https://melpa.org/#/rase"; + license = lib.licenses.free; + }; + }) {}; + rats = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }: + melpaBuild { + pname = "rats"; + version = "0.2.0"; + src = fetchFromGitHub { + owner = "ane"; + repo = "rats.el"; + rev = "8ad4023a4b9b00c1224b10b0060f6dc60b4814a4"; + sha256 = "0rwgwz1x9w447y8mxy9hrx1rzi3ac9dwk2y5yg1p08z5b7dy6vcz"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rats"; + sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr"; + name = "rats"; + }; + packageRequires = [ cl-lib go-mode s ]; + meta = { + homepage = "https://melpa.org/#/rats"; license = lib.licenses.free; }; }) {}; @@ -21600,13 +22610,13 @@ sha256 = "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rbenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rbenv"; sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65"; name = "rbenv"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rbenv"; + homepage = "https://melpa.org/#/rbenv"; license = lib.licenses.free; }; }) {}; @@ -21621,34 +22631,34 @@ sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rcirc-styles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-styles"; sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r"; name = "rcirc-styles"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/rcirc-styles"; + homepage = "https://melpa.org/#/rcirc-styles"; license = lib.licenses.free; }; }) {}; rdf-prefix = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rdf-prefix"; - version = "1.3"; + version = "1.4"; src = fetchFromGitHub { owner = "simenheg"; repo = "rdf-prefix"; - rev = "1ab1464172c7563a7dbf1224572e4ffbfc6608e6"; - sha256 = "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj"; + rev = "5e4b0ab384a55974ffa3e5efdd1e437cce8e1562"; + sha256 = "0h54mpi8jd21vjifc0yy0hvpygiam1rlmypijpi4kv42x5mxkn3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rdf-prefix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rdf-prefix"; sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm"; name = "rdf-prefix"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rdf-prefix"; + homepage = "https://melpa.org/#/rdf-prefix"; license = lib.licenses.free; }; }) {}; @@ -21663,13 +22673,13 @@ sha256 = "1ka5q2q18hgh7wl5yn04489121bq4nx369rz8nb7dr5l14cas0xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/real-auto-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/real-auto-save"; sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8"; name = "real-auto-save"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/real-auto-save"; + homepage = "https://melpa.org/#/real-auto-save"; license = lib.licenses.free; }; }) {}; @@ -21684,13 +22694,13 @@ sha256 = "07j1grdbqv3iv5ghmgsjw678bxjajcxi27clz4krcz3ys5b1h70v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/realgud"; - sha256 = "15vlln4w4wlgrk5i5nhgvjcbardpahgs9kwwayb1vmj10c8a837s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud"; + sha256 = "0qmvd35ng1aqclwj3pskn58c0fi98kvx9666wp3smgj3n88vgy15"; name = "realgud"; }; packageRequires = [ list-utils load-relative loc-changes test-simple ]; meta = { - homepage = "http://melpa.org/#/realgud"; + homepage = "https://melpa.org/#/realgud"; license = lib.licenses.free; }; }) {}; @@ -21705,13 +22715,13 @@ sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/recover-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/recover-buffers"; sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b"; name = "recover-buffers"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/recover-buffers"; + homepage = "https://melpa.org/#/recover-buffers"; license = lib.licenses.free; }; }) {}; @@ -21726,13 +22736,13 @@ sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rect+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rect+"; sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m"; name = "rect-plus"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rect+"; + homepage = "https://melpa.org/#/rect+"; license = lib.licenses.free; }; }) {}; @@ -21747,13 +22757,13 @@ sha256 = "048pjrd04w6w4v6r56yblbqgkjh01xib7k1i6rjc6288jh5vr1vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rectangle-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rectangle-utils"; sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7"; name = "rectangle-utils"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/rectangle-utils"; + homepage = "https://melpa.org/#/rectangle-utils"; license = lib.licenses.free; }; }) {}; @@ -21768,13 +22778,34 @@ sha256 = "19c5rkb4nn6fs85lixrgrv8gagr69h430inig31dvm4fip9xdjp9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/redpen-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redpen-paragraph"; sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca"; name = "redpen-paragraph"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/redpen-paragraph"; + homepage = "https://melpa.org/#/redpen-paragraph"; + license = lib.licenses.free; + }; + }) {}; + redtick = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "redtick"; + version = "0.1.1"; + src = fetchFromGitHub { + owner = "ferfebles"; + repo = "redtick"; + rev = "14e3a07c229d1f660ca5129d6e8a52a8c68db94d"; + sha256 = "0q4a4iznk6xk680xnvly69j8w1dac79qxlycwrfki6msnkagyn9p"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redtick"; + sha256 = "0qnx9s2rch4xn98vbgiq8ll2hxrwi4fi4vg4bccyvwh21nj51iq0"; + name = "redtick"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/redtick"; license = lib.licenses.free; }; }) {}; @@ -21789,13 +22820,13 @@ sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/relative-line-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/relative-line-numbers"; sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3"; name = "relative-line-numbers"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/relative-line-numbers"; + homepage = "https://melpa.org/#/relative-line-numbers"; license = lib.licenses.free; }; }) {}; @@ -21810,13 +22841,13 @@ sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/relax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/relax"; sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk"; name = "relax"; }; packageRequires = [ json ]; meta = { - homepage = "http://melpa.org/#/relax"; + homepage = "https://melpa.org/#/relax"; license = lib.licenses.free; }; }) {}; @@ -21831,13 +22862,13 @@ sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repeatable-motion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repeatable-motion"; sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw"; name = "repeatable-motion"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/repeatable-motion"; + homepage = "https://melpa.org/#/repeatable-motion"; license = lib.licenses.free; }; }) {}; @@ -21852,13 +22883,13 @@ sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repl-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repl-toggle"; sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb"; name = "repl-toggle"; }; packageRequires = [ fullframe ]; meta = { - homepage = "http://melpa.org/#/repl-toggle"; + homepage = "https://melpa.org/#/repl-toggle"; license = lib.licenses.free; }; }) {}; @@ -21873,13 +22904,13 @@ sha256 = "1pxvwiqhv2nmsxkdwn9jx7na1vgk9dg9yxidglxpmvpid6fy4qdk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/replace-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/replace-symbol"; sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng"; name = "replace-symbol"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/replace-symbol"; + homepage = "https://melpa.org/#/replace-symbol"; license = lib.licenses.free; }; }) {}; @@ -21894,13 +22925,13 @@ sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/repo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repo"; sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb"; name = "repo"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/repo"; + homepage = "https://melpa.org/#/repo"; license = lib.licenses.free; }; }) {}; @@ -21915,55 +22946,55 @@ sha256 = "1xzp2hnkr9lsjx50cxlpki9mvyhjsv0vyc77480jrlnpspakj7qs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/req-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/req-package"; sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf"; name = "req-package"; }; packageRequires = [ dash log4e use-package ]; meta = { - homepage = "http://melpa.org/#/req-package"; + homepage = "https://melpa.org/#/req-package"; license = lib.licenses.free; }; }) {}; - request = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + request = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "request"; - version = "0.2.0"; + version = "0.1.0"; src = fetchFromGitHub { - owner = "abingham"; + owner = "tkf"; repo = "emacs-request"; - rev = "48a35969f7c41810d550e6cdf784cb86c5a05a20"; - sha256 = "1fiyxbd87cdlsdhpm3b3z8ypkrkvya6lamn0qx9hsxl1yv27vx4m"; + rev = "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff"; + sha256 = "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/request"; - sha256 = "09gxfy34a13wr0agmhn0nldxaiyc72rx9xi56jirsvji4dg5j6mm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/request"; + sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji"; name = "request"; }; - packageRequires = [ cl-lib ]; + packageRequires = []; meta = { - homepage = "http://melpa.org/#/request"; + homepage = "https://melpa.org/#/request"; license = lib.licenses.free; }; }) {}; - request-deferred = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: + request-deferred = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "request-deferred"; - version = "0.2.0"; + version = "0.1.0"; src = fetchFromGitHub { - owner = "abingham"; + owner = "tkf"; repo = "emacs-request"; - rev = "48a35969f7c41810d550e6cdf784cb86c5a05a20"; - sha256 = "1fiyxbd87cdlsdhpm3b3z8ypkrkvya6lamn0qx9hsxl1yv27vx4m"; + rev = "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff"; + sha256 = "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/request-deferred"; - sha256 = "19s8q9a01v0g897s9ass1mr5wbzy82rrfcnqpvcvp05q4y787dn9"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/request-deferred"; + sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n"; name = "request-deferred"; }; - packageRequires = [ deferred request ]; + packageRequires = []; meta = { - homepage = "http://melpa.org/#/request-deferred"; + homepage = "https://melpa.org/#/request-deferred"; license = lib.licenses.free; }; }) {}; @@ -21978,13 +23009,13 @@ sha256 = "1b832r7779rmr6rhzj7klc0l5xzwc4rids87g2hczpb5dhqnchca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/requirejs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/requirejs"; sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k"; name = "requirejs"; }; packageRequires = [ cl-lib js2-mode popup s ]; meta = { - homepage = "http://melpa.org/#/requirejs"; + homepage = "https://melpa.org/#/requirejs"; license = lib.licenses.free; }; }) {}; @@ -21999,13 +23030,13 @@ sha256 = "1ywcnrrr4wp6c951mqfscvdgcmwyvxy80p40vi27nzbl977lb1xv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/resize-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/resize-window"; sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l"; name = "resize-window"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/resize-window"; + homepage = "https://melpa.org/#/resize-window"; license = lib.licenses.free; }; }) {}; @@ -22020,13 +23051,13 @@ sha256 = "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/restart-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/restart-emacs"; sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6"; name = "restart-emacs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/restart-emacs"; + homepage = "https://melpa.org/#/restart-emacs"; license = lib.licenses.free; }; }) {}; @@ -22041,13 +23072,13 @@ sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reveal-in-osx-finder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reveal-in-osx-finder"; sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc"; name = "reveal-in-osx-finder"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/reveal-in-osx-finder"; + homepage = "https://melpa.org/#/reveal-in-osx-finder"; license = lib.licenses.free; }; }) {}; @@ -22062,13 +23093,13 @@ sha256 = "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/reverse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reverse-theme"; sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776"; name = "reverse-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/reverse-theme"; + homepage = "https://melpa.org/#/reverse-theme"; license = lib.licenses.free; }; }) {}; @@ -22083,13 +23114,13 @@ sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rich-minority"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rich-minority"; sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc"; name = "rich-minority"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/rich-minority"; + homepage = "https://melpa.org/#/rich-minority"; license = lib.licenses.free; }; }) {}; @@ -22104,13 +23135,13 @@ sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rigid-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rigid-tabs"; sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp"; name = "rigid-tabs"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/rigid-tabs"; + homepage = "https://melpa.org/#/rigid-tabs"; license = lib.licenses.free; }; }) {}; @@ -22125,13 +23156,13 @@ sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rinari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rinari"; sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0"; name = "rinari"; }; packageRequires = [ inf-ruby jump ruby-compilation ruby-mode ]; meta = { - homepage = "http://melpa.org/#/rinari"; + homepage = "https://melpa.org/#/rinari"; license = lib.licenses.free; }; }) {}; @@ -22146,13 +23177,13 @@ sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rnc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rnc-mode"; sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q"; name = "rnc-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rnc-mode"; + homepage = "https://melpa.org/#/rnc-mode"; license = lib.licenses.free; }; }) {}; @@ -22167,13 +23198,34 @@ sha256 = "01xd3nc7bmf4r4d37x08rw2dlsg6gns8mraahi4rwkg6a9lwl44n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/robe"; sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk"; name = "robe"; }; packageRequires = [ inf-ruby ]; meta = { - homepage = "http://melpa.org/#/robe"; + homepage = "https://melpa.org/#/robe"; + license = lib.licenses.free; + }; + }) {}; + robots-txt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "robots-txt-mode"; + version = "0.0.1"; + src = fetchFromGitHub { + owner = "zonuexe"; + repo = "robots-txt-mode"; + rev = "7b524685036d339a8aff1481697fbcd529dfa8f7"; + sha256 = "0dimmdz4aqcif4lp23nqxfg7kngzym2yivn6h3p7bn1821vgzq9s"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/robots-txt-mode"; + sha256 = "1q3fqaf9nysy9bhx4h9idgshxr65hfwnx05vlwazx7jd6bq6kxfh"; + name = "robots-txt-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/robots-txt-mode"; license = lib.licenses.free; }; }) {}; @@ -22188,13 +23240,13 @@ sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/roguel-ike"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/roguel-ike"; sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8"; name = "roguel-ike"; }; packageRequires = [ popup ]; meta = { - homepage = "http://melpa.org/#/roguel-ike"; + homepage = "https://melpa.org/#/roguel-ike"; license = lib.licenses.free; }; }) {}; @@ -22209,13 +23261,13 @@ sha256 = "133ficdghshlmwq5dn42cg3h51jdg4lcwqr4cd2s2s52rz8plw9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rope-read-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rope-read-mode"; sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw"; name = "rope-read-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rope-read-mode"; + homepage = "https://melpa.org/#/rope-read-mode"; license = lib.licenses.free; }; }) {}; @@ -22230,13 +23282,13 @@ sha256 = "0mfkq8n28lal4lqwp6v0ilz8wrwgg61sbm0jggznwisjqqy3lzrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rsense"; sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5"; name = "rsense"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rsense"; + homepage = "https://melpa.org/#/rsense"; license = lib.licenses.free; }; }) {}; @@ -22251,34 +23303,34 @@ sha256 = "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rspec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rspec-mode"; sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx"; name = "rspec-mode"; }; packageRequires = [ cl-lib ruby-mode ]; meta = { - homepage = "http://melpa.org/#/rspec-mode"; + homepage = "https://melpa.org/#/rspec-mode"; license = lib.licenses.free; }; }) {}; rtags = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rtags"; - version = "2.1"; + version = "2.2"; src = fetchFromGitHub { owner = "Andersbakken"; repo = "rtags"; - rev = "ad85fda48b8c1038bc90c9fb0e8e79f2c5e30bca"; - sha256 = "0shzxxx7qajmfrxqipmlak899hgmxkqf9zkbmr0g04wamxmyfs65"; + rev = "925a188e4038fa6e4a7c8ea4d30d682609c46578"; + sha256 = "0k36rcmw6dw02605nvjp3fq6gfvwf4nyv7b309jc97sx7vj2mb9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rtags"; sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw"; name = "rtags"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rtags"; + homepage = "https://melpa.org/#/rtags"; license = lib.licenses.free; }; }) {}; @@ -22293,13 +23345,13 @@ sha256 = "10djjp1520xc05qkciaiaiiciscaln6c74h7ymba40mvzlf67y9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rubocop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rubocop"; sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q"; name = "rubocop"; }; packageRequires = [ dash emacs ]; meta = { - homepage = "http://melpa.org/#/rubocop"; + homepage = "https://melpa.org/#/rubocop"; license = lib.licenses.free; }; }) {}; @@ -22314,13 +23366,13 @@ sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-compilation"; sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc"; name = "ruby-compilation"; }; packageRequires = [ inf-ruby ]; meta = { - homepage = "http://melpa.org/#/ruby-compilation"; + homepage = "https://melpa.org/#/ruby-compilation"; license = lib.licenses.free; }; }) {}; @@ -22330,18 +23382,18 @@ version = "0.4.1"; src = fetchFromGitHub { owner = "rejeep"; - repo = "ruby-end"; + repo = "ruby-end.el"; rev = "648b81af136a581bcef387744d93c011d9cdf54b"; sha256 = "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-end"; - sha256 = "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-end"; + sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg"; name = "ruby-end"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-end"; + homepage = "https://melpa.org/#/ruby-end"; license = lib.licenses.free; }; }) {}; @@ -22356,13 +23408,13 @@ sha256 = "01n9j7sag49m4bdl6065jklnxnc5kck51izg884s1is459qgy86k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-hash-syntax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-hash-syntax"; sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5"; name = "ruby-hash-syntax"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-hash-syntax"; + homepage = "https://melpa.org/#/ruby-hash-syntax"; license = lib.licenses.free; }; }) {}; @@ -22377,13 +23429,13 @@ sha256 = "008zj9rg2cmh0xd7g6kgx6snm5sspxs4jmfa8hd43wx5y9pmlb8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-test-mode"; sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w"; name = "ruby-test-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-test-mode"; + homepage = "https://melpa.org/#/ruby-test-mode"; license = lib.licenses.free; }; }) {}; @@ -22393,18 +23445,18 @@ version = "0.1.2"; src = fetchFromGitHub { owner = "rejeep"; - repo = "ruby-tools"; + repo = "ruby-tools.el"; rev = "6e7fb376085bfa7010ecd3dfad63adacc6e2b4ac"; sha256 = "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ruby-tools"; - sha256 = "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-tools"; + sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy"; name = "ruby-tools"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ruby-tools"; + homepage = "https://melpa.org/#/ruby-tools"; license = lib.licenses.free; }; }) {}; @@ -22419,13 +23471,13 @@ sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/rvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rvm"; sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8"; name = "rvm"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/rvm"; + homepage = "https://melpa.org/#/rvm"; license = lib.licenses.free; }; }) {}; @@ -22440,13 +23492,13 @@ sha256 = "08vf62fcrnbmf2ppb759kzznjdz8x72fqdwbc4n8nbswrwgm2ikl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/s"; sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64"; name = "s"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/s"; + homepage = "https://melpa.org/#/s"; license = lib.licenses.free; }; }) {}; @@ -22461,34 +23513,34 @@ sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sackspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sackspace"; sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z"; name = "sackspace"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sackspace"; + homepage = "https://melpa.org/#/sackspace"; license = lib.licenses.free; }; }) {}; sage-shell-mode = callPackage ({ cl-lib ? null, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sage-shell-mode"; - version = "0.0.8.9"; + version = "0.0.9"; src = fetchFromGitHub { owner = "stakemori"; repo = "sage-shell-mode"; - rev = "8e659438ff419f7f1fddd1b56fb706dbecf9e469"; - sha256 = "0aw95qkql6apyn79la0jbpr0nlixhl9zvi9miry2h5y5pawb3yvf"; + rev = "e915a8bbc6cf8dee4a55769e23d22e348b0d7901"; + sha256 = "184471s05fcfpsva56yzaq93hm3yqfl8y7rm4wj51azr5p2lk888"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sage-shell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sage-shell-mode"; sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx"; name = "sage-shell-mode"; }; packageRequires = [ cl-lib deferred ]; meta = { - homepage = "http://melpa.org/#/sage-shell-mode"; + homepage = "https://melpa.org/#/sage-shell-mode"; license = lib.licenses.free; }; }) {}; @@ -22503,13 +23555,13 @@ sha256 = "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sass-mode"; sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800"; name = "sass-mode"; }; packageRequires = [ haml-mode ]; meta = { - homepage = "http://melpa.org/#/sass-mode"; + homepage = "https://melpa.org/#/sass-mode"; license = lib.licenses.free; }; }) {}; @@ -22524,13 +23576,13 @@ sha256 = "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sauron"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sauron"; sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb"; name = "sauron"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sauron"; + homepage = "https://melpa.org/#/sauron"; license = lib.licenses.free; }; }) {}; @@ -22545,13 +23597,13 @@ sha256 = "0y846zmcz5x2jn5bndm0mfi18jc5cd1fkidgc4wvqmm0w30gyx4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sbt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sbt-mode"; sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8"; name = "sbt-mode"; }; packageRequires = [ scala-mode2 ]; meta = { - homepage = "http://melpa.org/#/sbt-mode"; + homepage = "https://melpa.org/#/sbt-mode"; license = lib.licenses.free; }; }) {}; @@ -22566,13 +23618,13 @@ sha256 = "1gfhk595vnf6565nv6m1v8dc4a3a9z34jj1qdh02lk8azg5ylk89"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scala-mode2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scala-mode2"; sha256 = "0rnkln6jwwqc968w3qpc6zjjv8ylw0w6c2hsjpq2slja3jn5khch"; name = "scala-mode2"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scala-mode2"; + homepage = "https://melpa.org/#/scala-mode2"; license = lib.licenses.free; }; }) {}; @@ -22587,13 +23639,13 @@ sha256 = "0hhsgyil8aqdkkip5325yrdq89gnijglcbf1dsvl4wvnmq7a1rik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scala-outline-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scala-outline-popup"; sha256 = "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7"; name = "scala-outline-popup"; }; packageRequires = [ dash flx-ido popup scala-mode2 ]; meta = { - homepage = "http://melpa.org/#/scala-outline-popup"; + homepage = "https://melpa.org/#/scala-outline-popup"; license = lib.licenses.free; }; }) {}; @@ -22608,13 +23660,13 @@ sha256 = "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scpaste"; sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1"; name = "scpaste"; }; packageRequires = [ htmlize ]; meta = { - homepage = "http://melpa.org/#/scpaste"; + homepage = "https://melpa.org/#/scpaste"; license = lib.licenses.free; }; }) {}; @@ -22629,13 +23681,13 @@ sha256 = "0zpjf9cp8g4rgnwgmhlpwnanf9lzqm3rm1mkihf0gk5qzxvwsdh9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/scss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scss-mode"; sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv"; name = "scss-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/scss-mode"; + homepage = "https://melpa.org/#/scss-mode"; license = lib.licenses.free; }; }) {}; @@ -22650,13 +23702,13 @@ sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/search-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/search-web"; sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36"; name = "search-web"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/search-web"; + homepage = "https://melpa.org/#/search-web"; license = lib.licenses.free; }; }) {}; @@ -22671,13 +23723,13 @@ sha256 = "0nsm7z056rh32sq7abgdwyaz4dbz8v9pgbha5jvpk7y0zmnabrgs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sekka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sekka"; sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp"; name = "sekka"; }; packageRequires = [ cl-lib concurrent popup ]; meta = { - homepage = "http://melpa.org/#/sekka"; + homepage = "https://melpa.org/#/sekka"; license = lib.licenses.free; }; }) {}; @@ -22692,13 +23744,13 @@ sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/select-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/select-themes"; sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84"; name = "select-themes"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/select-themes"; + homepage = "https://melpa.org/#/select-themes"; license = lib.licenses.free; }; }) {}; @@ -22713,13 +23765,13 @@ sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/selectric-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/selectric-mode"; sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4"; name = "selectric-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/selectric-mode"; + homepage = "https://melpa.org/#/selectric-mode"; license = lib.licenses.free; }; }) {}; @@ -22728,19 +23780,19 @@ pname = "servant"; version = "0.3.0"; src = fetchFromGitHub { - owner = "rejeep"; - repo = "servant.el"; + owner = "cask"; + repo = "servant"; rev = "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134"; sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/servant"; - sha256 = "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/servant"; + sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21"; name = "servant"; }; packageRequires = [ ansi commander dash epl f s shut-up web-server ]; meta = { - homepage = "http://melpa.org/#/servant"; + homepage = "https://melpa.org/#/servant"; license = lib.licenses.free; }; }) {}; @@ -22755,13 +23807,13 @@ sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/serverspec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/serverspec"; sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id"; name = "serverspec"; }; packageRequires = [ dash f helm s ]; meta = { - homepage = "http://melpa.org/#/serverspec"; + homepage = "https://melpa.org/#/serverspec"; license = lib.licenses.free; }; }) {}; @@ -22776,13 +23828,13 @@ sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/session"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/session"; sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx"; name = "session"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/session"; + homepage = "https://melpa.org/#/session"; license = lib.licenses.free; }; }) {}; @@ -22797,13 +23849,13 @@ sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sexp-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sexp-move"; sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd"; name = "sexp-move"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sexp-move"; + homepage = "https://melpa.org/#/sexp-move"; license = lib.licenses.free; }; }) {}; @@ -22818,13 +23870,34 @@ sha256 = "0yy162sz7vwj0i9w687a5x1c2fq31vc3i6gqhbywspviczdp4q1y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shackle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shackle"; sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6"; name = "shackle"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/shackle"; + homepage = "https://melpa.org/#/shackle"; + license = lib.licenses.free; + }; + }) {}; + shakespeare-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "shakespeare-mode"; + version = "0.0.1"; + src = fetchFromGitHub { + owner = "CodyReichert"; + repo = "shakespeare-mode"; + rev = "4bff63eeac2b7ec1220f17e8bbcddbea4c11cb02"; + sha256 = "0vkxl3w4y4yacs1s4v0gwggvzrss8g74d3dgk8h3gphl4dlgx496"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shakespeare-mode"; + sha256 = "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd"; + name = "shakespeare-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/shakespeare-mode"; license = lib.licenses.free; }; }) {}; @@ -22839,13 +23912,13 @@ sha256 = "11g9lsgakq8nf689k49p9l536ffi62g3bh11mh9ix1l058xamqw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shampoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shampoo"; sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61"; name = "shampoo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shampoo"; + homepage = "https://melpa.org/#/shampoo"; license = lib.licenses.free; }; }) {}; @@ -22860,13 +23933,13 @@ sha256 = "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-pop"; sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8"; name = "shell-pop"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/shell-pop"; + homepage = "https://melpa.org/#/shell-pop"; license = lib.licenses.free; }; }) {}; @@ -22881,13 +23954,13 @@ sha256 = "0mcxp74sk9bn36gbhhimgns07iqa4dgbq2pvpqy41igqwb84w306"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-split-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-split-string"; sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m"; name = "shell-split-string"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shell-split-string"; + homepage = "https://melpa.org/#/shell-split-string"; license = lib.licenses.free; }; }) {}; @@ -22902,13 +23975,13 @@ sha256 = "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-switcher"; sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx"; name = "shell-switcher"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shell-switcher"; + homepage = "https://melpa.org/#/shell-switcher"; license = lib.licenses.free; }; }) {}; @@ -22923,13 +23996,13 @@ sha256 = "0wvaa5nrbblayjvzjyj6cd942ywg7xz5d8fqaffxcvwlcdihvm7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shell-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-toggle"; sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446"; name = "shell-toggle"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shell-toggle"; + homepage = "https://melpa.org/#/shell-toggle"; license = lib.licenses.free; }; }) {}; @@ -22944,13 +24017,13 @@ sha256 = "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shelldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shelldoc"; sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx"; name = "shelldoc"; }; packageRequires = [ cl-lib s ]; meta = { - homepage = "http://melpa.org/#/shelldoc"; + homepage = "https://melpa.org/#/shelldoc"; license = lib.licenses.free; }; }) {}; @@ -22965,13 +24038,34 @@ sha256 = "0mn7bwvj1yv75a2531jp929j6ypckdfqdg6b5ig0kkbcrrwb7kxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shelltest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shelltest-mode"; sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh"; name = "shelltest-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shelltest-mode"; + homepage = "https://melpa.org/#/shelltest-mode"; + license = lib.licenses.free; + }; + }) {}; + shift-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "shift-number"; + version = "0.1"; + src = fetchFromGitHub { + owner = "alezost"; + repo = "shift-number.el"; + rev = "ba3c1f2e6b01bf14aa1433c2a49098af1c025f7c"; + sha256 = "0zlwmzsxkv4mkggylxfx2fkrwgz7dz3zbg2gkn2rxcpy2k2gla64"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shift-number"; + sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p"; + name = "shift-number"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/shift-number"; license = lib.licenses.free; }; }) {}; @@ -22986,13 +24080,13 @@ sha256 = "1vf766ja8f4xp1f5pmwgz6a85km0nxvc5dn571lwidfrrdbr9rkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shm"; sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c"; name = "shm"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shm"; + homepage = "https://melpa.org/#/shm"; license = lib.licenses.free; }; }) {}; @@ -23007,13 +24101,13 @@ sha256 = "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shpec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shpec-mode"; sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl"; name = "shpec-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shpec-mode"; + homepage = "https://melpa.org/#/shpec-mode"; license = lib.licenses.free; }; }) {}; @@ -23028,13 +24122,13 @@ sha256 = "050gmxdk88zlfjwi07jsj2mvsfcv5imhzcpa6ip3cqkzpmw3pl32"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shrink-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shrink-whitespace"; sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq"; name = "shrink-whitespace"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/shrink-whitespace"; + homepage = "https://melpa.org/#/shrink-whitespace"; license = lib.licenses.free; }; }) {}; @@ -23049,13 +24143,13 @@ sha256 = "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/shut-up"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shut-up"; sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26"; name = "shut-up"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/shut-up"; + homepage = "https://melpa.org/#/shut-up"; license = lib.licenses.free; }; }) {}; @@ -23070,13 +24164,13 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sift"; sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d"; name = "sift"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sift"; + homepage = "https://melpa.org/#/sift"; license = lib.licenses.free; }; }) {}; @@ -23086,18 +24180,18 @@ version = "1.4.6"; src = fetchFromGitHub { owner = "skeeto"; - repo = "emacs-http-server"; + repo = "emacs-web-server"; rev = "b191b07c942e44c946a22a826c4d9c9a0475fd7e"; sha256 = "1qmkc0w28l53zzf5yd2grrk1sq222g5qnsm35ph25s1cfvc1qb2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simple-httpd"; - sha256 = "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-httpd"; + sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c"; name = "simple-httpd"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/simple-httpd"; + homepage = "https://melpa.org/#/simple-httpd"; license = lib.licenses.free; }; }) {}; @@ -23112,13 +24206,13 @@ sha256 = "0v0vmkix9f0hb2183irr6xra8mwi47g6rn843sas7jy2ycaqd91v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simpleclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simpleclip"; sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s"; name = "simpleclip"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/simpleclip"; + homepage = "https://melpa.org/#/simpleclip"; license = lib.licenses.free; }; }) {}; @@ -23133,13 +24227,13 @@ sha256 = "04giklbd1fsw2zysr7aqg17h6cpyn4i9jbknm4d4v6581f2pcl93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simplenote2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simplenote2"; sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm"; name = "simplenote2"; }; packageRequires = [ request-deferred ]; meta = { - homepage = "http://melpa.org/#/simplenote2"; + homepage = "https://melpa.org/#/simplenote2"; license = lib.licenses.free; }; }) {}; @@ -23154,34 +24248,13 @@ sha256 = "1p1771qm3jndnf4rdhb1bri5cjiksvxizagi7vfb7mjmsmx18w61"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/simplezen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simplezen"; sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j"; name = "simplezen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/simplezen"; - license = lib.licenses.free; - }; - }) {}; - sisyphus = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild }: - melpaBuild { - pname = "sisyphus"; - version = "0.1"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "sisyphus"; - rev = "880d519d6b1e7202a72b1632733690310efb197f"; - sha256 = "0jy08kj7cy744lbdyil0j50b08vm76bzxwmzd99v4sz12s3qcd2s"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sisyphus"; - sha256 = "08400jazj7w63l8g9ypy6w9dj8r0xh4d2yg3nfwqqf5lhfnj9bnj"; - name = "sisyphus"; - }; - packageRequires = [ dash emacs m-buffer ]; - meta = { - homepage = "http://melpa.org/#/sisyphus"; + homepage = "https://melpa.org/#/simplezen"; license = lib.licenses.free; }; }) {}; @@ -23196,13 +24269,13 @@ sha256 = "101xn4glqi7b5vhdqqahj2ib4pm30pzq8sad7zagxw9csihcri3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skeletor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skeletor"; sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v"; name = "skeletor"; }; packageRequires = [ cl-lib dash emacs f let-alist s ]; meta = { - homepage = "http://melpa.org/#/skeletor"; + homepage = "https://melpa.org/#/skeletor"; license = lib.licenses.free; }; }) {}; @@ -23217,13 +24290,13 @@ sha256 = "0g5sapd76pjnfhxlw149zj0fpn6l3pz3l8qlcn2c237vm8vn6qv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skewer-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skewer-less"; sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl"; name = "skewer-less"; }; packageRequires = [ skewer-mode ]; meta = { - homepage = "http://melpa.org/#/skewer-less"; + homepage = "https://melpa.org/#/skewer-less"; license = lib.licenses.free; }; }) {}; @@ -23238,13 +24311,13 @@ sha256 = "05jndz0c26q60s416vqgvr66axdmxb7qsr2g70fvl5iqavnayhpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/skewer-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skewer-mode"; sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm"; name = "skewer-mode"; }; packageRequires = [ emacs js2-mode simple-httpd ]; meta = { - homepage = "http://melpa.org/#/skewer-mode"; + homepage = "https://melpa.org/#/skewer-mode"; license = lib.licenses.free; }; }) {}; @@ -23259,13 +24332,13 @@ sha256 = "09ccdgg2wgw3xmlkpjsaqmnmf7f8rhjy4g6ypsn1sk5rgbgk8aj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slamhound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slamhound"; sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x"; name = "slamhound"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/slamhound"; + homepage = "https://melpa.org/#/slamhound"; license = lib.licenses.free; }; }) {}; @@ -23280,13 +24353,13 @@ sha256 = "0rk12am1dq52khwkwrmg70zarhni2avj4sy44jqckb4x7sv7djfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slideview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slideview"; sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1"; name = "slideview"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/slideview"; + homepage = "https://melpa.org/#/slideview"; license = lib.licenses.free; }; }) {}; @@ -23301,13 +24374,13 @@ sha256 = "1cl8amk1kc7a953l1khjms04j40mfkpnbsjz3qa123msgachrsg7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slim-mode"; sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac"; name = "slim-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/slim-mode"; + homepage = "https://melpa.org/#/slim-mode"; license = lib.licenses.free; }; }) {}; @@ -23322,13 +24395,13 @@ sha256 = "07gfd8k0gbzylr9y8asp35p9139w79c36pbnixp4y2fimgbfri2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime"; sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign"; name = "slime"; }; packageRequires = [ cl-lib macrostep ]; meta = { - homepage = "http://melpa.org/#/slime"; + homepage = "https://melpa.org/#/slime"; license = lib.licenses.free; }; }) {}; @@ -23343,13 +24416,13 @@ sha256 = "0rdhd6kymbzhkc96dxy3nr21ajrkc7iy6zvq1va22r90f96jj9x4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-company"; sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2"; name = "slime-company"; }; packageRequires = [ company slime ]; meta = { - homepage = "http://melpa.org/#/slime-company"; + homepage = "https://melpa.org/#/slime-company"; license = lib.licenses.free; }; }) {}; @@ -23364,13 +24437,13 @@ sha256 = "0jrsilyvzdi3xdmkm6gsniw4zdg9zsxb4i6k3fm5byxvhpbwd3k4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-docker"; sha256 = "18v62y4f613d7mpqpb8sc8hzvyhcgzrbqrc0k7w9pqf00jnl192h"; name = "slime-docker"; }; packageRequires = [ cl-lib docker-tramp emacs slime ]; meta = { - homepage = "http://melpa.org/#/slime-docker"; + homepage = "https://melpa.org/#/slime-docker"; license = lib.licenses.free; }; }) {}; @@ -23385,13 +24458,13 @@ sha256 = "0lp584k35asqlvbhglv124jazdgp3h7pzl0akfwbdmby9zayqk96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-ritz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-ritz"; sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a"; name = "slime-ritz"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/slime-ritz"; + homepage = "https://melpa.org/#/slime-ritz"; license = lib.licenses.free; }; }) {}; @@ -23406,13 +24479,13 @@ sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/slime-volleyball"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-volleyball"; sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7"; name = "slime-volleyball"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/slime-volleyball"; + homepage = "https://melpa.org/#/slime-volleyball"; license = lib.licenses.free; }; }) {}; @@ -23427,13 +24500,13 @@ sha256 = "1aihr5pbdqjb5j6xsghi7qbrmp46kddv76xmyx5z98m93n70wzqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly"; sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l"; name = "sly"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sly"; + homepage = "https://melpa.org/#/sly"; license = lib.licenses.free; }; }) {}; @@ -23448,13 +24521,13 @@ sha256 = "11p89pz6zmnjng5177w31ilcmifvnhv9mfjy79ic7amg01h09hsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sly-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-company"; sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2"; name = "sly-company"; }; packageRequires = [ company emacs sly ]; meta = { - homepage = "http://melpa.org/#/sly-company"; + homepage = "https://melpa.org/#/sly-company"; license = lib.licenses.free; }; }) {}; @@ -23469,13 +24542,13 @@ sha256 = "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-mode-line"; sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6"; name = "smart-mode-line"; }; packageRequires = [ emacs rich-minority ]; meta = { - homepage = "http://melpa.org/#/smart-mode-line"; + homepage = "https://melpa.org/#/smart-mode-line"; license = lib.licenses.free; }; }) {}; @@ -23490,13 +24563,13 @@ sha256 = "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-mode-line-powerline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-mode-line-powerline-theme"; sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4"; name = "smart-mode-line-powerline-theme"; }; packageRequires = [ emacs powerline smart-mode-line ]; meta = { - homepage = "http://melpa.org/#/smart-mode-line-powerline-theme"; + homepage = "https://melpa.org/#/smart-mode-line-powerline-theme"; license = lib.licenses.free; }; }) {}; @@ -23511,13 +24584,13 @@ sha256 = "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smart-tabs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-tabs-mode"; sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl"; name = "smart-tabs-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smart-tabs-mode"; + homepage = "https://melpa.org/#/smart-tabs-mode"; license = lib.licenses.free; }; }) {}; @@ -23532,13 +24605,13 @@ sha256 = "1mx4hdbrk6v52y5r47fbd6kgqyk3lvqgq8lw3hkww0pqfwwp4x6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartparens"; sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6"; name = "smartparens"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/smartparens"; + homepage = "https://melpa.org/#/smartparens"; license = lib.licenses.free; }; }) {}; @@ -23553,13 +24626,13 @@ sha256 = "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartrep"; sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn"; name = "smartrep"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smartrep"; + homepage = "https://melpa.org/#/smartrep"; license = lib.licenses.free; }; }) {}; @@ -23574,13 +24647,13 @@ sha256 = "1sd7dh9114mvr4xnp43xx4b7qmwkaj1a1fv7pwc28fhiy89d2md4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smartscan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartscan"; sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb"; name = "smartscan"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smartscan"; + homepage = "https://melpa.org/#/smartscan"; license = lib.licenses.free; }; }) {}; @@ -23595,13 +24668,13 @@ sha256 = "1pcpg3lalbrc24z3vwcaysps8dbdzmncdgqdd5ig6yk2a9wyj9ng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smeargle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smeargle"; sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd"; name = "smeargle"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/smeargle"; + homepage = "https://melpa.org/#/smeargle"; license = lib.licenses.free; }; }) {}; @@ -23616,13 +24689,13 @@ sha256 = "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smex"; sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda"; name = "smex"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smex"; + homepage = "https://melpa.org/#/smex"; license = lib.licenses.free; }; }) {}; @@ -23637,55 +24710,55 @@ sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smooth-scroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smooth-scroll"; sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf"; name = "smooth-scroll"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smooth-scroll"; + homepage = "https://melpa.org/#/smooth-scroll"; license = lib.licenses.free; }; }) {}; smooth-scrolling = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smooth-scrolling"; - version = "1.0.4"; + version = "2.0.0"; src = fetchFromGitHub { owner = "aspiers"; repo = "smooth-scrolling"; - rev = "0d9b228f952c53ad456f98e2c761dda70ed72174"; - sha256 = "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk"; + rev = "6a1420be510decde0a5eabc56cff229ae554417e"; + sha256 = "1dkqix0iyjyiqf34h3p8faqcpffc0pwkxqqn80ys9jvj4f27kkrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/smooth-scrolling"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smooth-scrolling"; sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6"; name = "smooth-scrolling"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/smooth-scrolling"; + homepage = "https://melpa.org/#/smooth-scrolling"; license = lib.licenses.free; }; }) {}; - snakemake-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + snakemake-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }: melpaBuild { pname = "snakemake-mode"; - version = "0.3.0"; + version = "0.4.0"; src = fetchFromGitHub { owner = "kyleam"; repo = "snakemake-mode"; - rev = "0f1857cacfcc36c3641d63c72a38224661d3b9a6"; - sha256 = "0pl7vxaha79v9199j4s1fjxxca3fq9fdhbdaz5wppg3b851a7mx3"; + rev = "27c19be6fec7b198f5e41c20c914f34183917ffb"; + sha256 = "174gbq9ydgq6vjxplnwqn4kil9yzxh9spdp6dhgr81b32ifvd5hi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/snakemake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/snakemake-mode"; sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4"; name = "snakemake-mode"; }; - packageRequires = [ emacs ]; + packageRequires = [ cl-lib emacs magit-popup ]; meta = { - homepage = "http://melpa.org/#/snakemake-mode"; + homepage = "https://melpa.org/#/snakemake-mode"; license = lib.licenses.free; }; }) {}; @@ -23700,13 +24773,13 @@ sha256 = "0zcj9jf8nlsj9vms888z2vs76q54n8g8r9sh381xad3x8d6lrlb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/solarized-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/solarized-theme"; sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12"; name = "solarized-theme"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/solarized-theme"; + homepage = "https://melpa.org/#/solarized-theme"; license = lib.licenses.free; }; }) {}; @@ -23721,34 +24794,55 @@ sha256 = "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sos"; sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb"; name = "sos"; }; packageRequires = [ org ]; meta = { - homepage = "http://melpa.org/#/sos"; + homepage = "https://melpa.org/#/sos"; + license = lib.licenses.free; + }; + }) {}; + sotclojure = callPackage ({ cider, clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sotlisp }: + melpaBuild { + pname = "sotclojure"; + version = "1.2"; + src = fetchFromGitHub { + owner = "Malabarba"; + repo = "speed-of-thought-clojure"; + rev = "8d879ef41c004726cca3c27a81b7543cc273c19b"; + sha256 = "13yn2yadkpmykaly3l3xsq1bhm4sxyk8k1px555y11qi0mfdcjhh"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sotclojure"; + sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090"; + name = "sotclojure"; + }; + packageRequires = [ cider clojure-mode emacs sotlisp ]; + meta = { + homepage = "https://melpa.org/#/sotclojure"; license = lib.licenses.free; }; }) {}; sotlisp = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sotlisp"; - version = "1.4.1"; + version = "1.5.2"; src = fetchFromGitHub { owner = "Malabarba"; repo = "speed-of-thought-lisp"; - rev = "6e0ebc97000dc505f72ad9cc793ac857b0585f5a"; - sha256 = "1wbd7v5bnd4qgqk8rrgllal0i949n8xzvb3yhf0vnxr06wdzy0a4"; + rev = "b67364d4825a9bf0a22261809ee9e9060b268198"; + sha256 = "0xykm4yayb8gw83arv5p205cx18j14q9407rqw3sbcj9cj5nbk34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sotlisp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sotlisp"; sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk"; name = "sotlisp"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/sotlisp"; + homepage = "https://melpa.org/#/sotlisp"; license = lib.licenses.free; }; }) {}; @@ -23763,34 +24857,34 @@ sha256 = "0q2ragq4hw89d3w48ykwljb19n2nhz8z6bsmb10shimaf203652g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sound-wav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sound-wav"; sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f"; name = "sound-wav"; }; packageRequires = [ cl-lib deferred ]; meta = { - homepage = "http://melpa.org/#/sound-wav"; + homepage = "https://melpa.org/#/sound-wav"; license = lib.licenses.free; }; }) {}; sourcekit = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sourcekit"; - version = "0.1.4"; + version = "0.1.5"; src = fetchFromGitHub { owner = "nathankot"; repo = "company-sourcekit"; - rev = "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9"; - sha256 = "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz"; + rev = "c9694cd8e84f4c7deffa6111297cb80eb7cb02a6"; + sha256 = "04nm015408gzybfka0sc3czkf5y61x76h3sx3vlijf67i54bz7pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcekit"; sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks"; name = "sourcekit"; }; packageRequires = [ dash dash-functional emacs ]; meta = { - homepage = "http://melpa.org/#/sourcekit"; + homepage = "https://melpa.org/#/sourcekit"; license = lib.licenses.free; }; }) {}; @@ -23805,13 +24899,13 @@ sha256 = "1k2gfw4dydzqxbfdmcghajbb2lyg1j4wgdhp8chlql3dax1f503d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcemap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcemap"; sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5"; name = "sourcemap"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/sourcemap"; + homepage = "https://melpa.org/#/sourcemap"; license = lib.licenses.free; }; }) {}; @@ -23826,13 +24920,13 @@ sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sourcetalk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcetalk"; sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z"; name = "sourcetalk"; }; packageRequires = [ request ]; meta = { - homepage = "http://melpa.org/#/sourcetalk"; + homepage = "https://melpa.org/#/sourcetalk"; license = lib.licenses.free; }; }) {}; @@ -23847,13 +24941,13 @@ sha256 = "1ncwv6sqm1ch396qi1c8276dc910rnm0f3m8xjkskplv3cjaq0ai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spaceline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spaceline"; sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw"; name = "spaceline"; }; packageRequires = [ cl-lib dash emacs powerline s ]; meta = { - homepage = "http://melpa.org/#/spaceline"; + homepage = "https://melpa.org/#/spaceline"; license = lib.licenses.free; }; }) {}; @@ -23868,13 +24962,13 @@ sha256 = "1gmmmkzxxlpz2ml6qk24vndlrbyl55r5cba76jn342zrxvb357ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sparkline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sparkline"; sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y"; name = "sparkline"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/sparkline"; + homepage = "https://melpa.org/#/sparkline"; license = lib.licenses.free; }; }) {}; @@ -23889,13 +24983,13 @@ sha256 = "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sparql-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sparql-mode"; sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d"; name = "sparql-mode"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/sparql-mode"; + homepage = "https://melpa.org/#/sparql-mode"; license = lib.licenses.free; }; }) {}; @@ -23910,13 +25004,13 @@ sha256 = "1k6c7450v0ln6l9b8z1hib2s2b4rmjbskynvwwyilgdnvginfhi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/speech-tagger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/speech-tagger"; sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc"; name = "speech-tagger"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/speech-tagger"; + homepage = "https://melpa.org/#/speech-tagger"; license = lib.licenses.free; }; }) {}; @@ -23931,13 +25025,13 @@ sha256 = "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sphinx-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sphinx-doc"; sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z"; name = "sphinx-doc"; }; packageRequires = [ cl-lib s ]; meta = { - homepage = "http://melpa.org/#/sphinx-doc"; + homepage = "https://melpa.org/#/sphinx-doc"; license = lib.licenses.free; }; }) {}; @@ -23952,13 +25046,13 @@ sha256 = "17qsmjsbk8aq3azjxid6h9fzz77bils74scp21sqn8vdnijx8991"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/splitjoin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/splitjoin"; sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l"; name = "splitjoin"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/splitjoin"; + homepage = "https://melpa.org/#/splitjoin"; license = lib.licenses.free; }; }) {}; @@ -23973,13 +25067,13 @@ sha256 = "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spotify"; sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k"; name = "spotify"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/spotify"; + homepage = "https://melpa.org/#/spotify"; license = lib.licenses.free; }; }) {}; @@ -23994,13 +25088,34 @@ sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sprintly-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sprintly-mode"; sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4"; name = "sprintly-mode"; }; packageRequires = [ furl ]; meta = { - homepage = "http://melpa.org/#/sprintly-mode"; + homepage = "https://melpa.org/#/sprintly-mode"; + license = lib.licenses.free; + }; + }) {}; + sprunge = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: + melpaBuild { + pname = "sprunge"; + version = "0.1.1"; + src = fetchFromGitHub { + owner = "tomjakubowski"; + repo = "sprunge.el"; + rev = "0fd386b8b29c4175022a04ad70ea5643185b6726"; + sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sprunge"; + sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w"; + name = "sprunge"; + }; + packageRequires = [ cl-lib request ]; + meta = { + homepage = "https://melpa.org/#/sprunge"; license = lib.licenses.free; }; }) {}; @@ -24009,19 +25124,19 @@ pname = "sqlup-mode"; version = "0.5.3"; src = fetchFromGitHub { - owner = "trevoke"; + owner = "Trevoke"; repo = "sqlup-mode.el"; rev = "7a51e34685c65952cd0635c3d35a36337fde361b"; sha256 = "1dcb18fq84vlfgb038i2x6vy7mhin2q6jn4jl9fh256n12cx4nrn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sqlup-mode"; - sha256 = "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sqlup-mode"; + sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b"; name = "sqlup-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sqlup-mode"; + homepage = "https://melpa.org/#/sqlup-mode"; license = lib.licenses.free; }; }) {}; @@ -24036,13 +25151,34 @@ sha256 = "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/srefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/srefactor"; sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2"; name = "srefactor"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/srefactor"; + homepage = "https://melpa.org/#/srefactor"; + license = lib.licenses.free; + }; + }) {}; + ssh-config-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ssh-config-mode"; + version = "20160326.20.550"; + src = fetchFromGitHub { + owner = "jhgorrell"; + repo = "ssh-config-mode-el"; + rev = "3656cebd647918bd71f66e70810b9148e44f19a7"; + sha256 = "08nx1iwvxqs1anng32w3c2clhnjf45527j0gxz5fy6h9svmb921q"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ssh-config-mode"; + sha256 = "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb"; + name = "ssh-config-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/ssh-config-mode"; license = lib.licenses.free; }; }) {}; @@ -24057,13 +25193,13 @@ sha256 = "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stash"; sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9"; name = "stash"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/stash"; + homepage = "https://melpa.org/#/stash"; license = lib.licenses.free; }; }) {}; @@ -24078,13 +25214,13 @@ sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/status"; sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3"; name = "status"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/status"; + homepage = "https://melpa.org/#/status"; license = lib.licenses.free; }; }) {}; @@ -24099,13 +25235,13 @@ sha256 = "0pik6mq8syhxk9l9ns8wgvg5312qkckm3cilb3irwdm1dvnl5hpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stekene-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stekene-theme"; sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1"; name = "stekene-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/stekene-theme"; + homepage = "https://melpa.org/#/stekene-theme"; license = lib.licenses.free; }; }) {}; @@ -24115,16 +25251,16 @@ src = fetchgit { url = "git://repo.or.cz/stgit.git"; rev = "48e5cef14cea5c810833d119900cd484c2a6ca85"; - sha256 = "12c5df549d653c8ec3476ed271a4e9a4065a61a467229c070bb2e6295e285e16"; + sha256 = "05jy51g2krmj1c3rq8k7lihml1m4x6j73lkf8z1qwg35kmadzi8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stgit"; sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89"; name = "stgit"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/stgit"; + homepage = "https://melpa.org/#/stgit"; license = lib.licenses.free; }; }) {}; @@ -24139,13 +25275,13 @@ sha256 = "15gdcpbba3h84s7xnpk69nav6bixdixnirdh5n1rly010q0m5s5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/string-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/string-edit"; sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8"; name = "string-edit"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/string-edit"; + homepage = "https://melpa.org/#/string-edit"; license = lib.licenses.free; }; }) {}; @@ -24160,13 +25296,13 @@ sha256 = "03azfs6z0jg66ppalijcxl973vdbhj4c3g84sm5dm8xv6rnxrv2s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/string-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/string-utils"; sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v"; name = "string-utils"; }; packageRequires = [ list-utils ]; meta = { - homepage = "http://melpa.org/#/string-utils"; + homepage = "https://melpa.org/#/string-utils"; license = lib.licenses.free; }; }) {}; @@ -24181,13 +25317,13 @@ sha256 = "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stripe-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stripe-buffer"; sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a"; name = "stripe-buffer"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/stripe-buffer"; + homepage = "https://melpa.org/#/stripe-buffer"; license = lib.licenses.free; }; }) {}; @@ -24198,16 +25334,16 @@ src = fetchgit { url = "git://git.savannah.nongnu.org/stumpwm.git"; rev = "4d0603e52b5bab993b3be63e3654c74f641e677d"; - sha256 = "f5e3b0fdbdb1c747c40f7b6746de195e37bd4caccdcc05c6aa14124f29e71428"; + sha256 = "0a0lwwlly4hlmb30bk6dmi6bsdsy37g4crvv1z24gixippyv1qzm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stumpwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stumpwm-mode"; sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86"; name = "stumpwm-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/stumpwm-mode"; + homepage = "https://melpa.org/#/stumpwm-mode"; license = lib.licenses.free; }; }) {}; @@ -24222,13 +25358,13 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/stylus-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stylus-mode"; sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5"; name = "stylus-mode"; }; packageRequires = [ sws-mode ]; meta = { - homepage = "http://melpa.org/#/stylus-mode"; + homepage = "https://melpa.org/#/stylus-mode"; license = lib.licenses.free; }; }) {}; @@ -24243,13 +25379,13 @@ sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subatomic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subatomic-theme"; sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc"; name = "subatomic-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/subatomic-theme"; + homepage = "https://melpa.org/#/subatomic-theme"; license = lib.licenses.free; }; }) {}; @@ -24264,13 +25400,13 @@ sha256 = "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subemacs"; sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm"; name = "subemacs"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/subemacs"; + homepage = "https://melpa.org/#/subemacs"; license = lib.licenses.free; }; }) {}; @@ -24285,13 +25421,13 @@ sha256 = "0mx892vn4a32df30iqmf2vsz1gdl3i557fw0194g6a66n9w2q7xf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/subshell-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subshell-proc"; sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2"; name = "subshell-proc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/subshell-proc"; + homepage = "https://melpa.org/#/subshell-proc"; license = lib.licenses.free; }; }) {}; @@ -24306,13 +25442,13 @@ sha256 = "1kmyivsyxr6gb2k36ssyr779rpk8qsrb27q5rjsir9fgc95qhvjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sudden-death"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sudden-death"; sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh"; name = "sudden-death"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sudden-death"; + homepage = "https://melpa.org/#/sudden-death"; license = lib.licenses.free; }; }) {}; @@ -24327,13 +25463,13 @@ sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/suomalainen-kalenteri"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/suomalainen-kalenteri"; sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh"; name = "suomalainen-kalenteri"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/suomalainen-kalenteri"; + homepage = "https://melpa.org/#/suomalainen-kalenteri"; license = lib.licenses.free; }; }) {}; @@ -24348,13 +25484,13 @@ sha256 = "0cw3yf2npy2ah00q2whpn52kaybbccw1qvfzsww0x4zshlrwvvvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/super-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/super-save"; sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p"; name = "super-save"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/super-save"; + homepage = "https://melpa.org/#/super-save"; license = lib.licenses.free; }; }) {}; @@ -24369,13 +25505,13 @@ sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/svg-mode-line-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/svg-mode-line-themes"; sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506"; name = "svg-mode-line-themes"; }; packageRequires = [ xmlgen ]; meta = { - homepage = "http://melpa.org/#/svg-mode-line-themes"; + homepage = "https://melpa.org/#/svg-mode-line-themes"; license = lib.licenses.free; }; }) {}; @@ -24390,13 +25526,13 @@ sha256 = "1h56qkbx5abz1l94wrdpbzspiz24mfgkppzfalvbvx5qwl079cvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sweetgreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sweetgreen"; sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy"; name = "sweetgreen"; }; packageRequires = [ cl-lib dash helm request ]; meta = { - homepage = "http://melpa.org/#/sweetgreen"; + homepage = "https://melpa.org/#/sweetgreen"; license = lib.licenses.free; }; }) {}; @@ -24411,34 +25547,34 @@ sha256 = "07xrcg33vsw19kz692hm7blzvnf7b6isllsz79fvs8q3l5c9mfjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swift-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swift-mode"; sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d"; name = "swift-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/swift-mode"; + homepage = "https://melpa.org/#/swift-mode"; license = lib.licenses.free; }; }) {}; - swiper = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + swiper = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: melpaBuild { pname = "swiper"; - version = "0.7.0"; + version = "0.8.0"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "706349fcfae297ee285552af9246bc0cf00d9b7f"; - sha256 = "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm"; + rev = "c24a3728538dd7d11de9f141b3ad1d8e0996c330"; + sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swiper"; - sha256 = "1hsj6vh0vldnvwg2qmszdi0p2ig7l63vgq2kn5nv883239bxpziz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper"; + sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9"; name = "swiper"; }; - packageRequires = [ emacs ]; + packageRequires = [ emacs ivy ]; meta = { - homepage = "http://melpa.org/#/swiper"; + homepage = "https://melpa.org/#/swiper"; license = lib.licenses.free; }; }) {}; @@ -24453,13 +25589,13 @@ sha256 = "1y2dbd3ikdpjvi8xz10jkrx2773h7cgr6jxm5b2bldm81lvi8x64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/swiper-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper-helm"; sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph"; name = "swiper-helm"; }; packageRequires = [ emacs helm swiper ]; meta = { - homepage = "http://melpa.org/#/swiper-helm"; + homepage = "https://melpa.org/#/swiper-helm"; license = lib.licenses.free; }; }) {}; @@ -24474,13 +25610,13 @@ sha256 = "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/switch-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/switch-window"; sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2"; name = "switch-window"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/switch-window"; + homepage = "https://melpa.org/#/switch-window"; license = lib.licenses.free; }; }) {}; @@ -24495,13 +25631,13 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sws-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sws-mode"; sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i"; name = "sws-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/sws-mode"; + homepage = "https://melpa.org/#/sws-mode"; license = lib.licenses.free; }; }) {}; @@ -24516,13 +25652,13 @@ sha256 = "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/sx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sx"; sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517"; name = "sx"; }; packageRequires = [ cl-lib emacs json let-alist markdown-mode ]; meta = { - homepage = "http://melpa.org/#/sx"; + homepage = "https://melpa.org/#/sx"; license = lib.licenses.free; }; }) {}; @@ -24531,19 +25667,19 @@ pname = "synosaurus"; version = "0.1.0"; src = fetchFromGitHub { - owner = "rootzlevel"; + owner = "hpdeifel"; repo = "synosaurus"; rev = "56efdc38952b9bd56a445591fcdeb626aede8678"; sha256 = "0hi2jflrlpp7xkbj852vp9hcl8bfmf04jqw1hawxrw4bxdp95jh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/synosaurus"; - sha256 = "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/synosaurus"; + sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn"; name = "synosaurus"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/synosaurus"; + homepage = "https://melpa.org/#/synosaurus"; license = lib.licenses.free; }; }) {}; @@ -24558,13 +25694,13 @@ sha256 = "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/syntactic-sugar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syntactic-sugar"; sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r"; name = "syntactic-sugar"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/syntactic-sugar"; + homepage = "https://melpa.org/#/syntactic-sugar"; license = lib.licenses.free; }; }) {}; @@ -24578,13 +25714,13 @@ sha256 = "15zvh6dk02rm16zs6c9zvw1w76ycn61g3cpx6jb3456ff9zn6m9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/syntax-subword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syntax-subword"; sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm"; name = "syntax-subword"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/syntax-subword"; + homepage = "https://melpa.org/#/syntax-subword"; license = lib.licenses.free; }; }) {}; @@ -24599,13 +25735,13 @@ sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/system-specific-settings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/system-specific-settings"; sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp"; name = "system-specific-settings"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/system-specific-settings"; + homepage = "https://melpa.org/#/system-specific-settings"; license = lib.licenses.free; }; }) {}; @@ -24620,13 +25756,13 @@ sha256 = "0axskr4q0kw8pmnl1pv2z3n6x3pn6v28qcgz3qf745lqgmsgbng9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/systemd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/systemd"; sha256 = "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir"; name = "systemd"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/systemd"; + homepage = "https://melpa.org/#/systemd"; license = lib.licenses.free; }; }) {}; @@ -24641,13 +25777,13 @@ sha256 = "09nndx83ws5v2i9x0dzk6l1a0lq29ffzh3y05n0n64nf5j0a7zvk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ta"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ta"; sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll"; name = "ta"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/ta"; + homepage = "https://melpa.org/#/ta"; license = lib.licenses.free; }; }) {}; @@ -24662,13 +25798,13 @@ sha256 = "1xd67s92gyr49v73j7r7cbhsc40bkw8aqh21whgbypdgzpyc7azc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tabbar-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tabbar-ruler"; sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d"; name = "tabbar-ruler"; }; packageRequires = [ tabbar ]; meta = { - homepage = "http://melpa.org/#/tabbar-ruler"; + homepage = "https://melpa.org/#/tabbar-ruler"; license = lib.licenses.free; }; }) {}; @@ -24683,13 +25819,13 @@ sha256 = "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tablist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tablist"; sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p"; name = "tablist"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/tablist"; + homepage = "https://melpa.org/#/tablist"; license = lib.licenses.free; }; }) {}; @@ -24704,13 +25840,13 @@ sha256 = "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tagedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tagedit"; sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z"; name = "tagedit"; }; packageRequires = [ dash s ]; meta = { - homepage = "http://melpa.org/#/tagedit"; + homepage = "https://melpa.org/#/tagedit"; license = lib.licenses.free; }; }) {}; @@ -24725,13 +25861,13 @@ sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/telepathy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/telepathy"; sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr"; name = "telepathy"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/telepathy"; + homepage = "https://melpa.org/#/telepathy"; license = lib.licenses.free; }; }) {}; @@ -24746,13 +25882,34 @@ sha256 = "0smdlzrcbmip6c6c3rd0871wv5xyagavwsxhhgvki6ybyzdj9a19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/telephone-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/telephone-line"; sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3"; name = "telephone-line"; }; packageRequires = [ cl-lib eieio emacs s seq ]; meta = { - homepage = "http://melpa.org/#/telephone-line"; + homepage = "https://melpa.org/#/telephone-line"; + license = lib.licenses.free; + }; + }) {}; + ten-hundred-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ten-hundred-mode"; + version = "1.0"; + src = fetchFromGitHub { + owner = "aaron-em"; + repo = "ten-hundred-mode.el"; + rev = "fc1d7cdb72c21dc1953ed2e2ecf28233b8b3e305"; + sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ten-hundred-mode"; + sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3"; + name = "ten-hundred-mode"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/ten-hundred-mode"; license = lib.licenses.free; }; }) {}; @@ -24767,13 +25924,13 @@ sha256 = "1d1hrnxhi7h5d5i4198hx5lj7fbc280lpkxmk2nb8z6j7z0aki7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-alert"; sha256 = "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n"; name = "term-alert"; }; packageRequires = [ alert term-cmd ]; meta = { - homepage = "http://melpa.org/#/term-alert"; + homepage = "https://melpa.org/#/term-alert"; license = lib.licenses.free; }; }) {}; @@ -24788,13 +25945,13 @@ sha256 = "1idz9c38q47lll55w1znya00hlkwa42029ys70sb14inc51cml51"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-cmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-cmd"; sha256 = "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy"; name = "term-cmd"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/term-cmd"; + homepage = "https://melpa.org/#/term-cmd"; license = lib.licenses.free; }; }) {}; @@ -24809,13 +25966,13 @@ sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/term-run"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-run"; sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs"; name = "term-run"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/term-run"; + homepage = "https://melpa.org/#/term-run"; license = lib.licenses.free; }; }) {}; @@ -24830,55 +25987,55 @@ sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/termbright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/termbright-theme"; sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj"; name = "termbright-theme"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/termbright-theme"; + homepage = "https://melpa.org/#/termbright-theme"; license = lib.licenses.free; }; }) {}; tern = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "tern"; - version = "0.17.0"; + version = "0.18.0"; src = fetchFromGitHub { - owner = "marijnh"; + owner = "ternjs"; repo = "tern"; - rev = "41ac9287252b6d305a690fa415956cdfbd8c7d7a"; - sha256 = "1n4z5hgpv1f0360zgdxz1q4gmhjjrxm7ygxh1g4zjy6kbhgylmxb"; + rev = "2e8df51181ceda7bc1118cf168da4197b25b8701"; + sha256 = "1kaymyihskmdav56xj85j04iq7a8948b1jgjfrv9s7pc965j9795"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern"; - sha256 = "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern"; + sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd"; name = "tern"; }; packageRequires = [ cl-lib emacs json ]; meta = { - homepage = "http://melpa.org/#/tern"; + homepage = "https://melpa.org/#/tern"; license = lib.licenses.free; }; }) {}; tern-auto-complete = callPackage ({ auto-complete, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, tern }: melpaBuild { pname = "tern-auto-complete"; - version = "0.17.0"; + version = "0.18.0"; src = fetchFromGitHub { - owner = "marijnh"; + owner = "ternjs"; repo = "tern"; - rev = "41ac9287252b6d305a690fa415956cdfbd8c7d7a"; - sha256 = "1n4z5hgpv1f0360zgdxz1q4gmhjjrxm7ygxh1g4zjy6kbhgylmxb"; + rev = "2e8df51181ceda7bc1118cf168da4197b25b8701"; + sha256 = "1kaymyihskmdav56xj85j04iq7a8948b1jgjfrv9s7pc965j9795"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern-auto-complete"; - sha256 = "0lq924c5f6bhlgyqqzc346n381qf0fp66h50a0zqz2ch66kanni1"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern-auto-complete"; + sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26"; name = "tern-auto-complete"; }; packageRequires = [ auto-complete cl-lib emacs tern ]; meta = { - homepage = "http://melpa.org/#/tern-auto-complete"; + homepage = "https://melpa.org/#/tern-auto-complete"; license = lib.licenses.free; }; }) {}; @@ -24893,13 +26050,13 @@ sha256 = "0l63lzm96gg3ihgc4l671i342qxigwdbn4xfkbxnarb0206gnb5p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tern-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern-django"; sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0"; name = "tern-django"; }; packageRequires = [ emacs f tern ]; meta = { - homepage = "http://melpa.org/#/tern-django"; + homepage = "https://melpa.org/#/tern-django"; license = lib.licenses.free; }; }) {}; @@ -24914,13 +26071,13 @@ sha256 = "0mz2yl9jaw7chzv9d9hhv7gcvdwwvi676y9wpn7vp85hxpda7xg7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/terraform-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/terraform-mode"; sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn"; name = "terraform-mode"; }; packageRequires = [ cl-lib hcl-mode ]; meta = { - homepage = "http://melpa.org/#/terraform-mode"; + homepage = "https://melpa.org/#/terraform-mode"; license = lib.licenses.free; }; }) {}; @@ -24935,13 +26092,13 @@ sha256 = "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-case-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-case-mode"; sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi"; name = "test-case-mode"; }; packageRequires = [ fringe-helper ]; meta = { - homepage = "http://melpa.org/#/test-case-mode"; + homepage = "https://melpa.org/#/test-case-mode"; license = lib.licenses.free; }; }) {}; @@ -24956,13 +26113,13 @@ sha256 = "02vp4m3aw7rs4gxn91v6j3y8pr04hpydrg05ck3ivv46snkfagdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-kitchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-kitchen"; sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0"; name = "test-kitchen"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/test-kitchen"; + homepage = "https://melpa.org/#/test-kitchen"; license = lib.licenses.free; }; }) {}; @@ -24977,13 +26134,13 @@ sha256 = "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/test-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-simple"; sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g"; name = "test-simple"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/test-simple"; + homepage = "https://melpa.org/#/test-simple"; license = lib.licenses.free; }; }) {}; @@ -24998,13 +26155,13 @@ sha256 = "1a0fzn66gv421by0x6wj3z6bvzv274a9p8c2aaax0dskncl5lgk1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/textmate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/textmate"; sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v"; name = "textmate"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/textmate"; + homepage = "https://melpa.org/#/textmate"; license = lib.licenses.free; }; }) {}; @@ -25019,13 +26176,13 @@ sha256 = "0fjapb7naysf34g4ac5gsa90b2s2ss7qgpyd9mfv3mdqrsp2dyw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/textmate-to-yas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/textmate-to-yas"; sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l"; name = "textmate-to-yas"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/textmate-to-yas"; + homepage = "https://melpa.org/#/textmate-to-yas"; license = lib.licenses.free; }; }) {}; @@ -25040,13 +26197,13 @@ sha256 = "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/theme-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/theme-changer"; sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w"; name = "theme-changer"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/theme-changer"; + homepage = "https://melpa.org/#/theme-changer"; license = lib.licenses.free; }; }) {}; @@ -25061,13 +26218,13 @@ sha256 = "1srylw9wwkyq92f9v6ds9zp9z8sl800wbxjbir80g1lwv4hghaii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/thrift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thrift"; sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9"; name = "thrift"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/thrift"; + homepage = "https://melpa.org/#/thrift"; license = lib.licenses.free; }; }) {}; @@ -25082,13 +26239,13 @@ sha256 = "1vq5yp6pyjam2csz22mcp353a4d5r7f9m6bsjizfmgr2ld7bwhx7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/timer-revert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/timer-revert"; sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy"; name = "timer-revert"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/timer-revert"; + homepage = "https://melpa.org/#/timer-revert"; license = lib.licenses.free; }; }) {}; @@ -25103,13 +26260,13 @@ sha256 = "0p7piqbhwxp2idslqnzl5x4y9aqgba9ryxrjy3d0avky5z9kappl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/timesheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/timesheet"; sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506"; name = "timesheet"; }; packageRequires = [ auctex org s ]; meta = { - homepage = "http://melpa.org/#/timesheet"; + homepage = "https://melpa.org/#/timesheet"; license = lib.licenses.free; }; }) {}; @@ -25124,55 +26281,75 @@ sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tox"; sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl"; name = "tox"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tox"; + homepage = "https://melpa.org/#/tox"; + license = lib.licenses.free; + }; + }) {}; + toxi-theme = callPackage ({ emacs, fetchhg, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "toxi-theme"; + version = "0.1.2"; + src = fetchhg { + url = "https://bitbucket.com/postspectacular/toxi-theme"; + rev = "b322fc7497a5"; + sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toxi-theme"; + sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd"; + name = "toxi-theme"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/toxi-theme"; license = lib.licenses.free; }; }) {}; tracking = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tracking"; - version = "2.1"; + version = "2.2"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "ac1cddf946e0af90ab453dd816f7173e0d4000e5"; - sha256 = "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q"; + rev = "13a33ea7b3cc579cbf67db2109802df3366e84d1"; + sha256 = "0lg7f71kdq3zzc85xp9p81vdarz6d6l5zy9175c67ps9smdx528i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tracking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tracking"; sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z"; name = "tracking"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tracking"; + homepage = "https://melpa.org/#/tracking"; license = lib.licenses.free; }; }) {}; transmission = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "transmission"; - version = "0.8"; + version = "0.9"; src = fetchFromGitHub { owner = "holomorph"; repo = "transmission"; - rev = "dbdc6e1b7de7cca57a5a1cf990bbc33553a823aa"; - sha256 = "14vcd5ixqbyx2zr0w79pbk5sdncxzk6mz6rw7yxq81m3hgspz050"; + rev = "5e20a6fbbed0a74a16c834a8e3e7950bdd5a9149"; + sha256 = "0nsh2rz9w33m79rrr8nrz3g1wcgfrv7dc8q9g3s82ckj5g8gxfpr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/transmission"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/transmission"; sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9"; name = "transmission"; }; packageRequires = [ emacs let-alist ]; meta = { - homepage = "http://melpa.org/#/transmission"; + homepage = "https://melpa.org/#/transmission"; license = lib.licenses.free; }; }) {}; @@ -25187,13 +26364,13 @@ sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/travis"; sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix"; name = "travis"; }; packageRequires = [ dash pkg-info request s ]; meta = { - homepage = "http://melpa.org/#/travis"; + homepage = "https://melpa.org/#/travis"; license = lib.licenses.free; }; }) {}; @@ -25208,13 +26385,13 @@ sha256 = "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/truthy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/truthy"; sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg"; name = "truthy"; }; packageRequires = [ list-utils ]; meta = { - homepage = "http://melpa.org/#/truthy"; + homepage = "https://melpa.org/#/truthy"; license = lib.licenses.free; }; }) {}; @@ -25229,13 +26406,13 @@ sha256 = "1ma3k9bbw427cj1n2gjajbqii482jhs2lgjggz9clpc21bn5wqfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tss"; sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm"; name = "tss"; }; packageRequires = [ auto-complete json-mode log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/tss"; + homepage = "https://melpa.org/#/tss"; license = lib.licenses.free; }; }) {}; @@ -25250,13 +26427,13 @@ sha256 = "060jksd9aamqx1n4l0bb9v4icsf7cr8jkyw0mbhgyz32nmxh3v6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ttrss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ttrss"; sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z"; name = "ttrss"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/ttrss"; + homepage = "https://melpa.org/#/ttrss"; license = lib.licenses.free; }; }) {}; @@ -25271,13 +26448,13 @@ sha256 = "0jpcjy2a77mywba2vm61knj26pgylsmv5a21cdp80q40bac4i6bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tuareg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tuareg"; sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q"; name = "tuareg"; }; packageRequires = [ caml ]; meta = { - homepage = "http://melpa.org/#/tuareg"; + homepage = "https://melpa.org/#/tuareg"; license = lib.licenses.free; }; }) {}; @@ -25292,13 +26469,13 @@ sha256 = "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tumble"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tumble"; sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9"; name = "tumble"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tumble"; + homepage = "https://melpa.org/#/tumble"; license = lib.licenses.free; }; }) {}; @@ -25313,13 +26490,13 @@ sha256 = "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/tup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tup-mode"; sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l"; name = "tup-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/tup-mode"; + homepage = "https://melpa.org/#/tup-mode"; license = lib.licenses.free; }; }) {}; @@ -25334,13 +26511,13 @@ sha256 = "0glw5lns7hwp8jznnfm6dyjw454sv2n84gy07ma7s1q3yczhq5bc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twilight-anti-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twilight-anti-bright-theme"; sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9"; name = "twilight-anti-bright-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/twilight-anti-bright-theme"; + homepage = "https://melpa.org/#/twilight-anti-bright-theme"; license = lib.licenses.free; }; }) {}; @@ -25355,13 +26532,13 @@ sha256 = "193v98i84xybm3n0f30jin5q10i87vbcnbdhl4zqi7jij9p5v98z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/twittering-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twittering-mode"; sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1"; name = "twittering-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/twittering-mode"; + homepage = "https://melpa.org/#/twittering-mode"; license = lib.licenses.free; }; }) {}; @@ -25376,13 +26553,34 @@ sha256 = "1risfbsaafh760vnl4ryys91g4k78g0fxj2zlcndpxxv34gwkhy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typed-clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typed-clojure-mode"; sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3"; name = "typed-clojure-mode"; }; packageRequires = [ cider clojure-mode ]; meta = { - homepage = "http://melpa.org/#/typed-clojure-mode"; + homepage = "https://melpa.org/#/typed-clojure-mode"; + license = lib.licenses.free; + }; + }) {}; + typit = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, mmt }: + melpaBuild { + pname = "typit"; + version = "0.1.0"; + src = fetchFromGitHub { + owner = "mrkkrp"; + repo = "typit"; + rev = "bbb0e8d07dc4316d1d2bf028c32301aa72f25a17"; + sha256 = "0iqxii1i67hscsz2fdasj3ripc9xmyl49jzwxm92r3lg13am135a"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typit"; + sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n"; + name = "typit"; + }; + packageRequires = [ emacs f mmt ]; + meta = { + homepage = "https://melpa.org/#/typit"; license = lib.licenses.free; }; }) {}; @@ -25397,13 +26595,13 @@ sha256 = "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/typo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typo"; sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx"; name = "typo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/typo"; + homepage = "https://melpa.org/#/typo"; license = lib.licenses.free; }; }) {}; @@ -25418,13 +26616,13 @@ sha256 = "0k41hwb6jgv3hngfrphlyhmfhvy4k05mvn0brm64xk7lj56y8q2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ubuntu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ubuntu-theme"; sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2"; name = "ubuntu-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ubuntu-theme"; + homepage = "https://melpa.org/#/ubuntu-theme"; license = lib.licenses.free; }; }) {}; @@ -25439,13 +26637,13 @@ sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ucs-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ucs-utils"; sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2"; name = "ucs-utils"; }; packageRequires = [ list-utils pcache persistent-soft ]; meta = { - homepage = "http://melpa.org/#/ucs-utils"; + homepage = "https://melpa.org/#/ucs-utils"; license = lib.licenses.free; }; }) {}; @@ -25460,13 +26658,13 @@ sha256 = "06qcvbp5rd0kh3ibrxj5p6r578lwsrgd7yj5c6slwmkdmna2fj33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/undercover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/undercover"; sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf"; name = "undercover"; }; packageRequires = [ dash emacs shut-up ]; meta = { - homepage = "http://melpa.org/#/undercover"; + homepage = "https://melpa.org/#/undercover"; license = lib.licenses.free; }; }) {}; @@ -25481,13 +26679,13 @@ sha256 = "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/underwater-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/underwater-theme"; sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr"; name = "underwater-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/underwater-theme"; + homepage = "https://melpa.org/#/underwater-theme"; license = lib.licenses.free; }; }) {}; @@ -25502,13 +26700,13 @@ sha256 = "1qy0q1fp7cmvmxynqrb086dkb727lmk5h1k98y14j75b94ilpy0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unfill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unfill"; sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv"; name = "unfill"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/unfill"; + homepage = "https://melpa.org/#/unfill"; license = lib.licenses.free; }; }) {}; @@ -25523,13 +26721,13 @@ sha256 = "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-enbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-enbox"; sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv"; name = "unicode-enbox"; }; packageRequires = [ pcache persistent-soft string-utils ucs-utils ]; meta = { - homepage = "http://melpa.org/#/unicode-enbox"; + homepage = "https://melpa.org/#/unicode-enbox"; license = lib.licenses.free; }; }) {}; @@ -25544,7 +26742,7 @@ sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-fonts"; sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3"; name = "unicode-fonts"; }; @@ -25556,7 +26754,7 @@ ucs-utils ]; meta = { - homepage = "http://melpa.org/#/unicode-fonts"; + homepage = "https://melpa.org/#/unicode-fonts"; license = lib.licenses.free; }; }) {}; @@ -25571,13 +26769,13 @@ sha256 = "0qy1hla7vf674ynqdzsaw2cnk92nhpcimww5q94rc0a95pzw64wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-progress-reporter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-progress-reporter"; sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7"; name = "unicode-progress-reporter"; }; packageRequires = [ emacs pcache persistent-soft ucs-utils ]; meta = { - homepage = "http://melpa.org/#/unicode-progress-reporter"; + homepage = "https://melpa.org/#/unicode-progress-reporter"; license = lib.licenses.free; }; }) {}; @@ -25592,13 +26790,13 @@ sha256 = "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unicode-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-whitespace"; sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy"; name = "unicode-whitespace"; }; packageRequires = [ pcache persistent-soft ucs-utils ]; meta = { - homepage = "http://melpa.org/#/unicode-whitespace"; + homepage = "https://melpa.org/#/unicode-whitespace"; license = lib.licenses.free; }; }) {}; @@ -25613,13 +26811,13 @@ sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unify-opening"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unify-opening"; sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8"; name = "unify-opening"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/unify-opening"; + homepage = "https://melpa.org/#/unify-opening"; license = lib.licenses.free; }; }) {}; @@ -25634,13 +26832,13 @@ sha256 = "1w2w0gmyr0nbq8kv3ldj30h9xma76gi1khbdia1y30kss677rr8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/unkillable-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unkillable-scratch"; sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7"; name = "unkillable-scratch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/unkillable-scratch"; + homepage = "https://melpa.org/#/unkillable-scratch"; license = lib.licenses.free; }; }) {}; @@ -25655,34 +26853,34 @@ sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/use-package"; sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8"; name = "use-package"; }; packageRequires = [ bind-key diminish ]; meta = { - homepage = "http://melpa.org/#/use-package"; + homepage = "https://melpa.org/#/use-package"; license = lib.licenses.free; }; }) {}; utop = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "utop"; - version = "1.18.1"; + version = "1.19.2"; src = fetchFromGitHub { owner = "diml"; repo = "utop"; - rev = "59f5b9c3fcc3fa8102e8a892e21ff8a477f80872"; - sha256 = "1azv6grd5h2r1spy996nv6q1c5l6qawv6k0dc2i5k96szl0r668r"; + rev = "3db52cc2d0ad990398bd726d00eece171200c03a"; + sha256 = "17p3cwjxdvp0v3n8fiib7hgl07z2iqi1qwlff0g3zwf4rr6kxgqy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/utop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/utop"; sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7"; name = "utop"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/utop"; + homepage = "https://melpa.org/#/utop"; license = lib.licenses.free; }; }) {}; @@ -25697,34 +26895,34 @@ sha256 = "0z53n9qsglp87f6q1pa3sixrjni9k46j31zg15gcwrmflmfrw8ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/uzumaki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uzumaki"; sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q"; name = "uzumaki"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/uzumaki"; + homepage = "https://melpa.org/#/uzumaki"; license = lib.licenses.free; }; }) {}; vagrant = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vagrant"; - version = "0.5.2"; + version = "0.6.0"; src = fetchFromGitHub { owner = "ottbot"; repo = "vagrant.el"; - rev = "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c"; - sha256 = "04r73s3fhvdcryv0l57awkpg1hi3kg6zcqxbxb03jc89h0f9vdlh"; + rev = "6d043d8f2c9e0c7039639504a88b2f8cbf519f67"; + sha256 = "0w4a4mxy81vbr5r4kaaddi5zbisvr9ry5x4skmmlib2k0j84niiv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vagrant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vagrant"; sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf"; name = "vagrant"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vagrant"; + homepage = "https://melpa.org/#/vagrant"; license = lib.licenses.free; }; }) {}; @@ -25739,13 +26937,13 @@ sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vbasense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vbasense"; sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n"; name = "vbasense"; }; packageRequires = [ auto-complete log4e yaxception ]; meta = { - homepage = "http://melpa.org/#/vbasense"; + homepage = "https://melpa.org/#/vbasense"; license = lib.licenses.free; }; }) {}; @@ -25760,13 +26958,13 @@ sha256 = "07dx3dyvkwcin0gb6j4jx0ldfxs4rqhygl56a8i81yy05adkaq2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vcomp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vcomp"; sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0"; name = "vcomp"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vcomp"; + homepage = "https://melpa.org/#/vcomp"; license = lib.licenses.free; }; }) {}; @@ -25781,13 +26979,13 @@ sha256 = "034475m2d2vlrlc2l88gdx0ga3krsdh08wkjxwnbb2dfyz3p8r9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vdirel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vdirel"; sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj"; name = "vdirel"; }; packageRequires = [ emacs helm org-vcard seq ]; meta = { - homepage = "http://melpa.org/#/vdirel"; + homepage = "https://melpa.org/#/vdirel"; license = lib.licenses.free; }; }) {}; @@ -25802,34 +27000,55 @@ sha256 = "0lzq31zqnk32vfp3kicnvgfr3nkv8amjzxmk9nrz1kwgmq7gvkjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vector-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vector-utils"; sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n"; name = "vector-utils"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vector-utils"; + homepage = "https://melpa.org/#/vector-utils"; license = lib.licenses.free; }; }) {}; - vhdl-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, ggtags, lib, melpaBuild, outshine }: + vertigo = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "vertigo"; + version = "1.0"; + src = fetchFromGitHub { + owner = "noctuid"; + repo = "vertigo.el"; + rev = "ebfa068d9e2fc39ba6d1744618c4e31dad6f629b"; + sha256 = "1yk7qqg8i3970kpfk34wvi0gh16qf0b0sfnf18g3s21dd4gk5a6g"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vertigo"; + sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83"; + name = "vertigo"; + }; + packageRequires = [ dash ]; + meta = { + homepage = "https://melpa.org/#/vertigo"; + license = lib.licenses.free; + }; + }) {}; + vhdl-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, ggtags, helm, lib, melpaBuild, outshine, projectile }: melpaBuild { pname = "vhdl-tools"; - version = "4.1"; + version = "4.3"; src = fetchFromGitHub { owner = "csantosb"; repo = "vhdl-tools"; - rev = "bf948bddc4db144ca1b650a50e687f0a58e4d07a"; - sha256 = "0k8wbylvws4yxh2jzxkz0fw5kwgblxvmagz54igbjj5mfm45pgsp"; + rev = "17b49fad72269fb987f88fe783248a9252f21faf"; + sha256 = "0ggblkaz214vl1j4i5gv5qj2q6ahnr0k3c3l9sd0w5vdkbw8n5jb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vhdl-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vhdl-tools"; sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw"; name = "vhdl-tools"; }; - packageRequires = [ emacs ggtags outshine ]; + packageRequires = [ emacs ggtags helm outshine projectile ]; meta = { - homepage = "http://melpa.org/#/vhdl-tools"; + homepage = "https://melpa.org/#/vhdl-tools"; license = lib.licenses.free; }; }) {}; @@ -25844,13 +27063,13 @@ sha256 = "1750gx65ymibam8ahx5blfv5jc26f3mzbklk1jrmfwpsalyghdd9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vim-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vim-region"; sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx"; name = "vim-region"; }; packageRequires = [ expand-region ]; meta = { - homepage = "http://melpa.org/#/vim-region"; + homepage = "https://melpa.org/#/vim-region"; license = lib.licenses.free; }; }) {}; @@ -25865,13 +27084,13 @@ sha256 = "1f94qx8rbnn21cl0grxqa9gzkbrz68vmqsihv8vvi8qf1c1dmd0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vimgolf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vimgolf"; sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn"; name = "vimgolf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vimgolf"; + homepage = "https://melpa.org/#/vimgolf"; license = lib.licenses.free; }; }) {}; @@ -25886,34 +27105,34 @@ sha256 = "082qrbljlahkq1fz2dfl434f1xv47jc1v9k0srh7lrm14616dzq3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vimish-fold"; sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3"; name = "vimish-fold"; }; packageRequires = [ cl-lib emacs f ]; meta = { - homepage = "http://melpa.org/#/vimish-fold"; + homepage = "https://melpa.org/#/vimish-fold"; license = lib.licenses.free; }; }) {}; visual-fill-column = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "visual-fill-column"; - version = "1.5"; + version = "1.7"; src = fetchFromGitHub { owner = "joostkremers"; repo = "visual-fill-column"; - rev = "261e27c062fbfd59ab20c9a084c35b99bcec598d"; - sha256 = "100w8rxdqln4xiwi0df15pvyaiyhjlwcjdh8nb0j95qpwji41vmf"; + rev = "d24354e79b4103ed75ff3a70e7279c75e0bf21a7"; + sha256 = "02msgb2dh3b5ki6v2bg39l2x93amvmaxg6v57kmyl80x27h00vx9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/visual-fill-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visual-fill-column"; sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5"; name = "visual-fill-column"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/visual-fill-column"; + homepage = "https://melpa.org/#/visual-fill-column"; license = lib.licenses.free; }; }) {}; @@ -25928,13 +27147,13 @@ sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/vlf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vlf"; sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8"; name = "vlf"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/vlf"; + homepage = "https://melpa.org/#/vlf"; license = lib.licenses.free; }; }) {}; @@ -25949,13 +27168,13 @@ sha256 = "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/voca-builder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/voca-builder"; sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y"; name = "voca-builder"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/voca-builder"; + homepage = "https://melpa.org/#/voca-builder"; license = lib.licenses.free; }; }) {}; @@ -25970,13 +27189,13 @@ sha256 = "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/volatile-highlights"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/volatile-highlights"; sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d"; name = "volatile-highlights"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/volatile-highlights"; + homepage = "https://melpa.org/#/volatile-highlights"; license = lib.licenses.free; }; }) {}; @@ -25991,13 +27210,34 @@ sha256 = "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wacspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wacspace"; sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl"; name = "wacspace"; }; packageRequires = [ cl-lib dash ]; meta = { - homepage = "http://melpa.org/#/wacspace"; + homepage = "https://melpa.org/#/wacspace"; + license = lib.licenses.free; + }; + }) {}; + wandbox = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }: + melpaBuild { + pname = "wandbox"; + version = "0.6.0"; + src = fetchFromGitHub { + owner = "kosh04"; + repo = "emacs-wandbox"; + rev = "70728ba1bfa425dee7a66fd86c7bbf2747b2514c"; + sha256 = "1nx7cr7d4qmzwbvp59kc8139nzc965ibc9vf7afrz8z2h5qg4d4l"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wandbox"; + sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz"; + name = "wandbox"; + }; + packageRequires = [ emacs request s ]; + meta = { + homepage = "https://melpa.org/#/wandbox"; license = lib.licenses.free; }; }) {}; @@ -26012,13 +27252,34 @@ sha256 = "0mnfk2ys8axjh696cq5msr5cdr91icl1i3mi0dd2y00lvh6sbm7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wc-goal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wc-goal-mode"; sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419"; name = "wc-goal-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wc-goal-mode"; + homepage = "https://melpa.org/#/wc-goal-mode"; + license = lib.licenses.free; + }; + }) {}; + wc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "wc-mode"; + version = "1.0"; + src = fetchFromGitHub { + owner = "bnbeckwith"; + repo = "wc-mode"; + rev = "eb0b23e0de8bcf21c61c1edacd9fe89b2e6888d0"; + sha256 = "0kzs256ymhdrqzva32j215q9fl66n9571prb7mi6syx1vpk7m3lw"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wc-mode"; + sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6"; + name = "wc-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/wc-mode"; license = lib.licenses.free; }; }) {}; @@ -26033,13 +27294,13 @@ sha256 = "113prlamr2j6y6n0w43asffawwa4qiq63mgwm85v04h6pr8bd90l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wcheck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wcheck-mode"; sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k"; name = "wcheck-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wcheck-mode"; + homepage = "https://melpa.org/#/wcheck-mode"; license = lib.licenses.free; }; }) {}; @@ -26054,34 +27315,55 @@ sha256 = "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weather-metno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weather-metno"; sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6"; name = "weather-metno"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/weather-metno"; + homepage = "https://melpa.org/#/weather-metno"; + license = lib.licenses.free; + }; + }) {}; + web-beautify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "web-beautify"; + version = "0.3.1"; + src = fetchFromGitHub { + owner = "yasuyk"; + repo = "web-beautify"; + rev = "0fac5fa09cee9d45237d6d74e2760fb24c929f8a"; + sha256 = "0zpvs9yc2gxfmm0x0majhzxc0b0vmm6p6pxh92h8iq3pmr0di8yj"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-beautify"; + sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f"; + name = "web-beautify"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/web-beautify"; license = lib.licenses.free; }; }) {}; web-completion-data = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-completion-data"; - version = "0.1"; + version = "0.2"; src = fetchFromGitHub { owner = "osv"; repo = "web-completion-data"; - rev = "3685b8c7eff06a2064b4f4304e7faf00a22a920a"; - sha256 = "1w7jnsc6lzlrlkj0nrlfnyca78lw53144hrf9k43b0g0zl8n9zqj"; + rev = "c272c94e8a71b779c29653a532f619acad433a4f"; + sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-completion-data"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-completion-data"; sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9"; name = "web-completion-data"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/web-completion-data"; + homepage = "https://melpa.org/#/web-completion-data"; license = lib.licenses.free; }; }) {}; @@ -26096,13 +27378,13 @@ sha256 = "00fzzjqa1v2dzlpgjxb2qj3nn6iizg177mk7vjvcv4814g4dhcal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-mode"; sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i"; name = "web-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/web-mode"; + homepage = "https://melpa.org/#/web-mode"; license = lib.licenses.free; }; }) {}; @@ -26116,34 +27398,34 @@ sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weblogger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weblogger"; sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk"; name = "weblogger"; }; packageRequires = [ xml-rpc ]; meta = { - homepage = "http://melpa.org/#/weblogger"; + homepage = "https://melpa.org/#/weblogger"; license = lib.licenses.free; }; }) {}; weechat = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, tracking }: melpaBuild { pname = "weechat"; - version = "0.2.2"; + version = "0.3.1"; src = fetchFromGitHub { owner = "the-kenny"; repo = "weechat.el"; - rev = "f01cdd4d874cf09fee5a78d7b29eb96bc21be2be"; - sha256 = "0f90m2s40jish4wjwfpmbgw024r7n2l5b9q9wr6rd3vdcwks3mcl"; + rev = "41f06299b2a691473b6b26c15dc46367542c79f0"; + sha256 = "0vg3w18xj6i320jsivsml3mi1fdxr8dgxmn7qy2780ajy5ndxnw1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weechat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weechat"; sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46"; name = "weechat"; }; packageRequires = [ cl-lib emacs s tracking ]; meta = { - homepage = "http://melpa.org/#/weechat"; + homepage = "https://melpa.org/#/weechat"; license = lib.licenses.free; }; }) {}; @@ -26158,34 +27440,34 @@ sha256 = "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/weibo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weibo"; sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd"; name = "weibo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/weibo"; + homepage = "https://melpa.org/#/weibo"; license = lib.licenses.free; }; }) {}; which-key = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "which-key"; - version = "0.8"; + version = "1.1.7"; src = fetchFromGitHub { owner = "justbur"; repo = "emacs-which-key"; - rev = "ad60a6c7206752d9b9cf4ba17c2293dba365e9fb"; - sha256 = "11mi23djk690n4984hk3pv61rrkdnxpkmywsqibi3xki27v2al36"; + rev = "d572f37f21838eb336c1eaf79672a7acb9ff06c0"; + sha256 = "1cbzssi7kmirppa7i8n4g1ggk999gmwhjv4sd04m2zihlsi7y3di"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/which-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/which-key"; sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59"; name = "which-key"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/which-key"; + homepage = "https://melpa.org/#/which-key"; license = lib.licenses.free; }; }) {}; @@ -26200,13 +27482,13 @@ sha256 = "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whitaker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whitaker"; sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj"; name = "whitaker"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/whitaker"; + homepage = "https://melpa.org/#/whitaker"; license = lib.licenses.free; }; }) {}; @@ -26221,13 +27503,13 @@ sha256 = "0xmwhybb8x6wwfr55ym5xg4dhy1aqx1abxy9qskn7h3zf1z4pgg2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whitespace-cleanup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whitespace-cleanup-mode"; sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3"; name = "whitespace-cleanup-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/whitespace-cleanup-mode"; + homepage = "https://melpa.org/#/whitespace-cleanup-mode"; license = lib.licenses.free; }; }) {}; @@ -26242,13 +27524,13 @@ sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/whole-line-or-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whole-line-or-region"; sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1"; name = "whole-line-or-region"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/whole-line-or-region"; + homepage = "https://melpa.org/#/whole-line-or-region"; license = lib.licenses.free; }; }) {}; @@ -26263,13 +27545,13 @@ sha256 = "0fqv63m8z5m5ghh4j8ccdnmgcdkvi4jqpg9z7lp17g4p9pq3xfjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/widget-mvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/widget-mvc"; sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f"; name = "widget-mvc"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/widget-mvc"; + homepage = "https://melpa.org/#/widget-mvc"; license = lib.licenses.free; }; }) {}; @@ -26284,13 +27566,13 @@ sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wiki-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wiki-nav"; sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy"; name = "wiki-nav"; }; packageRequires = [ button-lock nav-flash ]; meta = { - homepage = "http://melpa.org/#/wiki-nav"; + homepage = "https://melpa.org/#/wiki-nav"; license = lib.licenses.free; }; }) {}; @@ -26305,13 +27587,13 @@ sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/win-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/win-switch"; sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my"; name = "win-switch"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/win-switch"; + homepage = "https://melpa.org/#/win-switch"; license = lib.licenses.free; }; }) {}; @@ -26326,13 +27608,13 @@ sha256 = "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-end-visible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-end-visible"; sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq"; name = "window-end-visible"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/window-end-visible"; + homepage = "https://melpa.org/#/window-end-visible"; license = lib.licenses.free; }; }) {}; @@ -26347,13 +27629,13 @@ sha256 = "0jyymmbz03zj2ydca1rv6ra0b2brjl7pyl4897zd00j5kvqjdyif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-layout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-layout"; sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85"; name = "window-layout"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/window-layout"; + homepage = "https://melpa.org/#/window-layout"; license = lib.licenses.free; }; }) {}; @@ -26368,13 +27650,13 @@ sha256 = "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-numbering"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-numbering"; sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x"; name = "window-numbering"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/window-numbering"; + homepage = "https://melpa.org/#/window-numbering"; license = lib.licenses.free; }; }) {}; @@ -26389,13 +27671,13 @@ sha256 = "1xjs51wm5ydcqdwvg3c42c5z4j92q75lmk895qkka7ayy5spxxf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/window-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-purpose"; sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d"; name = "window-purpose"; }; packageRequires = [ cl-lib emacs imenu-list let-alist ]; meta = { - homepage = "http://melpa.org/#/window-purpose"; + homepage = "https://melpa.org/#/window-purpose"; license = lib.licenses.free; }; }) {}; @@ -26410,13 +27692,13 @@ sha256 = "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/windsize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/windsize"; sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9"; name = "windsize"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/windsize"; + homepage = "https://melpa.org/#/windsize"; license = lib.licenses.free; }; }) {}; @@ -26426,17 +27708,17 @@ version = "0.9.0"; src = fetchhg { url = "https://bitbucket.com/ArneBab/wisp"; - rev = "f41388ee99f1"; - sha256 = "16711d1ds508nmjw81jm2cfdpqzc55gc175fkhayk0f5swlvd11m"; + rev = "4d512e8e0e0f"; + sha256 = "059m9w0m0rqjwdzdn4l1ib25ys0vym54lvb9bkd40rd0yqd36xfw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wisp-mode"; sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc"; name = "wisp-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wisp-mode"; + homepage = "https://melpa.org/#/wisp-mode"; license = lib.licenses.free; }; }) {}; @@ -26451,34 +27733,34 @@ sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wispjs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wispjs-mode"; sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p"; name = "wispjs-mode"; }; packageRequires = [ clojure-mode ]; meta = { - homepage = "http://melpa.org/#/wispjs-mode"; + homepage = "https://melpa.org/#/wispjs-mode"; license = lib.licenses.free; }; }) {}; with-editor = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "with-editor"; - version = "2.5.0"; + version = "2.5.1"; src = fetchFromGitHub { owner = "magit"; repo = "with-editor"; - rev = "580f225a6c4476feb36b707c6c705b027339717b"; - sha256 = "0dymhkbkzicjw0379bdzbb594x5xcjbgbn428a30i2i0jwv66pfz"; + rev = "d28d07497f67fea4c62fe7a2d3201fd86fb64fe2"; + sha256 = "0rzq2fbz523fyy2p6ddx9iws89sfgw3pwillw8yz965f3hxx3dj3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/with-editor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/with-editor"; sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb"; name = "with-editor"; }; packageRequires = [ async dash emacs ]; meta = { - homepage = "http://melpa.org/#/with-editor"; + homepage = "https://melpa.org/#/with-editor"; license = lib.licenses.free; }; }) {}; @@ -26493,13 +27775,13 @@ sha256 = "0nmzh6dynbm8vglp4pqz81s2z68jbnasvamvi1x1iawf8g9zfyix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wn-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wn-mode"; sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3"; name = "wn-mode"; }; packageRequires = [ emacs ]; meta = { - homepage = "http://melpa.org/#/wn-mode"; + homepage = "https://melpa.org/#/wn-mode"; license = lib.licenses.free; }; }) {}; @@ -26514,13 +27796,13 @@ sha256 = "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wonderland"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wonderland"; sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi"; name = "wonderland"; }; packageRequires = [ dash dash-functional emacs multi ]; meta = { - homepage = "http://melpa.org/#/wonderland"; + homepage = "https://melpa.org/#/wonderland"; license = lib.licenses.free; }; }) {}; @@ -26535,13 +27817,34 @@ sha256 = "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wordsmith-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wordsmith-mode"; sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n"; name = "wordsmith-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wordsmith-mode"; + homepage = "https://melpa.org/#/wordsmith-mode"; + license = lib.licenses.free; + }; + }) {}; + worf = callPackage ({ ace-link, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, swiper }: + melpaBuild { + pname = "worf"; + version = "0.1.0"; + src = fetchFromGitHub { + owner = "abo-abo"; + repo = "worf"; + rev = "f36755447b588b739b2bf6ab0fb5eb5f4d8db3df"; + sha256 = "0l2n3vwk251ba06xdrs9z0bp4ligfdjd259a84ap2z3sqdfa98x4"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/worf"; + sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi"; + name = "worf"; + }; + packageRequires = [ ace-link hydra swiper ]; + meta = { + homepage = "https://melpa.org/#/worf"; license = lib.licenses.free; }; }) {}; @@ -26551,18 +27854,18 @@ version = "0.7.3"; src = fetchFromGitHub { owner = "rejeep"; - repo = "wrap-region"; + repo = "wrap-region.el"; rev = "5a910ad23ebb0649e644bf62ad042587341da5da"; sha256 = "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wrap-region"; - sha256 = "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wrap-region"; + sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i"; name = "wrap-region"; }; packageRequires = [ dash ]; meta = { - homepage = "http://melpa.org/#/wrap-region"; + homepage = "https://melpa.org/#/wrap-region"; license = lib.licenses.free; }; }) {}; @@ -26577,34 +27880,34 @@ sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/writegood-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/writegood-mode"; sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d"; name = "writegood-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/writegood-mode"; + homepage = "https://melpa.org/#/writegood-mode"; license = lib.licenses.free; }; }) {}; writeroom-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, visual-fill-column }: melpaBuild { pname = "writeroom-mode"; - version = "3.1"; + version = "3.2"; src = fetchFromGitHub { owner = "joostkremers"; repo = "writeroom-mode"; - rev = "48b179879c6614afcae3fc4386fd88b52b2bcc17"; - sha256 = "0f554h834p12255mhwjnxbh1ls65476k60cwddqyl844ph75w8jv"; + rev = "aed9803e8eb7178361fbac75df98c19a45eff4ee"; + sha256 = "11a3h5v7knj8y360cxin59c1ipd9y4qsqlanrw69yb5k4816ayyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/writeroom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/writeroom-mode"; sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk"; name = "writeroom-mode"; }; packageRequires = [ emacs visual-fill-column ]; meta = { - homepage = "http://melpa.org/#/writeroom-mode"; + homepage = "https://melpa.org/#/writeroom-mode"; license = lib.licenses.free; }; }) {}; @@ -26619,13 +27922,13 @@ sha256 = "1lv0l27lrp6xyl0c5yhlnyjwx872izq02z8x34da9jv3walxpk8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ws-butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ws-butler"; sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn"; name = "ws-butler"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/ws-butler"; + homepage = "https://melpa.org/#/ws-butler"; license = lib.licenses.free; }; }) {}; @@ -26640,13 +27943,34 @@ sha256 = "1ibvcc54y2w72d3yvcczvzywribiwmkhlb1b08g4pyb1arclw393"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/wsd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wsd-mode"; sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc"; name = "wsd-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/wsd-mode"; + homepage = "https://melpa.org/#/wsd-mode"; + license = lib.licenses.free; + }; + }) {}; + wttrin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, xterm-color }: + melpaBuild { + pname = "wttrin"; + version = "0.1.0"; + src = fetchFromGitHub { + owner = "bcbcarl"; + repo = "emacs-wttrin"; + rev = "d595240d92788791da2218d12efd6a77eee06217"; + sha256 = "0mbc3ndggv2rbmfcfhw8bsx3qw6jy684hxz5dqa88lfb6vs5knzc"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wttrin"; + sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil"; + name = "wttrin"; + }; + packageRequires = [ emacs xterm-color ]; + meta = { + homepage = "https://melpa.org/#/wttrin"; license = lib.licenses.free; }; }) {}; @@ -26661,13 +27985,13 @@ sha256 = "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/x86-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/x86-lookup"; sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd"; name = "x86-lookup"; }; packageRequires = [ cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/x86-lookup"; + homepage = "https://melpa.org/#/x86-lookup"; license = lib.licenses.free; }; }) {}; @@ -26682,13 +28006,13 @@ sha256 = "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xbm-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xbm-life"; sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q"; name = "xbm-life"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xbm-life"; + homepage = "https://melpa.org/#/xbm-life"; license = lib.licenses.free; }; }) {}; @@ -26703,13 +28027,34 @@ sha256 = "1n1msmqap4a2qnjwrchf9cjkzcl20hbrx0vsc4lkbvq3p5riv5p7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xcscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xcscope"; sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w"; name = "xcscope"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xcscope"; + homepage = "https://melpa.org/#/xcscope"; + license = lib.licenses.free; + }; + }) {}; + xkcd = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: + melpaBuild { + pname = "xkcd"; + version = "1.1"; + src = fetchFromGitHub { + owner = "vibhavp"; + repo = "emacs-xkcd"; + rev = "2c538d41a9728939cc5e8292faa78ed50997877d"; + sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xkcd"; + sha256 = "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w"; + name = "xkcd"; + }; + packageRequires = [ json ]; + meta = { + homepage = "https://melpa.org/#/xkcd"; license = lib.licenses.free; }; }) {}; @@ -26724,13 +28069,34 @@ sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xquery-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xquery-tool"; sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0"; name = "xquery-tool"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xquery-tool"; + homepage = "https://melpa.org/#/xquery-tool"; + license = lib.licenses.free; + }; + }) {}; + xref-js2 = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: + melpaBuild { + pname = "xref-js2"; + version = "1.3"; + src = fetchFromGitHub { + owner = "NicolasPetton"; + repo = "xref-js2"; + rev = "b4bd3b992220a9f8c38b313e4fbf4eeddc07176a"; + sha256 = "1kmlya0bwgm2krwc6j4gp80579sf5azz08l8d7pydw69rckv6ji0"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xref-js2"; + sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3"; + name = "xref-js2"; + }; + packageRequires = [ emacs js2-mode ]; + meta = { + homepage = "https://melpa.org/#/xref-js2"; license = lib.licenses.free; }; }) {}; @@ -26745,13 +28111,13 @@ sha256 = "1zdj4664gvwc4kyx7fx5232l3c5anm0xyrrnrw596q604q6xxj2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xterm-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xterm-color"; sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj"; name = "xterm-color"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/xterm-color"; + homepage = "https://melpa.org/#/xterm-color"; license = lib.licenses.free; }; }) {}; @@ -26766,13 +28132,13 @@ sha256 = "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/xtest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xtest"; sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7"; name = "xtest"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/xtest"; + homepage = "https://melpa.org/#/xtest"; license = lib.licenses.free; }; }) {}; @@ -26787,13 +28153,13 @@ sha256 = "1rplafm6mldsirj7xg66vsx03n263yii3il3fkws69xmv7sx1a6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yafolding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yafolding"; sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq"; name = "yafolding"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yafolding"; + homepage = "https://melpa.org/#/yafolding"; license = lib.licenses.free; }; }) {}; @@ -26808,13 +28174,13 @@ sha256 = "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yagist"; sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd"; name = "yagist"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/yagist"; + homepage = "https://melpa.org/#/yagist"; license = lib.licenses.free; }; }) {}; @@ -26829,13 +28195,13 @@ sha256 = "1mj1gwrflpdlmc7wl1axygn1jqlrjys1dh3cpdh27zrgsjvhd6c1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaml-mode"; sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc"; name = "yaml-mode"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yaml-mode"; + homepage = "https://melpa.org/#/yaml-mode"; license = lib.licenses.free; }; }) {}; @@ -26850,34 +28216,34 @@ sha256 = "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yascroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yascroll"; sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f"; name = "yascroll"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yascroll"; + homepage = "https://melpa.org/#/yascroll"; license = lib.licenses.free; }; }) {}; yasnippet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yasnippet"; - version = "0.9.1snapshot"; + version = "0.9.1"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "yasnippet"; - rev = "80941c077f8248ee1e8dcc64b3b57e741b9e5755"; - sha256 = "0m6y2m2nsg6camwh0hjv9jcw6p5a0b4dwig1d58s2g15n3hca3dy"; + rev = "6aeccce2f17aca6a59a2790ec08680d52c03f6c0"; + sha256 = "0yiglsb1s9ni4xig05ysw75l0ndjgdyhzip7c0sdxb265p3yrfby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yasnippet"; sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf"; name = "yasnippet"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yasnippet"; + homepage = "https://melpa.org/#/yasnippet"; license = lib.licenses.free; }; }) {}; @@ -26892,13 +28258,13 @@ sha256 = "1yplaj7pry43qps8hvqxj9983ah4jvaiq94l171a7f8qi28386s8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yatemplate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yatemplate"; sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q"; name = "yatemplate"; }; packageRequires = [ yasnippet ]; meta = { - homepage = "http://melpa.org/#/yatemplate"; + homepage = "https://melpa.org/#/yatemplate"; license = lib.licenses.free; }; }) {}; @@ -26911,13 +28277,13 @@ sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yatex"; sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6"; name = "yatex"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yatex"; + homepage = "https://melpa.org/#/yatex"; license = lib.licenses.free; }; }) {}; @@ -26932,13 +28298,13 @@ sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yaxception"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaxception"; sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58"; name = "yaxception"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/yaxception"; + homepage = "https://melpa.org/#/yaxception"; license = lib.licenses.free; }; }) {}; @@ -26953,13 +28319,13 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/ycmd"; - sha256 = "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ycmd"; + sha256 = "1mg2b0wgfimrc0hp84q7lc654z2hysrhbzswpq1x812hgq895v8p"; name = "ycmd"; }; packageRequires = [ dash deferred emacs f popup ]; meta = { - homepage = "http://melpa.org/#/ycmd"; + homepage = "https://melpa.org/#/ycmd"; license = lib.licenses.free; }; }) {}; @@ -26974,13 +28340,34 @@ sha256 = "0yvz7lmid4jcikb9jmc7h2lcry3fdyy809k25nyasj2bk41xqqsd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/yesql-ghosts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yesql-ghosts"; sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf"; name = "yesql-ghosts"; }; packageRequires = [ cider dash s ]; meta = { - homepage = "http://melpa.org/#/yesql-ghosts"; + homepage = "https://melpa.org/#/yesql-ghosts"; + license = lib.licenses.free; + }; + }) {}; + yoshi-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "yoshi-theme"; + version = "6.1.0"; + src = fetchFromGitHub { + owner = "ryuslash"; + repo = "yoshi-theme"; + rev = "b140d3adce4e8e7ff7b0daaa6684bd7065e4819b"; + sha256 = "19a47780h0x1rdicr8i7356kvamkbkcwp31skdpp5cxgysvi3d9s"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yoshi-theme"; + sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv"; + name = "yoshi-theme"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/yoshi-theme"; license = lib.licenses.free; }; }) {}; @@ -26995,55 +28382,55 @@ sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/youdao-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/youdao-dictionary"; sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym"; name = "youdao-dictionary"; }; packageRequires = [ chinese-word-at-point emacs names popup ]; meta = { - homepage = "http://melpa.org/#/youdao-dictionary"; + homepage = "https://melpa.org/#/youdao-dictionary"; license = lib.licenses.free; }; }) {}; zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zenburn-theme"; - version = "2.3"; + version = "2.4"; src = fetchFromGitHub { owner = "bbatsov"; repo = "zenburn-emacs"; - rev = "ad938d2322b417783889ee3885adff012ab49f7b"; - sha256 = "0bgq34k7p9qkxhrg7dvmkfpi1r47czyw12l0cm93z3m817z5hjrk"; + rev = "e5dc3962fd30005914b79b14e9821d298f2c305a"; + sha256 = "1n7ka608lk0xp7vg4zcw282zna0cwvcwvmhic6ym1ag7lq5cjrhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zenburn-theme"; sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9"; name = "zenburn-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zenburn-theme"; + homepage = "https://melpa.org/#/zenburn-theme"; license = lib.licenses.free; }; }) {}; zerodark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zerodark-theme"; - version = "1.1"; + version = "1.2"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "zerodark-theme"; - rev = "c948c6e1467a61b0592b0c0ca08a4895fb353a4c"; - sha256 = "1w1g81wy2l67b5dknphrigpxx5slfgrl2qyba4b93gcx68zaj4bq"; + rev = "8138727db1e832c3a494713d616bb7c826604e5c"; + sha256 = "0j940clm3w05f93rq46pzrjzj5kw2ia5mzkspk1c6x0z5vi888gm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zerodark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zerodark-theme"; sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9"; name = "zerodark-theme"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zerodark-theme"; + homepage = "https://melpa.org/#/zerodark-theme"; license = lib.licenses.free; }; }) {}; @@ -27058,13 +28445,13 @@ sha256 = "1ksjd3askc3k1l0b3nia5mzkxa74bidh2x0xlrj4qs4im5445vnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zombie-trellys-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zombie-trellys-mode"; sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv"; name = "zombie-trellys-mode"; }; packageRequires = [ cl-lib emacs haskell-mode ]; meta = { - homepage = "http://melpa.org/#/zombie-trellys-mode"; + homepage = "https://melpa.org/#/zombie-trellys-mode"; license = lib.licenses.free; }; }) {}; @@ -27079,13 +28466,13 @@ sha256 = "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zone-nyan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zone-nyan"; sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b"; name = "zone-nyan"; }; packageRequires = [ esxml ]; meta = { - homepage = "http://melpa.org/#/zone-nyan"; + homepage = "https://melpa.org/#/zone-nyan"; license = lib.licenses.free; }; }) {}; @@ -27100,13 +28487,13 @@ sha256 = "1dwf3980rnwc85s73j8accwgpcdhsa6fqdrppbrqb8f7c05q8303"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zoom-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zoom-window"; sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; name = "zoom-window"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zoom-window"; + homepage = "https://melpa.org/#/zoom-window"; license = lib.licenses.free; }; }) {}; @@ -27121,13 +28508,13 @@ sha256 = "0j6x3az8vpq2ggafjxdl8x3ln7lhh58c27z72mwywp4a2ca1g496"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zop-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zop-to-char"; sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga"; name = "zop-to-char"; }; packageRequires = [ cl-lib ]; meta = { - homepage = "http://melpa.org/#/zop-to-char"; + homepage = "https://melpa.org/#/zop-to-char"; license = lib.licenses.free; }; }) {}; @@ -27136,19 +28523,19 @@ pname = "zotelo"; version = "1.3"; src = fetchFromGitHub { - owner = "vitoshka"; + owner = "vspinu"; repo = "zotelo"; rev = "56eaaa76f80bd15710e68af4a1e585394af987d3"; sha256 = "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zotelo"; - sha256 = "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zotelo"; + sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36"; name = "zotelo"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zotelo"; + homepage = "https://melpa.org/#/zotelo"; license = lib.licenses.free; }; }) {}; @@ -27157,19 +28544,19 @@ pname = "zygospore"; version = "0.0.3"; src = fetchFromGitHub { - owner = "louiskottmann"; + owner = "LouisKottmann"; repo = "zygospore.el"; rev = "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8"; sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zygospore"; - sha256 = "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zygospore"; + sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj"; name = "zygospore"; }; packageRequires = []; meta = { - homepage = "http://melpa.org/#/zygospore"; + homepage = "https://melpa.org/#/zygospore"; license = lib.licenses.free; }; }) {}; @@ -27184,13 +28571,13 @@ sha256 = "0y0hhar3krkvbpb5y9k197mb0wfpz8cl6fmxazq8msjml7hkk339"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd35b0df7b71661561c155a8f7ba7c2236f3e30/recipes/zzz-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zzz-to-char"; sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh"; name = "zzz-to-char"; }; packageRequires = [ avy cl-lib emacs ]; meta = { - homepage = "http://melpa.org/#/zzz-to-char"; + homepage = "https://melpa.org/#/zzz-to-char"; license = lib.licenses.free; }; }) {}; diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index e026625398a..20ac4f4c091 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -2,15 +2,14 @@ # Updating -To update the list of packages from MELPA Stable, +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-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)"` +1. Clone https://github.com/ttuegel/emacs2nix. +2. Clone https://github.com/milkypostman/melpa. +3. Run `./melpa-stable-packages.sh --melpa PATH_TO_MELPA_CLONE` from emacs2nix. +4. Copy the new `melpa-stable-generated.nix` file into Nixpkgs. +5. Check for evaluation errors: `nix-instantiate ./. -A emacsPackagesNg.melpaStablePackages`. +6. `git add pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix && git commit -m "melpa-stable-packages $(date -Idate)"` */ diff --git a/pkgs/applications/editors/focuswriter/default.nix b/pkgs/applications/editors/focuswriter/default.nix index bc9163e63cb..eedb674b472 100644 --- a/pkgs/applications/editors/focuswriter/default.nix +++ b/pkgs/applications/editors/focuswriter/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, qt4, pkgconfig, hunspell}: +{ stdenv, fetchurl, qt4, qmake4Hook, pkgconfig, hunspell }: stdenv.mkDerivation rec { name = "focuswriter-${version}"; @@ -9,11 +9,11 @@ stdenv.mkDerivation rec { sha256 = "1i58jxbiy95ijf81g8c3gwxhcg3irzssna3wv7vhrd57g4lcfj0w"; }; - buildInputs = [ qt4 pkgconfig hunspell ]; + buildInputs = [ qt4 qmake4Hook pkgconfig hunspell ]; - configurePhase = "qmake PREFIX=/"; + qmakeFlags = [ "PREFIX=/" ]; - installPhase = "make install INSTALL_ROOT=$out"; + installFlags = [ "INSTALL_ROOT=$(out)" ]; meta = { description = "Simple, distraction-free writing environment"; diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index 5d20d0578ea..482cbc56bcf 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -148,14 +148,14 @@ in android-studio = buildAndroidStudio rec { name = "android-studio-${version}"; - version = "2.0.0.0"; - build = "143.2443734"; + version = "2.0.0.20"; + build = "143.2739321"; description = "Android development environment based on IntelliJ IDEA"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://dl.google.com/dl/android/studio/ide-zips/${version}" + "/android-studio-ide-${build}-linux.zip"; - sha256 = "0j6bi87hb5jxjwfhfya64s673vdkdslsqc6sqa4zl97sabvafk2w"; + sha256 = "14bb4ha868015wm8v8vivxfylfzm7gbvf01h82w4bhzdbzgn1zpr"; }; }; @@ -233,25 +233,25 @@ in pycharm-community = buildPycharm rec { name = "pycharm-community-${version}"; - version = "5.0.3"; - build = "143.1559.1"; + version = "2016.1.2"; + build = "145.844"; description = "PyCharm Community Edition"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://download.jetbrains.com/python/${name}.tar.gz"; - sha256 = "1xb3qxhl8ln488v0hmjqkzpyypm7wh941c7syi4cs7plbdp6w4c2"; + sha256 = "1kxwjg5l2fzpn6hr0iir0dv1n5l02jl02aff9wrj95186wxivg3a"; }; }; pycharm-professional = buildPycharm rec { name = "pycharm-professional-${version}"; - version = "5.0.3"; - build = "143.1559.1"; + version = "2016.1.2"; + build = "145.844"; description = "PyCharm Professional Edition"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "https://download.jetbrains.com/python/${name}.tar.gz"; - sha256 = "1v2g9867nn3id1zfbg4zwj0c0z9d72rl9c1dz6vs2c4j0y4gy9xl"; + sha256 = "1kwi9d80r2yp5ivbvslrj70iam966rv4a8diajbwpcc26m7rj3kk"; }; }; diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index 064e68cae9f..0d4ae4c36eb 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -60,10 +60,10 @@ let neovim = stdenv.mkDerivation rec { name = "neovim-${version}"; - version = "0.1.2"; + version = "0.1.3"; src = fetchFromGitHub { - sha256 = "128aznp2gj08bdz05ri8mqday7wcsy9yz7dw7vdgzk0pk23vjz89"; + sha256 = "1bkyfxsgb7894848nphsi6shr8bvi9z6ch0zvh2df7vkkzji8chr"; rev = "v${version}"; repo = "neovim"; owner = "neovim"; @@ -137,7 +137,7 @@ let modifications to the core source - Improve extensibility with a new plugin architecture ''; - homepage = http://www.neovim.io; + homepage = https://www.neovim.io; # "Contributions committed before b17d96 by authors who did not sign the # Contributor License Agreement (CLA) remain under the Vim license. # Contributions committed after b17d96 are licensed under Apache 2.0 unless diff --git a/pkgs/applications/editors/sublime/default.nix b/pkgs/applications/editors/sublime/default.nix index c7b0f9864c9..a002d14c98c 100644 --- a/pkgs/applications/editors/sublime/default.nix +++ b/pkgs/applications/editors/sublime/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { echo ${libPath} patchelf \ --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath ${libPath}:${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"} \ + --set-rpath ${libPath}:${stdenv.cc.cc.lib}/lib${stdenv.lib.optionalString stdenv.is64bit "64"} \ $out/sublime/sublime_text ''; diff --git a/pkgs/applications/editors/sublime3/default.nix b/pkgs/applications/editors/sublime3/default.nix index 507dc611fd4..153c6920b47 100644 --- a/pkgs/applications/editors/sublime3/default.nix +++ b/pkgs/applications/editors/sublime3/default.nix @@ -37,7 +37,7 @@ in let for i in sublime_text plugin_host crash_reporter; do patchelf \ --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath ${libPath}:${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"} \ + --set-rpath ${libPath}:${stdenv.cc.cc.lib}/lib${stdenv.lib.optionalString stdenv.is64bit "64"} \ $i done @@ -57,7 +57,7 @@ in let --set NIX_REDIRECTS ${builtins.concatStringsSep ":" redirects} # Without this, plugin_host crashes, even though it has the rpath - wrapProgram $out/plugin_host --prefix LD_PRELOAD : ${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1:${openssl.out}/lib/libssl.so:${bzip2.out}/lib/libbz2.so + wrapProgram $out/plugin_host --prefix LD_PRELOAD : ${stdenv.cc.cc.lib}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1:${openssl.out}/lib/libssl.so:${bzip2.out}/lib/libbz2.so ''; }; in stdenv.mkDerivation { diff --git a/pkgs/applications/editors/texmaker/default.nix b/pkgs/applications/editors/texmaker/default.nix index 04ebf195108..83165f0a505 100644 --- a/pkgs/applications/editors/texmaker/default.nix +++ b/pkgs/applications/editors/texmaker/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4, poppler_qt4, zlib, pkgconfig, poppler}: +{ stdenv, fetchurl, qt4, qmake4Hook, poppler_qt4, zlib, pkgconfig, poppler }: stdenv.mkDerivation rec { pname = "texmaker"; @@ -11,11 +11,11 @@ stdenv.mkDerivation rec { }; buildInputs = [ qt4 poppler_qt4 zlib ]; - nativeBuildInputs = [ pkgconfig poppler ]; + nativeBuildInputs = [ pkgconfig poppler qmake4Hook ]; NIX_CFLAGS_COMPILE="-I${poppler}/include/poppler"; preConfigure = '' - qmake PREFIX=$out DESKTOPDIR=$out/share/applications ICONDIR=$out/share/pixmaps texmaker.pro + qmakeFlags="$qmakeFlags DESKTOPDIR=$out/share/applications ICONDIR=$out/share/pixmaps" ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/editors/texstudio/default.nix b/pkgs/applications/editors/texstudio/default.nix index 4b0cccae364..4accf1cad67 100644 --- a/pkgs/applications/editors/texstudio/default.nix +++ b/pkgs/applications/editors/texstudio/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4, poppler_qt4, zlib, pkgconfig}: +{ stdenv, fetchurl, qt4, qmake4Hook, poppler_qt4, zlib, pkgconfig}: stdenv.mkDerivation rec { pname = "texstudio"; @@ -11,11 +11,9 @@ stdenv.mkDerivation rec { sha256 = "1smmc4xqs8x8qzp6iqj2wr4xarfnxxxp6rq6chx1kb256w75jwfw"; }; - buildInputs = [ qt4 poppler_qt4 zlib pkgconfig]; + buildInputs = [ qt4 qmake4Hook poppler_qt4 zlib pkgconfig ]; - preConfigure = '' - qmake PREFIX=$out NO_APPDATA=True texstudio.pro - ''; + qmakeFlags = [ "NO_APPDATA=True" ]; meta = with stdenv.lib; { description = "TeX and LaTeX editor"; diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix index 059b85cee5f..201db054743 100644 --- a/pkgs/applications/editors/tiled/default.nix +++ b/pkgs/applications/editors/tiled/default.nix @@ -1,28 +1,31 @@ -{ stdenv, fetchurl, qtbase, qttools, pkgconfig, python }: +{ stdenv, fetchurl, pkgconfig, qmakeHook +, python, qtbase, qttools, zlib }: let - version = "0.12.3"; - sha256 = "001j4lvb5d9h3m6vgz2na07637x6xg4bdvxi2hg4a0j9rikb4y40"; -in - -stdenv.mkDerivation rec { +# qtEnv = with qt5; env "qt-${qtbase.version}" [ qtbase qttools ]; +in stdenv.mkDerivation rec { name = "tiled-${version}"; + version = "0.16.0"; src = fetchurl { + name = "${name}.tar.gz"; url = "https://github.com/bjorn/tiled/archive/v${version}.tar.gz"; - inherit sha256; + sha256 = "1vlhfkgl126irp53xw94jw1xnj96l1hwnbxmm1s5az60460gfbf0"; }; - buildInputs = [ qtbase qttools pkgconfig python ]; + nativeBuildInputs = [ pkgconfig qmakeHook ]; + buildInputs = [ python qtbase qttools ]; - preConfigure = "qmake -r PREFIX=$out"; + enableParallelBuilding = true; - meta = { - description = "A free, easy to use and flexible tile map editor"; - homepage = "http://www.mapeditor.org/"; - # libtiled and tmxviewer is licensed under 2-calause BSD license. - # The rest is GPL2 or later. - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; + meta = with stdenv.lib; { + description = "Free, easy to use and flexible tile map editor"; + homepage = http://www.mapeditor.org/; + license = with licenses; [ + bsd2 # libtiled and tmxviewer + gpl2Plus # all the rest + ]; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; }; } diff --git a/pkgs/applications/editors/vscode/default.nix b/pkgs/applications/editors/vscode/default.nix index 0d9572ebc22..b372dda1bf8 100644 --- a/pkgs/applications/editors/vscode/default.nix +++ b/pkgs/applications/editors/vscode/default.nix @@ -1,22 +1,18 @@ -{ stdenv, callPackage, fetchurl, unzip -, ... -} @ args: +{ stdenv, lib, callPackage, fetchurl, unzip, atomEnv, makeDesktopItem }: let - atomEnv = callPackage ../../../development/tools/electron/env-atom.nix (args); + version = "1.0.0"; + rev = "fa6d0f03813dfb9df4589c30121e9fcffa8a8ec8"; - version = "0.10.10"; - rev = "5b5f4db87c10345b9d5c8d0bed745bcad4533135"; - sha256 = if stdenv.system == "i686-linux" then "1mmgq4fxi2h4hvz7yxgzzyvlznkb42qwr8i1g2b1akdlgnrvvpby" - else if stdenv.system == "x86_64-linux" then "1zjb6mys5qs9mb21rpgpnbgq4gpnw6gsgfn5imf7ca7myk1bxnvk" - else if stdenv.system == "x86_64-darwin" then "0y1as2s6nhicyvdfszphhqp76iv9wcygglrl2f0jamm98g9qp66p" + sha256 = if stdenv.system == "i686-linux" then "1nnsvr51k8cmq8rccksylam4ww40pdn9dnhnp9096z5ccrf4qa1b" + else if stdenv.system == "x86_64-linux" then "0p408pp2il6kawfsql8n5dvl75kmf2n2p0r266mjnww6vprmq4gw" + else if stdenv.system == "x86_64-darwin" then "06k41ljfvgyxbl364jlkdjk8lkwr6bpq2r051vin93cnqfxridkq" else throw "Unsupported system: ${stdenv.system}"; urlMod = if stdenv.system == "i686-linux" then "linux-ia32" else if stdenv.system == "x86_64-linux" then "linux-x64" else if stdenv.system == "x86_64-darwin" then "darwin" else throw "Unsupported system: ${stdenv.system}"; - in stdenv.mkDerivation rec { name = "vscode-${version}"; @@ -27,24 +23,35 @@ in inherit sha256; }; + desktopItem = makeDesktopItem { + name = "code"; + exec = "code"; + icon = "code"; + comment = "Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications"; + desktopName = "Visual Studio Code"; + genericName = "Text Editor"; + categories = "GNOME;GTK;Utility;TextEditor;Development;"; + }; + buildInputs = [ unzip ]; installPhase = '' - mkdir -p $out/bin - cp -r ./* $out/bin + mkdir -p $out/lib/vscode $out/bin + cp -r ./* $out/lib/vscode + ln -s $out/lib/vscode/code $out/bin - ${if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then '' - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - $out/bin/code - '' else ""} + mkdir -p $out/share/applications + cp $desktopItem/share/applications/* $out/share/applications + + mkdir -p $out/share/pixmaps + cp $out/lib/vscode/resources/app/resources/linux/code.png $out/share/pixmaps/code.png ''; - postFixup = '' - ${if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then '' - patchelf \ - --set-rpath "${atomEnv}/lib:${atomEnv}/lib64:$out/bin:$(patchelf --print-rpath $out/bin/code)" \ - $out/bin/code - '' else ""} + postFixup = lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") '' + patchelf \ + --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath "${atomEnv.libPath}:$out/lib/vscode" \ + $out/lib/vscode/code ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix index ef3b7b05b18..b732a2ed916 100644 --- a/pkgs/applications/graphics/ImageMagick/default.nix +++ b/pkgs/applications/graphics/ImageMagick/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchurl, pkgconfig, libtool , bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg -, lcms2, openexr, libpng, librsvg, libtiff, libxml2 +, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg }: let @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig libtool zlib fontconfig freetype ghostscript libjpeg - openexr libpng librsvg libtiff libxml2 + openexr libpng librsvg libtiff libxml2 openjpeg ]; propagatedBuildInputs = diff --git a/pkgs/applications/graphics/antimony/default.nix b/pkgs/applications/graphics/antimony/default.nix index fa9a7e0fdd3..50b33096e3d 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, qtbase, ncurses }: +{ stdenv, fetchgit, libpng, python3, boost, mesa, qtbase, qmakeHook, ncurses }: let gitRev = "745eca3a2d2657c495d5509e9083c884e021d09c"; @@ -31,16 +31,14 @@ in mesa qtbase ncurses ]; - configurePhase = '' - runHook preConfigure + nativeBuildHooks = [ qmakeHook ]; + + preConfigure = '' export GITREV=${gitRev} export GITBRANCH=${gitBranch} export GITTAG=${gitTag} cd qt - export sourceRoot=$sourceRoot/qt - qmake antimony.pro PREFIX=$out - runHook postConfigure ''; enableParallelBuilding = true; diff --git a/pkgs/applications/graphics/awesomebump/default.nix b/pkgs/applications/graphics/awesomebump/default.nix index c71b1f9335b..b89e18ed148 100644 --- a/pkgs/applications/graphics/awesomebump/default.nix +++ b/pkgs/applications/graphics/awesomebump/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, qtbase, makeWrapper }: +{ lib, stdenv, fetchurl, qtbase, qmakeHook, makeWrapper }: stdenv.mkDerivation { name = "awesomebump-4.0"; @@ -10,9 +10,7 @@ stdenv.mkDerivation { setSourceRoot = "sourceRoot=$(echo */Sources)"; - buildInputs = [ qtbase makeWrapper ]; - - preBuild = "qmake"; + buildInputs = [ qtbase qmakeHook makeWrapper ]; enableParallelBuilding = true; diff --git a/pkgs/applications/graphics/gimp/2.8.nix b/pkgs/applications/graphics/gimp/2.8.nix index b0983865692..5943cb9cdac 100644 --- a/pkgs/applications/graphics/gimp/2.8.nix +++ b/pkgs/applications/graphics/gimp/2.8.nix @@ -4,7 +4,8 @@ , python, pygtk, libart_lgpl, libexif, gettext, xorg, wrapPython }: stdenv.mkDerivation rec { - name = "gimp-2.8.16"; + name = "gimp-${version}"; + version = "2.8.16"; # This declarations for `gimp-with-plugins` wrapper, # (used for determining $out/lib/gimp/${majorVersion}/ paths) diff --git a/pkgs/applications/graphics/gimp/wrapper.nix b/pkgs/applications/graphics/gimp/wrapper.nix index 53067dc39c9..7455a69dde9 100644 --- a/pkgs/applications/graphics/gimp/wrapper.nix +++ b/pkgs/applications/graphics/gimp/wrapper.nix @@ -1,24 +1,18 @@ -{ stdenv, lib, buildEnv, gimp, makeWrapper, gimpPlugins, plugins ? null}: +{ stdenv, lib, symlinkJoin, gimp, makeWrapper, gimpPlugins, plugins ? null}: let allPlugins = lib.filter (pkg: builtins.isAttrs pkg && pkg.type == "derivation") (lib.attrValues gimpPlugins); selectedPlugins = if plugins == null then allPlugins else plugins; extraArgs = map (x: x.wrapArgs or "") selectedPlugins; -drv = buildEnv { - name = "gimp-with-plugins-" + (builtins.parseDrvName gimp.name).version; +in symlinkJoin { + name = "gimp-with-plugins-${gimp.version}"; paths = [ gimp ] ++ selectedPlugins; + buildInputs = [ makeWrapper ]; + postBuild = '' - # TODO: This could be avoided if buildEnv could be forced to create all directories - if [ -L $out/bin ]; then - rm $out/bin - mkdir $out/bin - for i in ${gimp}/bin/*; do - ln -s $i $out/bin - done - fi for each in gimp-2.8 gimp-console-2.8; do wrapProgram $out/bin/$each \ --set GIMP2_PLUGINDIR "$out/lib/gimp/2.0" \ @@ -29,5 +23,4 @@ drv = buildEnv { ln -sf "$each-2.8" $out/bin/$each done ''; - }; -in stdenv.lib.overrideDerivation drv (x : { buildInputs = x.buildInputs ++ [ makeWrapper ]; }) +} diff --git a/pkgs/applications/graphics/leocad/default.nix b/pkgs/applications/graphics/leocad/default.nix index 9ca9c592102..884dc115853 100644 --- a/pkgs/applications/graphics/leocad/default.nix +++ b/pkgs/applications/graphics/leocad/default.nix @@ -3,7 +3,7 @@ To use aditional parts libraries set the variable LEOCAD_LIB=/path/to/libs/ or use option -l /path/to/libs/ */ -{ stdenv, fetchsvn, qt4, zlib }: +{ stdenv, fetchsvn, qt4, qmake4Hook, zlib }: stdenv.mkDerivation rec { name = "leocad-${version}"; @@ -14,12 +14,11 @@ stdenv.mkDerivation rec { sha256 = "1190gb437ls51hhfiwa79fq131026kywpy3j3k4fkdgfr8a9v3q8"; }; - buildInputs = [ qt4 zlib ]; + buildInputs = [ qt4 qmake4Hook zlib ]; - prefixKey = "INSTALL_PREFIX="; - configureScript = "qmake leocad.pro"; postPatch = '' substituteInPlace common/camera.cpp --replace "isnan(" "std::isnan(" + export qmakeFlags="$qmakeFlags INSTALL_PREFIX=$out" ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/graphics/mcomix/default.nix b/pkgs/applications/graphics/mcomix/default.nix index 39d17a32eec..88f3937335b 100644 --- a/pkgs/applications/graphics/mcomix/default.nix +++ b/pkgs/applications/graphics/mcomix/default.nix @@ -2,11 +2,12 @@ buildPythonApplication rec { namePrefix = ""; - name = "mcomix-1.01"; + name = "mcomix-${version}"; + version = "1.2.1"; src = fetchurl { url = "mirror://sourceforge/mcomix/${name}.tar.bz2"; - sha256 = "0k3pqbvk08kb1nr0qldaj9bc7ca6rvcycgfi2n7gqmsirq5kscys"; + sha256 = "0fzsf9pklhfs1rzwzj64c0v30b74nk94p93h371rpg45qnfiahvy"; }; propagatedBuildInputs = with python27Packages; [ pygtk pillow sqlite3 ]; diff --git a/pkgs/applications/graphics/meshlab/default.nix b/pkgs/applications/graphics/meshlab/default.nix index fa1958059b8..07789fce3a9 100644 --- a/pkgs/applications/graphics/meshlab/default.nix +++ b/pkgs/applications/graphics/meshlab/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, qt4, bzip2, lib3ds, levmar, muparser, unzip}: +{ stdenv, fetchurl, qt4, bzip2, lib3ds, levmar, muparser, unzip, vcg }: stdenv.mkDerivation rec { name = "meshlab-1.3.3"; @@ -18,8 +18,6 @@ stdenv.mkDerivation rec { buildPhase = '' mkdir -p "$out/include" - cp -r vcglib "$out/include" - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$out/include/vcglib" export NIX_LDFLAGS="-rpath $out/opt/meshlab $NIX_LDFLAGS" cd meshlab/src pushd external @@ -40,7 +38,7 @@ stdenv.mkDerivation rec { sourceRoot = "."; - buildInputs = [ qt4 unzip ]; + buildInputs = [ qt4 unzip vcg ]; meta = { description = "System for the processing and editing of unstructured 3D triangular meshes"; diff --git a/pkgs/applications/graphics/openscad/default.nix b/pkgs/applications/graphics/openscad/default.nix index 7557e19896f..f3b16a30460 100644 --- a/pkgs/applications/graphics/openscad/default.nix +++ b/pkgs/applications/graphics/openscad/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4, bison, flex, eigen, boost, mesa, glew, opencsg, cgal +{ stdenv, fetchurl, qt4, qmake4Hook, bison, flex, eigen, boost, mesa, glew, opencsg, cgal , mpfr, gmp, glib, pkgconfig, harfbuzz, qscintilla, gettext }: @@ -12,13 +12,11 @@ stdenv.mkDerivation rec { }; buildInputs = [ - qt4 bison flex eigen boost mesa glew opencsg cgal mpfr gmp glib + qt4 qmake4Hook bison flex eigen boost mesa glew opencsg cgal mpfr gmp glib pkgconfig harfbuzz qscintilla gettext ]; - configurePhase = '' - qmake PREFIX="$out" VERSION=${version} - ''; + qmakeFlags = [ "VERSION=${version}" ]; doCheck = false; diff --git a/pkgs/applications/graphics/phototonic/default.nix b/pkgs/applications/graphics/phototonic/default.nix index 4ed3a424031..4782376d1e0 100644 --- a/pkgs/applications/graphics/phototonic/default.nix +++ b/pkgs/applications/graphics/phototonic/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, qtbase, exiv2 }: +{ stdenv, fetchFromGitHub, qtbase, qmakeHook, exiv2 }: stdenv.mkDerivation rec { name = "phototonic-${version}"; @@ -14,16 +14,12 @@ stdenv.mkDerivation rec { }; buildInputs = [ qtbase exiv2 ]; + nativeBuildInputs = [ qmakeHook ]; - configurePhase = '' - runHook preConfigure - sed -i 's;/usr;;' phototonic.pro - qmake PREFIX="" - runHook postConfigure + preConfigure = '' + sed -i 's;/usr;$$PREFIX/;g' phototonic.pro ''; - installFlags = [ "INSTALL_ROOT=$(out)" ]; - meta = with stdenv.lib; { description = "An image viewer and organizer"; homepage = http://oferkv.github.io/phototonic/; diff --git a/pkgs/applications/graphics/qtpfsgui/default.nix b/pkgs/applications/graphics/qtpfsgui/default.nix index e6a0453e533..bb307bc8e97 100644 --- a/pkgs/applications/graphics/qtpfsgui/default.nix +++ b/pkgs/applications/graphics/qtpfsgui/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, qt4, exiv2, openexr, fftwSinglePrec, libtiff, ilmbase }: +{stdenv, fetchurl, qt4, qmake4Hook, exiv2, openexr, fftwSinglePrec, libtiff, ilmbase }: stdenv.mkDerivation rec { name = "qtpfsgui-1.9.3"; @@ -9,17 +9,21 @@ stdenv.mkDerivation rec { }; buildInputs = [ qt4 exiv2 openexr fftwSinglePrec libtiff ]; + nativeBuildInputs = [ qmake4Hook ]; hardeningDisable = [ "format" ]; - configurePhase = '' + preConfigure = '' export CPATH="${ilmbase}/include/OpenEXR:$CPATH" - qmake PREFIX=$out EXIV2PATH=${exiv2}/include/exiv2 \ - OPENEXRDIR=${openexr}/include/OpenEXR \ - FFTW3DIR=${fftwSinglePrec}/include \ - LIBTIFFDIR=${libtiff}/include ''; + qmakeFlags = [ + "EXIV2PATH=${exiv2}/include/exiv2" + "OPENEXRDIR=${openexr}/include/OpenEXR" + "FFTW3DIR=${fftwSinglePrec}/include" + "LIBTIFFDIR=${libtiff}/include" + ]; + meta = { homepage = http://qtpfsgui.sourceforge.net/; description = "Qtpfsqui, a graphical application for high dynamic range (HDR) imaging"; diff --git a/pkgs/applications/graphics/rapcad/default.nix b/pkgs/applications/graphics/rapcad/default.nix index 90cb360e7d5..d5d6e27219f 100644 --- a/pkgs/applications/graphics/rapcad/default.nix +++ b/pkgs/applications/graphics/rapcad/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchgit, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline -, qtbase +, qtbase, qmakeHook, mesa_glu }: stdenv.mkDerivation rec { @@ -12,14 +12,7 @@ stdenv.mkDerivation rec { sha256 = "15c18jvgbwyrfhv7r35ih0gzx35vjlsbi984h1sckgh2z17hjq8l"; }; - buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline ]; - - configurePhase = '' - runHook preConfigure - qmake - sed -e "s@/usr/@$out/@g" -i $(find . -name Makefile) - runHook postConfigure - ''; + buildInputs = [ qtbase qmakeHook cgal boost gmp mpfr flex bison dxflib readline mesa_glu ]; meta = { license = stdenv.lib.licenses.gpl3; diff --git a/pkgs/applications/graphics/sane/backends/brscan4/default.nix b/pkgs/applications/graphics/sane/backends/brscan4/default.nix new file mode 100644 index 00000000000..7b22e88bb84 --- /dev/null +++ b/pkgs/applications/graphics/sane/backends/brscan4/default.nix @@ -0,0 +1,97 @@ +{ stdenv, fetchurl, callPackage, patchelf, makeWrapper, coreutils, libusb }: + +/* + + +*/ + +let + + myPatchElf = file: with stdenv.lib; '' + patchelf --set-interpreter \ + ${stdenv.glibc}/lib/ld-linux${optionalString stdenv.is64bit "-x86-64"}.so.2 \ + ${file} + ''; + + udevRules = callPackage ./udev_rules_type1.nix {}; + +in + +stdenv.mkDerivation rec { + + name = "brscan4-0.4.3-3"; + src = fetchurl { + url = "http://download.brother.com/welcome/dlf006645/${name}.amd64.deb"; + sha256 = "1nccyjl0b195pn6ya4q0zijb075q8r31v9z9a0hfzipfyvcj57n2"; + }; + + unpackPhase = '' + ar x $src + tar xfvz data.tar.gz + ''; + + nativeBuildInputs = [ makeWrapper patchelf coreutils udevRules ]; + buildInputs = [ libusb ]; + buildPhase = ":"; + + + patchPhase = '' + ${myPatchElf "opt/brother/scanner/brscan4/brsaneconfig4"} + + RPATH=${libusb}/lib + for a in usr/lib64/sane/*.so*; do + if ! test -L $a; then + patchelf --set-rpath $RPATH $a + fi + done + ''; + + installPhase = '' + + PATH_TO_BRSCAN4="opt/brother/scanner/brscan4" + mkdir -p $out/$PATH_TO_BRSCAN4 + cp -rp $PATH_TO_BRSCAN4/* $out/$PATH_TO_BRSCAN4 + mkdir -p $out/lib/sane + cp -rp usr/lib64/sane/* $out/lib/sane + + # Symbolic links were absolute. Fix them so that they point to $out. + pushd "$out/lib/sane" > /dev/null + for a in *.so*; do + if test -L $a; then + fixedTargetFileName="$(basename $(readlink $a))" + unlink "$a" + ln -s -T "$fixedTargetFileName" "$a" + fi + done + popd > /dev/null + + # Generate an LD_PRELOAD wrapper to redirect execvp(), open() and open64() + # calls to `/opt/brother/scanner/brscan4`. + preload=$out/libexec/brother/scanner/brscan4/libpreload.so + mkdir -p $(dirname $preload) + gcc -shared ${./preload.c} -o $preload -ldl -DOUT=\"$out\" -fPIC + + makeWrapper \ + "$out/$PATH_TO_BRSCAN4/brsaneconfig4" \ + "$out/bin/brsaneconfig4" \ + --set LD_PRELOAD $preload + + mkdir -p $out/etc/sane.d + echo "brother4" > $out/etc/sane.d/dll.conf + + mkdir -p $out/etc/udev/rules.d + cp -p ${udevRules}/etc/udev/rules.d/*.rules \ + $out/etc/udev/rules.d + ''; + + dontStrip = true; + dontPatchELF = true; + + meta = { + description = "Brother brscan4 sane backend driver"; + homepage = http://www.brother.com; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.unfree; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; + }; +} diff --git a/pkgs/applications/graphics/sane/backends/brscan4/preload.c b/pkgs/applications/graphics/sane/backends/brscan4/preload.c new file mode 100644 index 00000000000..01616277093 --- /dev/null +++ b/pkgs/applications/graphics/sane/backends/brscan4/preload.c @@ -0,0 +1,170 @@ +/* Brgen4 search for configuration under `/etc/opt/brother/scanner/brscan4`. This + LD_PRELOAD library intercepts execvp(), open and open64 calls to redirect them to + the corresponding location in $out. Also support specifying an alternate + file name for `brsanenetdevice4.cfg` which otherwise is invariable + created at `/etc/opt/brother/scanner/brscan4`*/ + +#define _GNU_SOURCE +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +char origDir [] = "/etc/opt/brother/scanner/brscan4"; +char realDir [] = OUT "/opt/brother/scanner/brscan4"; + +char devCfgFileNameEnvVar [] = "BRSANENETDEVICE4_CFG_FILENAME"; +char devCfgFileName [] = "/etc/opt/brother/scanner/brscan4//brsanenetdevice4.cfg"; + +const char * rewrite(const char * path, char * buf) +{ + if (strncmp(path, devCfgFileName, sizeof(devCfgFileName)) == 0) { + + const char* newCfgFileName = getenv(devCfgFileNameEnvVar); + if (!newCfgFileName) return path; + + if (snprintf(buf, PATH_MAX, "%s", newCfgFileName) >= PATH_MAX) + abort(); + return buf; + } + + if (strncmp(path, origDir, sizeof(origDir) - 1) != 0) return path; + if (snprintf(buf, PATH_MAX, "%s%s", realDir, path + sizeof(origDir) - 1) >= PATH_MAX) + abort(); + return buf; +} + +const char* findAndReplaceFirstOccurence(const char* inStr, const char* subStr, + const char* replaceStr, + char* buf, unsigned maxBuf) +{ + const char* foundStr = strstr(inStr, subStr); + if (!foundStr) + return inStr; + + const unsigned inStrLen = strlen(inStr); + const unsigned subStrLen = strlen(subStr); + const unsigned replaceStrLen = strlen(replaceStr); + + const unsigned precedingStrLen = foundStr - inStr; + if (precedingStrLen + 1 > maxBuf) + return NULL; + + const unsigned followingStrPos = precedingStrLen + subStrLen; + const unsigned followingStrLen = inStrLen - followingStrPos; + + strncpy(buf, inStr, precedingStrLen); + unsigned outLength = precedingStrLen; + + if (outLength + replaceStrLen + 1 > maxBuf) + return NULL; + + strncpy(buf + outLength, replaceStr, replaceStrLen); + outLength += replaceStrLen; + + if (outLength + followingStrLen + 1 > maxBuf) + return NULL; + + strncpy(buf + outLength, inStr + followingStrPos, followingStrLen); + outLength += followingStrLen; + + buf[outLength] = '\0'; + + return buf; +} + +const char* rewriteSystemCall(const char* command, char* buf, unsigned maxBuf) +{ + + const char* foundStr = strstr(command, devCfgFileName); + if (!foundStr) + return command; + + const char* replaceStr = getenv(devCfgFileNameEnvVar); + if (!replaceStr) return command; + + const char* result = + findAndReplaceFirstOccurence(command, devCfgFileName, replaceStr, buf, maxBuf); + + if (!result) + abort(); + + return result; +} + +int execvp(const char * path, char * const argv[]) +{ + int (*_execvp) (const char *, char * const argv[]) = dlsym(RTLD_NEXT, "execvp"); + char buf[PATH_MAX]; + return _execvp(rewrite(path, buf), argv); +} + + +int open(const char *path, int flags, ...) +{ + char buf[PATH_MAX]; + int (*_open) (const char *, int, mode_t) = dlsym(RTLD_NEXT, "open"); + mode_t mode = 0; + if (flags & O_CREAT) { + va_list ap; + va_start(ap, flags); + mode = va_arg(ap, mode_t); + va_end(ap); + } + return _open(rewrite(path, buf), flags, mode); +} + +int open64(const char *path, int flags, ...) +{ + char buf[PATH_MAX]; + int (*_open64) (const char *, int, mode_t) = dlsym(RTLD_NEXT, "open64"); + mode_t mode = 0; + if (flags & O_CREAT) { + va_list ap; + va_start(ap, flags); + mode = va_arg(ap, mode_t); + va_end(ap); + } + return _open64(rewrite(path, buf), flags, mode); +} + +FILE* fopen(const char* path, const char* mode) +{ + char buf[PATH_MAX]; + FILE* (*_fopen) (const char*, const char*) = dlsym(RTLD_NEXT, "fopen"); + + return _fopen(rewrite(path, buf), mode); +} + +FILE *fopen64(const char *path, const char *mode) +{ + char buf[PATH_MAX]; + FILE* (*_fopen64) (const char*, const char*) = dlsym(RTLD_NEXT, "fopen64"); + + return _fopen64(rewrite(path, buf), mode); +} + +DIR* opendir(const char* path) +{ + char buf[PATH_MAX]; + DIR* (*_opendir) (const char*) = dlsym(RTLD_NEXT, "opendir"); + + return _opendir(rewrite(path, buf)); +} + +#define SYSTEM_CMD_MAX 512 + +int system(const char *command) +{ + char buf[SYSTEM_CMD_MAX]; + int (*_system) (const char*) = dlsym(RTLD_NEXT, "system"); + + const char* newCommand = rewriteSystemCall(command, buf, SYSTEM_CMD_MAX); + return _system(newCommand); +} diff --git a/pkgs/applications/graphics/sane/backends/brscan4/udev_rules_type1.nix b/pkgs/applications/graphics/sane/backends/brscan4/udev_rules_type1.nix new file mode 100644 index 00000000000..873240e81fc --- /dev/null +++ b/pkgs/applications/graphics/sane/backends/brscan4/udev_rules_type1.nix @@ -0,0 +1,60 @@ +{ stdenv, fetchurl, libsaneUDevRuleNumber ? "49"}: + + +stdenv.mkDerivation rec { + + name = "brother-udev-rule-type1-1.0.0-1"; + + src = fetchurl { + url = "http://download.brother.com/welcome/dlf006654/${name}.all.deb"; + sha256 = "0i0x5jw135pli4jl9mgnr5n2rrdvml57nw84yq2999r4frza53xi"; + }; + + buildInputs = [ ]; + + unpackPhase = '' + ar x $src + tar xfvz data.tar.gz + ''; + + /* + Fix the following error: + + ~~~ + invalid rule 49-brother-libsane-type1.rules + unknown key 'SYSFS{idVendor}' + ~~~ + + Apparently the udev rules syntax has change and the SYSFS key has to + be changed to ATTR. + + See: + + - + - + */ + patchPhase = '' + sed -i -e s/SYSFS/ATTR/g opt/brother/scanner/udev-rules/type1/*.rules + ''; + + + buildPhase = ":"; + + installPhase = '' + mkdir -p $out/etc/udev/rules.d + cp opt/brother/scanner/udev-rules/type1/NN-brother-mfp-type1.rules \ + $out/etc/udev/rules.d/${libsaneUDevRuleNumber}-brother-libsane-type1.rules + chmod 644 $out/etc/udev/rules.d/${libsaneUDevRuleNumber}-brother-libsane-type1.rules + ''; + + dontStrip = true; + dontPatchELF = true; + + meta = { + description = "Brother type1 scanners udev rules"; + homepage = http://www.brother.com; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.unfree; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; + }; +} \ No newline at end of file diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix index ae1526990f2..182c99dc2d0 100644 --- a/pkgs/applications/graphics/sane/backends/git.nix +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -1,10 +1,10 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // { - version = "2016-04-14"; + version = "2016-04-23"; src = fetchgit { - sha256 = "414fa7753043f8f3775d926eede01a9dbccf6255b2b2b961a3c48b4fa76a4952"; - rev = "19c128a23e27c1ab5a030fa6ff74da1b740629bb"; + sha256 = "11bf60cd5a6b314e855a69a6f57a5ca0db3254527def55662bce25810a2314df"; + rev = "c8169b1e656f7f95c67946298da5a0e1c143f8e8"; 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 417d117d688..e324420b048 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "simple-scan-${version}"; - version = "3.20.0"; + version = "3.21.1"; src = fetchurl { - sha256 = "0b5ndrjwi7yipkr9bhyifpbdil65izdm677if23yj832n2jsbxcd"; - url = "https://launchpad.net/simple-scan/3.20/${version}/+download/${name}.tar.xz"; + sha256 = "00w206isni8m8qd9m8x0644s1gqg11pvgnw6zav33b0bs2h2kk79"; + url = "https://launchpad.net/simple-scan/3.21/${version}/+download/${name}.tar.xz"; }; buildInputs = [ cairo colord glib gusb gtk3 libusb1 libxml2 sane-backends diff --git a/pkgs/applications/graphics/yed/default.nix b/pkgs/applications/graphics/yed/default.nix index 51c41e01bf9..0dad1238876 100644 --- a/pkgs/applications/graphics/yed/default.nix +++ b/pkgs/applications/graphics/yed/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, requireFile, makeWrapper, unzip, jre }: stdenv.mkDerivation rec { - name = "yEd-3.14.4"; + name = "yEd-3.15.0.2"; src = requireFile { name = "${name}.zip"; url = "https://www.yworks.com/en/products/yfiles/yed/"; - sha256 = "0pm271ss6cq2s6cv9ww92haaq2abkjxd9dvc8d72h6af5awv8xy6"; + sha256 = "c60e4868f267303ee8b6fc2587beb4cc846f32bd8a6a557b77e01f0d8039aa4d"; }; nativeBuildInputs = [ unzip makeWrapper ]; diff --git a/pkgs/applications/misc/albert/default.nix b/pkgs/applications/misc/albert/default.nix index 5e6931ce78e..9a1bedd8927 100644 --- a/pkgs/applications/misc/albert/default.nix +++ b/pkgs/applications/misc/albert/default.nix @@ -2,16 +2,20 @@ stdenv.mkDerivation rec { name = "albert-${version}"; - version = "0.8.7.2"; + version = "0.8.8"; src = fetchFromGitHub { owner = "manuelschneid3r"; repo = "albert"; rev = "v${version}"; - sha256 = "04k6cawil6kqkmsilq5mpjy8lwgk0g08s0v23d5a83calpq3ljpc"; + sha256 = "1mqxy5xbvgzykg2vvr2d1p9kr2viga1pqxslkg9y1x05kdhr2zal"; }; - buildInputs = [ cmake qtbase qtsvg qtx11extras muparser makeQtWrapper ]; + nativeBuildInputs = [ cmake makeQtWrapper ]; + + buildInputs = [ qtbase qtsvg qtx11extras muparser ]; + + enableParallelBuilding = true; fixupPhase = '' wrapQtProgram $out/bin/albert diff --git a/pkgs/applications/misc/buku/default.nix b/pkgs/applications/misc/buku/default.nix index ccebb8bfc11..79b4e787eaa 100644 --- a/pkgs/applications/misc/buku/default.nix +++ b/pkgs/applications/misc/buku/default.nix @@ -3,14 +3,14 @@ }: pythonPackages.buildPythonApplication rec { - version = "1.8"; + version = "1.9"; name = "buku-${version}"; src = fetchFromGitHub { owner = "jarun"; repo = "buku"; - rev = "53d48ee56a3abfb53b94ed25fb620ee759141c96"; - sha256 = "185d3gndw20c3l6f3mf0iq4qapm8g30bl0hn0wsqpp36vl0bpq28"; + rev = "e99844876d0d871df80770b1bd76c161276116eb"; + sha256 = "1qwkff61gdjd6w337a5ipfiybzqdwkxdyfa1l4zzm9dj7lsklgq2"; }; buildInputs = stdenv.lib.optional encryptionSupport pythonPackages.pycrypto; diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index 7b789b3881d..7c6f3cfdffb 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, qtbase, icu, sqlite +, imagemagick, libjpeg, fontconfig, podofo, qtbase, qmakeHook, icu, sqlite , makeWrapper, unrarSupport ? false, chmlib, pythonPackages, xz, libusb1, libmtp , xdg_utils }: stdenv.mkDerivation rec { - version = "2.54.0"; + version = "2.55.0"; name = "calibre-${version}"; src = fetchurl { url = "http://download.calibre-ebook.com/${version}/${name}.tar.xz"; - sha256 = "1r2cxnqiqnx51gbw283z8lz58i9zpvbf0a5ncrg5b2i9bphdiq79"; + sha256 = "12412d5vjp141xp5qvif50fskd1vsmr15h956z3bh6j99n8z5953"; }; inherit python; @@ -26,7 +26,14 @@ stdenv.mkDerivation rec { setup/build_environment.py ''; - nativeBuildInputs = [ makeWrapper pkgconfig ]; + dontUseQmakeConfigure = true; + # hack around a build problem + preBuild = '' + mkdir -p ../tmp.*/lib + ln -s '${qtbase.out}/lib/libQt5PlatformSupport.a' ../tmp.*/lib/ + ''; + + nativeBuildInputs = [ makeWrapper pkgconfig qmakeHook ]; buildInputs = [ python pyqt5 sip_4_16 poppler_utils libpng imagemagick libjpeg diff --git a/pkgs/applications/misc/cdrtools/default.nix b/pkgs/applications/misc/cdrtools/default.nix index 2168a21f7da..55bcfd99e17 100644 --- a/pkgs/applications/misc/cdrtools/default.nix +++ b/pkgs/applications/misc/cdrtools/default.nix @@ -26,10 +26,11 @@ stdenv.mkDerivation rec { 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 = licenses.unfree; + license = with licenses; [ gpl2 lgpl2 cddl ]; platforms = platforms.linux; + # Licensing issues: This package contains code licensed under CDDL, GPL2 + # and LGPL2. There is a debate regarding the legality of distributing this + # package in binary form. + hydraPlatforms = []; }; } diff --git a/pkgs/applications/misc/cool-retro-term/default.nix b/pkgs/applications/misc/cool-retro-term/default.nix index 67b9b601139..9ffa36adc12 100644 --- a/pkgs/applications/misc/cool-retro-term/default.nix +++ b/pkgs/applications/misc/cool-retro-term/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchgit, makeQtWrapper, qtbase, qtquick1, qmltermwidget, -qtquickcontrols, qtgraphicaleffects }: +qtquickcontrols, qtgraphicaleffects, qmakeHook }: stdenv.mkDerivation rec { version = "1.0.0"; @@ -17,15 +17,9 @@ stdenv.mkDerivation rec { ''; buildInputs = [ qtbase qtquick1 qmltermwidget qtquickcontrols qtgraphicaleffects ]; - nativeBuildInputs = [ makeQtWrapper ]; + nativeBuildInputs = [ makeQtWrapper qmakeHook ]; - configurePhase = '' - runHook preConfigure - qmake PREFIX=$out - runHook postConfigure - ''; - - installPhase = "make -j $NIX_BUILD_CORES INSTALL_ROOT=$out install"; + installFlags = [ "INSTALL_ROOT=$(out)" ]; preFixup = '' mv $out/usr/share $out/share diff --git a/pkgs/applications/misc/diffpdf/default.nix b/pkgs/applications/misc/diffpdf/default.nix index aefa4f755b8..666c3a40cdc 100644 --- a/pkgs/applications/misc/diffpdf/default.nix +++ b/pkgs/applications/misc/diffpdf/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4, poppler_qt4 }: +{ stdenv, fetchurl, qt4, poppler_qt4, qmake4Hook }: stdenv.mkDerivation rec { version = "2.1.3"; @@ -12,13 +12,12 @@ stdenv.mkDerivation rec { patches = [ ./fix_path_poppler_qt4.patch ]; buildInputs = [ qt4 poppler_qt4 ]; + nativeBuildInputs = [ qmake4Hook ]; - preBuild = '' + preConfigure = '' substituteInPlace diffpdf.pro --replace @@NIX_POPPLER_QT4@@ ${poppler_qt4} - [ -e "*.qm" ] && make clean lrelease diffpdf.pro - qmake -makefile PREFIX=\$out - ''; + ''; installPhase = '' mkdir -p $out/bin $out/share/man/man1 diff --git a/pkgs/applications/misc/electrum/default.nix b/pkgs/applications/misc/electrum/default.nix index ca807f80e1b..d5442a2ded8 100644 --- a/pkgs/applications/misc/electrum/default.nix +++ b/pkgs/applications/misc/electrum/default.nix @@ -5,7 +5,7 @@ let version = "0.1.7"; name = "jsonrpclib-${version}"; src = fetchurl { - url = "https://pypi.python.org/packages/source/j/jsonrpclib/${name}.tar.gz"; + url = "mirror://pypi/j/jsonrpclib/${name}.tar.gz"; sha256 = "02vgirw2bcgvpcxhv5hf3yvvb4h5wzd1lpjx8na5psdmaffj6l3z"; }; propagatedBuildInputs = [ pythonPackages.cjson ]; diff --git a/pkgs/applications/misc/evopedia/default.nix b/pkgs/applications/misc/evopedia/default.nix index b7403d4826b..b235da697d5 100644 --- a/pkgs/applications/misc/evopedia/default.nix +++ b/pkgs/applications/misc/evopedia/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchgit, bzip2, qt4, libX11}: +{ stdenv, fetchgit, bzip2, qt4, qmake4Hook, libX11 }: stdenv.mkDerivation rec { name = "evopedia-${version}"; @@ -10,11 +10,8 @@ stdenv.mkDerivation rec { sha256 = "1biq9zaj8nhxx1pixidsn97iwp9qy1yslgl0znpa4d4p35jcg48g"; }; - configurePhase = '' - qmake PREFIX=$out - ''; - buildInputs = [ bzip2 qt4 libX11 ]; + nativeBuildInputs = [ qmake4Hook ]; meta = { description = "Offline Wikipedia Viewer"; diff --git a/pkgs/applications/misc/freicoin/default.nix b/pkgs/applications/misc/freicoin/default.nix index 65265fc07a5..b4e71d4bbc7 100644 --- a/pkgs/applications/misc/freicoin/default.nix +++ b/pkgs/applications/misc/freicoin/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv, db, boost, gmp, mpfr, miniupnpc, qt4, unzip }: +{ fetchurl, stdenv, db, boost, gmp, mpfr, miniupnpc, qt4, qmake4Hook, unzip }: stdenv.mkDerivation rec { version = "0.8.3-1"; @@ -11,9 +11,7 @@ stdenv.mkDerivation rec { # I think that openssl and zlib are required, but come through other # packages - buildInputs = [ db boost gmp mpfr miniupnpc qt4 unzip ]; - - configurePhase = "qmake"; + buildInputs = [ db boost gmp mpfr miniupnpc qt4 unzip qmake4Hook ]; installPhase = '' mkdir -p $out/bin diff --git a/pkgs/applications/misc/girara/default.nix b/pkgs/applications/misc/girara/default.nix index cfa38a11861..47e30175795 100644 --- a/pkgs/applications/misc/girara/default.nix +++ b/pkgs/applications/misc/girara/default.nix @@ -5,11 +5,11 @@ assert withBuildColors -> ncurses != null; with stdenv.lib; stdenv.mkDerivation rec { name = "girara-${version}"; - version = "0.2.5"; + version = "0.2.6"; src = fetchurl { url = "http://pwmt.org/projects/girara/download/${name}.tar.gz"; - sha256 = "14m8mfbck49ldwi1w2i47bbg5c9daglcmvz9v2g1hnrq8k8g5x2w"; + sha256 = "03wsxj27hvcbs3x96nah7j3paclifwlfag8kdph4kldl48srp9pb"; }; preConfigure = '' diff --git a/pkgs/applications/misc/golden-cheetah/default.nix b/pkgs/applications/misc/golden-cheetah/default.nix index 82695bbdd7e..8d4339516a6 100644 --- a/pkgs/applications/misc/golden-cheetah/default.nix +++ b/pkgs/applications/misc/golden-cheetah/default.nix @@ -1,29 +1,30 @@ { stdenv, fetchurl, qtbase, qtsvg, qtserialport, qtwebkit, qtmultimedia -, qttools, yacc, flex, zlib, config, makeQtWrapper }: +, qttools, yacc, flex, zlib, config, qmakeHook, makeQtWrapper }: stdenv.mkDerivation rec { name = "golden-cheetah-${version}"; - version = "V4.0-DEV1603"; + version = "4.0-DEV1603"; src = fetchurl { - url = "https://github.com/GoldenCheetah/GoldenCheetah/archive/${version}.tar.gz"; + name = "${name}.tar.gz"; + url = "https://github.com/GoldenCheetah/GoldenCheetah/archive/V${version}.tar.gz"; sha256 = "12knlzqmq8b3nyl3kvcsnzrbjksgd83mzwzj97wccyfiffjl4wah"; }; buildInputs = [ qtbase qtsvg qtserialport qtwebkit qtmultimedia qttools yacc flex zlib ]; - nativeBuildInputs = [ makeQtWrapper ]; - configurePhase = '' - runHook preConfigure + nativeBuildInputs = [ makeQtWrapper qmakeHook ]; + preConfigure = '' cp src/gcconfig.pri.in src/gcconfig.pri cp qwt/qwtconfig.pri.in qwt/qwtconfig.pri echo 'QMAKE_LRELEASE = ${qttools}/bin/lrelease' >> src/gcconfig.pri sed -i -e '21,23d' qwt/qwtconfig.pri # Removed forced installation to /usr/local - qmake PREFIX=$out build.pro - '' + ( - with (config.golden-cheetah); - stdenv.lib.optionalString (dropbox-client-id != null && dropbox-client-secret != null) '' - echo 'DEFINES += GC_DROPBOX_CLIENT_ID=\\\"${config.golden-cheetah.dropbox-client-id}\\\"' >> src/gcconfig.pri - echo 'DEFINES += GC_DROPBOX_CLIENT_SECRET=\\\"${config.golden-cheetah.dropbox-client-secret}\\\"' >> src/gcconfig.pri - ''); + ''; + #postConfigure = + # + ( + # with (config.golden-cheetah); + # stdenv.lib.optionalString (dropbox-client-id != null && dropbox-client-secret != null) '' + # echo 'DEFINES += GC_DROPBOX_CLIENT_ID=\\\"${config.golden-cheetah.dropbox-client-id}\\\"' >> src/gcconfig.pri + # echo 'DEFINES += GC_DROPBOX_CLIENT_SECRET=\\\"${config.golden-cheetah.dropbox-client-secret}\\\"' >> src/gcconfig.pri + # ''); installPhase = '' mkdir -p $out/bin cp src/GoldenCheetah $out/bin diff --git a/pkgs/applications/misc/goldendict/default.nix b/pkgs/applications/misc/goldendict/default.nix index 9a7fad6a207..36840c656d3 100644 --- a/pkgs/applications/misc/goldendict/default.nix +++ b/pkgs/applications/misc/goldendict/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qt4, libXtst, libvorbis, hunspell, libao, ffmpeg, libeb, lzo, xz, libtiff }: +{ stdenv, fetchFromGitHub, pkgconfig, qt4, qmake4Hook, libXtst, libvorbis, hunspell +, libao, ffmpeg, libeb, lzo, xz, libtiff }: stdenv.mkDerivation rec { name = "goldendict-1.5.0.ec86515"; src = fetchFromGitHub { @@ -8,10 +9,12 @@ stdenv.mkDerivation rec { sha256 = "070majwxbn15cy7sbgz7ljl8rkn7vcgkm10884v97csln7bfzwhr"; }; - buildInputs = [ pkgconfig qt4 libXtst libvorbis hunspell libao ffmpeg libeb lzo xz libtiff ]; - configurePhase = '' - qmake PREFIX=$out 'CONFIG+=zim_support' - ''; + buildInputs = [ + pkgconfig qt4 libXtst libvorbis hunspell libao ffmpeg libeb + lzo xz libtiff qmake4Hook + ]; + + qmakeFlags = [ "CONFIG+=zim_support" ]; meta = { homepage = http://goldendict.org/; diff --git a/pkgs/applications/misc/gpsprune/default.nix b/pkgs/applications/misc/gpsprune/default.nix index 04d3b7874b4..789f2d7c3fa 100644 --- a/pkgs/applications/misc/gpsprune/default.nix +++ b/pkgs/applications/misc/gpsprune/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "gpsprune-${version}"; - version = "18.2"; + version = "18.4"; src = fetchurl { url = "http://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar"; - sha256 = "12zwwiy0jfrwvgrb110flx4b7k3sp3ivx8ijjymdbbk48xil93l2"; + sha256 = "0wrkvff3c1w66373m2w2ib07rkn3rmbp3n7ixz72qd1swvbk6xx1"; }; phases = [ "installPhase" ]; diff --git a/pkgs/applications/misc/gqrx/default.nix b/pkgs/applications/misc/gqrx/default.nix index d30b6b8e8f9..3fda4d8881a 100644 --- a/pkgs/applications/misc/gqrx/default.nix +++ b/pkgs/applications/misc/gqrx/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, qt4, gnuradio, boost, gnuradio-osmosdr +{ stdenv, fetchFromGitHub, qt4, qmake4Hook, gnuradio, boost, gnuradio-osmosdr # drivers (optional): , rtl-sdr, hackrf , pulseaudioSupport ? true, libpulseaudio @@ -17,12 +17,12 @@ stdenv.mkDerivation rec { sha256 = "02pavd1kc0gsnrl18bfa01r2f3j4j05zly4a8zwss9yrsgf8432x"; }; + nativeBuildInputs = [ qmake4Hook ]; + buildInputs = [ qt4 gnuradio boost gnuradio-osmosdr rtl-sdr hackrf ] ++ stdenv.lib.optionals pulseaudioSupport [ libpulseaudio ]; - configurePhase = ''qmake PREFIX="$out"''; - enableParallelBuilding = true; postInstall = '' diff --git a/pkgs/applications/misc/haxor-news/default.nix b/pkgs/applications/misc/haxor-news/default.nix new file mode 100644 index 00000000000..e4074547d78 --- /dev/null +++ b/pkgs/applications/misc/haxor-news/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, pythonPackages }: + +pythonPackages.buildPythonApplication rec { + version = "0.3.1"; + name = "haxor-news-${version}"; + + src = fetchurl { + url = "https://github.com/donnemartin/haxor-news/archive/0.3.1.tar.gz"; + sha256 = "0jglx8fy38sjyszvvg7mvmyk66l53kyq4i09hmgdz7hb1hrm9m2m"; + }; + + propagatedBuildInputs = with pythonPackages; [ + click + colorama + requests2 + pygments + prompt_toolkit_52 + six + ]; + + meta = with stdenv.lib; { + homepage = "https://github.com/donnemartin/haxor-news"; + description = "Browse Hacker News like a haxor"; + license = licenses.asl20; + maintainers = with maintainers; [ matthiasbeyer ]; + }; + +} diff --git a/pkgs/applications/misc/k3b/default.nix b/pkgs/applications/misc/k3b/default.nix index f48912aeb1e..8c69e36a4e4 100644 --- a/pkgs/applications/misc/k3b/default.nix +++ b/pkgs/applications/misc/k3b/default.nix @@ -1,12 +1,19 @@ -{ stdenv, fetchurl, makeWrapper, automoc4, cmake, perl, pkgconfig -, shared_mime_info, libvorbis, taglib , flac, libsamplerate +{ stdenv, lib, fetchurl, makeWrapper, automoc4, cmake, perl, pkgconfig +, shared_mime_info, libvorbis, taglib, flac, libsamplerate , libdvdread, lame, libsndfile, libmad, gettext , transcode, cdrdao -, cdrtools, dvdplusrwtools, vcdimager, cdparanoia , kdelibs +, dvdplusrwtools, vcdimager, cdparanoia, kdelibs, libdvdcss, ffmpeg , kdemultimedia, phonon, libkcddb ? null }: -stdenv.mkDerivation rec { - name = "k3b-2.0.3a"; +let + # at runtime, k3b needs the executables cdrdao, cdrecord, dvd+rw-format, + # eMovix, growisofs, mkisofs, normalize, readcd, transcode, vcdxbuild, + # vcdxminfo, and vcdxrip + binPath = lib.makeBinPath [ cdrdao dvdplusrwtools transcode vcdimager ]; + +in stdenv.mkDerivation rec { + name = "k3b-${version}"; + version = "2.0.3a"; src = fetchurl { url = "http://download.kde.org/stable/k3b/${name}.tar.xz"; @@ -19,18 +26,16 @@ stdenv.mkDerivation rec { shared_mime_info libvorbis taglib flac libsamplerate libdvdread lame libsndfile libmad stdenv.cc.libc kdelibs kdemultimedia phonon libkcddb makeWrapper cdparanoia + libdvdcss ffmpeg ]; enableParallelBuilding = true; - # at runtime, k3b needs the executables cdrdao, cdrecord, dvd+rw-format, - # eMovix, growisofs, mkisofs, normalize, readcd, transcode, vcdxbuild, - # vcdxminfo, and vcdxrip - propagatedUserEnvPkgs = [ cdrdao cdrtools dvdplusrwtools transcode vcdimager ]; + NIX_CFLAGS_LINK = [ "-lcdda_interface" "-lcdda_paranoia" "-ldvdcss" ]; postInstall = '' wrapProgram $out/bin/k3b \ - --prefix LD_LIBRARY_PATH ":" "${cdparanoia}/lib" + --prefix PATH ":" "${binPath}" ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/misc/k3b/wrapper.nix b/pkgs/applications/misc/k3b/wrapper.nix new file mode 100644 index 00000000000..486d3fb7ddf --- /dev/null +++ b/pkgs/applications/misc/k3b/wrapper.nix @@ -0,0 +1,15 @@ +{ lib, symlinkJoin, k3b-original, cdrtools, makeWrapper }: + +let + binPath = lib.makeBinPath [ cdrtools ]; +in symlinkJoin { + name = "k3b-${k3b-original.version}"; + + paths = [ k3b-original ]; + buildInputs = [ makeWrapper ]; + + postBuild = '' + wrapProgram $out/bin/k3b \ + --prefix PATH ':' ${binPath} + ''; +} diff --git a/pkgs/applications/misc/keepassx/default.nix b/pkgs/applications/misc/keepassx/default.nix index 3d078d59be6..d0bddbc1610 100644 --- a/pkgs/applications/misc/keepassx/default.nix +++ b/pkgs/applications/misc/keepassx/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, bzip2, qt4, libX11, xextproto, libXtst }: +{ stdenv, fetchurl, bzip2, qt4, qmake4Hook, libX11, xextproto, libXtst }: stdenv.mkDerivation rec { name = "keepassx-${version}"; @@ -9,14 +9,12 @@ stdenv.mkDerivation rec { sha256 = "1i5dq10x28mg7m4c0yacm32xfj4j7imir4ph8x9p0s2ym260c9ry"; }; - configurePhase = '' - qmake PREFIX=$out - ''; - patches = [ ./random.patch ]; buildInputs = [ bzip2 qt4 libX11 xextproto libXtst ]; + nativeBuildInputs = [ qmake4Hook ]; + meta = { description = "Qt password manager compatible with its Win32 and Pocket PC versions"; homepage = http://www.keepassx.org/; diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix index 9f083592c40..e1786cc1b08 100644 --- a/pkgs/applications/misc/khal/default.nix +++ b/pkgs/applications/misc/khal/default.nix @@ -5,7 +5,7 @@ python3Packages.buildPythonApplication rec { name = "khal-${version}"; src = fetchurl { - url = "https://pypi.python.org/packages/source/k/khal/khal-${version}.tar.gz"; + url = "mirror://pypi/k/khal/khal-${version}.tar.gz"; sha256 = "00llxj7cv31mjsx0j6zxmyi9s1q20yvfkn025xcy8cv1ylfwic66"; }; diff --git a/pkgs/applications/misc/librecad/default.nix b/pkgs/applications/misc/librecad/default.nix index b41ef70394e..d5c04ba555a 100644 --- a/pkgs/applications/misc/librecad/default.nix +++ b/pkgs/applications/misc/librecad/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4, muparser, which, boost, pkgconfig }: +{ stdenv, fetchurl, qt4, qmake4Hook, muparser, which, boost, pkgconfig }: stdenv.mkDerivation rec { version = "2.0.9"; @@ -15,9 +15,7 @@ stdenv.mkDerivation rec { sed -i -e s,/usr/share,$out/share, librecad/src/lib/engine/rs_system.cpp ''; - configurePhase = '' - qmake librecad.pro PREFIX=$out MUPARSER_DIR=${muparser} BOOST_DIR=${boost.dev} - ''; + qmakeFlags = [ "MUPARSER_DIR=${muparser}" "BOOST_DIR=${boost.dev}" ]; installPhase = '' mkdir -p $out/bin $out/share @@ -26,7 +24,7 @@ stdenv.mkDerivation rec { ''; buildInputs = [ qt4 muparser which boost ]; - nativeBuildInputs = [ pkgconfig ]; + nativeBuildInputs = [ pkgconfig qmake4Hook ]; enableParallelBuilding = true; diff --git a/pkgs/applications/misc/ltwheelconf/default.nix b/pkgs/applications/misc/ltwheelconf/default.nix new file mode 100644 index 00000000000..5450f5f2fc8 --- /dev/null +++ b/pkgs/applications/misc/ltwheelconf/default.nix @@ -0,0 +1,29 @@ +{ stdenv, libusb1, pkgconfig, fetchFromGitHub }: + +stdenv.mkDerivation rec { + pname = "ltwheelconf"; + version = "0.2.7"; + name = "${pname}-${version}"; + + src = fetchFromGitHub { + owner = "thk"; + repo = "ltwheelconf"; + rev = "df55451f059d593b0259431662612ab5c2bef859"; + sha256 = "1fsz7k73yln987gcx1jvb5irxfbp1x2c457a60a8yap27nkp5y2w"; + }; + + buildInputs = [ libusb1 pkgconfig ]; + + installPhase = '' + mkdir -p $out/bin + cp ltwheelconf $out/bin + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/thk/LTWheelConf; + description = "Logitech wheels configuration tool"; + license = licenses.gpl3; + maintainers = [ maintainers.ebzzry ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/applications/misc/merkaartor/default.nix b/pkgs/applications/misc/merkaartor/default.nix index a270dca910c..5954316e50f 100644 --- a/pkgs/applications/misc/merkaartor/default.nix +++ b/pkgs/applications/misc/merkaartor/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, qt4, boost, proj, gdal_1_11}: +{ stdenv, fetchurl, qt4, qmake4Hook, boost, proj, gdal_1_11 }: stdenv.mkDerivation rec { name = "merkaartor-0.18.1"; @@ -7,12 +7,10 @@ stdenv.mkDerivation rec { sha256 = "17qk45pmlxqigla1915dvn9pp91y85d2bkcaap4g3m8mk1crcsix"; }; - configurePhase = '' - qmake -makefile PREFIX=$out - ''; - buildInputs = [ qt4 boost proj gdal_1_11 ]; + nativeBuildInputs = [ qmake4Hook ]; + meta = { description = "An openstreetmap editor"; homepage = http://merkaartor.org/; diff --git a/pkgs/applications/misc/multimon-ng/default.nix b/pkgs/applications/misc/multimon-ng/default.nix index f9aa567ed4b..a9f0cb2511a 100644 --- a/pkgs/applications/misc/multimon-ng/default.nix +++ b/pkgs/applications/misc/multimon-ng/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, qt4, libpulseaudio }: +{ stdenv, fetchFromGitHub, qt4, qmake4Hook, libpulseaudio }: let version = "1.0.0"; in @@ -14,7 +14,7 @@ stdenv.mkDerivation { buildInputs = [ qt4 libpulseaudio ]; - preBuild = "qmake multimon-ng.pro"; + nativeBuildInputs = [ qmake4Hook ]; installPhase = '' mkdir -p $out/bin diff --git a/pkgs/applications/misc/navipowm/default.nix b/pkgs/applications/misc/navipowm/default.nix index 6d990831a36..447fc4570a7 100644 --- a/pkgs/applications/misc/navipowm/default.nix +++ b/pkgs/applications/misc/navipowm/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4 }: +{ stdenv, fetchurl, qt4, qmake4Hook }: stdenv.mkDerivation rec { name = "navipowm-0.2.4"; @@ -7,9 +7,8 @@ stdenv.mkDerivation rec { sha256 = "1kdih8kwpgcgfh6l6njkr9gq2j5hv39xvzmzgvhip553kn6bss7b"; }; - configurePhase = '' + preConfigure = '' cd Qt/KDevelop - qmake ''; installPhase = '' @@ -20,6 +19,7 @@ stdenv.mkDerivation rec { ''; buildInputs = [ qt4 ]; + nativeBuildInputs = [ qmake4Hook ]; meta = { homepage = http://navipowm.sourceforge.net/; diff --git a/pkgs/applications/misc/octoprint/default.nix b/pkgs/applications/misc/octoprint/default.nix index b9b6c10a13f..3178ea5684d 100644 --- a/pkgs/applications/misc/octoprint/default.nix +++ b/pkgs/applications/misc/octoprint/default.nix @@ -34,7 +34,7 @@ pythonPackages.buildPythonApplication rec { ''; meta = with stdenv.lib; { - homepage = http://octoprint.org/; + homepage = "http://octoprint.org/"; description = "The snappy web interface for your 3D printer"; platforms = platforms.all; license = licenses.agpl3; diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix index 7ff6686a937..852ec5b444d 100644 --- a/pkgs/applications/misc/octoprint/plugins.nix +++ b/pkgs/applications/misc/octoprint/plugins.nix @@ -8,13 +8,13 @@ in { m3d-fio = buildPlugin rec { name = "M3D-Fio-${version}"; - version = "0.30.2"; + version = "0.32"; src = fetchFromGitHub { owner = "donovan6000"; repo = "M3D-Fio"; rev = "V${version}"; - sha256 = "1knm41hwjf6v4yjx8khr2zd9ryndmw8bkp3y80hgjc5p4nqxrmg3"; + sha256 = "1s15nx6v56yjwd88b19fx0gk1l0abp76nz10yicspdn91fpr1sf4"; }; patches = [ @@ -31,8 +31,8 @@ in { ''; meta = with stdenv.lib; { - homepage = https://github.com/donovan6000/M3D-Fio; - description = " OctoPrint plugin for the Micro 3D printer"; + homepage = "https://github.com/donovan6000/M3D-Fio"; + description = "OctoPrint plugin for the Micro 3D printer"; platforms = platforms.all; license = licenses.gpl3; maintainers = with maintainers; [ abbradar ]; diff --git a/pkgs/applications/misc/openbrf/default.nix b/pkgs/applications/misc/openbrf/default.nix index 478f02b970e..36218b6d507 100644 --- a/pkgs/applications/misc/openbrf/default.nix +++ b/pkgs/applications/misc/openbrf/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, qt4, vcg, glew }: +{ stdenv, fetchFromGitHub, qt4, qmake4Hook, vcg, glew }: stdenv.mkDerivation { name = "openbrf-2016-01-09"; @@ -10,25 +10,23 @@ stdenv.mkDerivation { sha256 = "0laikpz0ljz7l5fgapwj09ygizmvj1iywnpfgfd0i14j46s134xb"; }; - buildInputs = [ qt4 vcg glew ]; + buildInputs = [ qt4 qmake4Hook vcg glew ]; enableParallelBuilding = true; + qmakeFlags = [ "openBrf.pro" ]; + postPatch = '' sed -i 's,^VCGLIB .*,VCGLIB = ${vcg}/include,' openBrf.pro ''; - configurePhase = '' - qmake PREFIX=$out openBrf.pro - ''; - installPhase = '' install -Dm755 openBrf $out/bin/openBrf ''; meta = with stdenv.lib; { description = "A tool to edit resource files (BRF)"; - homepage = https://github.com/cfcohen/openbrf; + homepage = "https://github.com/cfcohen/openbrf"; maintainers = with stdenv.lib.maintainers; [ abbradar ]; license = licenses.free; platforms = platforms.linux; diff --git a/pkgs/applications/misc/pgadmin/default.nix b/pkgs/applications/misc/pgadmin/default.nix index 894aeaab425..2f33edc9adc 100644 --- a/pkgs/applications/misc/pgadmin/default.nix +++ b/pkgs/applications/misc/pgadmin/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, postgresql, wxGTK, libxml2, libxslt, openssl }: +{ stdenv, fetchurl, postgresql, wxGTK, libxml2, libxslt, openssl, zlib }: stdenv.mkDerivation rec { name = "pgadmin3-${version}"; @@ -11,12 +11,17 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - buildInputs = [ postgresql wxGTK libxml2 libxslt openssl ]; + buildInputs = [ postgresql wxGTK openssl zlib ]; preConfigure = '' substituteInPlace pgadmin/ver_svn.sh --replace "bin/bash" "$shell" ''; + configureFlags = [ + "--with-libxml2=${libxml2}" + "--with-libxslt=${libxslt}" + ]; + meta = with stdenv.lib; { description = "PostgreSQL administration GUI tool"; homepage = http://www.pgadmin.org; diff --git a/pkgs/applications/misc/pitz/default.nix b/pkgs/applications/misc/pitz/default.nix index 1eb65a59470..dcb36082231 100644 --- a/pkgs/applications/misc/pitz/default.nix +++ b/pkgs/applications/misc/pitz/default.nix @@ -16,7 +16,7 @@ buildPythonApplication rec { namePrefix = ""; src = fetchurl { - url = "http://pypi.python.org/packages/source/p/pitz/${name}.tar.gz"; + url = "mirror://pypi/p/pitz/${name}.tar.gz"; sha256 = "1k7f3h4acllzqy3mjqnjd4w5jskp03s79b7dx3c85vlmd7824smr"; }; diff --git a/pkgs/applications/misc/qtbitcointrader/default.nix b/pkgs/applications/misc/qtbitcointrader/default.nix index 8b527463b22..a8613f917eb 100644 --- a/pkgs/applications/misc/qtbitcointrader/default.nix +++ b/pkgs/applications/misc/qtbitcointrader/default.nix @@ -1,35 +1,33 @@ -{ stdenv, fetchFromGitHub, qt }: +{ stdenv, fetchurl, qt5 }: let - version = "1.08.03"; + version = "1.10.01"; in stdenv.mkDerivation { name = "qtbitcointrader-${version}"; - src = fetchFromGitHub { - owner = "JulyIGHOR"; - repo = "QtBitcoinTrader"; - rev = "ee30cf158fa8535f2155a387558d3b8994728c28"; - sha256 = "0kxb0n11agqid0nyqdspfndm03b8l0nl8x4yx2hsrizs6m5z08h4"; + src = fetchurl { + url = "https://github.com/JulyIGHOR/QtBitcoinTrader/archive/v${version}.tar.gz"; + sha256 = "0pgj8rsk9yxvls7yjpzblzbci2vvd0mlf9c7wdbjhwf6qyi7dfi3"; }; - buildInputs = [ qt ]; + buildInputs = [ qt5.qtbase qt5.qtmultimedia qt5.qtscript ]; postUnpack = "sourceRoot=\${sourceRoot}/src"; configurePhase = '' - qmake \ + qmake $qmakeFlags \ PREFIX=$out \ DESKTOPDIR=$out/share/applications \ ICONDIR=$out/share/pixmaps \ - QtBitcoinTrader_Desktop.pro + QtBitcoinTrader_Desktop.pro ''; meta = with stdenv.lib; - { description = "Secure bitcoin trading client"; + { description = "Bitcoin trading client"; homepage = https://centrabit.com/; license = licenses.lgpl3; - platforms = qt.meta.platforms; + platforms = qt5.qtbase.meta.platforms; maintainers = [ maintainers.ehmry ]; }; } diff --git a/pkgs/applications/misc/qtpass/default.nix b/pkgs/applications/misc/qtpass/default.nix index 69730759d08..342a03f8984 100644 --- a/pkgs/applications/misc/qtpass/default.nix +++ b/pkgs/applications/misc/qtpass/default.nix @@ -1,28 +1,31 @@ -{ stdenv, fetchurl, git, gnupg, makeQtWrapper, pass, qtbase, qtsvg, qttools }: +{ stdenv, fetchzip, git, gnupg, makeQtWrapper, pass, qtbase, qtsvg, qttools, qmakeHook }: stdenv.mkDerivation rec { name = "qtpass-${version}"; - version = "1.1.0"; + version = "1.1.1"; - src = fetchurl { + src = fetchzip { url = "https://github.com/IJHack/qtpass/archive/v${version}.tar.gz"; - sha256 = "60b458062f54184057e55dbd9c93958a8bf845244ffd70b9cb31bf58697f0dc6"; + sha256 = "1x1ic9as0a60gz664sf8d1qiq64ji7q60g19x0rlm3bvcp2612c8"; }; - buildInputs = [ git gnupg makeQtWrapper pass qtbase qtsvg qttools ]; + buildInputs = [ git gnupg pass qtbase qtsvg qttools ]; - configurePhase = '' - runHook preConfigure - qmake CONFIG+=release PREFIX=$out DESTDIR=$out - runHook postConfigure + nativeBuildInputs = [ makeQtWrapper qmakeHook ]; + + preConfigure = '' + qmakeFlags="$qmakeFlags CONFIG+=release DESTDIR=$out" ''; installPhase = '' mkdir $out/bin mv $out/qtpass $out/bin + install -D {,$out/share/applications/}qtpass.desktop + install -D artwork/icon.svg $out/share/icons/hicolor/scalable/apps/qtpass-icon.svg + runHook postInstall ''; - postFixup = '' + postInstall = '' wrapQtProgram $out/bin/qtpass \ --suffix PATH : ${git}/bin \ --suffix PATH : ${gnupg}/bin \ @@ -31,7 +34,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "A multi-platform GUI for pass, the standard unix password manager"; - homepage = https://github.com/IJHack/qtpass; + homepage = https://qtpass.org; license = licenses.gpl3; maintainers = [ maintainers.hrdinka ]; platforms = platforms.all; diff --git a/pkgs/applications/misc/redis-desktop-manager/default.nix b/pkgs/applications/misc/redis-desktop-manager/default.nix new file mode 100644 index 00000000000..7a1ed08ebf6 --- /dev/null +++ b/pkgs/applications/misc/redis-desktop-manager/default.nix @@ -0,0 +1,81 @@ +{ stdenv, lib, fetchgit, pkgconfig , libssh2 +, qtbase, qtdeclarative, qtgraphicaleffects, qtimageformats, qtquickcontrols +, qtsvg, qttools, qtquick1 +, makeQtWrapper, qmakeHook +}: + +let + breakpad_lss = fetchgit { + url = "https://chromium.googlesource.com/linux-syscall-support"; + rev = "08056836f2b4a5747daff75435d10d649bed22f6"; + sha256 = "1ryshs2nyxwa0kn3rlbnd5b3fhna9vqm560yviddcfgdm2jyg0hz"; + }; + +in + +stdenv.mkDerivation rec { + name = "redis-desktop-manager-${version}"; + version = "0.8.3"; + + src = fetchgit { + url = "https://github.com/uglide/RedisDesktopManager.git"; + fetchSubmodules = true; + rev = "refs/tags/${version}"; + sha256 = "08969xwqpjgvfa195dxskpr54p4mnapgfykcffpqpczp990ak1l6"; + }; + + nativeBuildInputs = [ makeQtWrapper qmakeHook ]; + + buildInputs = [ + pkgconfig libssh2 qtbase qtdeclarative qtgraphicaleffects qtimageformats + qtquick1 qtquickcontrols qtsvg qttools + ]; + + configurePhase = "true"; + + buildPhase = '' + srcdir=$PWD + + substituteInPlace src/resources/qml/ValueTabs.qml \ + --replace "import QtQuick.Controls 1.4" \ + "import QtQuick.Controls 1.2" + + cat < src/version.h +#ifndef RDM_VERSION + #define RDM_VERSION "${version}-120" +#endif // !RDM_VERSION +EOF + + cd $srcdir/3rdparty/gbreakpad + cp -r ${breakpad_lss} src/third_party/lss + chmod +w -R src/third_party/lss + touch README + + cd $srcdir/3rdparty/crashreporter + qmake CONFIG+=release DESTDIR="$srcdir/rdm/bin/linux/release" QMAKE_LFLAGS_RPATH="" + make + + cd $srcdir/3rdparty/gbreakpad + ./configure + make + + cd $srcdir/src + qmake + make + ''; + + installPhase = '' + mkdir -p $out/bin + instdir="$srcdir/bin/linux/release" + cp $instdir/rdm $out/bin + wrapQtProgram $out/bin/rdm + ''; + + meta = with lib; { + description = "Cross-platform open source Redis DB management tool"; + homepage = "http://redisdesktop.com/"; + license = licenses.lgpl21; + platforms = platforms.linux; + maintainers = with maintainers; [ cstrahan ]; + }; +} diff --git a/pkgs/applications/misc/rofi/default.nix b/pkgs/applications/misc/rofi/default.nix index 9f11a141ff4..e1ee9b2d145 100644 --- a/pkgs/applications/misc/rofi/default.nix +++ b/pkgs/applications/misc/rofi/default.nix @@ -1,21 +1,31 @@ { stdenv, fetchurl, autoreconfHook, pkgconfig -, libX11, libXinerama, pango, cairo +, libX11, libxkbcommon, pango, cairo, glib +, libxcb, xcbutil, xcbutilwm, which, git , libstartup_notification, i3Support ? false, i3 }: stdenv.mkDerivation rec { name = "rofi-${version}"; - version = "0.15.12"; + version = "1.0.0"; src = fetchurl { - url = "https://github.com/DaveDavenport/rofi/archive/${version}.tar.gz"; - sha256 = "112fgx2awsw1xf1983bmy3jvs33qwyi8qj7j59jqc4gx07nv1rp5"; + url = "https://github.com/DaveDavenport/rofi/releases/download/${version}/${name}.tar.xz"; + sha256 = "0ard95pjgykafm5ga8lfy7x206f07lrc6kara5s9irlhdgblq2m5"; }; - buildInputs = [ autoreconfHook pkgconfig libX11 libXinerama pango - cairo libstartup_notification + preConfigure = '' + patchShebangs "script" + # root not present in build /etc/passwd + sed -i 's/~root/~nobody/g' test/helper-expand.c + ''; + + buildInputs = [ autoreconfHook pkgconfig libX11 libxkbcommon pango + cairo libstartup_notification libxcb xcbutil xcbutilwm + which git ] ++ stdenv.lib.optional i3Support i3; + doCheck = true; + meta = { description = "Window switcher, run dialog and dmenu replacement"; homepage = https://davedavenport.github.io/rofi; diff --git a/pkgs/applications/misc/rxvt_unicode/wrapper.nix b/pkgs/applications/misc/rxvt_unicode/wrapper.nix index 2f68e4ec5f1..c9b0823fb51 100644 --- a/pkgs/applications/misc/rxvt_unicode/wrapper.nix +++ b/pkgs/applications/misc/rxvt_unicode/wrapper.nix @@ -1,28 +1,21 @@ -{ stdenv, buildEnv, rxvt_unicode, makeWrapper, plugins }: +{ stdenv, symlinkJoin, rxvt_unicode, makeWrapper, plugins }: let rxvt = rxvt_unicode.override { perlSupport = true; }; - drv = buildEnv { - name = "${rxvt.name}-with-plugins"; +in symlinkJoin { + name = "${rxvt.name}-with-plugins"; - paths = [ rxvt ] ++ plugins; + paths = [ rxvt ] ++ plugins; - postBuild = '' - # TODO: This could be avoided if buildEnv could be forced to create all directories - if [ -L $out/bin ]; then - rm $out/bin - mkdir $out/bin - for i in ${rxvt}/bin/*; do - ln -s $i $out/bin - done - fi - wrapProgram $out/bin/urxvt \ - --suffix-each URXVT_PERL_LIB ':' "$out/lib/urxvt/perl" - wrapProgram $out/bin/urxvtd \ - --suffix-each URXVT_PERL_LIB ':' "$out/lib/urxvt/perl" - ''; - }; -in stdenv.lib.overrideDerivation drv (x : { buildInputs = x.buildInputs ++ [ makeWrapper ]; }) + buildInputs = [ makeWrapper ]; + + postBuild = '' + wrapProgram $out/bin/urxvt \ + --suffix-each URXVT_PERL_LIB ':' "$out/lib/urxvt/perl" + wrapProgram $out/bin/urxvtd \ + --suffix-each URXVT_PERL_LIB ':' "$out/lib/urxvt/perl" + ''; +} diff --git a/pkgs/applications/misc/tpmmanager/default.nix b/pkgs/applications/misc/tpmmanager/default.nix index 85a1c72b349..09322b47506 100644 --- a/pkgs/applications/misc/tpmmanager/default.nix +++ b/pkgs/applications/misc/tpmmanager/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, qt4, trousers }: +{ stdenv, fetchgit, qt4, qmake4Hook, trousers }: stdenv.mkDerivation rec { version = "0.8.1"; @@ -10,11 +10,9 @@ stdenv.mkDerivation rec { sha256 = "24a606f88fed67ed0d0e61dc220295e9e1ab8db3ef3d028fa34b04ff30652d8e"; }; - buildInputs = [ qt4 trousers ]; + nativeBuildInputs = [ qmake4Hook ]; - preBuild = '' - qmake -makefile PREFIX=\$out - ''; + buildInputs = [ qt4 trousers ]; installPhase = '' mkdir -p $out/bin diff --git a/pkgs/applications/misc/twmn/default.nix b/pkgs/applications/misc/twmn/default.nix index fbbf45877d2..665e23237d8 100644 --- a/pkgs/applications/misc/twmn/default.nix +++ b/pkgs/applications/misc/twmn/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv, fetchgit, qtbase, qtx11extras, pkgconfig, boost }: +{ fetchurl, stdenv, fetchgit, qtbase, qtx11extras, qmakeHook, pkgconfig, boost }: stdenv.mkDerivation rec { name = "twmn-git-2014-09-23"; @@ -9,13 +9,10 @@ stdenv.mkDerivation rec { sha256 = "9c91e9d3d6d7f9d90d34da6f1a4b9f3dee65605c1e43729417d6921c54dded6b"; }; - buildInputs = [ qtbase qtx11extras pkgconfig boost ]; + buildInputs = [ qtbase qtx11extras pkgconfig boost qmakeHook ]; - configurePhase = '' - runHook preConfigure + postPatch = '' sed -i s/-Werror// twmnd/twmnd.pro - qmake - runHook postConfigure ''; installPhase = '' diff --git a/pkgs/applications/misc/vym/default.nix b/pkgs/applications/misc/vym/default.nix index e595d771ec0..8e1514583a2 100644 --- a/pkgs/applications/misc/vym/default.nix +++ b/pkgs/applications/misc/vym/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, qt4 }: +{ stdenv, fetchurl, pkgconfig, qt4, qmake4Hook }: stdenv.mkDerivation rec { name = "vym-${version}"; @@ -9,13 +9,9 @@ stdenv.mkDerivation rec { sha256 = "1x4qp6wpszscbbs4czkfvskm7qjglvxm813nqv281bpy4y1hhvgs"; }; - buildInputs = [ pkgconfig qt4 ]; - hardeningDisable = [ "format" ]; - configurePhase = '' - qmake PREFIX="$out" - ''; + buildInputs = [ pkgconfig qt4 qmake4Hook ]; meta = with stdenv.lib; { description = "A mind-mapping software"; diff --git a/pkgs/applications/misc/workrave/default.nix b/pkgs/applications/misc/workrave/default.nix index f0f0b00c927..e9e34518932 100644 --- a/pkgs/applications/misc/workrave/default.nix +++ b/pkgs/applications/misc/workrave/default.nix @@ -1,33 +1,45 @@ -{ stdenv, fetchurl, autoconf, automake, gettext, intltool, libtool, pkgconfig, - libXtst, cheetah, libXScrnSaver, - glib, glibmm, - gtk, gtkmm, - atk, - pango, pangomm, - cairo, cairomm, - dbus, dbus_glib, - GConf, gconfmm, - gdome2, gstreamer, libsigcxx }: +{ stdenv, fetchFromGitHub, fetchpatch +, autoconf, automake, gettext, intltool, libtool, pkgconfig +, libICE, libSM, libXScrnSaver, libXtst, cheetah +, glib, glibmm, gtk, gtkmm, atk, pango, pangomm, cairo, cairomm +, dbus, dbus_glib, GConf, gconfmm, gdome2, gstreamer, libsigcxx }: stdenv.mkDerivation rec { - version = "v1_10_6"; name = "workrave-${version}"; + version = "1.10.7"; - src = fetchurl { - url = "http://github.com/rcaelers/workrave/archive/${version}.tar.gz"; - sha256 = "0q2p83n33chbqzdcdm7ykfsy73frfi6drxzm4qidxwzpzsxrysgq"; + src = let + in fetchFromGitHub { + sha256 = "1mxg882rfih7xzadrpj51m9r33f6s3rzwv61nfwi94vzd68qjnxb"; + rev = with stdenv.lib; + "v" + concatStringsSep "_" (splitString "." version); + repo = "workrave"; + owner = "rcaelers"; }; - buildInputs = [ - autoconf automake gettext intltool libtool pkgconfig libXtst cheetah - libXScrnSaver + patches = [ + # Building with gtk{,mm}3 works just fine, but let's be conservative for once: + (fetchpatch { + name = "workrave-fix-compilation-with-gtk2.patch"; + url = "https://github.com/rcaelers/workrave/commit/" + + "271efdcd795b3592bfede8b1af2162af4b1f0f26.patch"; + sha256 = "1a3d4jj8516m3m24bl6y8alanl1qnyzv5dv1hz5v3hjgk89fj6rk"; + }) + ]; + nativeBuildInputs = [ + autoconf automake gettext intltool libtool pkgconfig + ]; + buildInputs = [ + libICE libSM libXScrnSaver libXtst cheetah glib glibmm gtk gtkmm atk pango pangomm cairo cairomm dbus dbus_glib GConf gconfmm gdome2 gstreamer libsigcxx ]; preConfigure = "./autogen.sh"; + enableParallelBuilding = true; + meta = with stdenv.lib; { description = "A program to help prevent Repetitive Strain Injury"; longDescription = '' @@ -38,7 +50,7 @@ stdenv.mkDerivation rec { homepage = http://www.workrave.org/; downloadPage = https://github.com/rcaelers/workrave/releases; license = licenses.gpl3; - maintainers = with maintainers; [ prikhi ]; + maintainers = with maintainers; [ nckx prikhi ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/misc/zathura/core/default.nix b/pkgs/applications/misc/zathura/core/default.nix index 62e7ee60cb3..01c267cbbb4 100644 --- a/pkgs/applications/misc/zathura/core/default.nix +++ b/pkgs/applications/misc/zathura/core/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, pkgconfig, gtk, girara, ncurses, gettext, docutils, file, makeWrapper, zathura_icon, sqlite, glib }: stdenv.mkDerivation rec { - version = "0.3.5"; + version = "0.3.6"; name = "zathura-core-${version}"; src = fetchurl { url = "http://pwmt.org/projects/zathura/download/zathura-${version}.tar.gz"; - sha256 = "031kdr10065q14nixc4p58c4rgvrqcmn9x39b19h2357kzabaw9a"; + sha256 = "0fyb5hak0knqvg90rmdavwcmilhnrwgg1s5ykx9wd3skbpi8nsh8"; }; buildInputs = [ pkgconfig file gtk girara gettext makeWrapper sqlite glib ]; diff --git a/pkgs/applications/networking/bittorrentsync/2.0.x.nix b/pkgs/applications/networking/bittorrentsync/2.0.x.nix index 4f9c7ebf333..ee4d3a436a5 100644 --- a/pkgs/applications/networking/bittorrentsync/2.0.x.nix +++ b/pkgs/applications/networking/bittorrentsync/2.0.x.nix @@ -1,28 +1,27 @@ -{ stdenv, fetchurl, patchelf }: +{ stdenv, fetchurl }: let arch = if stdenv.system == "x86_64-linux" then "x64" else if stdenv.system == "i686-linux" then "i386" else throw "Bittorrent Sync for: ${stdenv.system} not supported!"; - sha256 = if stdenv.system == "x86_64-linux" then "0l6z2fyd7i3i3cr95gkihbf6fwa7mk1b2m1jpf2nq5ispg0qf74n" - else if stdenv.system == "i686-linux" then "06x8f75dh58saqrz2k2xgcilh27v0jmql4k4rs7g361aad9v3pnr" + sha256 = if stdenv.system == "x86_64-linux" then "01yrligi61gxcixh7z6gi427ga0sx97wnmkv08p9ykd4b90hvj7s" + else if stdenv.system == "i686-linux" then "119dll7f4w7h8nrrafmrj1d0lddjzwg5l8hnf74xdjg6g7rhrmd7" else throw "Bittorrent Sync for: ${stdenv.system} not supported!"; libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ]; in stdenv.mkDerivation rec { name = "btsync-${version}"; - version = "2.3.3"; + version = "2.3.6"; src = fetchurl { - url = "https://download-cdn.getsyncapp.com/${version}/linux-${arch}/BitTorrent-Sync_${arch}.tar.gz"; + url = "https://download-cdn.getsync.com/${version}/linux-${arch}/BitTorrent-Sync_${arch}.tar.gz"; inherit sha256; }; dontStrip = true; # Don't strip, otherwise patching the rpaths breaks sourceRoot = "."; - buildInputs = [ patchelf ]; installPhase = '' mkdir -p "$out/bin/" @@ -34,7 +33,7 @@ stdenv.mkDerivation rec { meta = { description = "Automatically sync files via secure, distributed technology"; - homepage = "http://www.bittorrent.com/sync"; + homepage = https://www.getsync.com/; license = stdenv.lib.licenses.unfreeRedistributable; platforms = stdenv.lib.platforms.linux; maintainers = with stdenv.lib.maintainers; [ iElectric thoughtpolice cwoac ]; diff --git a/pkgs/applications/networking/browsers/arora/default.nix b/pkgs/applications/networking/browsers/arora/default.nix index d812078b6aa..8bcefe4fe7b 100644 --- a/pkgs/applications/networking/browsers/arora/default.nix +++ b/pkgs/applications/networking/browsers/arora/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4 }: +{ stdenv, fetchurl, qt4, qmake4Hook }: stdenv.mkDerivation rec { name = "arora-${version}"; @@ -10,8 +10,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ qt4 ]; - - configurePhase = "qmake PREFIX=$out"; + nativeBuildInputs = [ qmake4Hook ]; meta = with stdenv.lib; { platforms = qt4.meta.platforms; diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index 7493350b28f..94017ba3327 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -35,7 +35,7 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec { alsaLib nspr nss libnotify xorg.pixman yasm mesa xorg.libXScrnSaver xorg.scrnsaverproto pysqlite xorg.libXext xorg.xextproto sqlite unzip makeWrapper - hunspell libevent libstartup_notification libvpx /* cairo */ + hunspell libevent libstartup_notification /* libvpx */ /* cairo */ gstreamer gst_plugins_base icu libpng jemalloc libpulseaudio # only headers are needed ] @@ -50,7 +50,7 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec { "--with-system-nspr" "--with-system-nss" "--with-system-libevent" - "--with-system-libvpx" + #"--with-system-libvpx" # needs 1.5.0 "--with-system-png" # needs APNG support "--with-system-icu" "--enable-system-ffi" @@ -69,6 +69,7 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec { "--disable-updater" "--enable-jemalloc" "--disable-gconf" + "--enable-default-toolkit=cairo-gtk2" ] ++ lib.optional enableGTK3 "--enable-default-toolkit=cairo-gtk3" ++ (if debugBuild then [ "--enable-debug" "--enable-profiling" ] @@ -130,8 +131,8 @@ in { firefox-unwrapped = common { pname = "firefox"; - version = "45.0.2"; - sha512 = "8c0b7afb41a1a405fe499299d1a8b1138dac52b9ad67bfc8761b70a26f330581c2aa1d76d67075896ec3a0c3f5367b8b58365ebc8b3a01f801fa37071b3de526"; + version = "46.0"; + sha512 = "f5a652e25fa74e3cb271af04d50cc7b63ca73fde9d2ff350e84b3dda55352bac2b28b567aed12164285d992414ad475da9d2555ab972e5c5d7b8f5226591036b"; }; firefox-esr-unwrapped = common { diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix index 5fb887bda22..d859d9a74ec 100644 --- a/pkgs/applications/networking/browsers/firefox/wrapper.nix +++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix @@ -6,6 +6,7 @@ , supportsJDK, jrePlugin, icedtea_web , trezor-bridge, bluejeans, djview4, adobe-reader , google_talk_plugin, fribid, gnome3/*.gnome_shell*/ +, esteidfirefoxplugin }: ## configurability of the wrapper itself @@ -42,6 +43,7 @@ let ++ lib.optional (cfg.enableTrezor or false) trezor-bridge ++ lib.optional (cfg.enableBluejeans or false) bluejeans ++ lib.optional (cfg.enableAdobeReader or false) adobe-reader + ++ lib.optional (cfg.enableEsteid or false) esteidfirefoxplugin ); libs = [ gst_all.gstreamer gst_all.gst-plugins-base ] ++ lib.optionals (cfg.enableQuakeLive or false) @@ -86,7 +88,7 @@ stdenv.mkDerivation { makeWrapper "${browser}/bin/${browserName}" \ "$out/bin/${browserName}${nameSuffix}" \ --suffix-each MOZ_PLUGIN_PATH ':' "$plugins" \ - --suffix-each LD_LIBRARY_PATH ':' "$libs" \ + --suffix LD_LIBRARY_PATH ':' "$libs" \ --suffix-each GTK_PATH ':' "$gtk_modules" \ --suffix-each LD_PRELOAD ':' "$(cat $(filterExisting $(addSuffix /extra-ld-preload $plugins)))" \ --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \ @@ -127,7 +129,7 @@ stdenv.mkDerivation { # Let each plugin tell us (through its `mozillaPlugin') attribute # where to find the plugin in its tree. plugins = map (x: x + x.mozillaPlugin) plugins; - libs = map (x: x + "/lib") libs ++ map (x: x + "/lib64") libs; + libs = lib.makeLibraryPath libs + ":" + lib.makeSearchPathOutputs "lib64" ["lib"] libs; gtk_modules = map (x: x + x.gtkModule) gtk_modules; passthru = { unwrapped = browser; }; diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin/default.nix new file mode 100644 index 00000000000..039d8bbe406 --- /dev/null +++ b/pkgs/applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchurl, gtk2, openssl, pcsclite, pkgconfig, opensc }: + +stdenv.mkDerivation rec { + version = "3.12.1.1142"; + name = "esteidfirefoxplugin-${version}"; + + src = fetchurl { + url = "https://installer.id.ee/media/ubuntu/pool/main/e/esteidfirefoxplugin/esteidfirefoxplugin_3.12.1.1142.orig.tar.xz"; + sha256 = "0y7759x1xr00p5r3c5wpllcqqnnxh2zi74cmy4m9m690z3ywn0fx"; + }; + + unpackPhase = '' + mkdir src + tar xf $src -C src + cd src + ''; + + buildInputs = [ gtk2 openssl pcsclite pkgconfig opensc ]; + + buildPhase = '' + sed -i "s|opensc-pkcs11.so|${opensc}/lib/pkcs11/opensc-pkcs11.so|" Makefile + make plugin + ''; + + installPhase = '' + plugins=$out/lib/mozilla/plugins + mkdir -p $plugins + cp -a npesteid-firefox-plugin.so $plugins/ + rp=$(patchelf --print-rpath $plugins/npesteid-firefox-plugin.so) + patchelf --set-rpath "$rp:${opensc}/lib:${opensc}/lib/pkcs11" $plugins/npesteid-firefox-plugin.so + ''; + + passthru.mozillaPlugin = "/lib/mozilla/plugins"; + + dontStrip = true; + dontPatchELF = true; + + meta = with stdenv.lib; { + description = "Firefox ID card signing plugin"; + homepage = "http://www.id.ee/"; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; + }; +} diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix index f35e88ae89e..aed05f42503 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix @@ -76,11 +76,11 @@ stdenv.mkDerivation rec { cp opt/google/talkplugin/*.so $plugins for i in libnpgoogletalk.so libppgoogletalk.so libppo1d.so; do - patchelf --set-rpath "${makeLibraryPath [ stdenv.cc.cc xorg.libX11 ]}:${stdenv.cc.cc}/lib64" $plugins/$i + patchelf --set-rpath "${makeLibraryPath [ stdenv.cc.cc xorg.libX11 ]}:${stdenv.cc.cc.lib}/lib64" $plugins/$i done for i in libgoogletalkremoting.so libnpo1d.so; do - patchelf --set-rpath "$out/libexec/google/talkplugin/lib:${rpathPlugin}:${stdenv.cc.cc}/lib64" $plugins/$i + patchelf --set-rpath "$out/libexec/google/talkplugin/lib:${rpathPlugin}:${stdenv.cc.cc.lib}/lib64" $plugins/$i done mkdir -p $out/libexec/google/talkplugin @@ -88,7 +88,7 @@ stdenv.mkDerivation rec { patchelf \ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${rpathProgram}:${stdenv.cc.cc}/lib64" \ + --set-rpath "${rpathProgram}:${stdenv.cc.cc.lib}/lib64" \ $out/libexec/google/talkplugin/GoogleTalkPlugin # Generate an LD_PRELOAD wrapper to redirect execvp() calls to diff --git a/pkgs/applications/networking/browsers/vivaldi/default.nix b/pkgs/applications/networking/browsers/vivaldi/default.nix index 7c3c167cf32..2c6ba3f8929 100644 --- a/pkgs/applications/networking/browsers/vivaldi/default.nix +++ b/pkgs/applications/networking/browsers/vivaldi/default.nix @@ -10,25 +10,25 @@ }: let - archUrl = name: arch: "https://vivaldi.com/download/stable/${name}_${arch}.deb"; -in -stdenv.mkDerivation rec { - version = "1.0"; - debversion = "stable_1.0.435.40-1"; + version = "1.1"; + build = "453.47-1"; + fullVersion = "stable_${version}.${build}"; + + info = if stdenv.is64bit then { + arch = "amd64"; + sha256 = "09kadsi4ydjciq092i6linapqzjdzx915zqmz7vfq6w1yp9mqbwq"; + } else { + arch = "i386"; + sha256 = "0b5410phnkpg6sz0j345vdn0r6n89rm865bchqw8p4kx7pmy78z3"; + }; +in stdenv.mkDerivation rec { product = "vivaldi"; name = "${product}-${version}"; - src = if stdenv.system == "x86_64-linux" - then fetchurl { - url = archUrl "vivaldi-${debversion}" "amd64"; - sha256 = "12c051a40258a95f9594eed2f73fa5f591482ac2a41d5cf643811b1ea2a1efbf"; - } - else if stdenv.system == "i686-linux" - then fetchurl { - url = archUrl "vivaldi-${debversion}" "i386"; - sha256 = "6e0b84fba38211bab9a71bc10e97398fca77c0acd82791923c1d432b20846f0f"; - } - else throw "Vivaldi is not supported on ${stdenv.system} (only i686-linux and x86_64 linux are supported)"; + src = fetchurl { + inherit (info) sha256; + url = "https://downloads.vivaldi.com/stable/${product}-${fullVersion}_${info.arch}.deb"; + }; unpackPhase = '' ar vx ${src} @@ -40,12 +40,12 @@ stdenv.mkDerivation rec { libXi libXft libXcursor libXfixes libXScrnSaver libXcomposite libXdamage libXtst libXrandr atk alsaLib dbus_libs cups gtk gdk_pixbuf libexif ffmpeg libudev freetype fontconfig libXrender libuuid expat glib nss nspr - gstreamer libxml2 gst_plugins_base pango cairo gnome3.gconf + gstreamer libxml2 gst_plugins_base pango cairo gnome3.gconf patchelf ]; libPath = stdenv.lib.makeLibraryPath buildInputs - + stdenv.lib.optionalString (stdenv.system == "x86_64-linux") + + stdenv.lib.optionalString (stdenv.is64bit) (":" + stdenv.lib.makeSearchPathOutputs "lib64" ["lib"] buildInputs); buildPhase = '' @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { description = "A Browser for our Friends, powerful and personal"; homepage = "https://vivaldi.com"; license = licenses.unfree; - maintainers = with maintainers; [ otwieracz ]; + maintainers = with maintainers; [ otwieracz nequissimus ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/networking/copy-com/default.nix b/pkgs/applications/networking/copy-com/default.nix deleted file mode 100644 index 21dc2373977..00000000000 --- a/pkgs/applications/networking/copy-com/default.nix +++ /dev/null @@ -1,62 +0,0 @@ -{ stdenv, fetchurl, patchelf, fontconfig, freetype -, gcc, glib, libICE, libSM, libX11, libXext, libXrender }: - -let - arch = if stdenv.system == "x86_64-linux" then "x86_64" - else if stdenv.system == "i686-linux" then "x86" - else if stdenv.system == "armv6-linux" then "armv6h" - else throw "Copy.com client for: ${stdenv.system} not supported!"; - - interpreter = if stdenv.system == "x86_64-linux" then "ld-linux-x86-64.so.2" - else if stdenv.system == "i686-linux" then "ld-linux.so.2" - else if stdenv.system == "armv6-linux" then "ld-linux.so.2" - else throw "Copy.com client for: ${stdenv.system} not supported!"; - - appdir = "opt/copy"; - - libPackages = [ fontconfig freetype gcc.cc glib libICE libSM libX11 libXext - libXrender ]; - libPaths = stdenv.lib.concatStringsSep ":" - (map (path: "${path}/lib") libPackages); - -in stdenv.mkDerivation { - - name = "copy-com-3.2.01.0481"; - - src = fetchurl { - # Note: copy.com doesn't version this file. Annoying. - url = "https://copy.com/install/linux/Copy.tgz"; - sha256 = "0bpphm71mqpaiygs57kwa23nli0qm64fvgl1qh7fkxyqqabh4g7k"; - }; - - nativeBuildInputs = [ patchelf ]; - - phases = "unpackPhase installPhase"; - - installPhase = '' - mkdir -p $out/opt - cp -r ${arch} "$out/${appdir}" - - mkdir -p "$out/bin" - for binary in Copy{Agent,Console,Cmd}; do - binary="$out/${appdir}/$binary" - ln -sv "$binary" "$out/bin" - patchelf --set-interpreter ${stdenv.glibc.out}/lib/${interpreter} "$binary" - done - - RPATH=${libPaths}:$out/${appdir} - echo "Updating rpaths to $RPATH in:" - find "$out/${appdir}" -type f -a -perm -0100 \ - -print -exec patchelf --force-rpath --set-rpath "$RPATH" {} \; - ''; - - meta = with stdenv.lib; { - homepage = http://copy.com; - description = "Copy.com graphical & command-line clients"; - # Closed Source unfortunately. - license = licenses.unfree; - maintainers = with maintainers; [ nathan-gs nckx ]; - # NOTE: Copy.com itself only works on linux, so this is ok. - platforms = platforms.linux; - }; -} diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix index 698f379c09c..c9745a084c6 100644 --- a/pkgs/applications/networking/ftp/filezilla/default.nix +++ b/pkgs/applications/networking/ftp/filezilla/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext -, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla }: +, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }: -let version = "3.16.1"; in +let version = "3.17.0"; in stdenv.mkDerivation { name = "filezilla-${version}"; src = fetchurl { url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2"; - sha256 = "1a6xvpnsjpgdrxla0i2zag30hy825rfsl4ka9p0zj5za9j2ny11v"; + sha256 = "0vb5zqpvh0fi0a7nkz79cdmbzjk1cpmbyqx77nfkvd1kz1fcsqrp"; }; configureFlags = [ @@ -16,7 +16,7 @@ stdenv.mkDerivation { buildInputs = [ dbus gnutls wxGTK30 libidn tinyxml gettext pkgconfig xdg_utils gtk2 sqlite - pugixml libfilezilla ]; + pugixml libfilezilla nettle ]; meta = with stdenv.lib; { homepage = http://filezilla-project.org/; diff --git a/pkgs/applications/networking/instant-messengers/discord/default.nix b/pkgs/applications/networking/instant-messengers/discord/default.nix index 86b21f90ad9..0d6e6d40284 100644 --- a/pkgs/applications/networking/instant-messengers/discord/default.nix +++ b/pkgs/applications/networking/instant-messengers/discord/default.nix @@ -4,22 +4,22 @@ , libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, nspr, nss, pango , libudev }: -let version = "0.0.1"; in +let version = "0.0.3"; in stdenv.mkDerivation { name = "discord-${version}"; src = fetchurl { - url = "https://storage.googleapis.com/discord-developer/test/discord-canary-${version}.tar.gz"; - sha256 = "1skmwc84s4xqyc167qrplhy5ah06kwfa3d3rxiwi4c8rc55vdd0g"; + url = "https://cdn-canary.discordapp.com/apps/linux/${version}/discord-canary-${version}.tar.gz"; + sha256 = "1k1mnfkcx7183qbdc4qx1anngddqim969cribg9gzc7mixvj17ca"; }; libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.cc alsaLib atk cairo cups dbus expat fontconfig freetype gdk_pixbuf glib gnome.GConf gtk libnotify libX11 libXcomposite libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender - libXtst nspr nss pango libudev + libXtst nspr nss pango libudev.out ]; installPhase = '' @@ -35,12 +35,13 @@ stdenv.mkDerivation { ln -s $out/DiscordCanary $out/bin/ # Putting udev in the path won't work :( - ln -s ${libudev}/lib/libudev.so.1 $out + ln -s ${libudev.out}/lib/libudev.so.1 $out ''; meta = with stdenv.lib; { description = "All-in-one voice and text chat for gamers that’s free, secure, and works on both your desktop and phone"; homepage = "https://discordapp.com/"; + downloadPage = "https://github.com/crmarsh/discord-linux-bugs"; license = licenses.unfree; maintainers = [ maintainers.ldesgoui ]; platforms = [ "x86_64-linux" ]; diff --git a/pkgs/applications/networking/instant-messengers/hipchat/default.nix b/pkgs/applications/networking/instant-messengers/hipchat/default.nix index b57b3394eea..e35674052c0 100644 --- a/pkgs/applications/networking/instant-messengers/hipchat/default.nix +++ b/pkgs/applications/networking/instant-messengers/hipchat/default.nix @@ -36,7 +36,7 @@ let xcbutilkeysyms systemd mesa_noglu - ] + ":${stdenv.cc.cc}/lib64"; + ] + ":${stdenv.cc.cc.lib}/lib64"; src = if stdenv.system == "x86_64-linux" then diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix index 9f5c246ede6..bdc16d101f5 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { buildInputs = [ libotr pidgin intltool ]; meta = with stdenv.lib; { - homepage = https://otr.cypherpunks.ca/; + homepage = "https://otr.cypherpunks.ca/"; description = "Plugin for Pidgin 2.x which implements OTR Messaging"; license = licenses.gpl2; platforms = platforms.linux; diff --git a/pkgs/applications/networking/instant-messengers/pidgin/wrapper.nix b/pkgs/applications/networking/instant-messengers/pidgin/wrapper.nix index 7e637c767cf..cff0f0818ee 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/wrapper.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/wrapper.nix @@ -1,24 +1,17 @@ -{ stdenv, buildEnv, pidgin, makeWrapper, plugins }: +{ stdenv, symlinkJoin, pidgin, makeWrapper, plugins }: let extraArgs = map (x: x.wrapArgs or "") plugins; -drv = buildEnv { - name = "pidgin-with-plugins-" + (builtins.parseDrvName pidgin.name).version; +in symlinkJoin { + name = "pidgin-with-plugins-${pidgin.version}"; paths = [ pidgin ] ++ plugins; + buildInputs = [ makeWrapper ]; + postBuild = '' - # TODO: This could be avoided if buildEnv could be forced to create all directories - if [ -L $out/bin ]; then - rm $out/bin - mkdir $out/bin - for i in ${pidgin}/bin/*; do - ln -s $i $out/bin - done - fi wrapProgram $out/bin/pidgin \ --suffix-each PURPLE_PLUGIN_PATH ':' "$out/lib/purple-${pidgin.majorVersion} $out/lib/pidgin" \ ${toString extraArgs} ''; - }; -in stdenv.lib.overrideDerivation drv (x : { buildInputs = x.buildInputs ++ [ makeWrapper ]; }) +} diff --git a/pkgs/applications/networking/instant-messengers/qtox/default.nix b/pkgs/applications/networking/instant-messengers/qtox/default.nix index e08a112664a..d244c4d11c4 100644 --- a/pkgs/applications/networking/instant-messengers/qtox/default.nix +++ b/pkgs/applications/networking/instant-messengers/qtox/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, pkgconfig, libtoxcore-dev, openal, opencv, libsodium, libXScrnSaver, glib, gdk_pixbuf, gtk2, cairo, - pango, atk, qrencode, ffmpeg, filter-audio, makeWrapper, - qtbase, qtsvg, qttools, qttranslations, sqlcipher }: + pango, atk, qrencode, ffmpeg, filter-audio, makeQtWrapper, + qtbase, qtsvg, qttools, qmakeHook, qttranslations, sqlcipher }: let version = "1.3.0"; @@ -22,11 +22,11 @@ stdenv.mkDerivation rec { [ libtoxcore-dev openal opencv libsodium filter-audio qtbase qttools qtsvg libXScrnSaver glib gtk2 cairo - pango atk qrencode ffmpeg qttranslations makeWrapper + pango atk qrencode ffmpeg qttranslations makeQtWrapper sqlcipher ]; - nativeBuildInputs = [ pkgconfig ]; + nativeBuildInputs = [ pkgconfig qmakeHook ]; preConfigure = '' # patch .pro file for proper set of the git hash @@ -42,16 +42,10 @@ stdenv.mkDerivation rec { export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags sqlcipher)" ''; - configurePhase = '' - runHook preConfigure - qmake - ''; - installPhase = '' mkdir -p $out/bin cp qtox $out/bin - wrapProgram $out/bin/qtox \ - --prefix QT_PLUGIN_PATH : ${qtsvg}/lib/qt5/plugins + wrapQtProgram $out/bin/qtox ''; enableParallelBuilding = true; diff --git a/pkgs/applications/networking/instant-messengers/ricochet/default.nix b/pkgs/applications/networking/instant-messengers/ricochet/default.nix index 81e8d1b76a9..52da021000d 100644 --- a/pkgs/applications/networking/instant-messengers/ricochet/default.nix +++ b/pkgs/applications/networking/instant-messengers/ricochet/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgconfig, makeDesktopItem, unzip , qtbase, qttools, makeQtWrapper, qtmultimedia, qtquick1, qtquickcontrols -, openssl, protobuf +, openssl, protobuf, qmakeHook }: stdenv.mkDerivation rec { @@ -27,15 +27,13 @@ stdenv.mkDerivation rec { openssl protobuf ]; - nativeBuildInputs = [ pkgconfig makeQtWrapper ]; + nativeBuildInputs = [ pkgconfig makeQtWrapper qmakeHook ]; preConfigure = '' export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags openssl)" ''; - configureScript = "qmake"; - dontAddPrefix = true; - configureFlags = [ "PREFIX=$(out)" "DEFINES+=RICOCHET_NO_PORTABLE" ]; + qmakeFlags = [ "DEFINES+=RICOCHET_NO_PORTABLE" ]; installPhase = '' mkdir -p $out/bin diff --git a/pkgs/applications/networking/instant-messengers/skype/default.nix b/pkgs/applications/networking/instant-messengers/skype/default.nix index 2f2dba18e49..5bb2121b1fd 100644 --- a/pkgs/applications/networking/instant-messengers/skype/default.nix +++ b/pkgs/applications/networking/instant-messengers/skype/default.nix @@ -38,13 +38,8 @@ stdenv.mkDerivation rec { mkdir -p $out/{libexec/skype/,bin} cp -r * $out/libexec/skype/ - fullPath= - for i in $nativeBuildInputs; do - fullPath=$fullPath''${fullPath:+:}$i/lib - done - patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "$fullPath" $out/libexec/skype/skype + --set-rpath "${lib.makeLibraryPath buildInputs}" $out/libexec/skype/skype cat > $out/bin/skype << EOF #!${stdenv.shell} diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix index d0f0dd3149c..1f2b5ebe7fa 100644 --- a/pkgs/applications/networking/instant-messengers/slack/default.nix +++ b/pkgs/applications/networking/instant-messengers/slack/default.nix @@ -36,7 +36,7 @@ let xorg.libXrandr xorg.libXrender xorg.libXtst - ] + ":${stdenv.cc.cc}/lib64"; + ] + ":${stdenv.cc.cc.lib}/lib64"; src = if stdenv.system == "x86_64-linux" then diff --git a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix index 07bfcf3a03e..bc517cadf52 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix @@ -3,7 +3,7 @@ , qtimageformats, qtgraphicaleffects , telegram-qml, libqtelegram-aseman-edition , gst_all_1 -, makeQtWrapper }: +, makeQtWrapper, qmakeHook }: stdenv.mkDerivation rec { name = "cutegram-${meta.version}"; @@ -20,16 +20,10 @@ stdenv.mkDerivation rec { telegram-qml libqtelegram-aseman-edition ] ++ (with gst_all_1; [ gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly ]); - nativeBuildInputs = [ makeQtWrapper ]; + nativeBuildInputs = [ makeQtWrapper qmakeHook ]; enableParallelBuilding = true; - configurePhase = '' - runHook preConfigure - qmake -r PREFIX=$out - runHook postConfigure - ''; - fixupPhase = '' wrapQtProgram $out/bin/cutegram \ --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" 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 index 470724876ed..322c40afc7d 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub -, qtbase, qtmultimedia, qtquick1 }: +, qtbase, qtmultimedia, qtquick1, qmakeHook }: stdenv.mkDerivation rec { name = "libqtelegram-aseman-edition-${meta.version}"; @@ -12,6 +12,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ qtbase qtmultimedia qtquick1 ]; + nativeBuildInputs = [ qmakeHook ]; enableParallelBuilding = true; patchPhase = '' @@ -19,12 +20,6 @@ stdenv.mkDerivation rec { substituteInPlace libqtelegram-ae.pro --replace "/\$\$LIB_PATH" "" ''; - configurePhase = '' - runHook preConfigure - qmake -r PREFIX=$out - runHook postConfigure - ''; - meta = with stdenv.lib; { version = "6.1"; description = "A fork of libqtelegram by Aseman, using qmake"; diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix index 77a0d9ee0aa..37c0fd6a175 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix @@ -1,7 +1,7 @@ { stdenv, lib, fetchFromGitHub, fetchgit, qtbase, qtimageformats , breakpad, ffmpeg, openalSoft, openssl, zlib, libexif, lzma, libopus , gtk2, glib, cairo, pango, gdk_pixbuf, atk, libappindicator-gtk2 -, libunity, dee, libdbusmenu-glib, libva +, libunity, dee, libdbusmenu-glib, libva, qmakeHook , pkgconfig, libxcb, xcbutilwm, xcbutilimage, xcbutilkeysyms , libxkbcommon, libpng, libjpeg, freetype, harfbuzz, pcre16 @@ -12,26 +12,26 @@ let system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; in stdenv.mkDerivation rec { name = "telegram-desktop-${version}"; - version = "0.9.33"; + version = "0.9.44"; qtVersion = lib.replaceStrings ["."] ["_"] qtbase.version; src = fetchFromGitHub { owner = "telegramdesktop"; repo = "tdesktop"; rev = "v${version}"; - sha256 = "020vwm7h22951v9zh457d82qy5ifp746vwishkvb16h1vwr1qx4s"; + sha256 = "0ydd5yhy2nq4n6x59ajb6c4d0blyj6gm7hkx4hfrx2a88iksc5rm"; }; tgaur = fetchgit { url = "https://aur.archlinux.org/telegram-desktop.git"; - rev = "df47a864282959b103a08b65844e9088e012fdb3"; - sha256 = "1v1dbi8yiaf2hgghniykm5qbnda456xj3zfjnbqysn41f5cn40h4"; + rev = "f8907d1ccaf8345c06232238342921213270e3d8"; + sha256 = "1fsp098ykpf5gynn3lq3qcj3a47bkjfr0l96pymmmfd4a2s1690v"; }; buildInputs = [ breakpad ffmpeg openalSoft openssl zlib libexif lzma libopus gtk2 glib libappindicator-gtk2 libunity cairo pango gdk_pixbuf atk - dee libdbusmenu-glib libva + dee libdbusmenu-glib libva qtbase qmakeHook # Qt dependencies libxcb xcbutilwm xcbutilimage xcbutilkeysyms libxkbcommon libpng libjpeg freetype harfbuzz pcre16 xproto libX11 @@ -73,10 +73,9 @@ in stdenv.mkDerivation rec { qtSrcs = qtbase.srcs ++ [ qtimageformats.src ]; qtPatches = qtbase.patches; - buildCommand = '' - # We don't use nativeBuildInputs to avoid adding system Qt 5 libraries to various paths. - export PATH="${qtbase}/bin:$PATH" + dontUseQmakeConfigure = true; + buildCommand = '' unpackPhase cd "$sourceRoot" patchPhase @@ -89,6 +88,17 @@ in stdenv.mkDerivation rec { -e 's,-flto ,,g' echo "Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)" >> Telegram/SourceFiles/stdafx.cpp + ( mkdir -p Linux/DebugIntermediateStyle + cd Linux/DebugIntermediateStyle + qmake CONFIG+=debug ../../Telegram/MetaStyle.pro + buildPhase + ) + ( mkdir -p Linux/DebugIntermediateLang + cd Linux/DebugIntermediateLang + qmake CONFIG+=debug ../../Telegram/MetaLang.pro + buildPhase + ) + ( mkdir -p ../Libraries cd ../Libraries for i in $qtSrcs; do @@ -122,17 +132,6 @@ in stdenv.mkDerivation rec { installPhase ) - ( mkdir -p Linux/DebugIntermediateStyle - cd Linux/DebugIntermediateStyle - qmake CONFIG+=debug ../../Telegram/MetaStyle.pro - buildPhase - ) - ( mkdir -p Linux/DebugIntermediateLang - cd Linux/DebugIntermediateLang - qmake CONFIG+=debug ../../Telegram/MetaLang.pro - buildPhase - ) - ( mkdir -p Linux/ReleaseIntermediate cd Linux/ReleaseIntermediate qmake $qmakeFlags ../../Telegram/Telegram.pro @@ -148,7 +147,7 @@ in stdenv.mkDerivation rec { sed "s,/usr/bin,$out/bin,g" $tgaur/telegramdesktop.desktop > $out/share/applications/telegramdesktop.desktop sed "s,/usr/bin,$out/bin,g" $tgaur/tg.protocol > $out/share/kde4/services/tg.protocol for icon_size in 16 32 48 64 128 256 512; do - install -Dm644 "Telegram/SourceFiles/art/icon''${icon_size}.png" "$out/share/icons/hicolor/''${icon_size}x''${icon_size}/apps/telegram-desktop.png" + install -Dm644 "Telegram/Resources/art/icon''${icon_size}.png" "$out/share/icons/hicolor/''${icon_size}x''${icon_size}/apps/telegram-desktop.png" done fixupPhase diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix index 5412b0db4d6..854648d9786 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub -, qtbase, qtmultimedia, qtquick1 +, qtbase, qtmultimedia, qtquick1, qmakeHook , libqtelegram-aseman-edition }: stdenv.mkDerivation rec { @@ -13,6 +13,7 @@ stdenv.mkDerivation rec { }; propagatedBuildInputs = [ qtbase qtmultimedia qtquick1 libqtelegram-aseman-edition ]; + nativeBuildInputs = [ qmakeHook ]; enableParallelBuilding = true; patchPhase = '' @@ -20,11 +21,7 @@ stdenv.mkDerivation rec { substituteInPlace telegramqml.pro --replace "INSTALL_HEADERS_PREFIX/telegramqml" "INSTALL_HEADERS_PREFIX" ''; - configurePhase = '' - runHook preConfigure - qmake -r PREFIX=$out BUILD_MODE+=lib - runHook postConfigure - ''; + qmakeFlags = [ "BUILD_MODE+=lib" ]; meta = with stdenv.lib; { version = "0.9.2"; diff --git a/pkgs/applications/networking/instant-messengers/vacuum/default.nix b/pkgs/applications/networking/instant-messengers/vacuum/default.nix index 5148992779a..af2166aafe2 100644 --- a/pkgs/applications/networking/instant-messengers/vacuum/default.nix +++ b/pkgs/applications/networking/instant-messengers/vacuum/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchurl - , qt4, openssl + , qt4, qmake4Hook, openssl , xproto, libX11, libXScrnSaver, scrnsaverproto , xz, zlib }: @@ -16,8 +16,10 @@ stdenv.mkDerivation rec { qt4 openssl xproto libX11 libXScrnSaver scrnsaverproto xz zlib ]; - configurePhase = '' - qmake INSTALL_PREFIX=$out -recursive vacuum.pro + nativeBuildInputs = [ qmake4Hook ]; + + preConfigure = '' + qmakeFlags="$qmakeFlags INSTALL_PREFIX=$out" ''; hardeningDisable = [ "format" ]; diff --git a/pkgs/applications/networking/irc/communi/default.nix b/pkgs/applications/networking/irc/communi/default.nix index 4d2605acdc9..4a8dc44dbf9 100644 --- a/pkgs/applications/networking/irc/communi/default.nix +++ b/pkgs/applications/networking/irc/communi/default.nix @@ -1,4 +1,4 @@ -{ fetchgit, libcommuni, makeQtWrapper, qt5, stdenv }: +{ fetchgit, libcommuni, makeQtWrapper, qtbase, qmakeHook, stdenv }: stdenv.mkDerivation rec { name = "communi-${version}"; @@ -10,23 +10,22 @@ stdenv.mkDerivation rec { sha256 = "0gk6gck09zb44qfsal7bs4ln2vl9s9x3vfxh7jvfc7mmf7l3sspd"; }; - nativeBuildInputs = [ makeQtWrapper ]; + nativeBuildInputs = [ makeQtWrapper qmakeHook ]; - buildInputs = [ libcommuni qt5.qtbase ]; + buildInputs = [ libcommuni qtbase ]; enableParallelBuild = true; - configurePhase = '' - runHook preConfigure + preConfigure = '' export QMAKEFEATURES=${libcommuni}/features - qmake -r \ + qmakeFlags="$qmakeFlags \ COMMUNI_INSTALL_PREFIX=$out \ COMMUNI_INSTALL_BINS=$out/bin \ COMMUNI_INSTALL_PLUGINS=$out/lib/communi/plugins \ COMMUNI_INSTALL_ICONS=$out/share/icons/hicolor \ COMMUNI_INSTALL_DESKTOP=$out/share/applications \ COMMUNI_INSTALL_THEMES=$out/share/communi/themes - runHook postConfigure + " ''; postInstall = '' diff --git a/pkgs/applications/networking/linssid/default.nix b/pkgs/applications/networking/linssid/default.nix index 4cbc5c8c796..d35c2e100e4 100644 --- a/pkgs/applications/networking/linssid/default.nix +++ b/pkgs/applications/networking/linssid/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qtbase, qtsvg, pkgconfig, boost, wirelesstools, iw, qwt6 }: +{ stdenv, fetchurl, qtbase, qtsvg, qmakeHook, pkgconfig, boost, wirelesstools, iw, qwt6 }: stdenv.mkDerivation rec { name = "linssid-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "13d35rlcjncd8lx3khkgn9x8is2xjd5fp6ns5xsn3w6l4xj9b4gl"; }; - buildInputs = [ qtbase qtsvg pkgconfig boost qwt6 ]; + buildInputs = [ qtbase qtsvg pkgconfig boost qwt6 qmakeHook ]; patches = [ ./0001-unbundled-qwt.patch ]; @@ -27,12 +27,6 @@ stdenv.mkDerivation rec { rm -fr qwt-lib ''; - configurePhase = '' - runHook preConfigure - qmake linssid.pro - runHook postConfigure - ''; - meta = with stdenv.lib; { description = "Graphical wireless scanning for Linux"; homepage = http://sourceforge.net/projects/linssid/; diff --git a/pkgs/applications/networking/mailreaders/sylpheed/default.nix b/pkgs/applications/networking/mailreaders/sylpheed/default.nix index ac7846836ff..65c1001ae78 100644 --- a/pkgs/applications/networking/mailreaders/sylpheed/default.nix +++ b/pkgs/applications/networking/mailreaders/sylpheed/default.nix @@ -11,14 +11,13 @@ with stdenv.lib; assert sslSupport -> openssl != null; assert gpgSupport -> gpgme != null; -let version = "3.4.1"; in - -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "sylpheed-${version}"; + version = "3.5.0"; src = fetchurl { - url = "http://sylpheed.sraoss.jp/sylpheed/v3.4/sylpheed-${version}.tar.bz2"; - sha256 = "11wpifvn8a0p4dqmvi7r61imqkgm6rjjp3h057c344vny37livbx"; + url = "http://sylpheed.sraoss.jp/sylpheed/v3.5/${name}.tar.bz2"; + sha256 = "0p50cr9h8b7cv1ayxhqxpj3kv0b7k9dga7lmmfb1lvyagg8n42sa"; }; buildInputs = diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix index 646e3dfdd0b..53fa7146257 100644 --- a/pkgs/applications/networking/mumble/default.nix +++ b/pkgs/applications/networking/mumble/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, fetchgit, pkgconfig -, qt4, qt5, avahi, boost, libopus, libsndfile, protobuf, speex, libcap +, qt4, qmake4Hook, qt5, avahi, boost, libopus, libsndfile, protobuf, speex, libcap , alsaLib , jackSupport ? false, libjack2 ? null , speechdSupport ? false, speechd ? null @@ -20,13 +20,13 @@ let patches = optional jackSupport ./mumble-jack-support.patch; nativeBuildInputs = [ pkgconfig ] - ++ { qt4 = [ qt4 ]; qt5 = [ qt5.qtbase ]; }."qt${toString source.qtVersion}" + ++ { qt4 = [ qmake4Hook ]; qt5 = [ qt5.qmakeHook ]; }."qt${toString source.qtVersion}" ++ (overrides.nativeBuildInputs or [ ]); buildInputs = [ boost protobuf avahi ] ++ { qt4 = [ qt4 ]; qt5 = [ qt5.qtbase ]; }."qt${toString source.qtVersion}" ++ (overrides.buildInputs or [ ]); - configureFlags = [ + qmakeFlags = [ "CONFIG+=shared" "CONFIG+=no-g15" "CONFIG+=packaged" @@ -39,10 +39,8 @@ let ++ optional jackSupport "CONFIG+=no-oss CONFIG+=no-alsa CONFIG+=jackaudio" ++ (overrides.configureFlags or [ ]); - configurePhase = '' - runHook preConfigure - qmake $configureFlags DEFINES+="PLUGIN_PATH=$out/lib" - runHook postConfigure + preConfigure = '' + qmakeFlags="$qmakeFlags DEFINES+=PLUGIN_PATH=$out/lib" ''; makeFlags = [ "release" ]; @@ -82,10 +80,9 @@ let "CONFIG+=no-server" ]; - installPhase = '' - cp scripts/mumble-overlay $out/bin - sed -i "s,/usr/lib,$out/lib,g" $out/bin/mumble-overlay + NIX_CFLAGS_COMPILE = optional speechdSupport "-I${speechd}/include/speech-dispatcher"; + installPhase = '' mkdir -p $out/share/applications cp scripts/mumble.desktop $out/share/applications @@ -110,44 +107,25 @@ let }; stableSource = rec { - version = "1.2.10"; + version = "1.2.15"; qtVersion = 4; src = fetchurl { url = "https://github.com/mumble-voip/mumble/releases/download/${version}/mumble-${version}.tar.gz"; - sha256 = "012vm0xf84x13414jlsx964c5a1nwnbn41jnspkciajlxxipldn6"; + sha256 = "1yjywzybgq23ry5s2yihggs13ffrphhwl6rlp6lq79rkwvafa9v5"; }; }; gitSource = rec { - version = "1.3.0-git-2015-11-08"; + version = "1.3.0-git-2016-04-10"; qtVersion = 5; + # Needs submodules src = fetchgit { url = "https://github.com/mumble-voip/mumble"; - rev = "72038f6aa038f5964e2bba5a09d3d391d4680e5f"; - sha256 = "03978b85f7y0bffl8vwkmakjnxxjqapfz3pn0b8zf3b1ppwjy9g4"; + rev = "0502fa67b036bae9f07a586d9f05a8bf74c24291"; + sha256 = "073v8nway17j1n1lm70x508722b1q3vb6h4fvmcbbma3d22y1h45"; }; - - # TODO: Remove fetchgit as it requires git - /*src = fetchFromGitHub { - owner = "mumble-voip"; - repo = "mumble"; - rev = "13e494c60beb20748eeb8be126b27e1226d168c8"; - sha256 = "024my6wzahq16w7fjwrbksgnq98z4jjbdyy615kfyd9yk2qnpl80"; - }; - - theme = fetchFromGitHub { - owner = "mumble-voip"; - repo = "mumble-theme"; - rev = "16b61d958f131ca85ab0f601d7331601b63d8f30"; - sha256 = "0rbh825mwlh38j6nv2sran2clkiwvzj430mhvkdvzli9ysjxgsl3"; - }; - - prePatch = '' - rmdir themes/Mumble - ln -s ${theme} themes/Mumble - '';*/ }; in { mumble = client stableSource; diff --git a/pkgs/applications/networking/mumble/overlay.nix b/pkgs/applications/networking/mumble/overlay.nix new file mode 100644 index 00000000000..23f78ff29b3 --- /dev/null +++ b/pkgs/applications/networking/mumble/overlay.nix @@ -0,0 +1,24 @@ +{ stdenv, lib, which, file, mumble, mumble_i686 +}: + +let + binPath = lib.makeBinPath [ which file ]; +in stdenv.mkDerivation { + name = "mumble-overlay-${mumble.version}"; + + inherit (mumble) src; + + phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; + + installPhase = '' + mkdir -p $out/lib + ln -s ${mumble}/lib/libmumble.so.1.* $out/lib/libmumble.so.1 + ${lib.optionalString (mumble_i686 != null) '' + mkdir -p $out/lib32 + ln -s ${mumble_i686}/lib/libmumble.so.1.* $out/lib32/libmumble.so.1 + ''} + install -Dm755 scripts/mumble-overlay $out/bin/mumble-overlay + sed -i "s,/usr/lib,$out/lib,g" $out/bin/mumble-overlay + sed -i '2iPATH="${binPath}:$PATH"' $out/bin/mumble-overlay + ''; +} diff --git a/pkgs/applications/networking/ostinato/default.nix b/pkgs/applications/networking/ostinato/default.nix index 1d5986dbfa6..02209645045 100644 --- a/pkgs/applications/networking/ostinato/default.nix +++ b/pkgs/applications/networking/ostinato/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchgit, fetchurl, writeText -, qt4, protobuf, libpcap +, qt4, qmake4Hook, protobuf, libpcap , wireshark, gzip, diffutils, gawk }: @@ -18,10 +18,9 @@ stdenv.mkDerivation rec { buildInputs = [ qt4 protobuf libpcap ]; - patches = [ ./drone_ini.patch ]; + nativeBuildInputs = [ qmake4Hook ]; - configurePhase = "qmake PREFIX=$out" - + stdenv.lib.optionalString stdenv.isDarwin " -spec macx-g++"; + patches = [ ./drone_ini.patch ]; postInstall = '' cat > $out/bin/ostinato.ini < (dbus_libs != null); with stdenv.lib; stdenv.mkDerivation rec { name = "qbittorrent-${version}"; - version = "3.3.3"; + version = "3.3.4"; src = fetchurl { url = "mirror://sourceforge/qbittorrent/${name}.tar.xz"; - sha256 = "0lyv230vqwb77isjqm6fwwgv8hdap88zir9yrccj0qxj7zf8p3cw"; + sha256 = "1f4impsjck8anl39pwypsck7j6xw0dl18qd0b4xi23r45jvx9l60"; }; - nativeBuildInputs = [ pkgconfig which ]; + nativeBuildInputs = [ pkgconfig which qmakeHook ]; buildInputs = [ boost libtorrentRasterbar qt5.qtbase qt5.qttools ] ++ optional guiSupport dbus_libs; + dontUseQmakeConfigure = true; + + preConfigure = '' + export QT_QMAKE="$qtOut/bin" + ''; + configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" "--with-boost=${boost.dev}" diff --git a/pkgs/applications/networking/p2p/retroshare/0.6.nix b/pkgs/applications/networking/p2p/retroshare/0.6.nix index 020d0017053..67028fb5dec 100644 --- a/pkgs/applications/networking/p2p/retroshare/0.6.nix +++ b/pkgs/applications/networking/p2p/retroshare/0.6.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, cmake, qt, libupnp, gpgme, gnome3, glib, libssh, pkgconfig, protobuf, bzip2 +{ stdenv, fetchFromGitHub, cmake, qt4, qmake4Hook, libupnp, gpgme, gnome3, glib, libssh, pkgconfig, protobuf, bzip2 , libXScrnSaver, speex, curl, libxml2, libxslt, sqlcipher, libmicrohttpd, opencv }: stdenv.mkDerivation { @@ -11,7 +11,7 @@ stdenv.mkDerivation { sha256 = "189qndkfq9kgv3qi3wx8ivla4j8fxr4iv7c8y9rjrjaz8jwdkn5x"; }; - NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/glib-2.0 -I${glib.dev}/lib/glib-2.0/include -I${libxml2.dev}/include/libxml2 -I${sqlcipher}/include/sqlcipher"; + NIX_CFLAGS_COMPILE = [ "-I${glib.dev}/include/glib-2.0" "-I${glib.dev}/lib/glib-2.0/include" "-I${libxml2.dev}/include/libxml2" "-I${sqlcipher}/include/sqlcipher" ]; patchPhase = '' # Fix build error @@ -29,11 +29,11 @@ stdenv.mkDerivation { # retroshare-gui/src/retroshare-gui.pro \ # retroshare-nogui/src/retroshare-nogui.pro - buildInputs = [ speex qt libupnp gpgme gnome3.libgnome_keyring glib libssh pkgconfig + buildInputs = [ speex qt4 libupnp gpgme gnome3.libgnome_keyring glib libssh pkgconfig qmake4Hook protobuf bzip2 libXScrnSaver curl libxml2 libxslt sqlcipher libmicrohttpd opencv ]; - configurePhase = '' - qmake PREFIX=$out DESTDIR=$out RetroShare.pro + preConfigure = '' + qmakeFlags="$qmakeFlags DESTDIR=$out" ''; enableParallelBuilding = true; diff --git a/pkgs/applications/networking/p2p/retroshare/default.nix b/pkgs/applications/networking/p2p/retroshare/default.nix index e7fe79d66a5..314d0557e9f 100644 --- a/pkgs/applications/networking/p2p/retroshare/default.nix +++ b/pkgs/applications/networking/p2p/retroshare/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cmake, qt, libupnp, gpgme, gnome3, glib, libssh, pkgconfig, protobuf, bzip2 +{ stdenv, fetchurl, cmake, qt4, qmake4Hook, libupnp, gpgme, gnome3, glib, libssh, pkgconfig, protobuf, bzip2 , libXScrnSaver, speex, curl, libxml2, libxslt }: stdenv.mkDerivation { @@ -9,7 +9,7 @@ stdenv.mkDerivation { sha256 = "0l2n4pr1hq66q6qa073hrdx3s3d7iw54z8ay1zy82zhk2rwhsavp"; }; - NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/glib-2.0 -I${glib.dev}/lib/glib-2.0/include -I${libxml2.dev}/include/libxml2"; + NIX_CFLAGS_COMPILE = [ "-I${glib.dev}/include/glib-2.0" "-I${glib.dev}/lib/glib-2.0/include" "-I${libxml2.dev}/include/libxml2" ]; patchPhase = '' sed -i 's/UpnpString_get_String(es_event->PublisherUrl)/es_event->PublisherUrl/' \ @@ -22,13 +22,13 @@ stdenv.mkDerivation { libretroshare/src/rsserver/rsinit.cc ''; - buildInputs = [ speex qt libupnp gpgme gnome3.libgnome_keyring glib libssh pkgconfig + buildInputs = [ speex qt4 qmake4Hook libupnp gpgme gnome3.libgnome_keyring glib libssh pkgconfig protobuf bzip2 libXScrnSaver curl libxml2 libxslt ]; sourceRoot = "retroshare-0.5.5/src"; - configurePhase = '' - qmake PREFIX=$out DESTDIR=$out RetroShare.pro + preConfigure = '' + qmakeFlags="$qmakeFlags DESTDIR=$out" ''; postInstall = '' diff --git a/pkgs/applications/networking/remote/x2goclient/default.nix b/pkgs/applications/networking/remote/x2goclient/default.nix index 02a25b9a270..09d4cf8dac5 100644 --- a/pkgs/applications/networking/remote/x2goclient/default.nix +++ b/pkgs/applications/networking/remote/x2goclient/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cups, libssh, libXpm, nxproxy, openldap, makeWrapper, qt4 }: +{ stdenv, fetchurl, cups, libssh, libXpm, nxproxy, openldap, makeWrapper, qt4, qmake4Hook }: stdenv.mkDerivation rec { name = "x2goclient-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ cups libssh libXpm nxproxy openldap qt4 ]; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ makeWrapper qmake4Hook ]; patchPhase = '' substituteInPlace Makefile \ @@ -19,7 +19,9 @@ stdenv.mkDerivation rec { --replace "-o root -g root" "" ''; - makeFlags = [ "PREFIX=$(out)" "ETCDIR=$(out)/etc" ]; + preConfigure = '' + qmakeFlags="$qmakeFlags ETCDIR=$out/etc" + ''; enableParallelBuilding = true; diff --git a/pkgs/applications/networking/seafile-client/default.nix b/pkgs/applications/networking/seafile-client/default.nix index 108135cea37..555667c035c 100644 --- a/pkgs/applications/networking/seafile-client/default.nix +++ b/pkgs/applications/networking/seafile-client/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { - version = "4.4.2"; + version = "5.0.7"; name = "seafile-client-${version}"; src = fetchurl { url = "https://github.com/haiwen/seafile-client/archive/v${version}.tar.gz"; - sha256 = "0aj39xiayibxp3vcrwi58pn51h9vcsy2z04q8jm17qadmk9dzyw6"; + sha256 = "ae6975bc1adf45d09cf9f6332ceac7cf285f8191f6cf50c6291ed45f8cf4ffa5"; }; buildInputs = [ pkgconfig cmake qt4 seafile-shared makeWrapper ]; diff --git a/pkgs/applications/networking/sync/rsync/base.nix b/pkgs/applications/networking/sync/rsync/base.nix index 86b90ea22ef..a95835610d5 100644 --- a/pkgs/applications/networking/sync/rsync/base.nix +++ b/pkgs/applications/networking/sync/rsync/base.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl }: rec { - version = "3.2.1"; + version = "3.1.2"; src = fetchurl { # signed with key 0048 C8B0 26D4 C96F 0E58 9C2F 6C85 9FB1 4B96 A8C5 url = "mirror://samba/rsync/src/rsync-${version}.tar.gz"; diff --git a/pkgs/applications/office/beancount/default.nix b/pkgs/applications/office/beancount/default.nix new file mode 100644 index 00000000000..8811183dfc8 --- /dev/null +++ b/pkgs/applications/office/beancount/default.nix @@ -0,0 +1,43 @@ +{ stdenv, fetchhg, pkgs, pythonPackages }: + +pythonPackages.buildPythonApplication rec { + version = "2016-04-10-b5721f1c6f01bd168a5781652e5e3167f7f8ceb3"; + name = "beancount-${version}"; + namePrefix = ""; + + src = fetchhg { + url = "https://bitbucket.org/blais/beancount"; + rev = "b5721f1c6f01bd168a5781652e5e3167f7f8ceb3"; + sha256 = "10nv3p9cix7yp23a9hnq5163rpl8cfs3hv75h90ld57dc24nxzn2"; + }; + + buildInputs = with pythonPackages; [ nose ]; + + checkPhase = '' + nosetests $out + ''; + + propagatedBuildInputs = with pythonPackages; [ + beautifulsoup4 + bottle + chardet + dateutil + google_api_python_client + lxml + ply + python_magic + ]; + + meta = { + homepage = http://furius.ca/beancount/; + description = "double-entry bookkeeping computer language"; + longDescription = '' + A double-entry bookkeeping computer language that lets you define + financial transaction records in a text file, read them in memory, + generate a variety of reports from them, and provides a web interface. + ''; + license = stdenv.lib.licenses.gpl2; + maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ]; + }; +} + diff --git a/pkgs/applications/office/libreoffice/libreoffice-srcs-still.nix b/pkgs/applications/office/libreoffice/libreoffice-srcs-still.nix new file mode 100644 index 00000000000..a70d5a7c77c --- /dev/null +++ b/pkgs/applications/office/libreoffice/libreoffice-srcs-still.nix @@ -0,0 +1,523 @@ +[ +{ + name = "libabw-0.1.1.tar.bz2"; + md5 = "7a3815b506d064313ba309617b6f5a0b"; + brief = true; +} +{ + name = "commons-codec-1.6-src.tar.gz"; + md5 = "2e482c7567908d334785ce7d69ddfff7"; + brief = false; +} +{ + name = "commons-httpclient-3.1-src.tar.gz"; + md5 = "2c9b0f83ed5890af02c0df1c1776f39b"; + brief = false; +} +{ + name = "commons-lang-2.4-src.tar.gz"; + md5 = "625ff5f2f968dd908bca43c9469d6e6b"; + brief = false; +} +{ + name = "commons-logging-1.2-src.tar.gz"; + md5 = "ce977548f1cbf46918e93cd38ac35163"; + brief = true; +} +{ + name = "apr-1.4.8.tar.gz"; + md5 = "eff9d741b0999a9bbab96862dd2a2a3d"; + brief = true; +} +{ + name = "apr-util-1.5.3.tar.gz"; + md5 = "71a11d037240b292f824ba1eb537b4e3"; + brief = true; +} +{ + name = "boost_1_55_0.tar.bz2"; + md5 = "d6eef4b4cacb2183f2bf265a5a03a354"; + brief = false; +} +{ + name = "bsh-2.0b5-src.zip"; + md5 = "ec1941a74d3ef513c4ce57a9092b74e1"; + brief = false; +} +{ + name = "cairo-1.10.2.tar.gz"; + md5 = "f101a9e88b783337b20b2e26dfd26d5f"; + brief = false; +} +{ + name = "libcdr-0.1.1.tar.bz2"; + md5 = "b33fd0be3befdd1b37777e08ce058bd9"; + brief = true; +} +{ + name = "clucene-core-2.3.3.4.tar.gz"; + md5 = "48d647fbd8ef8889e5a7f422c1bfda94"; + brief = false; +} +{ + name = "libcmis-0.5.0.tar.gz"; + md5 = "5821b806a98e6c38370970e682ce76e8"; + brief = false; +} +{ + name = "CoinMP-1.7.6.tgz"; + md5 = "1cce53bf4b40ae29790d2c5c9f8b1129"; + brief = true; +} +{ + name = "collada2gltf-master-cb1d97788a.tar.bz2"; + md5 = "4b87018f7fff1d054939d19920b751a0"; + brief = false; +} +{ + name = "cppunit-1.13.2.tar.gz"; + md5 = "d1c6bdd5a76c66d2c38331e2d287bc01"; + brief = true; +} +{ + name = "converttexttonumber-1-5-0.oxt"; + md5 = "1f467e5bb703f12cbbb09d5cf67ecf4a"; + brief = false; +} +{ + name = "curl-7.43.0.tar.bz2"; + md5 = "11bddbb452a8b766b932f859aaeeed39"; + brief = true; +} +{ + name = "libe-book-0.1.2.tar.bz2"; + md5 = "6b48eda57914e6343efebc9381027b78"; + brief = true; +} +{ + name = "epm-3.7.tar.gz"; + md5 = "3ade8cfe7e59ca8e65052644fed9fca4"; + brief = false; +} +{ + name = "libetonyek-0.1.3.tar.bz2"; + md5 = "e5947373dd7834f27e93f1636faa419f"; + brief = true; +} +{ + name = "expat-2.1.0.tar.gz"; + md5 = "dd7dab7a5fea97d2a6a43f511449b7cd"; + brief = false; +} +{ + name = "Firebird-2.5.2.26540-0.tar.bz2"; + md5 = "21154d2004e025c8a3666625b0357bb5"; + brief = true; +} +{ + name = "fontconfig-2.8.0.tar.gz"; + md5 = "77e15a92006ddc2adbb06f840d591c0e"; + brief = false; +} +{ + name = "crosextrafonts-20130214.tar.gz"; + md5 = "368f114c078f94214a308a74c7e991bc"; + brief = false; +} +{ + name = "crosextrafonts-carlito-20130920.tar.gz"; + md5 = "c74b7223abe75949b4af367942d96c7a"; + brief = false; +} +{ + name = "dejavu-fonts-ttf-2.34.zip"; + md5 = "a4e565e220b5de082c23995e256e3c12"; + brief = false; +} +{ + name = "gentiumbasic-fonts-1.10.zip"; + md5 = "35efabc239af896dfb79be7ebdd6e6b9"; + brief = false; +} +{ + name = "liberation-fonts-ttf-1.07.4.tar.gz"; + md5 = "134d8262145fc793c6af494dcace3e71"; + brief = false; +} +{ + name = "liberation-fonts-ttf-2.00.1.tar.gz"; + md5 = "5c781723a0d9ed6188960defba8e91cf"; + brief = false; +} +{ + name = "LinLibertineG-20120116.zip"; + md5 = "e7a384790b13c29113e22e596ade9687"; + brief = false; +} +{ + name = "open-sans-font-ttf-1.10.tar.gz"; + md5 = "7a15edea7d415ac5150ea403e27401fd"; + brief = false; +} +{ + name = "pt-serif-font-1.0000W.tar.gz"; + md5 = "c3c1a8ba7452950636e871d25020ce0d"; + brief = false; +} +{ + name = "source-code-font-1.009.tar.gz"; + md5 = "0279a21fab6f245e85a6f85fea54f511"; + brief = false; +} +{ + name = "source-sans-pro-2.010R-ro-1.065R-it.tar.gz"; + md5 = "edc4d741888bc0d38e32dbaa17149596"; + brief = false; +} +{ + name = "libfreehand-0.1.1.tar.bz2"; + md5 = "8cf70c5dc4d24d2dc4a107f509d2d6d7"; + brief = true; +} +{ + name = "freetype-2.4.8.tar.bz2"; + md5 = "dbf2caca1d3afd410a29217a9809d397"; + brief = false; +} +{ + name = "glew-1.10.0.zip"; + md5 = "594eb47b4b1210e25438d51825404d5a"; + brief = false; +} +{ + name = "glm-0.9.4.6-libreoffice.zip"; + md5 = "bae83fa5dc7f081768daace6e199adc3"; + brief = false; +} +{ + name = "graphite2-1.2.4.tgz"; + md5 = "2ef839348fe28e3b923bf8cced440227"; + brief = true; +} +{ + name = "harfbuzz-0.9.40.tar.bz2"; + md5 = "0e27e531f4c4acff601ebff0957755c2"; + brief = true; +} +{ + name = "hsqldb_1_8_0.zip"; + md5 = "17410483b5b5f267aa18b7e00b65e6e0"; + brief = false; +} +{ + name = "hunspell-1.3.3.tar.gz"; + md5 = "4967da60b23413604c9e563beacc63b4"; + brief = false; +} +{ + name = "hyphen-2.8.8.tar.gz"; + md5 = "5ade6ae2a99bc1e9e57031ca88d36dad"; + brief = false; +} +{ + name = "icu4c-54_1-src.tgz"; + md5 = "e844caed8f2ca24c088505b0d6271bc0"; + brief = false; +} +{ + name = "flow-engine-0.9.4.zip"; + md5 = "ba2930200c9f019c2d93a8c88c651a0f"; + brief = false; +} +{ + name = "flute-1.1.6.zip"; + md5 = "d8bd5eed178db6e2b18eeed243f85aa8"; + brief = false; +} +{ + name = "libbase-1.1.6.zip"; + md5 = "eeb2c7ddf0d302fba4bfc6e97eac9624"; + brief = false; +} +{ + name = "libfonts-1.1.6.zip"; + md5 = "3bdf40c0d199af31923e900d082ca2dd"; + brief = false; +} +{ + name = "libformula-1.1.7.zip"; + md5 = "3404ab6b1792ae5f16bbd603bd1e1d03"; + brief = false; +} +{ + name = "liblayout-0.2.10.zip"; + md5 = "db60e4fde8dd6d6807523deb71ee34dc"; + brief = false; +} +{ + name = "libloader-1.1.6.zip"; + md5 = "97b2d4dba862397f446b217e2b623e71"; + brief = false; +} +{ + name = "librepository-1.1.6.zip"; + md5 = "8ce2fcd72becf06c41f7201d15373ed9"; + brief = false; +} +{ + name = "libserializer-1.1.6.zip"; + md5 = "f94d9870737518e3b597f9265f4e9803"; + brief = false; +} +{ + name = "libxml-1.1.7.zip"; + md5 = "ace6ab49184e329db254e454a010f56d"; + brief = false; +} +{ + name = "sacjava-1.3.zip"; + md5 = "39bb3fcea1514f1369fcfc87542390fd"; + brief = false; +} +{ + name = "jpegsrc.v9a.tar.gz"; + md5 = "3353992aecaee1805ef4109aadd433e7"; + brief = true; +} +{ + name = "libjpeg-turbo-1.3.1.tar.gz"; + md5 = "2c3a68129dac443a72815ff5bb374b05"; + brief = true; +} +{ + name = "language-subtag-registry-2015-08-04.tar.bz2"; + md5 = "bf5986dbfa1c9a0f26cf1b00ed369484"; + brief = true; +} +{ + name = "JLanguageTool-1.7.0.tar.bz2"; + md5 = "b63e6340a02ff1cacfeadb2c42286161"; + brief = false; +} +{ + name = "lcms2-2.6.tar.gz"; + md5 = "f4c08d38ceade4a664ebff7228910a33"; + brief = true; +} +{ + name = "libatomic_ops-7_2d.zip"; + md5 = "c0b86562d5aa40761a87134f83e6adcf"; + brief = true; +} +{ + name = "libeot-0.01.tar.bz2"; + md5 = "aa24f5dd2a2992f4a116aa72af817548"; + brief = true; +} +{ + name = "libexttextcat-3.4.4.tar.bz2"; + md5 = "10d61fbaa6a06348823651b1bd7940fe"; + brief = false; +} +{ + name = "libgltf-0.0.2.tar.bz2"; + md5 = "d63a9f47ab048f5009d90693d6aa6424"; + brief = true; + subDir = "libgltf/"; +} +{ + name = "liblangtag-0.5.1.tar.bz2"; + md5 = "36271d3fa0d9dec1632029b6d7aac925"; + brief = false; +} +{ + name = "xmlsec1-1.2.14.tar.gz"; + md5 = "1f24ab1d39f4a51faf22244c94a6203f"; + brief = false; +} +{ + name = "libxml2-2.9.3.tar.gz"; + md5 = "daece17e045f1c107610e137ab50c179"; + brief = false; +} +{ + name = "libxslt-1.1.28.tar.gz"; + md5 = "9667bf6f9310b957254fdcf6596600b7"; + brief = false; +} +{ + name = "lp_solve_5.5.tar.gz"; + md5 = "26b3e95ddf3d9c077c480ea45874b3b8"; + brief = false; +} +{ + name = "mariadb_client-2.0.0-src.tar.gz"; + md5 = "a233181e03d3c307668b4c722d881661"; + brief = false; +} +{ + name = "mdds_0.12.1.tar.bz2"; + md5 = "ef2560ed5416652a7fe195305b14cebe"; + brief = true; +} +{ + name = "libmspub-0.1.2.tar.bz2"; + md5 = "ff9d0f9dd8fbc523408ea1953d5bde41"; + brief = true; +} +{ + name = "libmwaw-0.3.5.tar.bz2"; + md5 = "bdc58bbf89aaaf6d29b3516d96830a06"; + brief = true; +} +{ + name = "mysql-connector-c++-1.1.4.tar.gz"; + md5 = "7239a4430efd4d0189c4f24df67f08e5"; + brief = false; +} +{ + name = "mythes-1.2.4.tar.gz"; + md5 = "a8c2c5b8f09e7ede322d5c602ff6a4b6"; + brief = false; +} +{ + name = "neon-0.29.5.tar.gz"; + md5 = "ff369e69ef0f0143beb5626164e87ae2"; + brief = false; +} +{ + name = "nss-3.19.4-with-nspr-4.10.10.tar.gz"; + md5 = "478e0e90ebc4a90159549e77021021fd"; + brief = false; +} +{ + name = "libodfgen-0.1.4.tar.bz2"; + md5 = "8716be5c22ae8353f9aaa380d74840dc"; + brief = true; +} +{ + name = "OpenCOLLADA-master-6509aa13af.tar.bz2"; + md5 = "4ca8a6ef0afeefc864e9ef21b9f14bd6"; + brief = true; +} +{ + name = "openldap-2.4.31.tgz"; + md5 = "804c6cb5698db30b75ad0ff1c25baefd"; + brief = false; +} +{ + name = "openssl-1.0.2a.tar.gz"; + md5 = "a06c547dac9044161a477211049f60ef"; + brief = true; +} +{ + name = "liborcus-0.7.0.tar.bz2"; + md5 = "7681383be6ce489d84c1c74f4e7f9643"; + brief = false; +} +{ + name = "libpagemaker-0.0.2.tar.bz2"; + md5 = "795cc7a59ace4db2b12586971d668671"; + brief = true; +} +{ + name = "pixman-0.24.4.tar.bz2"; + md5 = "c63f411b3ad147db2bcce1bf262a0e02"; + brief = false; +} +{ + name = "libpng-1.5.24.tar.gz"; + md5 = "6652e428d1d3fc3c6cb1362159b1cf3b"; + brief = true; +} +{ + name = "poppler-0.26.4.tar.gz"; + md5 = "35c0660065d023365e9854c13e289d12"; + brief = true; +} +{ + name = "postgresql-9.2.1.tar.bz2"; + md5 = "c0b4799ea9850eae3ead14f0a60e9418"; + brief = false; +} +{ + name = "Python-3.3.5.tgz"; + md5 = "803a75927f8f241ca78633890c798021"; + brief = true; +} +{ + name = "raptor2-2.0.9.tar.gz"; + md5 = "4ceb9316488b0ea01acf011023cf7fff"; + brief = false; +} +{ + name = "rasqal-0.9.30.tar.gz"; + md5 = "b12c5f9cfdb6b04efce5a4a186b8416b"; + brief = false; +} +{ + name = "redland-1.0.16.tar.gz"; + md5 = "32f8e1417a64d3c6f2c727f9053f55ea"; + brief = false; +} +{ + name = "librevenge-0.0.2.tar.bz2"; + md5 = "2d4183bf17aea1a71842468a71a68c47"; + brief = true; +} +{ + name = "rhino1_5R5.zip"; + md5 = "798b2ffdc8bcfe7bca2cf92b62caf685"; + brief = false; +} +{ + name = "serf-1.2.1.tar.bz2"; + md5 = "4f8e76c9c6567aee1d66aba49f76a58b"; + brief = true; +} +{ + name = "swingExSrc.zip"; + md5 = "35c94d2df8893241173de1d16b6034c0"; + brief = false; +} +{ + name = "ucpp-1.3.2.tar.gz"; + md5 = "0168229624cfac409e766913506961a8"; + brief = false; +} +{ + name = "vigra1.6.0.tar.gz"; + md5 = "d62650a6f908e85643e557a236ea989c"; + brief = false; +} +{ + name = "libvisio-0.1.1.tar.bz2"; + md5 = "726c1f5be65eb7d649e0d48b63d920e7"; + brief = true; +} +{ + name = "libwpd-0.10.0.tar.bz2"; + md5 = "0773d79a1f240ef9f4f20242b13c5bb7"; + brief = true; +} +{ + name = "libwpg-0.3.0.tar.bz2"; + md5 = "17da9770cb8b317b7633f9807b32b71a"; + brief = true; +} +{ + name = "libwps-0.4.0.tar.bz2"; + md5 = "e9162d2566421d9d71b3ad2377a68fd5"; + brief = true; +} +{ + name = "xsltml_2.1.2.zip"; + md5 = "a7983f859eafb2677d7ff386a023bc40"; + brief = false; +} +{ + name = "zlib-1.2.8.tar.gz"; + md5 = "44d667c142d7cda120332623eab69f40"; + brief = true; +} +] diff --git a/pkgs/applications/office/libreoffice/still.nix b/pkgs/applications/office/libreoffice/still.nix new file mode 100644 index 00000000000..0e4d2d79762 --- /dev/null +++ b/pkgs/applications/office/libreoffice/still.nix @@ -0,0 +1,255 @@ +{ stdenv, fetchurl, pam, python3, tcsh, libxslt, perl, ArchiveZip +, CompressZlib, zlib, libjpeg, expat, pkgconfigUpstream, freetype, libwpd +, libxml2, db, sablotron, curl, fontconfig, libsndfile, neon +, bison, flex, zip, unzip, gtk3, gtk, libmspack, getopt, file, cairo, which +, icu, boost, jdk, ant, cups, xorg, libcmis +, openssl, gperf, cppunit, GConf, ORBit2, poppler +, librsvg, gnome_vfs, mesa, bsh, CoinMP, libwps, libabw +, autoconf, automake, openldap, bash, hunspell, librdf_redland, nss, nspr +, libwpg, dbus_glib, glibc, qt4, kde4, clucene_core, libcdr, lcms, vigra +, unixODBC, mdds, sane-backends, mythes, libexttextcat, libvisio +, fontsConf, pkgconfig, libzip, bluez5, libtool, maven +, libatomic_ops, graphite2, harfbuzz, libodfgen +, librevenge, libe-book, libmwaw, glm, glew, gst_all_1 +, gdb, commonsLogging, librdf_rasqal, makeWrapper, gsettings_desktop_schemas +, defaultIconTheme, glib, ncurses +, langs ? [ "en-US" "en-GB" "ca" "ru" "eo" "fr" "nl" "de" "sl" "pl" ] +, withHelp ? true +, kdeIntegration ? false +}: + +let + lib = stdenv.lib; + langsSpaces = lib.concatStringsSep " " langs; + major = "5"; + minor = "0"; + patch = "5"; + tweak = "2"; + subdir = "${major}.${minor}.${patch}"; + version = "${subdir}${if tweak == "" then "" else "."}${tweak}"; + + fetchThirdParty = {name, md5, brief, subDir ? ""}: fetchurl { + inherit name md5; + url = if brief then + "http://dev-www.libreoffice.org/src/${subDir}${name}" + else + "http://dev-www.libreoffice.org/src/${subDir}${md5}-${name}"; + }; + + fetchSrc = {name, sha256}: fetchurl { + url = "http://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${name}-${version}.tar.xz"; + inherit sha256; + }; + + srcs = { + third_party = [ (fetchurl rec { + url = "http://dev-www.libreoffice.org/extern/${md5}-${name}"; + md5 = "185d60944ea767075d27247c3162b3bc"; + name = "unowinreg.dll"; + }) ] ++ (map fetchThirdParty (import ./libreoffice-srcs-still.nix)); + + translations = fetchSrc { + name = "translations"; + sha256 = "13cbfiqaycy8cxji5jfwfbgar8l4fzhg3aaggavsrwsmbvrqpbb7"; + }; + + # TODO: dictionaries + + help = fetchSrc { + name = "help"; + sha256 = "0an081aj63hfhxv0k8h92vly0rnglbcpqax2pinybryk4dnljr36"; + }; + + }; +in stdenv.mkDerivation rec { + name = "libreoffice-${version}"; + + src = fetchurl { + url = "http://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; + sha256 = "120vcxpxzs0za76fyfry281ysv6d1ianb37d1yq8py8chkdjkrqy"; + }; + + # Openoffice will open libcups dynamically, so we link it directly + # to make its dlopen work. + # It also seems not to mention libdl explicitly in some places. + NIX_LDFLAGS = "-lcups -ldl"; + + # For some reason librdf_redland sometimes refers to rasqal.h instead + # of rasqal/rasqal.h + NIX_CFLAGS_COMPILE="-I${librdf_rasqal}/include/rasqal"; + + # If we call 'configure', 'make' will then call configure again without parameters. + # It's their system. + configureScript = "./autogen.sh"; + dontUseCmakeConfigure = true; + + postUnpack = '' + mkdir -v $sourceRoot/src + '' + (stdenv.lib.concatMapStrings (f: "ln -sfv ${f} $sourceRoot/src/${f.outputHash}-${f.name}\nln -sfv ${f} $sourceRoot/src/${f.name}\n") srcs.third_party) + + '' + ln -sv ${srcs.help} $sourceRoot/src/${srcs.help.name} + ln -svf ${srcs.translations} $sourceRoot/src/${srcs.translations.name} + ''; + + QT4DIR = qt4; + + # Fix boost 1.59 compat + # Try removing in the next version + CPPFLAGS = "-DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED"; + + preConfigure = '' + configureFlagsArray=( + "--with-parallelism=$NIX_BUILD_CORES" + "--with-lang=${langsSpaces}" + ); + + chmod a+x ./bin/unpack-sources + patchShebangs . + # It is used only as an indicator of the proper current directory + touch solenv/inc/target.mk + + # BLFS patch for Glibc 2.23 renaming isnan + sed -ire "s@isnan@std::&@g" xmloff/source/draw/ximp3dscene.cxx + ''; + + # fetch_Download_item tries to interpret the name as a variable name + # Let it do so… + postConfigure = '' + sed -e '1ilibreoffice-translations-${version}.tar.xz=libreoffice-translations-${version}.tar.xz' -i Makefile + sed -e '1ilibreoffice-help-${version}.tar.xz=libreoffice-help-${version}.tar.xz' -i Makefile + + # unit test sd_tiledrendering seems to be fragile + # http://nabble.documentfoundation.org/libreoffice-5-0-failure-in-CUT-libreofficekit-tiledrendering-td4150319.html + echo > ./sd/CppunitTest_sd_tiledrendering.mk + sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk + # one more fragile test? + sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx + ''; + + makeFlags = "SHELL=${bash}/bin/bash"; + + enableParallelBuilding = true; + + buildPhase = '' + # This is required as some cppunittests require fontconfig configured + export FONTCONFIG_FILE=${fontsConf} + + # This to avoid using /lib:/usr/lib at linking + sed -i '/gb_LinkTarget_LDFLAGS/{ n; /rpath-link/d;}' solenv/gbuild/platform/unxgcc.mk + + find -name "*.cmd" -exec sed -i s,/lib:/usr/lib,, {} \; + + make + ''; + + # It installs only things to $out/lib/libreoffice + postInstall = '' + mkdir -p $out/bin $out/share/desktop + + mkdir -p "$out/share/gsettings-schemas/collected-for-libreoffice/glib-2.0/schemas/" + + for a in sbase scalc sdraw smath swriter spadmin simpress soffice; do + ln -s $out/lib/libreoffice/program/$a $out/bin/$a + wrapProgram "$out/bin/$a" \ + --prefix XDG_DATA_DIRS : \ + "$out/share:$GSETTINGS_SCHEMAS_PATH" \ + ; + done + + ln -s $out/bin/soffice $out/bin/libreoffice + ln -s $out/lib/libreoffice/share/xdg $out/share/applications + + for f in $out/share/applications/*.desktop; do + substituteInPlace "$f" --replace "Exec=libreofficedev${major}.${minor}" "Exec=libreoffice" + substituteInPlace "$f" --replace "Exec=libreoffice${major}.${minor}" "Exec=libreoffice" + substituteInPlace "$f" --replace "Exec=libreoffice" "Exec=libreoffice" + done + + cp -r sysui/desktop/icons "$out/share" + sed -re 's@Icon=libreofficedev[0-9.]*-?@Icon=@' -i "$out/share/applications/"*.desktop + ''; + + configureFlags = [ + "${if withHelp then "" else "--without-help"}" + "--with-boost=${boost.dev}" + "--with-boost-libdir=${boost.lib}/lib" + "--with-beanshell-jar=${bsh}" + "--with-vendor=NixOS" + "--with-commons-logging-jar=${commonsLogging}/share/java/commons-logging-1.2.jar" + "--disable-report-builder" + "--enable-python=system" + "--enable-dbus" + (lib.enableFeature kdeIntegration "kde4") + "--with-package-format=installed" + "--enable-epm" + "--with-jdk-home=${jdk.home}" + "--with-ant-home=${ant}/lib/ant" + "--with-system-cairo" + "--with-system-libs" + "--with-system-headers" + "--with-system-openssl" + "--with-system-libabw" + "--with-system-libcmis" + "--with-system-libwps" + "--with-system-openldap" + "--with-system-coinmp" + + # Without these, configure does not finish + "--without-junit" + + # I imagine this helps. Copied from go-oo. + # Modified on every upgrade, though + "--disable-odk" + "--disable-postgresql-sdbc" + "--disable-firebird-sdbc" + "--without-fonts" + "--without-myspell-dicts" + "--without-doxygen" + + # TODO: package these as system libraries + "--with-system-beanshell" + "--without-system-hsqldb" + "--without-system-altlinuxhyph" + "--without-system-lpsolve" + "--without-system-npapi-headers" + "--without-system-libetonyek" + "--without-system-libfreehand" + "--without-system-liblangtag" + "--without-system-libmspub" + "--without-system-libpagemaker" + "--without-system-libgltf" + # https://github.com/NixOS/nixpkgs/commit/5c5362427a3fa9aefccfca9e531492a8735d4e6f + "--without-system-orcus" + ]; + + checkPhase = '' + make unitcheck + make slowcheck + ''; + + buildInputs = with xorg; + [ ant ArchiveZip autoconf automake bison boost cairo clucene_core + CompressZlib cppunit cups curl db dbus_glib expat file flex fontconfig + freetype GConf getopt gnome_vfs gperf gtk3 gtk + hunspell icu jdk lcms libcdr libexttextcat unixODBC libjpeg + libmspack librdf_redland librsvg libsndfile libvisio libwpd libwpg libX11 + libXaw libXext libXi libXinerama libxml2 libxslt libXtst + libXdmcp libpthreadstubs mesa mythes gst_all_1.gstreamer + gst_all_1.gst-plugins-base gsettings_desktop_schemas glib + neon nspr nss openldap openssl ORBit2 pam perl pkgconfig poppler + python3 sablotron sane-backends tcsh unzip vigra which zip zlib + mdds bluez5 glibc libcmis libwps libabw + libxshmfence libatomic_ops graphite2 harfbuzz + librevenge libe-book libmwaw glm glew ncurses + libodfgen CoinMP librdf_rasqal defaultIconTheme makeWrapper + ] + ++ lib.optional kdeIntegration kde4.kdelibs; + + meta = with lib; { + description = "Comprehensive, professional-quality productivity suite (Still/stable release)"; + homepage = http://libreoffice.org/; + license = licenses.lgpl3; + maintainers = with maintainers; [ viric raskin ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/applications/science/electronics/eagle/default.nix b/pkgs/applications/science/electronics/eagle/default.nix index 71bc58af7c0..edc5845e988 100644 --- a/pkgs/applications/science/electronics/eagle/default.nix +++ b/pkgs/applications/science/electronics/eagle/default.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { mkdir -p "$out"/bin cat > "$out"/bin/eagle << EOF #!${stdenv.shell} - export LD_LIBRARY_PATH="${stdenv.cc.cc}/lib:${libPath}" + export LD_LIBRARY_PATH="${stdenv.cc.cc.lib}/lib:${libPath}" export LD_PRELOAD="$out/lib/eagle_fixer.so" export QT_XKB_CONFIG_ROOT="${xkeyboardconfig}/share/X11/xkb" exec "$dynlinker" "$out/eagle-${version}/bin/eagle" "\$@" diff --git a/pkgs/applications/science/electronics/fritzing/default.nix b/pkgs/applications/science/electronics/fritzing/default.nix index ff0502ac0cb..110759ea292 100644 --- a/pkgs/applications/science/electronics/fritzing/default.nix +++ b/pkgs/applications/science/electronics/fritzing/default.nix @@ -1,7 +1,6 @@ -{ stdenv, fetchurl, qtbase, qtsvg, boost }: +{ stdenv, fetchurl, qtbase, qtsvg, qmakeHook, boost }: stdenv.mkDerivation rec { - version = "0.9.0b"; name = "fritzing-${version}"; @@ -10,19 +9,7 @@ stdenv.mkDerivation rec { sha256 = "181qnknq1j5x075icpw2qk0sc4wcj9f2hym533vs936is0wxp2gk"; }; - unpackPhase = '' - tar xjf ${src} - ''; - - buildInputs = [ qtbase qtsvg boost ]; - - configurePhase = '' - runHook preConfigure - cd fritzing-${version}.source - echo $PATH - qmake PREFIX=$out phoenix.pro - runHook postConfigure - ''; + buildInputs = [ qtbase qtsvg boost qmakeHook ]; meta = { description = "An open source prototyping tool for Arduino-based projects"; diff --git a/pkgs/applications/science/logic/jonprl/default.nix b/pkgs/applications/science/logic/jonprl/default.nix index 7620aa3e3e0..57cbc0e5241 100644 --- a/pkgs/applications/science/logic/jonprl/default.nix +++ b/pkgs/applications/science/logic/jonprl/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { url = "https://github.com/jonsterling/JonPRL.git"; deepClone = true; rev = "refs/tags/v${version}"; - sha256 = "1z0d8dq1nb4dycic58nnk617hbfgafz0vmwr8gkl0i6405gfg1zy"; + sha256 = "09m1vb41vxvqnk78gm9inip1abknkywij30rghvym93q460cl2hm"; }; buildInputs = [ smlnj which ]; diff --git a/pkgs/applications/science/logic/otter/default.nix b/pkgs/applications/science/logic/otter/default.nix index dd383f1fff6..b19650eb863 100644 --- a/pkgs/applications/science/logic/otter/default.nix +++ b/pkgs/applications/science/logic/otter/default.nix @@ -48,5 +48,6 @@ stdenv.mkDerivation { license = stdenv.lib.licenses.publicDomain ; maintainers = [stdenv.lib.maintainers.raskin]; platforms = stdenv.lib.platforms.linux; + broken = true; }; } diff --git a/pkgs/applications/science/logic/saw-tools/default.nix b/pkgs/applications/science/logic/saw-tools/default.nix index 1153c0b3cf5..949b34420b7 100644 --- a/pkgs/applications/science/logic/saw-tools/default.nix +++ b/pkgs/applications/science/logic/saw-tools/default.nix @@ -7,7 +7,7 @@ let gmp4 ncurses zlib - ] + ":${stdenv.cc.cc}/lib64"; + ] + ":${stdenv.cc.cc.lib}/lib64"; url = "https://github.com/GaloisInc/saw-script/releases/download"; diff --git a/pkgs/applications/science/logic/verifast/default.nix b/pkgs/applications/science/logic/verifast/default.nix index c0619ab5f49..d7c593b736e 100644 --- a/pkgs/applications/science/logic/verifast/default.nix +++ b/pkgs/applications/science/logic/verifast/default.nix @@ -7,7 +7,7 @@ let libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc stdenv.cc.cc gtk gdk_pixbuf atk pango glib cairo freetype fontconfig libxml2 gnome2.gtksourceview - ] + ":${stdenv.cc.cc}/lib64"; + ] + ":${stdenv.cc.cc.lib}/lib64"; patchExe = x: '' patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ diff --git a/pkgs/applications/science/math/csdp/default.nix b/pkgs/applications/science/math/csdp/default.nix index 64fa4579949..67a0834c00d 100644 --- a/pkgs/applications/science/math/csdp/default.nix +++ b/pkgs/applications/science/math/csdp/default.nix @@ -15,6 +15,7 @@ stdenv.mkDerivation { ''; preInstall = '' + rm -f INSTALL mkdir -p $out/bin ''; diff --git a/pkgs/applications/science/misc/root/default.nix b/pkgs/applications/science/misc/root/default.nix index 9795604bab1..94572301dd2 100644 --- a/pkgs/applications/science/misc/root/default.nix +++ b/pkgs/applications/science/misc/root/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, fetchpatch, cmake, pkgconfig, python -, libX11, libXpm, libXft, libXext, zlib }: +, libX11, libXpm, libXft, libXext, zlib, lzma }: stdenv.mkDerivation rec { name = "root-${version}"; @@ -10,14 +10,23 @@ stdenv.mkDerivation rec { sha256 = "0f58dg83aqhggkxmimsfkd1qyni2vhmykq4qa89cz6jr9p73i1vm"; }; - buildInputs = [ cmake pkgconfig python libX11 libXpm libXft libXext zlib ]; + buildInputs = [ cmake pkgconfig python libX11 libXpm libXft libXext zlib lzma ]; - cmakeFlags = "-Drpath=ON"; + preConfigure = '' + patchShebangs build/unix/ + ''; + + cmakeFlags = [ + "-Drpath=ON" + "-DCMAKE_INSTALL_LIBDIR=lib" + "-DCMAKE_INSTALL_INCLUDEDIR=include" + ] + ++ stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"; enableParallelBuilding = true; meta = { - homepage = "http://root.cern.ch/drupal/"; + homepage = "https://root.cern.ch/"; description = "A data analysis framework"; platforms = stdenv.lib.platforms.linux; }; diff --git a/pkgs/applications/science/robotics/qgroundcontrol/default.nix b/pkgs/applications/science/robotics/qgroundcontrol/default.nix index 692be0a88b1..cac9fef182c 100644 --- a/pkgs/applications/science/robotics/qgroundcontrol/default.nix +++ b/pkgs/applications/science/robotics/qgroundcontrol/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchgit, git, espeak, SDL, udev, doxygen, cmake, overrideCC#, gcc48 , qtbase, qtlocation, qtserialport, qtdeclarative, qtconnectivity, qtxmlpatterns - , qtsvg, qtquick1, qtquickcontrols, qtgraphicaleffects + , qtsvg, qtquick1, qtquickcontrols, qtgraphicaleffects, qmakeHook , makeQtWrapper, lndir , gst_all_1, qt_gstreamer1, pkgconfig, glibc , version ? "2.9.4" @@ -23,21 +23,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; nativeBuildInputs = [ - pkgconfig makeQtWrapper + pkgconfig makeQtWrapper qmakeHook ] ++ qtInputs; patches = [ ./0001-fix-gcc-cmath-namespace-issues.patch ]; - configurePhase = '' - runHook preConfigure - mkdir build - (cd build && qmake ../qgroundcontrol.pro) - runHook postConfigure - ''; - - preBuild = "pushd build/"; - postBuild = "popd"; - installPhase = '' mkdir -p $out/share/applications cp -v qgroundcontrol.desktop $out/share/applications diff --git a/pkgs/applications/science/spyder/default.nix b/pkgs/applications/science/spyder/default.nix index 73847624e85..141ef44b77e 100644 --- a/pkgs/applications/science/spyder/default.nix +++ b/pkgs/applications/science/spyder/default.nix @@ -13,7 +13,7 @@ buildPythonApplication rec { namePrefix = ""; src = fetchurl { - url = "https://pypi.python.org/packages/source/s/spyder/${name}.zip"; + url = "mirror://pypi/s/spyder/${name}.zip"; sha256 = "99fdae2cea325c0f2842c77bd67dd22db19fef3d9c0dde1545b1a2650eae517e"; }; diff --git a/pkgs/applications/version-management/bugseverywhere/default.nix b/pkgs/applications/version-management/bugseverywhere/default.nix index f8081ade61f..cc4edd54b56 100644 --- a/pkgs/applications/version-management/bugseverywhere/default.nix +++ b/pkgs/applications/version-management/bugseverywhere/default.nix @@ -11,7 +11,7 @@ pythonPackages.buildPythonApplication rec { src = fetchurl { url = - "https://pypi.python.org/packages/source/b/bugs-everywhere/bugs-everywhere-${version}.tar.gz"; + "mirror://pypi/b/bugs-everywhere/bugs-everywhere-${version}.tar.gz"; sha256 = "1ikm3ckwpimwcvx32vy7gh5gbp7q750j3327m17nvrj99g3daz2d"; }; diff --git a/pkgs/applications/version-management/fossil/default.nix b/pkgs/applications/version-management/fossil/default.nix index 19c2c1f2ef1..58e3a5cc34f 100644 --- a/pkgs/applications/version-management/fossil/default.nix +++ b/pkgs/applications/version-management/fossil/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, zlib, openssl, tcl, readline, sqlite, withJson ? true}: +{stdenv, libiconv, fetchurl, zlib, openssl, tcl, readline, sqlite, withJson ? true}: stdenv.mkDerivation rec { name = "fossil-1.33"; @@ -12,7 +12,8 @@ stdenv.mkDerivation rec { sha256 = "0gkzd9nj3xyznh9x8whv0phdnj11l5c8164rc3l0jvs5i61c95b2"; }; - buildInputs = [ zlib openssl readline sqlite ]; + buildInputs = [ zlib openssl readline sqlite ] + ++ stdenv.lib.optional stdenv.isDarwin libiconv; nativeBuildInputs = [ tcl ]; doCheck = true; diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index fa8f43a45c6..8aae86b5536 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -3,12 +3,7 @@ */ args @ {pkgs}: with args; with pkgs; let - inherit (pkgs) stdenv fetchgit fetchurl subversion; - - gitBase = lib.makeOverridable (import ./git) { - inherit fetchurl stdenv curl openssl zlib expat perl python gettext gnugrep - asciidoc xmlto docbook2x docbook_xsl docbook_xml_dtd_45 libxslt cpio tcl - tk makeWrapper subversionClient gzip openssh libiconv; + gitBase = callPackage ./git { texinfo = texinfo5; svnSupport = false; # for git-svn support guiSupport = false; # requires tcl/tk @@ -56,6 +51,8 @@ rec { git-extras = callPackage ./git-extras { }; + git-hub = callPackage ./git-hub { }; + git-imerge = callPackage ./git-imerge { }; git-radar = callPackage ./git-radar { }; @@ -64,44 +61,28 @@ rec { git-stree = callPackage ./git-stree { }; - git2cl = import ./git2cl { - inherit fetchgit stdenv perl; - }; + git2cl = callPackage ./git2cl { }; - gitFastExport = import ./fast-export { - inherit fetchgit stdenv mercurial coreutils git makeWrapper subversion; - }; + gitFastExport = callPackage ./fast-export { }; gitRemoteGcrypt = callPackage ./git-remote-gcrypt { }; gitflow = callPackage ./gitflow { }; - hub = import ./hub { - inherit go; - inherit stdenv fetchgit; + hub = callPackage ./hub { inherit (darwin) Security; }; - qgit = import ./qgit { - inherit fetchurl stdenv; - inherit (xorg) libXext libX11; - qt = qt4; - }; + qgit = callPackage ./qgit { }; - qgitGit = import ./qgit/qgit-git.nix { - inherit fetchurl sourceFromHead stdenv; - inherit (xorg) libXext libX11; - qt = qt4; - }; + qgitGit = callPackage ./qgit/qgit-git.nix { }; - stgit = import ./stgit { - inherit fetchurl stdenv python git; + stgit = callPackage ./stgit { }; subgit = callPackage ./subgit { }; - svn2git = import ./svn2git { - inherit stdenv fetchurl ruby makeWrapper; + svn2git = callPackage ./svn2git { git = gitSVN; }; @@ -109,9 +90,7 @@ rec { tig = callPackage ./tig { }; - topGit = lib.makeOverridable (import ./topgit) { - inherit stdenv fetchurl; - }; + topGit = callPackage ./topgit { }; transcrypt = callPackage ./transcrypt { }; } diff --git a/pkgs/applications/version-management/git-and-tools/git-hub/default.nix b/pkgs/applications/version-management/git-and-tools/git-hub/default.nix index b1626f687d4..579cb363702 100644 --- a/pkgs/applications/version-management/git-and-tools/git-hub/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-hub/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "git-hub-${version}"; - version = "0.9.0"; + version = "0.10"; src = fetchFromGitHub { - sha256 = "0c4kq4a906lr8nzway7qh0560n2ydvidh9rlffh44902rd48kp0h"; + sha256 = "0zy1g6zzv6cw8ffj8ffm28qa922fys2826n5813p8icqypi04y0k"; rev = "v${version}"; repo = "git-hub"; - owner = "sociomantic"; + owner = "sociomantic-tsunami"; }; buildInputs = [ python ]; 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 cb64218b52d..04c4a7325ed 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -29,6 +29,7 @@ stdenv.mkDerivation { ./symlinks-in-bin.patch ./git-sh-i18n.patch ./ssh-path.patch + ./ssl-cert-file.patch ]; postPatch = '' @@ -113,12 +114,12 @@ stdenv.mkDerivation { ''# wrap git-svn gitperllib=$out/lib/perl5/site_perl - for i in ${builtins.toString perlLibs} ${svn}; do + for i in ${builtins.toString perlLibs} ${svn.out}; do gitperllib=$gitperllib:$i/lib/perl5/site_perl done wrapProgram $out/libexec/git-core/git-svn \ --set GITPERLLIB "$gitperllib" \ - --prefix PATH : "${svn}/bin" '' + --prefix PATH : "${svn.out}/bin" '' else '' # replace git-svn by notification script notSupported $out/libexec/git-core/git-svn '') diff --git a/pkgs/applications/version-management/git-and-tools/git/ssl-cert-file.patch b/pkgs/applications/version-management/git-and-tools/git/ssl-cert-file.patch new file mode 100644 index 00000000000..bafd65e8c93 --- /dev/null +++ b/pkgs/applications/version-management/git-and-tools/git/ssl-cert-file.patch @@ -0,0 +1,11 @@ +diff -ru git-2.7.4-orig/http.c git-2.7.4/http.c +--- git-2.7.4-orig/http.c 2016-03-17 21:47:59.000000000 +0100 ++++ git-2.7.4/http.c 2016-04-12 11:38:33.187070848 +0200 +@@ -544,6 +544,7 @@ + #if LIBCURL_VERSION_NUM >= 0x070908 + set_from_env(&ssl_capath, "GIT_SSL_CAPATH"); + #endif ++ set_from_env(&ssl_cainfo, "SSL_CERT_FILE"); + set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO"); + + set_from_env(&user_agent, "GIT_HTTP_USER_AGENT"); diff --git a/pkgs/applications/version-management/git-and-tools/qgit/default.nix b/pkgs/applications/version-management/git-and-tools/qgit/default.nix index 6cafe4f9624..b8d001ee97c 100644 --- a/pkgs/applications/version-management/git-and-tools/qgit/default.nix +++ b/pkgs/applications/version-management/git-and-tools/qgit/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, qt, libXext, libX11}: +{ stdenv, fetchurl, qt4, qmake4Hook, libXext, libX11 }: stdenv.mkDerivation rec { name = "qgit-2.5"; @@ -8,11 +8,11 @@ stdenv.mkDerivation rec { sha256 = "25f1ca2860d840d87b9919d34fc3a1b05d4163671ed87d29c3e4a8a09e0b2499"; }; - buildInputs = [qt libXext libX11]; - hardeningDisable = [ "format" ]; - configurePhase = "qmake PREFIX=$out"; + buildInputs = [ qt4 libXext libX11 ]; + + nativeBuildInputs = [ qmake4Hook ]; installPhase = '' install -s -D -m 755 bin/qgit "$out/bin/qgit" @@ -22,6 +22,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2; homepage = "http://libre.tibirna.org/projects/qgit/wiki/QGit"; description = "Graphical front-end to Git"; - inherit (qt.meta) platforms; + inherit (qt4.meta) platforms; }; } diff --git a/pkgs/applications/version-management/git-and-tools/qgit/qgit-git.nix b/pkgs/applications/version-management/git-and-tools/qgit/qgit-git.nix index 590e090de48..c3d3c77ad33 100644 --- a/pkgs/applications/version-management/git-and-tools/qgit/qgit-git.nix +++ b/pkgs/applications/version-management/git-and-tools/qgit/qgit-git.nix @@ -1,20 +1,21 @@ -{stdenv, fetchurl, qt, libXext, libX11, sourceFromHead}: +{ stdenv, fetchurl, qt4, qmake4Hook, libXext, libX11, sourceFromHead }: stdenv.mkDerivation rec { name = "qgit-git"; + meta = { license = stdenv.lib.licenses.gpl2; homepage = "http://digilander.libero.it/mcostalba/"; description = "Graphical front-end to Git"; }; + # REGION AUTO UPDATE: { name="qgit"; type="git"; url="git://git.kernel.org/pub/scm/qgit/qgit4.git"; } src = sourceFromHead "qgit-a0252ed2a6a72b50e65d027adce8afa22e874277.tar.gz" (fetchurl { url = "http://mawercer.de/~nix/repos/qgit-a0252ed2a6a72b50e65d027adce8afa22e874277.tar.gz"; sha256 = "17e4727ac68b4f2e8503289d5b6a2c042547e7be133e7f8195b79e33eab61b93"; }); # END - buildInputs = [qt libXext libX11]; - buildPhase = '' - qmake PREFIX=$out - make - ''; + + buildInputs = [ qt4 libXext libX11 ]; + + nativeBuildInputs = [ qmake4Hook ]; } diff --git a/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix b/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix index f282fa6635b..e8f9078a839 100644 --- a/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix +++ b/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, qt4, subversion, apr}: +{ stdenv, fetchgit, qt4, qmake4Hook, subversion, apr }: stdenv.mkDerivation rec { name = "svn2git-kde-1.0.5"; @@ -9,10 +9,10 @@ stdenv.mkDerivation rec { sha256 = "818673fe751b00a42b6ed3e78a783549fb09b5245a01dee47b3dded667bfc582"; }; - buildPhase = '' + NIX_CFLAGS_COMPILE = [ "-I${apr}/include/apr-1" "-I${subversion.dev}/include/subversion-1" "-DVER=\"${src.rev}\"" ]; + + patchPhase = '' sed -i 's|/bin/cat|cat|' ./src/repository.cpp - qmake - make CXXFLAGS='-I${apr}/include/apr-1 -I${subversion.dev}/include/subversion-1 -DVER="\"${src.rev}\""' ''; installPhase = '' @@ -22,5 +22,7 @@ stdenv.mkDerivation rec { buildInputs = [ subversion apr qt4 ]; + nativeBuildInputs = [ qmake4Hook ]; + meta.broken = true; } diff --git a/pkgs/applications/version-management/guitone/default.nix b/pkgs/applications/version-management/guitone/default.nix index 135e7c7e1ef..8731cbfde19 100644 --- a/pkgs/applications/version-management/guitone/default.nix +++ b/pkgs/applications/version-management/guitone/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, fetchmtn, qt4, pkgconfig, graphviz }: +{ stdenv, fetchurl, fetchmtn, qt4, qmake4Hook, pkgconfig, graphviz }: let version = "1.0-mtn-head"; in stdenv.mkDerivation rec { @@ -16,10 +16,7 @@ stdenv.mkDerivation rec { branch = "net.venge.monotone.guitone"; }; - buildInputs = [ qt4 pkgconfig graphviz ]; - - prefixKey="PREFIX="; - configureScript = "qmake guitone.pro"; + buildInputs = [ qt4 qmake4Hook pkgconfig graphviz ]; meta = { description = "Qt4 based GUI for monotone"; diff --git a/pkgs/applications/version-management/mercurial/default.nix b/pkgs/applications/version-management/mercurial/default.nix index f44baad4715..27f0279335d 100644 --- a/pkgs/applications/version-management/mercurial/default.nix +++ b/pkgs/applications/version-management/mercurial/default.nix @@ -3,6 +3,7 @@ , ApplicationServices, cf-private }: let + # if you bump version, update pkgs.tortoisehg too or ping maintainer version = "3.7.3"; name = "mercurial-${version}"; in diff --git a/pkgs/applications/version-management/pijul/default.nix b/pkgs/applications/version-management/pijul/default.nix index 399e4cf3024..66dd63956d6 100644 --- a/pkgs/applications/version-management/pijul/default.nix +++ b/pkgs/applications/version-management/pijul/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchdarcs, rustUnstable, openssl, libssh }: +{ stdenv, fetchdarcs, rustPlatform, openssl, libssh }: -with rustUnstable; +with rustPlatform; buildRustPackage rec { name = "pijul-${version}"; diff --git a/pkgs/applications/version-management/subversion/apr-1.patch b/pkgs/applications/version-management/subversion/apr-1.patch new file mode 100644 index 00000000000..240d94f3f97 --- /dev/null +++ b/pkgs/applications/version-management/subversion/apr-1.patch @@ -0,0 +1,11 @@ +--- a/subversion/bindings/swig/perl/native/Makefile.PL.in ++++ b/subversion/bindings/swig/perl/native/Makefile.PL.in +@@ -72,7 +72,7 @@ + # According to the log of r7937, the flags guarded by the conditional break + # the build on FreeBSD if not conditionalized. + my $apr_ldflags = '@SVN_APR_LIBS@' +- if $^O eq 'darwin' or $^O eq 'cygwin'; ++ if $^O eq 'darwin' or $^O eq 'cygwin' or $^O eq 'linux'; + + chomp $apr_shlib_path_var; + diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index da21c29e6f9..fc87aea08a4 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -35,6 +35,8 @@ let ++ stdenv.lib.optional perlBindings perl ++ stdenv.lib.optional saslSupport sasl; + patches = [ ./apr-1.patch ]; + configureFlags = '' ${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"} ${if httpServer then "--with-apxs=${apacheHttpd}/bin/apxs" else "--without-apxs"} diff --git a/pkgs/applications/version-management/tortoisehg/default.nix b/pkgs/applications/version-management/tortoisehg/default.nix index 60e71351208..2ba730a04d2 100644 --- a/pkgs/applications/version-management/tortoisehg/default.nix +++ b/pkgs/applications/version-management/tortoisehg/default.nix @@ -2,12 +2,11 @@ pythonPackages.buildPythonApplication rec { name = "tortoisehg-${version}"; - version = "3.7.1"; - namePrefix = ""; + version = "3.7.3"; src = fetchurl { url = "https://bitbucket.org/tortoisehg/targz/downloads/${name}.tar.gz"; - sha256 = "1ycf8knwk1rs99s5caq611sk4c4nzwyzq8g35hw5kwj15b6dl4k6"; + sha256 = "1vahiavpkf9ib2mx8z5i6f0kh072zycazmbrc4sl94p5pvv5w1dh"; }; pythonPath = with pythonPackages; [ pyqt4 mercurial qscintilla iniparse ]; @@ -15,14 +14,11 @@ pythonPackages.buildPythonApplication rec { propagatedBuildInputs = with pythonPackages; [ qscintilla iniparse ]; doCheck = false; - - postUnpack = '' - substituteInPlace $sourceRoot/setup.py \ - --replace "sharedir = os.path.join(installcmd.install_data[rootlen:], 'share')" "sharedir = '$out/share/'" - ''; - - postInstall = '' - ln -s $out/bin/thg $out/bin/tortoisehg #convenient alias + dontStrip = true; + buildPhase = ""; + installPhase = '' + ${pythonPackages.python.executable} setup.py install --prefix=$out + ln -s $out/bin/thg $out/bin/tortoisehg #convenient alias ''; meta = { diff --git a/pkgs/applications/video/avidemux/wrapper.nix b/pkgs/applications/video/avidemux/wrapper.nix index 1d1c66cb9fe..7f05b81baec 100644 --- a/pkgs/applications/video/avidemux/wrapper.nix +++ b/pkgs/applications/video/avidemux/wrapper.nix @@ -1,4 +1,4 @@ -{ buildEnv, avidemux_unwrapped, makeWrapper +{ symlinkJoin, avidemux_unwrapped, makeWrapper # GTK version is broken upstream, see https://bugzilla.redhat.com/show_bug.cgi?id=1244340 , withUi ? "qt4" }: @@ -7,24 +7,14 @@ let ui = builtins.getAttr "avidemux_${withUi}" avidemux_unwrapped; in assert ui.isUi; -buildEnv { - name = "avidemux-${withUi}-" + ui.version; +symlinkJoin { + name = "avidemux-${withUi}-${ui.version}"; paths = [ ui avidemux_unwrapped.avidemux_common avidemux_unwrapped.avidemux_settings ]; - ignoreCollisions = true; - buildInputs = [ makeWrapper ]; postBuild = '' - # TODO: This could be avoided if buildEnv could be forced to create all directories - if [ -L $out/bin ]; then - rm $out/bin - mkdir $out/bin - for i in ${ui}/bin/*; do - ln -s $i $out/bin - done - fi for i in $out/bin/*; do wrapProgram $i --set ADM_ROOT_DIR $out done diff --git a/pkgs/applications/video/bomi/default.nix b/pkgs/applications/video/bomi/default.nix index f9301781fc1..c017ed4cda3 100644 --- a/pkgs/applications/video/bomi/default.nix +++ b/pkgs/applications/video/bomi/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, fetchFromGitHub, pkgconfig, perl, python, which, makeQtWrapper , libX11, libxcb, mesa -, qtbase, qtdeclarative, qtquickcontrols, qttools, qtx11extras +, qtbase, qtdeclarative, qtquickcontrols, qttools, qtx11extras, qmakeHook , ffmpeg , libchardet , mpg123 @@ -76,6 +76,8 @@ stdenv.mkDerivation rec { ${optionalString youtubeSupport "--prefix PATH ':' '${youtube-dl}/bin'"} ''; + dontUseQmakeConfigure = true; + configureFlags = with stdenv.lib; [ "--qmake=qmake" ] ++ optional jackSupport "--enable-jack" @@ -84,7 +86,7 @@ stdenv.mkDerivation rec { ++ optional cddaSupport "--enable-cdda" ; - nativeBuildInputs = [ pkgconfig perl python which qttools makeQtWrapper ]; + nativeBuildInputs = [ pkgconfig perl python which qttools makeQtWrapper qmakeHook ]; enableParallelBuilding = true; diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix index e634a0caa3f..b8967323c98 100644 --- a/pkgs/applications/video/clipgrab/default.nix +++ b/pkgs/applications/video/clipgrab/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, makeDesktopItem, ffmpeg, qt4 }: +{ stdenv, fetchurl, makeDesktopItem, ffmpeg, qt4, qmake4Hook }: stdenv.mkDerivation rec { name = "clipgrab-${version}"; @@ -11,6 +11,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ ffmpeg qt4 ]; + nativeBuildInputs = [ qmake4Hook ]; postPatch = stdenv.lib.optionalString (ffmpeg != null) '' substituteInPlace converter_ffmpeg.cpp \ @@ -18,9 +19,7 @@ stdenv.mkDerivation rec { --replace '"ffmpeg ' '"${ffmpeg.bin}/bin/ffmpeg ' ''; - configurePhase = '' - qmake clipgrab.pro - ''; + qmakeFlags = [ "clipgrab.pro" ]; enableParallelBuilding = true; diff --git a/pkgs/applications/video/dvd-slideshow/default.nix b/pkgs/applications/video/dvd-slideshow/default.nix index 040a7a2e7a6..1506f6e23c9 100644 --- a/pkgs/applications/video/dvd-slideshow/default.nix +++ b/pkgs/applications/video/dvd-slideshow/default.nix @@ -1,10 +1,12 @@ -{ stdenv, fetchurl, writeScript, cdrtools, dvdauthor, ffmpeg, imagemagick, lame, mjpegtools, sox, transcode, vorbis-tools }: +{ stdenv, lib, fetchurl, writeScript, cdrtools, dvdauthor, ffmpeg, imagemagick, lame, mjpegtools, sox, transcode, vorbis-tools }: let + binPath = lib.makeBinPath [ cdrtools dvdauthor ffmpeg imagemagick lame mjpegtools sox transcode vorbis-tools ]; + wrapper = writeScript "dvd-slideshow.sh" '' #!/bin/bash # wrapper script for dvd-slideshow programs - export PATH=${cdrtools}/bin:${dvdauthor}/bin:${ffmpeg.bin}/bin:${imagemagick}/bin:${lame}/bin:${mjpegtools}/bin:${sox}/bin:${transcode}/bin:${vorbis-tools}/bin:$PATH + export PATH=${binPath}:$PATH dir=`dirname "$0"` exe=`basename "$0"` diff --git a/pkgs/applications/video/kodi/default.nix b/pkgs/applications/video/kodi/default.nix index 6b21f0f6516..bca0551c001 100644 --- a/pkgs/applications/video/kodi/default.nix +++ b/pkgs/applications/video/kodi/default.nix @@ -40,16 +40,16 @@ assert rtmpSupport -> rtmpdump != null; let rel = "Jarvis"; ffmpeg_2_8_6 = fetchurl { - url = "https://github.com/xbmc/FFmpeg/archive/2.8.6-${rel}-16.0.tar.gz"; - sha256 = "00cvjwfpz6ladmln4yny4d4viwflrbgrid1na412g5pif70qv3dh"; + url = "https://github.com/xbmc/FFmpeg/archive/2.8.6-${rel}-16.1.tar.gz"; + sha256 = "1qp8b97298l2pnhhcp7xczdfwr7q7ibxlk4vp8pfmxli2h272wan"; }; in stdenv.mkDerivation rec { name = "kodi-" + version; - version = "16.0"; + version = "16.1"; src = fetchurl { url = "https://github.com/xbmc/xbmc/archive/${version}-${rel}.tar.gz"; - sha256 = "0iirspvv7czf785l2lqf232dvdaj87srbn9ni97ngvnd6w9yl884"; + sha256 = "047xpmz78k3d6nhk1x9s8z0bw1b1w9kca46zxkg86p3iyapwi0kx"; }; buildInputs = [ diff --git a/pkgs/applications/video/linuxstopmotion/default.nix b/pkgs/applications/video/linuxstopmotion/default.nix index 23a033844b3..293bdd835b5 100644 --- a/pkgs/applications/video/linuxstopmotion/default.nix +++ b/pkgs/applications/video/linuxstopmotion/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchgit, pkgconfig, qt4, SDL, SDL_image, libvorbis, libtar, libxml2 -, gamin +, gamin, qmake4Hook }: stdenv.mkDerivation rec { @@ -12,14 +12,10 @@ stdenv.mkDerivation rec { sha256 = "1xkkrhllgy2d7k0vrdj794ya7y3g3n7xh8c2qgnb26yrarz79dqj"; }; - buildInputs = [ pkgconfig qt4 SDL SDL_image libvorbis libtar libxml2 gamin ]; + buildInputs = [ pkgconfig qt4 SDL SDL_image libvorbis libtar libxml2 gamin qmake4Hook ]; patches = [ ./linuxstopmotion-fix-wrong-isProcess-logic.patch ]; - configurePhase = '' - qmake PREFIX="$out" - ''; - # Installation breaks without this preInstall = '' mkdir -p "$out/share/stopmotion/translations/" diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix index 30fd9a57c4b..46b5712ca9a 100644 --- a/pkgs/applications/video/makemkv/default.nix +++ b/pkgs/applications/video/makemkv/default.nix @@ -4,17 +4,17 @@ stdenv.mkDerivation rec { name = "makemkv-${ver}"; - ver = "1.9.9"; + ver = "1.9.10"; builder = ./builder.sh; src_bin = fetchurl { url = "http://www.makemkv.com/download/makemkv-bin-${ver}.tar.gz"; - sha256 = "1rsmsfyxjh18bdj93gy7whm4j6k1098zfak8napxsqfli7dyijb6"; + sha256 = "1i5nqk5gyin6rgvc0fy96pdzq0wsmfvsm6w9mfsibj0yrfqnhi6r"; }; src_oss = fetchurl { url = "http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz"; - sha256 = "070x8l88nv70abd9gy8jchs09mh09x6psjc0zs4vplk61cbqk3b0"; + sha256 = "1ypc2hisx71kpmjwxnlq6zh4q6r2i1p32gapb0ampjflcjyvx5dk"; }; buildInputs = [openssl qt4 mesa zlib pkgconfig libav]; diff --git a/pkgs/applications/video/minitube/default.nix b/pkgs/applications/video/minitube/default.nix index f9d887189ec..1a621032125 100644 --- a/pkgs/applications/video/minitube/default.nix +++ b/pkgs/applications/video/minitube/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, makeWrapper, phonon, phonon_backend_vlc, qt4 +{ stdenv, fetchFromGitHub, makeWrapper, phonon, phonon_backend_vlc, qt4, qmake4Hook # "Free" API key generated by nckx , withAPIKey ? "AIzaSyBtFgbln3bu1swQC-naMxMtKh384D3xJZE" }: @@ -14,11 +14,9 @@ stdenv.mkDerivation rec { }; buildInputs = [ phonon phonon_backend_vlc qt4 ]; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ makeWrapper qmake4Hook ]; - configurePhase = '' - qmake PREFIX=$out "DEFINES += APP_GOOGLE_API_KEY=${withAPIKey}" - ''; + qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ]; enableParallelBuilding = true; diff --git a/pkgs/applications/video/popcorntime/default.nix b/pkgs/applications/video/popcorntime/default.nix index f2bc3e70161..63c5f0460f2 100644 --- a/pkgs/applications/video/popcorntime/default.nix +++ b/pkgs/applications/video/popcorntime/default.nix @@ -1,24 +1,25 @@ { lib, stdenv, fetchurl, makeWrapper, nwjs, zip }: let - arch = if stdenv.system == "x86_64-linux" then "64" - else if stdenv.system == "i686-linux" then "32" + arch = if stdenv.system == "x86_64-linux" then "l64" + else if stdenv.system == "i686-linux" then "l32" else throw "Unsupported system ${stdenv.system}"; in stdenv.mkDerivation rec { name = "popcorntime-${version}"; - version = "0.3.9"; + version = "0.4.0"; + build = "2"; src = fetchurl { - url = "http://get.popcorntime.sh/build/Popcorn-Time-${version}-Linux-${arch}.tar.xz"; + url = "http://popcorntime.ag/download.php?file=popcorn-time-community-v${version}-${build}-${arch}.tar.xz"; sha256 = - if arch == "64" - then "0qaqdz45frgiy440jyz6hikhklx2yp08qp94z82r03dkbf4a2hvx" - else "0y08a42pm681s97lkczdq5dblxl2jbr850hnl85hknl3ynag9kq4"; + if arch == "l64" + then "0a68d0a81d8e97c94afa0c75209056ee4b8486f400854c952bd3ad7251bd80c9" + else "b311c312a29d408a7c661a271d1f3a8fc83865d8a204cf026ee87e9ac173874d"; }; dontPatchELF = true; - sourceRoot = "linux${arch}"; + sourceRoot = "."; buildInputs = [ zip makeWrapper ]; buildPhase = '' diff --git a/pkgs/applications/video/qgifer/default.nix b/pkgs/applications/video/qgifer/default.nix index f528ce99a8a..8185e15dcc8 100644 --- a/pkgs/applications/video/qgifer/default.nix +++ b/pkgs/applications/video/qgifer/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchsvn, cmake, opencv, qt, giflib }: +{ stdenv, fetchsvn, cmake, opencv, qt4, giflib }: stdenv.mkDerivation rec { name = "qgifer-${version}"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { substituteInPlace CMakeLists.txt --replace "SET(CMAKE_INSTALL_PREFIX" "#" ''; - buildInputs = [ cmake opencv qt giflib ]; + buildInputs = [ cmake opencv qt4 giflib ]; meta = with stdenv.lib; { description = "Video-based animated GIF creator"; diff --git a/pkgs/applications/video/shotcut/default.nix b/pkgs/applications/video/shotcut/default.nix index d2400475a0b..fdadc1d99ab 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, qtbase }: +{ stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qtbase, qmakeHook }: stdenv.mkDerivation rec { name = "shotcut-${version}"; @@ -9,13 +9,7 @@ stdenv.mkDerivation rec { sha256 = "1504ds3ppqmpg84nb2gb74qndqysjwn3xw7n8xv19kd1pppnr10f"; }; - buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qtbase ]; - - configurePhase = '' - runHook preConfigure - qmake PREFIX=$out - runHook postConfigure - ''; + buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qtbase qmakeHook ]; postInstall = '' mkdir -p $out/share/shotcut diff --git a/pkgs/applications/video/smplayer/default.nix b/pkgs/applications/video/smplayer/default.nix index 0aa92c9af71..15b178fc8e6 100644 --- a/pkgs/applications/video/smplayer/default.nix +++ b/pkgs/applications/video/smplayer/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qtscript }: +{ stdenv, fetchurl, qmakeHook, qtscript }: stdenv.mkDerivation rec { name = "smplayer-16.1.0"; @@ -10,7 +10,9 @@ stdenv.mkDerivation rec { patches = [ ./basegui.cpp.patch ]; - buildInputs = [ qtscript ]; + buildInputs = [ qmakeHook qtscript ]; + + dontUseQmakeConfigure = true; preConfigure = '' makeFlags="PREFIX=$out" diff --git a/pkgs/applications/video/smtube/default.nix b/pkgs/applications/video/smtube/default.nix index 68c0d7f5812..729c90d052c 100644 --- a/pkgs/applications/video/smtube/default.nix +++ b/pkgs/applications/video/smtube/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qtscript, qtwebkit }: +{ stdenv, fetchurl, qmakeHook, qtscript, qtwebkit }: stdenv.mkDerivation rec { version = "16.1.0"; @@ -13,7 +13,9 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" ]; - buildInputs = [ qtscript qtwebkit ]; + dontUseQmakeConfigure = true; + + buildInputs = [ qmakeHook qtscript qtwebkit ]; meta = with stdenv.lib; { description = "Play and download Youtube videos"; diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index 4845d0b6065..892deadfe38 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -1,15 +1,15 @@ { stdenv, lib, autoreconfHook, acl, go, file, git, wget, gnupg1, trousers, squashfsTools, - cpio, fetchurl, fetchFromGitHub, iptables, systemd, makeWrapper }: + cpio, fetchurl, fetchFromGitHub, iptables, systemd, makeWrapper, glibc }: let - coreosImageRelease = "794.1.0"; - coreosImageSystemdVersion = "222"; + coreosImageRelease = "991.0.0"; + coreosImageSystemdVersion = "225"; # TODO: track https://github.com/coreos/rkt/issues/1758 to allow "host" flavor. stage1Flavours = [ "coreos" "fly" "host" ]; in stdenv.mkDerivation rec { - version = "1.2.0"; + version = "1.4.0"; name = "rkt-${version}"; BUILDDIR="build-${name}"; @@ -17,15 +17,16 @@ in stdenv.mkDerivation rec { rev = "v${version}"; owner = "coreos"; repo = "rkt"; - sha256 = "0icsrh118mm3rabbcr0gd3b22m5rizdbqlrfp9d79g591p7bjh38"; + sha256 = "0lnvqhg88aa6zx4wnkz17v3f529i9hi0y2aihfsq09pvsn56hwjl"; }; stage1BaseImage = fetchurl { url = "http://alpha.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz"; - sha256 = "05nzl3av6cawr8v203a8c95c443g6h1nfy2n4jmgvn0j4iyy44ym"; + sha256 = "1vaimrbynhjh4f30rq92bv1h3c1lxnf8isx5c2qvnn3lghypss9k"; }; buildInputs = [ + glibc.out glibc.static autoreconfHook go file git wget gnupg1 trousers squashfsTools cpio acl systemd makeWrapper ]; diff --git a/pkgs/applications/virtualization/virtualbox/default.nix b/pkgs/applications/virtualization/virtualbox/default.nix index ce7780277d7..105755433c2 100644 --- a/pkgs/applications/virtualization/virtualbox/default.nix +++ b/pkgs/applications/virtualization/virtualbox/default.nix @@ -33,7 +33,7 @@ let "$mod/Module.symvers" fi INSTALL_MOD_PATH="$out" INSTALL_MOD_DIR=misc \ - make -C "$MODULES_BUILD_DIR" DEPMOD=/do_not_use_depmod \ + make -j $NIX_BUILD_CORES -C "$MODULES_BUILD_DIR" DEPMOD=/do_not_use_depmod \ "M=\$(PWD)/$mod" BUILD_TYPE="${buildType}" ${action} done ''; @@ -146,7 +146,7 @@ in stdenv.mkDerivation { buildPhase = '' source env.sh - kmk BUILD_TYPE="${buildType}" + kmk -j $NIX_BUILD_CORES BUILD_TYPE="${buildType}" ${forEachModule "modules"} ''; diff --git a/pkgs/applications/window-managers/compton/git.nix b/pkgs/applications/window-managers/compton/git.nix index b715b3a4cf3..f4907f881af 100644 --- a/pkgs/applications/window-managers/compton/git.nix +++ b/pkgs/applications/window-managers/compton/git.nix @@ -4,20 +4,24 @@ libXrandr, libXrender }: stdenv.mkDerivation { - name = "compton-git-2015-04-20"; + name = "compton-git-2015-09-21"; src = fetchFromGitHub { owner = "chjj"; repo = "compton"; - rev = "b1889c1245e6f47eedfae6063100d5a16f584e2b"; - sha256 = "0brnbidxi7wg08yiwgnijzcyqv5lnkd74xzfymvb0i7pgy465vaf"; + rev = "2343e4bbd298b35ea5c190c52abd2b0cb9f79a18"; + sha256 = "1pb0ic47sfd796crwk47cya2ahbxsm6ygi6sh4fwd734kwz37h4z"; }; - buildInputs = [ + nativeBuildInputs = [ asciidoc - dbus docbook_xml_dtd_45 docbook_xml_xslt + pkgconfig + ]; + + buildInputs = [ + dbus libXcomposite libXdamage libXext @@ -31,7 +35,6 @@ stdenv.mkDerivation { libxslt mesa pcre - pkgconfig ]; installFlags = "PREFIX=$(out)"; diff --git a/pkgs/applications/window-managers/herbstluftwm/default.nix b/pkgs/applications/window-managers/herbstluftwm/default.nix index 8b6422df828..024c9e5c796 100644 --- a/pkgs/applications/window-managers/herbstluftwm/default.nix +++ b/pkgs/applications/window-managers/herbstluftwm/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, glib, libX11, libXext, libXinerama }: stdenv.mkDerivation rec { - name = "herbstluftwm-0.6.2"; + name = "herbstluftwm-0.7.0"; src = fetchurl { url = "http://herbstluftwm.org/tarballs/${name}.tar.gz"; - sha256 = "1b7h2zi0i9j17k1z62qw5zq7j9i8gv33pmcxnfiilzzfg8wmr7x8"; + sha256 = "09xfs213vg1dpird61wik5bqb9yf8kh63ssy18ihf54inwqgqbvy"; }; patchPhase = '' @@ -22,5 +22,6 @@ stdenv.mkDerivation rec { homepage = "http://herbstluftwm.org/"; license = stdenv.lib.licenses.bsd2; platforms = stdenv.lib.platforms.linux; + maintainers = with stdenv.lib.maintainers; [ the-kenny ]; }; } diff --git a/pkgs/applications/window-managers/i3/pystatus.nix b/pkgs/applications/window-managers/i3/pystatus.nix index eac2d9ab9c9..291f5dbe9d9 100644 --- a/pkgs/applications/window-managers/i3/pystatus.nix +++ b/pkgs/applications/window-managers/i3/pystatus.nix @@ -7,7 +7,7 @@ python3Packages.buildPythonApplication rec { disabled = !python3Packages.isPy3k; src = fetchurl { - url = "https://pypi.python.org/packages/source/i/${pname}/${name}.tar.gz"; + url = "mirror://pypi/i/${pname}/${name}.tar.gz"; sha256 = "1bpkkf9q4zqq7fh65zynbv26nq24rfznmw71jjvda7g8kjrwjdk5"; }; diff --git a/pkgs/applications/window-managers/matchbox/default.nix b/pkgs/applications/window-managers/matchbox/default.nix index 08c1be9f963..0e88944bb69 100644 --- a/pkgs/applications/window-managers/matchbox/default.nix +++ b/pkgs/applications/window-managers/matchbox/default.nix @@ -1,12 +1,13 @@ { stdenv, fetchurl, libmatchbox, pkgconfig}: stdenv.mkDerivation rec { - name = "matchbox-1.2"; + name = "matchbox-${version}"; + version = "1.2"; buildInputs = [ libmatchbox pkgconfig ]; src = fetchurl { - url = http://matchbox-project.org/sources/matchbox-window-manager/1.2/matchbox-window-manager-1.2.tar.bz2; + url = "http://downloads.yoctoproject.org/releases/matchbox/matchbox-window-manager/${version}/matchbox-window-manager-${version}.tar.bz2"; sha256 = "1zyfq438b466ygcz78nvsmnsc5bhg4wcfnpxb43kbkwpyx53m8l1"; }; diff --git a/pkgs/build-support/fetchurl/mirrors.nix b/pkgs/build-support/fetchurl/mirrors.nix index 148a72f5d84..6de94ab511b 100644 --- a/pkgs/build-support/fetchurl/mirrors.nix +++ b/pkgs/build-support/fetchurl/mirrors.nix @@ -340,4 +340,9 @@ rec { http://repo.steampowered.com/steamrt/ https://abbradar.net/steamrt/ ]; + + # Python PyPI mirrors + pypi = [ + https://pypi.io/packages/source/ + ]; } diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index 6c2e98b9cc1..0ba27036667 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -90,6 +90,10 @@ let GRKERNSEC y ${grsecMainConfig} + # The paxmarks mechanism relies on ELF header markings, but the default + # grsecurity configuration only enables xattr markings + PAX_PT_PAX_FLAGS y + ${if cfg.config.restrictProc then "GRKERNSEC_PROC_USER y" else @@ -117,8 +121,7 @@ let # additional build inputs for gcc plugins, required by some PaX/grsec features nativeBuildInputs = args.nativeBuildInputs ++ (with pkgs; [ gmp libmpc mpfr ]); - preConfigure = args.preConfigure or "" + '' - rm localversion-grsec + preConfigure = (args.preConfigure or "") + '' echo ${localver grkern} > localversion-grsec ''; }; diff --git a/pkgs/build-support/icon-conv-tools/bin/extractWinRscIconsToStdFreeDesktopDir.sh b/pkgs/build-support/icon-conv-tools/bin/extractWinRscIconsToStdFreeDesktopDir.sh new file mode 100755 index 00000000000..994adbd91da --- /dev/null +++ b/pkgs/build-support/icon-conv-tools/bin/extractWinRscIconsToStdFreeDesktopDir.sh @@ -0,0 +1,74 @@ +#!/bin/sh + +# The file from which to extract *.ico files or a particular *.ico file. +# (e.g.: './KeePass.exe', './myLibrary.dll', './my/path/to/app.ico'). +# As you notived, the utility can extract icons from a windows executable or +# dll. +rscFile=$1 + +# A regexp that can extract the image size from the file name. Because we +# use 'icotool', this value should usually be set to something like +# '[^\.]+\.exe_[0-9]+_[0-9]+_[0-9]+_[0-9]+_([0-9]+x[0-9]+)x[0-9]+\.png'. +# A reg expression may be written at some point that relegate this to +# an implementation detail. +sizeRegex=$2 + +# A regexp replace expression that will be used with 'sizeRegex' to create +# a proper size directory (e.g.: '48x48'). Usually this is left to '\1'. +sizeReplaceExp=$3 + +# A regexp that can extract the name of the target image from the file name +# of the image (usually png) extracted from the *.ico file(s). A good +# default is '([^\.]+).+' which gets the basename without extension. +nameRegex=$4 + +# A regexp replace expression that will be used alongside 'nameRegex' to create +# a icon file name. Note that you usually put directly you icon name here +# without any extension (e.g.: 'my-app'). But in case you've got something +# fancy, it will usually be '\1'. +nameReplaceExp=$5 + +# The +# out=./myOut +out=$6 + +# An optional temp dir. +if [ "" != "$7" ]; then + tmp=$7 + isOwnerOfTmpDir=false +else + tmp=`mktemp -d` + isOwnerOfTmpDir=true +fi + +rm -rf $tmp/png $tmp/ico +mkdir -p $tmp/png $tmp/ico + +# Extract the ressource file's extension. +rscFileExt=`echo "$rscFile" | sed -re 's/.+\.(.+)$/\1/'` + +if [ "ico" = "$rscFileExt" ]; then + cp -p $rscFile $tmp/ico +else + wrestool -x --output=$tmp/ico -t14 $rscFile +fi + +icotool --icon -x --palette-size=0 -o $tmp/png $tmp/ico/*.ico + +mkdir -p $out + +for i in $tmp/png/*.png; do + fn=`basename "$i"` + size=$(echo $fn | sed -re 's/'${sizeRegex}'/'${sizeReplaceExp}'/') + name=$(echo $fn | sed -re 's/'${nameRegex}'/'${nameReplaceExp}'/') + targetDir=$out/share/icons/hicolor/$size/apps + targetFile=$targetDir/$name.png + mkdir -p $targetDir + mv $i $targetFile +done + +rm -rf "$tmp/png" "$tmp/ico" + +if $isOwnerOfTmpDir; then + rm -rf "$tmp" +fi diff --git a/pkgs/build-support/icon-conv-tools/bin/icoFileToHiColorTheme b/pkgs/build-support/icon-conv-tools/bin/icoFileToHiColorTheme new file mode 100755 index 00000000000..192f3bb54c2 --- /dev/null +++ b/pkgs/build-support/icon-conv-tools/bin/icoFileToHiColorTheme @@ -0,0 +1,28 @@ +#!/bin/sh + +SCRIPT_DIR=`cd "$(dirname $0)" && pwd` + +# The '*.ico' file that needs to be converted (e.g.: "./my/path/to/file.ico"). +icoFile="$1" + +# The desired name of created icon files without extension. (e.g.: "my-app"). +targetIconName="$2" + +# The output directory where the free desktop hierarchy will be created. +# (e.g.: "./path/to/my/out" or usually in nix "$out"). Note that the +# whole directory hierarchy to the icon will be created in the specified +# output directory (e.g.: "$out/share/icons/hicolor/48x48/apps/my-app.png"). +out="$3" + +# An optional temp directory location (e.g.: ./tmp). If not specified +# a random '/tmp' directory will be created. +tmp="$4" + +$SCRIPT_DIR/extractWinRscIconsToStdFreeDesktopDir.sh \ + "$icoFile" \ + '[^\.]+_[0-9]+_([0-9]+x[0-9]+)x[0-9]+\.png' \ + '\1' \ + '([^\.]+).+' \ + "$targetIconName" \ + "$out" \ + "$tmp" diff --git a/pkgs/build-support/icon-conv-tools/default.nix b/pkgs/build-support/icon-conv-tools/default.nix new file mode 100644 index 00000000000..739ec485159 --- /dev/null +++ b/pkgs/build-support/icon-conv-tools/default.nix @@ -0,0 +1,31 @@ +{ stdenv, icoutils }: + +stdenv.mkDerivation { + name = "icon-conv-tools-0.0.0"; + + src = ./.; + + buildInputs = [ icoutils ]; + + patchPhase = '' + substituteInPlace "./bin/extractWinRscIconsToStdFreeDesktopDir.sh" \ + --replace "icotool" "${icoutils}/bin/icotool" \ + --replace "wrestool" "${icoutils}/bin/wrestool" + ''; + + buildPhase = '' + mkdir -p "$out/bin" + cp -p "./bin/"* "$out/bin" + ''; + + installPhase = "true"; + + dontPatchELF = true; + dontStrip = true; + + meta = { + description = "Tools for icon conversion specific to nix package manager"; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; + }; + +} \ No newline at end of file diff --git a/pkgs/build-support/replace-dependency.nix b/pkgs/build-support/replace-dependency.nix index 4ac47f9a9f2..b0174ca24ab 100644 --- a/pkgs/build-support/replace-dependency.nix +++ b/pkgs/build-support/replace-dependency.nix @@ -61,7 +61,7 @@ let drvName = drv: discard (substring 33 (stringLength (builtins.baseNameOf drv)) (builtins.baseNameOf drv)); - rewriteHashes = drv: hashes: runCommand (drvName drv) { nixStore = "${nix}/bin/nix-store"; } '' + rewriteHashes = drv: hashes: runCommand (drvName drv) { nixStore = "${nix.out}/bin/nix-store"; } '' $nixStore --dump ${drv} | sed 's|${baseNameOf drv}|'$(basename $out)'|g' | sed -e ${ concatStringsSep " -e " (mapAttrsToList (name: value: "'s|${baseNameOf name}|${baseNameOf value}|g'" diff --git a/pkgs/build-support/setup-hooks/multiple-outputs.sh b/pkgs/build-support/setup-hooks/multiple-outputs.sh index 2cf08d42ae0..06d80e12f09 100644 --- a/pkgs/build-support/setup-hooks/multiple-outputs.sh +++ b/pkgs/build-support/setup-hooks/multiple-outputs.sh @@ -47,11 +47,28 @@ _overrideFirst outputInfo "info" "doc" "$outputMan" _multioutConfig() { if [ "$outputs" = "out" ] || [ -z "${setOutputFlags-1}" ]; then return; fi; + # try to detect share/doc/${shareDocName} + # Note: sadly, $configureScript detection comes later in configurePhase, + # and reordering would cause more trouble than worth. + if [ -z "$shareDocName" ]; then + local confScript="$configureScript" + if [ -z "$confScript" ] && [ -x ./configure ]; then + confScript=./configure + fi + if [ -f "$confScript" ]; then + local shareDocName="$(sed -n "s/^PACKAGE_TARNAME='\(.*\)'$/\1/p" < "$confScript")" + fi + # PACKAGE_TARNAME sometimes contains garbage. + if [ -n "$shareDocName" ] || echo "$shareDocName" | grep -q '[^a-zA-Z-_0-9]'; then + shareDocName="$(echo "$name" | sed 's/-[^a-zA-Z].*//')" + fi + fi + configureFlags="\ --bindir=${!outputBin}/bin --sbindir=${!outputBin}/sbin \ --includedir=${!outputInclude}/include --oldincludedir=${!outputInclude}/include \ --mandir=${!outputMan}/share/man --infodir=${!outputInfo}/share/info \ - --docdir=${!outputDoc}/share/doc \ + --docdir=${!outputDoc}/share/doc/${shareDocName} \ --libdir=${!outputLib}/lib --libexecdir=${!outputLib}/libexec \ --localedir=${!outputLib}/share/locale \ $configureFlags" @@ -62,6 +79,7 @@ _multioutConfig() { $installFlags" } + # Add rpath prefixes to library paths, and avoid stdenv doing it for $out. _addRpathPrefix "${!outputLib}" NIX_NO_SELF_RPATH=1 @@ -144,8 +162,8 @@ _multioutDevs() { # Make the first output (typically "dev") propagate other outputs needed for development. # Take the first, because that's what one gets when putting the package into buildInputs. -# Note: during the build, probably only the "native" development packages are useful. -# With current cross-building setup, all packages are "native" if not cross-building. +# Note: with current cross-building setup, all packages are "native" if not cross-building; +# however, if cross-building, the outputs are non-native. We have to choose the right file. _multioutPropagateDev() { if [ "$outputs" = "out" ]; then return; fi; @@ -170,8 +188,15 @@ _multioutPropagateDev() { fi mkdir -p "${!outputFirst}"/nix-support + local propagatedBuildInputsFile + if [ -z "$crossConfig" ]; then + propagatedBuildInputsFile=propagated-native-build-inputs + else + propagatedBuildInputsFile=propagated-build-inputs + fi + for output in $propagatedBuildOutputs; do - echo -n " ${!output}" >> "${!outputFirst}"/nix-support/propagated-native-build-inputs + echo -n " ${!output}" >> "${!outputFirst}"/nix-support/$propagatedBuildInputsFile done } diff --git a/pkgs/build-support/setup-hooks/scatter_output.sh b/pkgs/build-support/setup-hooks/scatter_output.sh deleted file mode 100644 index f2a501c55e4..00000000000 --- a/pkgs/build-support/setup-hooks/scatter_output.sh +++ /dev/null @@ -1,56 +0,0 @@ -preFixupPhases+=" scatter_files" -preDistPhases+=" propagate_bin_input" - -SCATTER_BIN_DEFAULT=${SCATTER_BIN_DEFAULT:-"/lib/*.so* /bin/*"} -SCATTER_DOC_DEFAULT=${SCATTER_DOC_DEFAULT:-"/share/man/* /share/doc/*"} - - -scatter_files() { - save_nullglob=$(shopt -p nullglob) - for o in $outputs; do - [[ "$o" == "out" ]] && continue - v=files_${o} - - #if files_'output' isn't set in derivative, use defualts for some - [[ ${!v} ]] || { - case $o in - bin) - v=SCATTER_BIN_DEFAULT - ;; - doc) - v=SCATTER_DOC_DEFAULT - ;; - *) - continue - ;; - esac - } - - # prepend each path with $out - paths=$out${!v// \// $out/} - shopt -s nullglob - for f in $paths; do - shopt -u nullglob - dist=${!o}${f#$out} - mkdir -p $(dirname $dist) - cp -pr $f $dist - # remove source, not forgetting to clean empty dirs - rm -r $f - rmdir --ignore-fail-on-non-empty $(dirname $f) - done - find ${!o} -type f -exec $SHELL -c 'patchelf --set-rpath $(patchelf --print-rpath {} 2>/dev/null):'${!o}'/lib {} 2>/dev/null && patchelf --shrink-rpath {}' \; - done - eval $save_nullglob -} - -propagate_bin_input() { - if [[ -n ${bin:-} ]]; then - mkdir -p $out/nix-support - echo $bin >> $out/nix-support/propagated-native-build-inputs - fi - - if [[ -n ${bin:-} && -n ${doc:-} ]]; then - mkdir -p $bin/nix-support - echo $doc >> $bin/nix-support/propagated-user-env-packages - fi -} diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix index fef91e1d89d..b0040cf1817 100644 --- a/pkgs/build-support/trivial-builders.nix +++ b/pkgs/build-support/trivial-builders.nix @@ -47,16 +47,24 @@ rec { # Create a forest of symlinks to the files in `paths'. - symlinkJoin = name: paths: + symlinkJoin = + { name + , paths + , preferLocalBuild ? true + , allowSubstitutes ? false + , postBuild ? "" + , buildInputs ? [] + , meta ? {} + }: runCommand name - { inherit paths; - preferLocalBuild = true; allowSubstitutes = false; + { inherit paths preferLocalBuild allowSubstitutes buildInputs meta; } '' mkdir -p $out for i in $paths; do ${lndir}/bin/lndir $i $out done + ${postBuild} ''; diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index e670e1ef225..50c18360b8a 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -329,14 +329,14 @@ rec { buildInputs = [ utillinux ]; buildCommand = '' ln -s ${linux}/lib /lib - ${module_init_tools}/bin/modprobe loop - ${module_init_tools}/bin/modprobe ext4 - ${module_init_tools}/bin/modprobe hfs - ${module_init_tools}/bin/modprobe hfsplus - ${module_init_tools}/bin/modprobe squashfs - ${module_init_tools}/bin/modprobe iso9660 - ${module_init_tools}/bin/modprobe ufs - ${module_init_tools}/bin/modprobe cramfs + ${kmod}/bin/modprobe loop + ${kmod}/bin/modprobe ext4 + ${kmod}/bin/modprobe hfs + ${kmod}/bin/modprobe hfsplus + ${kmod}/bin/modprobe squashfs + ${kmod}/bin/modprobe iso9660 + ${kmod}/bin/modprobe ufs + ${kmod}/bin/modprobe cramfs mknod /dev/loop0 b 7 0 mkdir -p $out @@ -355,12 +355,12 @@ rec { buildInputs = [ utillinux mtdutils ]; buildCommand = '' ln -s ${linux}/lib /lib - ${module_init_tools}/bin/modprobe mtd - ${module_init_tools}/bin/modprobe mtdram total_size=131072 - ${module_init_tools}/bin/modprobe mtdchar - ${module_init_tools}/bin/modprobe mtdblock - ${module_init_tools}/bin/modprobe jffs2 - ${module_init_tools}/bin/modprobe zlib + ${kmod}/bin/modprobe mtd + ${kmod}/bin/modprobe mtdram total_size=131072 + ${kmod}/bin/modprobe mtdchar + ${kmod}/bin/modprobe mtdblock + ${kmod}/bin/modprobe jffs2 + ${kmod}/bin/modprobe zlib mknod /dev/mtd0 c 90 0 mknod /dev/mtdblock0 b 31 0 @@ -1688,6 +1688,40 @@ rec { packages = commonDebPackages ++ [ "diffutils" "libc-bin" ]; }; + ubuntu1604i386 = { + name = "ubuntu-16.04-xenial-i386"; + fullName = "Ubuntu 16.04 Xenial (i386)"; + packagesLists = + [ (fetchurl { + url = mirror://ubuntu/dists/xenial/main/binary-i386/Packages.xz; + sha256 = "13r75sp4slqy8w32y5dnr7pp7p3cfvavyr1g7gwnlkyrq4zx4ahy"; + }) + (fetchurl { + url = mirror://ubuntu/dists/xenial/universe/binary-i386/Packages.xz; + sha256 = "14fid1rqm3sc0wlygcvn0yx5aljf51c2jpd4x0zxij4019316hsh"; + }) + ]; + urlPrefix = mirror://ubuntu; + packages = commonDebPackages ++ [ "diffutils" "libc-bin" ]; + }; + + ubuntu1604x86_64 = { + name = "ubuntu-16.04-xenial-amd64"; + fullName = "Ubuntu 16.04 Xenial (amd64)"; + packagesList = + [ (fetchurl { + url = mirror://ubuntu/dists/xenial/main/binary-amd64/Packages.xz; + sha256 = "110qnkhjkkwm316fbig3aivm2595ydz6zskc4ld5cr8ngcrqm1bn"; + }) + (fetchurl { + url = mirror://ubuntu/dists/xenial/universe/binary-amd64/Packages.xz; + sha256 = "0mm7gj491yi6q4v0n4qkbsm94s59bvqir6fk60j73w7y4la8rg68"; + }) + ]; + urlPrefix = mirror://ubuntu; + packages = commonDebPackages ++ [ "diffutils" "libc-bin" ]; + }; + debian40i386 = { name = "debian-4.0r9-etch-i386"; fullName = "Debian 4.0r9 Etch (i386)"; diff --git a/pkgs/data/documentation/zeal/default.nix b/pkgs/data/documentation/zeal/default.nix index dd681404e85..89e5d83df61 100644 --- a/pkgs/data/documentation/zeal/default.nix +++ b/pkgs/data/documentation/zeal/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, libarchive, pkgconfig, qtbase -, qtimageformats, qtwebkit, qtx11extras, xorg }: +, qtimageformats, qtwebkit, qtx11extras, xcbutilkeysyms, qmakeHook }: stdenv.mkDerivation rec { version = "0.2.1"; @@ -13,18 +13,12 @@ stdenv.mkDerivation rec { }; buildInputs = [ - xorg.xcbutilkeysyms pkgconfig qtbase qtimageformats qtwebkit qtx11extras libarchive + xcbutilkeysyms pkgconfig qtbase qtimageformats qtwebkit qtx11extras libarchive qmakeHook ]; - configurePhase = '' - runHook preConfigure - qmake PREFIX=/ - runHook postConfigure - ''; + qmakeFlags = [ "PREFIX=/" ]; - installPhase = '' - make INSTALL_ROOT=$out install - ''; + installFlags = [ "INSTALL_ROOT=$(out)" ]; enableParallelBuilding = true; diff --git a/pkgs/data/fonts/cantarell-fonts/default.nix b/pkgs/data/fonts/cantarell-fonts/default.nix index 34434f60172..65df7fc1f95 100644 --- a/pkgs/data/fonts/cantarell-fonts/default.nix +++ b/pkgs/data/fonts/cantarell-fonts/default.nix @@ -1,11 +1,13 @@ { stdenv, fetchurl }: -stdenv.mkDerivation { - name = "cantarell-fonts-0.0.17"; +stdenv.mkDerivation rec { + major = "0.0"; + minor = "24"; + name = "cantarell-fonts-${major}.${minor}"; src = fetchurl { - url = mirror://gnome/sources/cantarell-fonts/0.0/cantarell-fonts-0.0.17.tar.xz; - sha256 = "0kx05fw1i11zcqx5yv9y9iprpl49k51sibz86bc58a50n1w6gcwn"; + url = "mirror://gnome/sources/cantarell-fonts/${major}/${name}.tar.xz"; + sha256 = "0r4jnc2x9yncf40lixjb1pqgpq8rzbi2fz33pshlqzjgx2d69bcw"; }; meta = { diff --git a/pkgs/data/fonts/hack/default.nix b/pkgs/data/fonts/hack/default.nix index 44b931f3b1d..689e1e054dc 100644 --- a/pkgs/data/fonts/hack/default.nix +++ b/pkgs/data/fonts/hack/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "hack-font-${version}"; - version = "2.019"; + version = "2.020"; src = let version_ = with stdenv.lib; concatStringsSep "_" (splitString "." version); in fetchurl { - sha256 = "0fhrl7y5z3d5fkiycbsi621f8nzfnpz8khxpd6hkc1hrg7nzmrk4"; + sha256 = "16kkmc3psckw1b7k07ccn1gi5ymhlg9djh43nqjzg065g6p6d184"; url = "https://github.com/chrissimpkins/Hack/releases/download/v${version}/Hack-v${version_}-ttf.zip"; }; diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index c9b6eb8917f..3792047aea1 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,26 +8,26 @@ let in stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; - version = "2016-02-29"; + version = "2016-05-02"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" - "00y8j0jxk60wscm6wiz3mmmj5xfvwqnmxjm2ar8ngkl8mxzl12gm"; + "0g34nwilhim73f0qp0yq3lfx54c42wy70ra4dkmwlfddyq3ln0xd"; srcGeoIPv6 = fetchDB "GeoIPv6.dat.gz" "GeoIPv6.dat.gz" - "0l6wv246kzm63qqmqr9lzpbvbanfwfkvn9bj34jn2djp4rfrkjrf"; + "12k4nmfblm9c7kj4v7cyl6sgfgdfv2jdx4fl7nxfzpk1km7yc5na"; srcGeoLiteCity = fetchDB "GeoLiteCity.dat.xz" "GeoIPCity.dat.xz" - "1095jar3vyax0gmj7wc0w28rpjmq2j1b6wk5yfaghyl87mad5q0f"; + "04bi7zmmm7v9gl9vhxh0fvqfhmg9ja1lan4ff0njx7qs7lz3ak88"; srcGeoLiteCityv6 = fetchDB "GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz" - "0fnlznn04lpkkd7sy9r9kdl3fcp8ix7msdrncwgz26dh537ml32z"; + "1sr2yapsfmdpl4zpf8i5rl3k65dgbq7bb1615g6wf60yw9ngh76x"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "10i4c8irvh9shbl3y0s0ffkm71vf3r290fvxjx20snqa558hkvib"; + "04gyrb5qyy3i1p9lgnls90irq3s64y5qfcqj91nx4x68r7dixnai"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "1rvbjrj98pqj9w5ql5j49b3h40496g6aralpnz1gj21v6dfrd55n"; + "1l9j97bk3mbv5b6lxva6ig590gl7097xr0vayz5mpsfx5d37r4zw"; meta = with stdenv.lib; { description = "GeoLite Legacy IP geolocation databases"; diff --git a/pkgs/data/misc/tzdata/default.nix b/pkgs/data/misc/tzdata/default.nix index 8ffd2133060..9adbbcb7d7f 100644 --- a/pkgs/data/misc/tzdata/default.nix +++ b/pkgs/data/misc/tzdata/default.nix @@ -2,16 +2,16 @@ stdenv.mkDerivation rec { name = "tzdata-${version}"; - version = "2016c"; + version = "2016d"; srcs = [ (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"; - sha256 = "0j1dk830rkr1pijfac5wkdifi47k28mmvfys6z07l07jws0xj047"; + sha256 = "1d51y1cmp2mhfmk51pagw7p15vrnf269xn1bb19n1mzgl3xlsmfr"; }) (fetchurl { url = "http://www.iana.org/time-zones/repository/releases/tzcode${version}.tar.gz"; - sha256 = "05m4ql1x3b4bmlg0vv1ibz2128mkk4xxnixagcmwlnwkhva1njrl"; + sha256 = "1jp06jd3vpsh38549xnx0wnxadrnwvvcg7vnwh4y3xxfhxpkvwx8"; }) ]; diff --git a/pkgs/desktops/gnome-2/desktop/gtksourceview/default.nix b/pkgs/desktops/gnome-2/desktop/gtksourceview/default.nix index aa1080012d5..c69ee82fa26 100644 --- a/pkgs/desktops/gnome-2/desktop/gtksourceview/default.nix +++ b/pkgs/desktops/gnome-2/desktop/gtksourceview/default.nix @@ -1,11 +1,13 @@ {stdenv, fetchurl, pkgconfig, atk, cairo, glib, gtk, pango, libxml2Python, perl, intltool, gettext}: -stdenv.mkDerivation { - name = "gtksourceview-2.9.9"; +stdenv.mkDerivation rec { + name = "gtksourceview-${version}"; + version = "2.10.5"; + src = fetchurl { - url = mirror://gnome/sources/gtksourceview/2.9/gtksourceview-2.9.9.tar.bz2; - sha256 = "0d0i586nj8jsqqfcjcvaj0yzc3sid3s1a4y62xr0qbddkbn1wllj"; + url = "mirror://gnome/sources/gtksourceview/2.10/${name}.tar.bz2"; + sha256 = "c585773743b1df8a04b1be7f7d90eecdf22681490d6810be54c81a7ae152191e"; }; buildInputs = [pkgconfig atk cairo glib gtk pango libxml2Python perl intltool gettext]; diff --git a/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix b/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix index df90c7b2977..d5b2558cf70 100644 --- a/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix +++ b/pkgs/desktops/gnome-3/3.18/apps/file-roller/default.nix @@ -1,18 +1,17 @@ { stdenv, fetchurl, glib, pkgconfig, gnome3, intltool, itstool, libxml2, libarchive -, attr, bzip2, acl, wrapGAppsHook, librsvg, gdk_pixbuf }: +, attr, bzip2, acl, wrapGAppsHook, librsvg, libnotify, gdk_pixbuf }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; - # TODO: support nautilus - # it tries to create {nautilus}/lib/nautilus/extensions-3.0/libnautilus-fileroller.so - nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; - buildInputs = [ glib gnome3.gtk intltool itstool libxml2 libarchive + buildInputs = [ glib gnome3.gtk intltool itstool libxml2 libarchive libnotify gnome3.defaultIconTheme attr bzip2 acl gdk_pixbuf librsvg gnome3.dconf ]; + installFlags = [ "nautilus_extensiondir=$(out)/lib/nautilus/extensions-3.0" ]; + meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/FileRoller; description = "Archive manager for the GNOME desktop environment"; diff --git a/pkgs/desktops/kde-5/applications-15.12/default.nix b/pkgs/desktops/kde-5/applications-15.12/default.nix index 5db80b45b8f..f9d65ac6d87 100644 --- a/pkgs/desktops/kde-5/applications-15.12/default.nix +++ b/pkgs/desktops/kde-5/applications-15.12/default.nix @@ -40,6 +40,7 @@ let gwenview = callPackage ./gwenview.nix {}; kate = callPackage ./kate.nix {}; kcalc = callPackage ./kcalc.nix {}; + kcolorchooser = callPackage ./kcolorchooser.nix {}; kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {}; kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {}; kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; }; diff --git a/pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix b/pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix new file mode 100644 index 00000000000..e8eac273cb5 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix @@ -0,0 +1,15 @@ +{ kdeApp, lib +, automoc4, cmake, kdelibs +}: + +kdeApp { + name = "kcolorchooser"; + + nativeBuildInputs = [ automoc4 cmake ]; + buildInputs = [ kdelibs ]; + + meta = { + license = with lib.licenses; [ mit ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh index 56ed09f4ea5..193cb048949 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh +++ b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh @@ -7,7 +7,6 @@ _ecmSetXdgDirs() { _ecmPropagateSharedData() { local sharedPaths=( \ "config.cfg" \ - "doc" \ "kconf_update" \ "kservices5" \ "kservicetypes5" \ @@ -20,7 +19,6 @@ _ecmPropagateSharedData() { "applications" \ "desktop-directories" \ "mime" \ - "info" \ "dbus-1" \ "interfaces" \ "services" \ @@ -28,6 +26,7 @@ _ecmPropagateSharedData() { for dir in ${sharedPaths[@]}; do if [ -d "$1/share/$dir" ]; then addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" + propagateOnce propagatedBuildInputs "$1" propagateOnce propagatedUserEnvPkgs "$1" break fi diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/default.nix index 0e14d06edd3..3b3bd27cce0 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/default.nix @@ -9,7 +9,8 @@ kdeFramework { propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ]; patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; postInstall = '' - wrapQtProgram "$out/bin/preparetips5" + moveToOutput "bin/preparetips5" "$dev" + wrapQtProgram "$dev/bin/preparetips5" ''; meta = { maintainers = [ lib.maintainers.ttuegel ]; diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kinit/0001-kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks-5.19/kinit/0001-kinit-libpath.patch deleted file mode 100644 index 9c76079a382..00000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/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/desktops/kde-5/frameworks-5.19/kinit/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix index 5f644d7c424..64210ca7605 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix @@ -1,4 +1,4 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcrash +{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules, kconfig, kcrash , kdoctools, ki18n, kio, kservice, kwindowsystem, libcap , libcap_progs }: @@ -10,7 +10,7 @@ kdeFramework { nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; buildInputs = [ kconfig kcrash kservice libcap ]; propagatedBuildInputs = [ ki18n kio kwindowsystem ]; - patches = [ ./0001-kinit-libpath.patch ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); meta = { maintainers = [ lib.maintainers.ttuegel ]; }; diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks-5.19/kinit/kinit-libpath.patch new file mode 100644 index 00000000000..52c5563ea58 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/kinit/kinit-libpath.patch @@ -0,0 +1,31 @@ +Index: kinit-5.19.0/src/kdeinit/kinit.cpp +=================================================================== +--- kinit-5.19.0.orig/src/kdeinit/kinit.cpp ++++ kinit-5.19.0/src/kdeinit/kinit.cpp +@@ -658,15 +658,17 @@ static pid_t launch(int argc, const char + 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); +- l.load(); ++ // Try to load the library relative to the active profiles. ++ QByteArrayList profiles = qgetenv("NIX_PROFILES").split(' '); ++ // Reverse the profile list. ++ std::reverse(profiles.begin(), profiles.end()); ++ const QString libdir = QString::fromLatin1("/lib/"); ++ Q_FOREACH (const QByteArray &profile, profiles) { ++ if (!profile.isEmpty()) { ++ l.setFileName(QFile::decodeName(profile) + libdir + libpath); ++ if (l.load()) break; ++ } ++ } + } + } + if (!l.isLoaded()) { diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kinit/series b/pkgs/desktops/kde-5/frameworks-5.19/kinit/series new file mode 100644 index 00000000000..5faa456366b --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/kinit/series @@ -0,0 +1 @@ +kinit-libpath.patch diff --git a/pkgs/desktops/kde-5/plasma-5.5/default.nix b/pkgs/desktops/kde-5/plasma-5.5/default.nix index 384fa6f6d27..3921f93a41d 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.5/default.nix @@ -51,8 +51,10 @@ let let version = (builtins.parseDrvName breeze-qt5.name).version; in - symlinkJoin "breeze-${version}" - (map (pkg: pkg.out or pkg) [ breeze-gtk breeze-qt4 breeze-qt5 ]); + symlinkJoin { + name = "breeze-${version}"; + paths = map (pkg: pkg.out or pkg) [ breeze-gtk breeze-qt4 breeze-qt5 ]; + }; kde-cli-tools = callPackage ./kde-cli-tools.nix {}; kde-gtk-config = callPackage ./kde-gtk-config {}; kdecoration = callPackage ./kdecoration.nix {}; @@ -81,6 +83,7 @@ let plasma-workspace-wallpapers = callPackage ./plasma-workspace-wallpapers.nix {}; polkit-kde-agent = callPackage ./polkit-kde-agent.nix {}; powerdevil = callPackage ./powerdevil.nix {}; + startkde = callPackage ./startkde {}; systemsettings = callPackage ./systemsettings.nix {}; }; diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix index 01c5c63ce0a..1a96c1eced2 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix @@ -1,14 +1,12 @@ { plasmaPackage, lib, copyPathsToStore -, extra-cmake-modules, kdoctools, makeQtWrapper +, 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, qttools, dbus_tools, mkfontdir, xmessage -, xprop, xrdb, xset, xsetroot, solid, qtquickcontrols +, libksysguard, kconfig, solid, qtquickcontrols }: plasmaPackage { @@ -17,14 +15,13 @@ plasmaPackage { nativeBuildInputs = [ extra-cmake-modules kdoctools - makeQtWrapper ]; buildInputs = [ - dbus_tools kcmutils kconfig kcrash kdbusaddons kdesu kdewebkit - kinit kjsembed knewstuff knotifyconfig kpackage kservice + kcmutils kconfig kcrash kdbusaddons kdesu kdewebkit + kjsembed knewstuff knotifyconfig kpackage ktextwidgets kwallet kwayland kxmlrpcclient libdbusmenu libSM - libXcursor mkfontdir networkmanager-qt pam phonon qtscript qttools - socat wayland xmessage xprop xset xsetroot + libXcursor networkmanager-qt pam phonon qtscript + wayland ]; propagatedBuildInputs = [ baloo kactivities kdeclarative kdelibs4support kglobalaccel @@ -35,50 +32,14 @@ plasmaPackage { patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); postPatch = '' - substituteInPlace startkde/startkde.cmake \ - --subst-var-by bash $(type -P bash) \ - --subst-var-by sed $(type -P sed) \ - --subst-var-by grep $(type -P grep) \ - --subst-var-by socat $(type -P socat) \ - --subst-var-by kcheckrunning $(type -P kcheckrunning) \ - --subst-var-by xmessage $(type -P xmessage) \ - --subst-var-by tr $(type -P tr) \ - --subst-var-by qtpaths $(type -P qtpaths) \ - --subst-var-by qdbus $(type -P qdbus) \ - --subst-var-by dbus-launch $(type -P dbus-launch) \ - --subst-var-by mkfontdir $(type -P mkfontdir) \ - --subst-var-by xset $(type -P xset) \ - --subst-var-by xsetroot $(type -P xsetroot) \ - --subst-var-by xprop $(type -P xprop) \ - --subst-var-by start_kdeinit_wrapper "${kinit.out}/lib/libexec/kf5/start_kdeinit_wrapper" \ - --subst-var-by kwrapper5 $(type -P kwrapper5) \ - --subst-var-by kdeinit5_shutdown $(type -P kdeinit5_shutdown) \ - --subst-var-by kbuildsycoca5 $(type -P kbuildsycoca5) \ - --subst-var-by kreadconfig5 $(type -P kreadconfig5) \ - --subst-var out substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ --replace kdostartupconfig5 $out/bin/kdostartupconfig5 ''; postInstall = '' + rm "$out/bin/startkde" 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" - wrapQtProgram "$out/bin/ksplashqml" - wrapQtProgram "$out/bin/kcheckrunning" - wrapQtProgram "$out/bin/systemmonitor" - wrapQtProgram "$out/bin/kstartupconfig5" - 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" - ''; } diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/series b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/series index 88b54af793e..b9081298bd6 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/series +++ b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/series @@ -1,2 +1 @@ -startkde.patch qml-import-path.patch diff --git a/pkgs/desktops/kde-5/plasma-5.5/startkde/default.nix b/pkgs/desktops/kde-5/plasma-5.5/startkde/default.nix new file mode 100644 index 00000000000..30e986c21b4 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.5/startkde/default.nix @@ -0,0 +1,32 @@ +{ stdenv, lib, runCommand +, dbus, qttools, socat +, gnugrep, gnused +, kconfig, kinit, kservice +, plasma-workspace +, xmessage, xprop, xsetroot +}: + +let + + env = { + inherit (stdenv) shell; + paths = builtins.map (pkg: pkg.out or pkg) + [ + dbus qttools socat + gnugrep gnused + kconfig kinit kservice + plasma-workspace + xmessage xprop xsetroot + ]; + }; + +in runCommand "startkde" env '' + prefix_PATH= + for pkg in $paths; do + addToSearchPath prefix_PATH "$pkg/bin" + addToSearchPath prefix_PATH "$pkg/lib/libexec" + addToSearchPath prefix_PATH "$pkg/lib/libexec/kf5" + done + substitute ${./startkde.sh} "$out" --subst-var shell --subst-var prefix_PATH + chmod +x "$out" +'' diff --git a/pkgs/desktops/kde-5/plasma-5.5/startkde/startkde.sh b/pkgs/desktops/kde-5/plasma-5.5/startkde/startkde.sh new file mode 100755 index 00000000000..d839226a456 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.5/startkde/startkde.sh @@ -0,0 +1,334 @@ +#!@shell@ + +PATH="@prefix_PATH@:$PATH" + +# 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 + 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 + QT_XCB_FORCE_SOFTWARE_OPENGL=1 + export KWIN_COMPOSE KDE_FAILSAFE QT_XCB_FORCE_SOFTWARE_OPENGL +fi + +# When the X server dies we get a HUP signal from xinit. We must ignore it +# because we still need to do some cleanup. +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 + +# Check if a KDE session already is running and whether it's possible to connect to X +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." + exit 1 +elif test $kcheckrunning_result -eq 2 ; then + echo "\$DISPLAY is not set or cannot connect to the X server." + exit 1 +fi + +# Boot sequence: +# +# kdeinit is used to fork off processes which improves memory usage +# and startup time. +# +# * kdeinit starts klauncher first. +# * Then kded is started. kded is responsible for keeping the sycoca +# database up to date. When an up to date database is present it goes +# into the background and the startup continues. +# * Then kdeinit starts kcminit. kcminit performs initialisation of +# certain devices according to the user's settings +# +# * 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 +configDir=$(qtpaths --writable-path GenericConfigLocation) +mkdir -p "$configDir" + +#This is basically setting defaults so we can use them with kstartupconfig5 +cat >$configDir/startupconfigkeys <$plasmalocalerc <$kdeglobalsfile </dev/null 2>/dev/null; then + : # ok +else + echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null + xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" + exit 1 +fi + +ksplash_pid= +if test -z "$dl"; then + # the splashscreen and progress indicator + case "$ksplashrc_ksplash_engine" in + KSplashQML) + ksplash_pid=$(ksplashqml "${ksplashrc_ksplash_theme}" --pid) + ;; + None) + ;; + *) + ;; + esac +fi + +# Source scripts found in /plasma-workspace/env/*.sh +# (where correspond to the system and user's configuration +# directories, as identified by Qt's qtpaths, e.g. $HOME/.config +# and /etc/xdg/ on Linux) +# +# This is where you can define environment variables that will be available to +# all KDE programs, so this is where you can run agents using e.g. eval `ssh-agent` +# or eval `gpg-agent --daemon`. +# Note: if you do that, you should also put "ssh-agent -k" as a shutdown script +# +# (see end of this file). +# For anything else (that doesn't set env vars, or that needs a window manager), +# better use the Autostart folder. + +IFS=":" read -r -a scriptpath <<< $(qtpaths --paths GenericConfigLocation) +# Add /env/ to the directory to locate the scripts to be sourced +for prefix in "${scriptpath[@]}"; do + for file in "$prefix"/plasma-workspace/env/*.sh; do + test -r "$file" && . "$file" || true + done +done + +echo 'startkde: Starting up...' 1>&2 + +# 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 +# directly from the KDE session but e.g. using "ssh -X", kdesu. $KDE_FULL_SESSION +# however guarantees that the application is launched in the same environment +# like the KDE session and that e.g. KDE utilities/libraries are available. +# KDE_FULL_SESSION property is also only available since KDE 3.5.5. +# The matching tests are: +# For $KDE_FULL_SESSION: +# if test -n "$KDE_FULL_SESSION"; then ... whatever +# For KDE_FULL_SESSION property: +# xprop -root | grep "^KDE_FULL_SESSION" >/dev/null 2>/dev/null +# if test $? -eq 0; then ... whatever +# +# Additionally there is (since KDE 3.5.7) $KDE_SESSION_UID with the uid +# of the user running the KDE session. It should be rarely needed (e.g. +# after sudo to prevent desktop-wide functionality in the new user's kded). +# +# Since KDE4 there is also KDE_SESSION_VERSION, containing the major version number. +# Note that this didn't exist in KDE3, which can be detected by its absense and +# the presence of KDE_FULL_SESSION. +# +KDE_FULL_SESSION=true +export KDE_FULL_SESSION +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 + +KDE_SESSION_UID=`id -ru` +export KDE_SESSION_UID + +XDG_CURRENT_DESKTOP=KDE +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 +fi +# ...and also to kwalletd5 +if test -n "$PAM_KWALLET5_LOGIN" ; then + env | 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 +ksyncdbusenv +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." + 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 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." + exit 1 +fi + +# (NixOS) Run kbuildsycoca5 before starting the user session because things +# may be missing or moved if they have run nixos-rebuild and it may not be +# possible for them to start Konsole to run it manually! +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 +# window manager instead of kwin. +# if KDEWM is not set, ksmserver will ensure kwin is started. +# kwrapper5 is used to reduce startup time and memory usage +# kwrapper5 does not return useful error codes such as the exit code of ksmserver. +# We only check for 255 which means that the ksmserver process could not be +# started, any problems thereafter, e.g. ksmserver failing to initialize, +# will remain undetected. +test -n "$KDEWM" && KDEWM="--windowmanager $KDEWM" +# If the session should be locked from the start (locked autologin), +# lock now and do the rest of the KDE startup underneath the locker. +KSMSERVEROPTIONS="" +test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" +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." +fi + +wait_drkonqi=$(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_counter=0 + while qdbus | 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" + done + break + fi + done +fi + +echo 'startkde: Shutting down...' 1>&2 +# just in case +test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null + +# Clean up +kdeinit5_shutdown + +unset KDE_FULL_SESSION +xprop -root -remove KDE_FULL_SESSION +unset KDE_SESSION_VERSION +xprop -root -remove KDE_SESSION_VERSION +unset KDE_SESSION_UID + +echo 'startkde: Done.' 1>&2 diff --git a/pkgs/development/arduino/ino/default.nix b/pkgs/development/arduino/ino/default.nix index 073a2339720..07dc229bcc2 100644 --- a/pkgs/development/arduino/ino/default.nix +++ b/pkgs/development/arduino/ino/default.nix @@ -6,7 +6,7 @@ buildPythonApplication rec { namePrefix = ""; src = fetchurl { - url = "http://pypi.python.org/packages/source/i/ino/${name}.tar.gz"; + url = "mirror://pypi/i/ino/${name}.tar.gz"; sha256 = "0k6lzfcn55favbj0w4afrvnmwyskf7bgzg9javv2ycvskp35srwv"; }; diff --git a/pkgs/development/beam-modules/build-erlang-mk.nix b/pkgs/development/beam-modules/build-erlang-mk.nix new file mode 100644 index 00000000000..8c2b72aa43c --- /dev/null +++ b/pkgs/development/beam-modules/build-erlang-mk.nix @@ -0,0 +1,86 @@ +{ stdenv, writeText, erlang, perl, which, gitMinimal, wget }: + +{ name, version +, src +, setupHook ? null +, buildInputs ? [] +, beamDeps ? [] +, postPatch ? "" +, compilePorts ? false +, installPhase ? null +, meta ? {} +, ... }@attrs: + +with stdenv.lib; + +let + shell = drv: stdenv.mkDerivation { + name = "interactive-shell-${drv.name}"; + buildInputs = [ drv ]; + }; + + pkg = self: stdenv.mkDerivation ( attrs // { + app_name = "${name}"; + name = "${name}-${version}"; + inherit version; + + dontStrip = true; + + inherit src; + + setupHook = if setupHook == null + then writeText "setupHook.sh" '' + addToSearchPath ERL_LIBS "$1/lib/erlang/lib" + '' + else setupHook; + + buildInputs = [ erlang perl which gitMinimal wget ]; + propagatedBuildInputs = beamDeps; + + configurePhase = '' + runHook preConfigure + + # We shouldnt need to do this, but it seems at times there is a *.app in + # the repo/package. This ensures we start from a clean slate + make SKIP_DEPS=1 clean + + runHook postConfigure + ''; + + buildPhase = '' + runHook preBuild + + make SKIP_DEPS=1 + + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + + mkdir -p $out/lib/erlang/lib/${name} + cp -r ebin $out/lib/erlang/lib/${name}/ + cp -r src $out/lib/erlang/lib/${name}/ + + if [ -d include ]; then + cp -r include $out/lib/erlang/lib/${name}/ + fi + + if [ -d priv ]; then + cp -r priv $out/lib/erlang/lib/${name}/ + fi + + if [ -d doc ]; then + cp -r doc $out/lib/erlang/lib/${name}/ + fi + + runHook postInstall + ''; + + passthru = { + packageName = name; + env = shell self; + inherit beamDeps; + }; +}); +in fix pkg diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/beam-modules/build-hex.nix similarity index 100% rename from pkgs/development/erlang-modules/build-hex.nix rename to pkgs/development/beam-modules/build-hex.nix diff --git a/pkgs/development/beam-modules/build-mix.nix b/pkgs/development/beam-modules/build-mix.nix new file mode 100644 index 00000000000..70c186df8a0 --- /dev/null +++ b/pkgs/development/beam-modules/build-mix.nix @@ -0,0 +1,85 @@ +{ stdenv, writeText, elixir, erlang, hexRegistrySnapshot, hex }: + +{ name +, version +, src +, setupHook ? null +, buildInputs ? [] +, beamDeps ? [] +, postPatch ? "" +, compilePorts ? false +, meta ? {} +, ... }@attrs: + +with stdenv.lib; + +let + shell = drv: stdenv.mkDerivation { + name = "interactive-shell-${drv.name}"; + buildInputs = [ drv ]; + }; + + bootstrapper = ./mix-bootstrap; + + pkg = self: stdenv.mkDerivation ( attrs // { + name = "${name}-${version}"; + inherit version; + + dontStrip = true; + + inherit src; + + setupHook = if setupHook == null + then writeText "setupHook.sh" '' + addToSearchPath ERL_LIBS "$1/lib/erlang/lib" + '' + else setupHook; + + inherit buildInputs; + propagatedBuildInputs = [ hexRegistrySnapshot hex elixir ] ++ beamDeps; + + configurePhase = '' + runHook preConfigure + ${erlang}/bin/escript ${bootstrapper} + runHook postConfigure + ''; + + buildPhase = '' + runHook preBuild + + export HEX_OFFLINE=1 + export HEX_HOME=`pwd` + export MIX_ENV=prod + + MIX_ENV=prod mix compile --debug-info --no-deps-check + + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + + MIXENV=prod + + if [ -d "_build/shared" ]; then + MIXENV=shared + fi + + mkdir -p "$out/lib/erlang/lib/${name}-${version}" + for reldir in src ebin priv include; do + fd="_build/$MIXENV/lib/${name}/$reldir" + [ -d "$fd" ] || continue + cp -Hrt "$out/lib/erlang/lib/${name}-${version}" "$fd" + success=1 + done + + runHook postInstall + ''; + + passthru = { + packageName = name; + env = shell self; + inherit beamDeps; + }; +}); +in fix pkg diff --git a/pkgs/development/erlang-modules/build-rebar3.nix b/pkgs/development/beam-modules/build-rebar3.nix similarity index 86% rename from pkgs/development/erlang-modules/build-rebar3.nix rename to pkgs/development/beam-modules/build-rebar3.nix index 8033d6c838e..f13322519fd 100644 --- a/pkgs/development/erlang-modules/build-rebar3.nix +++ b/pkgs/development/beam-modules/build-rebar3.nix @@ -1,10 +1,10 @@ -{ stdenv, writeText, erlang, rebar3, openssl, libyaml, fetchHex, fetchFromGitHub, +{ stdenv, writeText, erlang, rebar3, openssl, libyaml, pc, buildEnv }: { name, version , src , setupHook ? null -, buildInputs ? [], erlangDeps ? [], buildPlugins ? [] +, buildInputs ? [], beamDeps ? [], buildPlugins ? [] , postPatch ? "" , compilePorts ? false , installPhase ? null @@ -27,8 +27,9 @@ let inherit version; buildInputs = buildInputs ++ [ erlang rebar3 openssl libyaml ]; - propagatedBuildInputs = unique (erlangDeps ++ ownPlugins); + propagatedBuildInputs = unique (beamDeps ++ ownPlugins); + dontStrip = true; # The following are used by rebar3-nix-bootstrap inherit compilePorts; buildPlugins = ownPlugins; @@ -47,7 +48,7 @@ let configurePhase = '' runHook preConfigure - rebar3-nix-bootstrap + ${erlang}/bin/escript ${rebar3.bootstrapper} runHook postConfigure ''; @@ -81,7 +82,7 @@ let passthru = { packageName = name; env = shell self; - inherit erlangDeps; + inherit beamDeps; }; }); in diff --git a/pkgs/development/beam-modules/default.nix b/pkgs/development/beam-modules/default.nix new file mode 100644 index 00000000000..1fd899c53c9 --- /dev/null +++ b/pkgs/development/beam-modules/default.nix @@ -0,0 +1,16 @@ +{ stdenv, pkgs }: + +let + self = rec { + hexPackages = import ./hex-packages.nix { stdenv = stdenv; callPackage = self.callPackage; pkgs = pkgs; }; + callPackage = pkgs.lib.callPackageWith (pkgs // self // hexPackages); + buildRebar3 = callPackage ./build-rebar3.nix {}; + buildHex = callPackage ./build-hex.nix {}; + buildErlangMk = callPackage ./build-erlang-mk.nix {}; + buildMix = callPackage ./build-mix.nix {}; + + ## Non hex packages + hex = callPackage ./hex {}; + webdriver = callPackage ./webdriver {}; + }; +in self // self.hexPackages diff --git a/pkgs/development/tools/build-managers/rebar3/fetch-hex.nix b/pkgs/development/beam-modules/fetch-hex.nix similarity index 100% rename from pkgs/development/tools/build-managers/rebar3/fetch-hex.nix rename to pkgs/development/beam-modules/fetch-hex.nix diff --git a/pkgs/development/beam-modules/hex-packages.nix b/pkgs/development/beam-modules/hex-packages.nix new file mode 100644 index 00000000000..1fcbb6f3e51 --- /dev/null +++ b/pkgs/development/beam-modules/hex-packages.nix @@ -0,0 +1,29449 @@ +/* hex-packages.nix is an auto-generated file -- DO NOT EDIT! */ + +/* Unbuildable packages: + + * active_0_9_0 + * address_us_0_1_1 + * aeacus_0_3_0 + * airbrake_0_1_0 + * airbrake_plug_0_1_1 + * airbrakex_0_0_6 + * airbrakify_0_0_1 + * algolia_0_3_1 + * alice_0_3_3 + * alice_against_humanity_0_1_2 + * alice_google_images_0_1_3 + * alice_karma_0_1_1 + * alice_shizzle_0_1_2 + * alice_xkcd_0_0_3 + * amazon_product_advertising_client_0_1_1 + * amqp_0_1_1 + * amqp_0_1_4 + * amqp_client_3_5_6 + * amrita_0_4_0 + * anilixir_1_0_0 + * anubis_0_1_0 + * anubis_0_3_0 + * apache_passwd_md5_1_0_0 + * apostle_0_0_3 + * arc_0_5_1 + * arc_ecto_0_3_2 + * asanaficator_0_0_1 + * assembla_api_0_1_0 + * atlas_0_2_0 + * aws_0_0_10 + * aws_erlang_0_1_1 + * aws_http_0_2_4 + * b2_0_0_6 + * backoff_1_1_3 + * balanced_3_1_0 + * bamboo_0_3_2 + * bamboo_0_4_0 + * bamboo_sendgrid_0_1_0 + * bandwidth_1_2_1 + * barrel_jiffy_0_14_4 + * barrel_jiffy_0_14_5 + * basehangul_0_2_0 + * basho_stats_1_0_3 + * basic_auth_1_0_0 + * battlenet_0_0_2 + * bbsmq_0_0_4 + * beaker_1_2_0 + * benchwarmer_0_0_2 + * bencoder_0_0_7 + * bertex_1_2_0 + * bgg_0_1_0 + * big_query_0_0_2 + * bing_translator_0_2_6 + * bitbucket_api_0_0_2 + * bitpay_0_2_5 + * blackbook_0_3_1 + * blaze_cloud_0_0_1 + * block_timer_0_0_1 + * blockchain_info_0_0_1 + * bloodhound_0_1_1 + * bno055_0_0_1 + * booter_0_1_0 + * botan_0_1_2 + * bottler_0_5_0 + * bouncer_0_1_5 + * brady_0_0_2 + * braintree_0_3_2 + * bson_0_4_4 + * bugsnag_1_2_0 + * bugsnag_erl_0_1_3 + * bump_0_1_0 + * bureaucrat_0_1_2 + * butler_0_7_0 + * butler_0_7_1 + * butler_cage_0_0_2 + * butler_cowsay_0_2_1 + * butler_new_0_4_3 + * butler_tableflip_0_0_3 + * cache_tab_1_0_2 + * calecto_0_5_2 + * canada_1_0_0 + * canary_0_14_1 + * carrier_1_0_4 + * cassette_1_0_0 + * cassette_plug_1_0_1 + * cassius_0_0_1 + * cauldron_0_1_5 + * caylir_0_2_0 + * ccc_0_0_2 + * cep_0_0_1 + * cesso_0_1_3 + * cet_0_2_3 + * chaos_spawn_0_7_0 + * charlotte_0_4_0 + * charm_0_0_1 + * chatter_0_0_14 + * chinese_translation_0_1_0 + * cipher_1_0_0 + * cldr_0_0_1 + * cleverbot_0_0_1 + * clicksign_0_0_2 + * cloak_0_2_0 + * cloudex_0_0_2 + * cloudi_core_1_5_1 + * cloudi_service_api_requests_1_5_1 + * cloudi_service_db_1_5_1 + * cloudi_service_db_cassandra_1_3_3 + * cloudi_service_db_cassandra_cql_1_5_1 + * cloudi_service_db_couchdb_1_5_1 + * cloudi_service_db_elasticsearch_1_3_3 + * cloudi_service_db_http_elli_1_5_1 + * cloudi_service_db_memcached_1_5_1 + * cloudi_service_db_mysql_1_5_1 + * cloudi_service_db_pgsql_1_5_1 + * cloudi_service_db_riak_1_3_3 + * cloudi_service_db_tokyotyrant_1_5_0 + * cloudi_service_filesystem_1_5_1 + * cloudi_service_http_client_1_5_1 + * cloudi_service_http_cowboy_1_5_1 + * cloudi_service_http_rest_1_5_1 + * cloudi_service_map_reduce_1_5_1 + * cloudi_service_monitoring_1_5_1 + * cloudi_service_queue_1_5_1 + * cloudi_service_quorum_1_5_1 + * cloudi_service_router_1_5_1 + * cloudi_service_tcp_1_5_1 + * cloudi_service_timers_1_5_1 + * cloudi_service_udp_1_5_1 + * cloudi_service_validate_1_5_1 + * cloudi_service_zeromq_1_5_1 + * cloudinary_0_0_2 + * cloudinaryex_0_0_2 + * clox_0_1_3 + * cmark_0_6_8 + * coinbase_0_0_1 + * coincap_io_0_0_1 + * comeonin_1_6_0 + * comeonin_2_0_3 + * comeonin_2_1_1 + * comeonin_2_3_0 + * comeonin_ecto_password_0_0_3 + * commerce_billing_0_0_2 + * comredis_1_0_0 + * conferl_0_0_1 + * conform_0_10_5 + * conform_0_11_0 + * console_0_0_1 + * consul_1_0_3 + * core_0_14_1 + * core_data_0_1_0 + * couchbeam_1_3_0 + * couchdb_client_0_2_5 + * couchdb_connector_0_2_0 + * countries_1_1_2 + * courier_web_0_0_8 + * coverex_1_4_8 + * cowboy_oauth_0_2_14 + * cpg_1_5_1 + * craterl_0_2_3 + * crc_0_4_0 + * crudex_0_0_2 + * crypto_ext_0_1_3 + * cure_0_4_1 + * current_streak_ex_0_1_1 + * currently_0_0_3 + * datomex_0_0_5 + * datomic_gen_server_2_0_1 + * db_0_9_0 + * dbschema_0_2_0 + * dbus_0_5_0 + * ddb_client_0_1_17 + * dealer_0_8_0 + * decimal_0_2_5 + * denrei_0_2_3 + * descriptive_statistics_0_0_1 + * deviant_elixir_0_0_4 + * dexts_0_2_1 + * di_0_1_0 + * dialyze_0_1_4 + * diane_0_0_1 + * dicer_0_8_0 + * dicks_0_1_0 + * digoc_0_3_3 + * diplomat_0_0_1 + * discount_0_7_0 + * discovery_0_5_7 + * distance_api_matrix_2_0_0 + * dns_0_0_3 + * dnsimple_0_0_1 + * docker_0_3_0 + * dotenv_0_0_4 + * dotenv_elixir_0_0_2 + * dovetail_0_0_3 + * dpd_client_0_0_6 + * dproto_0_1_12 + * dqe_0_1_33 + * dropbox_0_0_7 + * dublin_bus_api_0_1_6 + * e_quip_0_0_1 + * ecc_0_1_3 + * echonest_ex_0_0_2 + * ecto_0_2_4 + * ecto_0_2_7 + * ecto_0_5_1 + * ecto_2_0_0_beta_2 + * ecto_enum_0_3_0 + * ecto_fixtures_0_0_2 + * ecto_hstore_0_0_1 + * ecto_it_0_2_0 + * ecto_lazy_float_0_1_2 + * ecto_ldap_0_2_4 + * ecto_migrate_0_6_3 + * ecto_ordered_0_0_2 + * ecto_validation_case_0_1_1 + * ectoo_0_0_4 + * ectophile_0_3_0 + * eden_0_1_3 + * edgarex_0_0_2 + * edown_0_7_0 + * efrisby_0_2_0 + * ejabberd_16_2_0 + * ekstat_0_2_2 + * elastex_0_1_2 + * elastix_0_1_0 + * elaxtic_0_0_1 + * eleveldb_2_1_3 + * elibphonenumber_0_1_1 + * elistrix_0_0_5 + * elixilorem_0_0_1 + * elixir_ale_0_4_1 + * elixir_ipfs_api_0_1_0 + * elixir_locker_0_1_4 + * elixir_nsq_1_0_3 + * elixir_talk_1_0_1 + * elixtagram_0_2_5 + * elmit_0_0_1 + * email_checker_0_0_3 + * enotify_0_1_0 + * ensq_0_1_6 + * env_conf_0_3_0 + * epgpool_1_0_0 + * eplugin_0_1_4 + * epubnub_0_1_0 + * eredis_cluster_0_5_4 + * erlang_dbus_0_2_0 + * erlang_lua_0_1_0 + * erlastic_search_1_1_1 + * erlcloud_0_9_2 + * erldn_1_0_5 + * erlexec_1_1_1 + * erltrace_0_1_4 + * erlzk_0_6_1 + * erocksdb_0_4_1 + * erwatch_0_3_0 + * es_0_0_1 + * escalus_2_6_4 + * esip_1_0_2 + * espec_0_8_16 + * espec_phoenix_0_2_0 + * esqlite_0_2_2 + * etcd_0_0_2 + * etherchain_org_0_0_3 + * euler_0_0_1 + * event_source_encoder_0_0_3 + * eventstore_client_0_1_4 + * everex_0_1_1 + * everyoneapi_0_0_1 + * ex_aerospike_0_0_1 + * ex_aws_0_4_18 + * ex_bitcask_0_1_0 + * ex_chimp_0_0_1 + * ex_closeio_0_0_12 + * ex_cloudinary_0_1_2 + * ex_conf_0_1_2 + * ex_conf_0_1_3 + * ex_crypto_0_0_1 + * ex_dockerapi_0_0_1 + * ex_edn_0_1_2 + * ex_iss_1_0_0 + * ex_omegle_0_1_1 + * ex_orient_1_1_1 + * ex_parsec_0_2_1 + * ex_unit_emacs_0_1_2 + * exalice_0_0_5_alpha + * exauth_0_0_1 + * excheck_0_3_3 + * excountries_0_0_3 + * excoveralls_0_5_1 + * exddb_0_1_3 + * exdesk_0_2_0 + * exdjango_0_3_1 + * exdn_2_1_2 + * exdweet_0_0_1 + * exeque_0_1_0 + * exfavicon_0_3_2 + * exfile_0_1_5 + * exfile_0_2_0 + * exfile_b2_0_1_3 + * exfile_imagemagick_0_1_1 + * exfile_memory_0_1_0 + * exfoaas_0_0_2 + * exgenius_0_0_5 + * exgpg_0_0_3 + * exgrid_0_3_0 + * exhal_4_2_1 + * exintercom_0_1_6 + * exjira_0_0_1 + * exjprop_0_0_5 + * exkad_0_0_2 + * exkismet_0_0_2 + * exometer_core_1_0_0 + * exos_1_0_0 + * exparticle_0_0_2 + * expcap_0_1_0 + * exprotobuf_0_10_2 + * exprotobuf_0_13_0 + * exprotobuf_1_0_0 + * exrabbit_0_0_2 + * exrecaptcha_0_0_3 + * exrm_0_14_17 + * exrm_0_14_2 + * exrm_0_18_8 + * exrm_rpm_0_3_0 + * exseed_0_0_3 + * exsentry_0_3_0 + * exsyslog_1_0_1 + * extreme_0_5_0 + * extripe_0_3_2 + * exts_0_2_2 + * exurban_0_0_1 + * exvcr_0_3_9 + * exvcr_0_7_2 + * exyelp_0_0_2 + * ezlib_1_0_1 + * ezmq_0_2_0 + * facebook_0_4_2 + * fast_tls_1_0_1 + * fast_xml_1_1_11 + * fast_yaml_1_0_3 + * favicon_0_0_7 + * feedistiller_2_0_2 + * feedlex_0_0_1 + * feedme_0_0_1 + * fifo_db_0_2_1 + * fifo_dt_0_1_66 + * fifo_dt_0_1_68 + * fifo_spec_0_1_27 + * fifo_utils_0_1_20 + * fifo_utils_0_1_22 + * figaro_0_1_0 + * filepreviews_1_0_1 + * filtrex_0_1_0 + * finch_0_0_3 + * fireworks_0_5_1 + * fitbit_0_0_1 + * fitex_0_0_1 + * fleet_api_0_0_15 + * floki_0_1_1 + * floki_0_7_2 + * flower_power_0_3_2 + * fluent_client_0_1_0 + * folsom_ddb_0_1_22 + * font_awesome_phoenix_0_3_2 + * forcex_0_2_0 + * forecast_io_0_2_1 + * form_data_0_1_1 + * fox_0_1_12 + * fqc_0_1_7 + * frank_0_0_3 + * freegeoip_0_0_4 + * fulcrum_0_0_6 + * funnel_0_4_1 + * gateway_0_0_6 + * gcm_1_2_0 + * gcmex_0_0_1 + * gen_rpc_1_0_2 + * geo_1_0_1 + * geocoder_0_4_0 + * gil_0_0_3 + * gimei_0_0_2 + * gimei_ex_1_0_0 + * github_oauth_0_1_1 + * github_trend_ex_0_1_2 + * gizoogle_0_0_2 + * gmail_0_1_8 + * gold_0_12_0 + * google_sheets_2_0_5 + * goth_0_0_3 + * gpb_3_18_10 + * gpb_3_18_8 + * gpb_3_20_0 + * graphql_parser_0_0_3 + * graphql_relay_0_0_16 + * group_manager_0_0_8 + * guardian_0_10_1 + * guardian_0_9_1 + * guardian_db_0_4_0 + * guri_0_2_1 + * gutenex_0_1_0 + * hackney_1_1_0 + * hackney_1_3_1 + * hackney_1_3_2 + * hackney_1_4_10 + * hackney_1_4_4 + * hackney_1_4_8 + * hackney_1_5_7 + * hackney_1_6_0 + * hamcrest_0_1_1 + * harvest_0_0_3 + * hash_ring_ex_1_1_2 + * hdr_histogram_0_2_0 + * hedwig_hipchat_0_9_4 + * hedwig_irc_0_1_1 + * hedwig_xmpp_1_0_0_rc2 + * hello_0_0_0 + * hello_world_0_0_0 + * hello_world_header_0_0_1 + * hex_searcher_1_0_0 + * hexoku_0_1_0 + * hmc5883l_0_5_0 + * honeybadger_0_4_0 + * honeydew_0_0_8 + * hound_0_8_2 + * hr_0_2_2 + * hstore_0_0_2 + * html_sanitize_ex_0_1_2 + * html_sanitize_ex_0_3_1 + * htpasswd_1_0_2 + * http_0_0_1 + * http_proxy_1_0_1 + * httpehaviour_0_9_0 + * httpoison_0_7_1 + * httpoison_0_7_5 + * httpoison_0_8_0 + * httpoison_0_8_2 + * httprot_0_1_7 + * huex_0_5_0 + * hydra_0_0_1 + * hypermock_0_0_2 + * iconv_1_0_0 + * ielixir_0_9_5 + * ifttt_oauth_0_0_1 + * inaka_aleppo_0_9_9 + * inaka_mixer_0_1_5 + * inch_ex_0_5_1 + * inch_test_0_0_1 + * inquisitor_0_1_0 + * insight_0_1_3 + * instream_0_10_0 + * intellij_elixir_0_1_2 + * iona_0_2_1 + * isbndbex_0_0_1 + * isn_1_0_0 + * ja_serializer_0_8_1 + * janrain_0_0_1 + * japanese_holiday_0_0_2 + * jazz_0_1_2 + * jazz_0_2_1 + * jc_1_0_4 + * jira_0_0_8 + * joken_1_1_0 + * jsxn_0_2_1 + * kane_0_0_5 + * katipo_0_3_2 + * keccakf1600_2_0_0 + * keelless_0_1_0 + * kerosene_0_0_1 + * kindred_0_0_1 + * kovacs_0_9_2 + * kubex_0_1_1 + * kvs_2_1_0 + * lager_2_1_1 + * lager_watchdog_0_1_10 + * lasp_0_0_5 + * lazymaru_0_2_5 + * ledx_0_0_1 + * libchunter_0_1_46 + * libdecaf_0_0_2 + * libex_config_0_2_0 + * libhowl_0_1_34 + * libleofs_0_1_2 + * libsnarl_0_3_40 + * libsnarl_0_3_44 + * libsniffle_0_3_45 + * libsodium_0_0_4 + * link_shrinkex_1_0_0 + * locker_1_0_8 + * logger_json_file_backend_0_1_2 + * logger_logentries_backend_0_0_1 + * logger_loggly_backend_0_2_0 + * lyn_0_0_16 + * m2x_2_0_0 + * m2x_erlang_1_3_1 + * mad_0_9_0 + * mailchimp_0_0_5 + * mailgun_webhook_auth_1_0_0 + * mailibex_0_1_0 + * mandrill_0_4_1 + * mandrillex_0_2_0 + * markit_0_1_2 + * markit_skill_0_0_2 + * maru_0_9_5 + * maru_swagger_0_7_3 + * marvel_1_0_0 + * marvin_0_3_0 + * mcrypt_0_1_0 + * mdns_client_0_1_7 + * mdns_client_lib_0_1_33 + * mdns_client_lib_0_1_38 + * meck_0_8_4 + * medex_0_1_2 + * message_pack_0_2_0 + * microformats2_0_0_5 + * mixpanel_api_ex_0_8_3 + * mixpanel_data_client_0_0_2 + * mixstar_0_0_1 + * mmath_0_1_15 + * mmath_0_1_16 + * mobiledoc_0_0_1 + * mochiweb_2_12_2 + * mock_0_1_3 + * moebius_1_0_8 + * mondo_0_1_0 + * mongo_0_5_4 + * motor_hat_0_6_1 + * mstore_0_1_9 + * mt940_0_4_0 + * murdoch_0_0_1 + * mustachex_0_0_1 + * mynumber_1_0_0 + * nacl_0_3_0 + * nadia_0_4_0 + * naughtygram_0_2_0 + * neo4j_0_3_0 + * neo4j_sips_0_1_25 + * neo4j_sips_models_0_1_1 + * neotomex_0_1_4 + * nerves_io_neopixel_0_2_0 + * nice_nickname_0_0_1 + * nifty_0_0_3 + * ninjaproxies_0_2_0 + * nio_google_authenticator_1_0_1 + * nio_google_geocoder_0_7_0 + * njord_0_1_1 + * nodefinder_1_5_1 + * normalixr_0_3_0 + * oauth2_0_3_0 + * oauth2_0_6_0 + * oauth2cli_0_0_4 + * oauth2ex_0_0_9 + * obelisk_0_10_0 + * observer_cli_1_0_3 + * octokit_0_1_0 + * okta_0_0_1 + * omise_0_1_4 + * one_signal_0_0_6 + * opbeat_0_3_0 + * open_graphx_0_0_2 + * openmaize_0_17_2 + * openstack_0_0_4 + * overpass_0_1_1 + * oxr_0_3_1 + * p1_mysql_1_0_1 + * p1_pgsql_1_1_0 + * p1_stringprep_1_0_1 + * p1_utils_1_0_3 + * p1_xml_1_1_1 + * p1_xmlrpc_1_15_1 + * pagexduty_0_1_0 + * params_2_0_0_beta_0 + * parse_client_0_2_3 + * parse_trans_2_9_0 + * parsex_0_0_2 + * passport_0_0_4 + * pavlov_0_2_3 + * peatio_client_1_5_0 + * pet_0_1_1 + * pgpool_1_0_0 + * phoenix_0_2_11 + * phoenix_0_4_1 + * phoenix_1_1_4 + * phoenix_calendar_0_1_2 + * phoenix_dtl_0_0_1 + * phoenix_ecto_3_0_0_beta_2 + * phoenix_ember_0_0_1 + * phoenix_gen_gulp_jspm_1_0_0 + * phoenix_haml_0_2_0 + * phoenix_html_2_0_0_dev + * phoenix_html_2_5_1 + * phoenix_html_sanitizer_0_2_0 + * phoenix_html_simplified_helpers_0_3_2 + * phoenix_linguist_0_0_1 + * phoenix_live_reload_1_0_3 + * phoenix_pubsub_rabbitmq_0_0_1 + * phoenix_pubsub_redis_2_0_0 + * phoenix_simple_form_0_0_2 + * phoenix_slim_0_4_1 + * phoenix_slime_0_5_1 + * phoenix_swoosh_0_1_0 + * phoenix_timex_0_0_3 + * phoenix_token_auth_0_4_0 + * picosat_0_1_0 + * pigeon_0_4_1 + * pin_elixir_0_0_1 + * pinglix_1_1_1 + * pipette_0_0_4 + * pixie_0_3_3 + * placid_0_1_3 + * plasm_0_1_0 + * plug_0_5_1 + * plug_0_5_2 + * plug_0_5_3 + * plug_0_7_0 + * plug_abort_2_1_1 + * plug_accesslog_0_11_0 + * plug_auth_0_3_0 + * plug_basic_auth_1_1_0 + * plug_byte_serve_0_3_2 + * plug_cors_0_8_2 + * plug_exception_handler_0_0_4 + * plug_graphql_0_2_0 + * plug_json_parser_0_0_6 + * plug_jwt_0_7_1 + * plug_secure_headers_0_0_1 + * plugsnag_1_1_0 + * pocketex_0_1_0 + * poison_1_0_3 + * poison_1_1_1 + * poison_1_2_1 + * poloniex_0_0_3 + * pool_0_0_2 + * poolboy_1_2_1 + * pooler_1_4_0 + * pooler_1_5_0 + * portal_0_0_1 + * porterstemmer_0_0_1 + * portmidi_3_2_0 + * postgrex_0_6_0 + * proper_1_1_1_beta + * protobuffs_0_8_2 + * proxy_0_0_1 + * pubnub_ex_0_0_2 + * pulse_0_1_3 + * pulse_libs_1_0_0 + * pusher_0_1_3 + * pushex_0_0_2 + * qiita_ex_0_0_2 + * qiniu_0_2_2 + * quinn_0_0_4 + * rackla_1_0_0 + * radpath_0_0_5 + * random_0_2_2 + * rapidax_0_0_3 + * raven_0_0_5 + * raygun_0_2_0 + * reactive_0_0_1 + * reagent_0_1_5 + * reaxt_0_3_2 + * rebar3_abnfc_plugin_0_1_0 + * rebar3_auto_0_3_0 + * rebar3_autotest_0_1_1 + * rebar3_eqc_0_0_10 + * rebar3_exunit_0_1_1 + * rebar3_gpb_plugin_1_3_0 + * rebar3_live_0_1_3 + * rebar3_proper_0_6_0 + * rebar3_proper_plugin_0_1_0 + * rebar3_protobuffs_0_2_0 + * rebar3_run_0_2_0 + * rebar3_yang_plugin_0_2_1 + * rebar_protobuffs_0_1_0 + * recaptcha_1_1_1 + * recon_ex_0_9_0 + * record_translator_0_0_3 + * reddhl_0_0_1 + * redtube_1_0_0 + * relax_0_3_0 + * relisa_0_1_0 + * rendezvous_0_0_1 + * reporter_0_4_1 + * rest_client_0_0_1 + * rethinkdb_0_4_0 + * rethinkdb_changefeed_0_0_1 + * reverse_proxy_0_1_0 + * riak_1_0_0 + * riak_core_ng_2_2_3 + * riak_ensemble_2_1_3 + * riak_pb_2_1_0 + * riakc_2_1_1 + * riboflavin_0_0_2 + * riemann_0_0_14 + * robotex_0_0_1 + * rogger_0_1_0 + * rollbax_0_5_4 + * roombex_0_0_4 + * rss_0_2_1 + * rulex_0_2_0 + * saltie_0_3_2 + * sass_elixir_0_0_1 + * savory_0_0_2 + * scrape_1_0_4 + * scrivener_1_1_2 + * scrivener_headers_1_0_1 + * scrivener_html_1_0_9 + * sec_company_filings_rss_feed_parser_0_0_2 + * sec_recent_filings_rss_feed_parser_0_0_3 + * secure_headers_0_0_1 + * secure_password_0_4_0 + * select_0_0_1 + * sendgrid_0_0_2 + * sentinel_0_1_0 + * sentry_0_3_2 + * sequences_1_1_0 + * serial_0_1_2 + * service_1_5_1 + * simple_format_0_1_0 + * simplify_0_2_0 + * siphash_3_0_0 + * sips_downloader_0_2_2 + * skroutz_0_1_0 + * slack_0_3_0 + * slack_0_4_2 + * slack_logger_backend_0_1_3 + * slack_webhook_0_0_2 + * slacker_0_0_2 + * slackex_0_0_1 + * slp_0_0_2 + * smex_0_0_1 + * snappy_1_1_1 + * snowflake_client_0_1_1 + * socket_0_2_8 + * socket_0_3_1 + * sonic_0_1_3 + * spaced_repetitions_0_0_1 + * spawndir_0_1_1 + * spirit_0_0_1 + * spotify_ex_0_0_4 + * spreedly_0_1_1 + * sql_dust_0_3_2 + * sqlite3_1_1_5 + * sqlite_ecto_0_5_0 + * sqlite_ecto_1_1_0 + * sqlitex_0_8_3 + * sqlitex_1_0_0 + * ssdb_0_3_0 + * ssdb_elixir_0_2_2 + * sshex_1_1_0 + * ssl_verify_fun_1_1_0 + * ssl_verify_hostname_1_0_5 + * ssl_verify_hostname_1_0_6 + * statistics_0_4_0 + * steamex_0_0_5 + * stmd_0_0_2 + * stockastic_0_0_2 + * stockfighter_0_0_1 + * strava_0_0_1 + * stringprep_1_0_3 + * stripe_0_0_1 + * stripex_0_1_0 + * stripity_stripe_1_4_0 + * structurez_0_0_1 + * stun_1_0_1 + * sugar_0_4_10 + * supermemo_1_0_0 + * supervisord_0_1_0 + * swaggerdoc_0_0_1 + * swapi_1_0_0 + * sweet_xml_0_4_0 + * swoosh_0_1_0 + * syslog_1_0_2 + * tagplay_0_1_0 + * tanegashima_0_0_9 + * tanuki_0_2_0 + * tds_ecto_1_0_2 + * telebot_0_1_2 + * templates_0_0_5 + * tentabucket_0_0_1 + * tentacat_0_4_0 + * theriac_0_0_1 + * thesis_0_0_8 + * timex_0_12_9 + * timex_0_13_5 + * timex_0_16_2 + * timex_0_19_5 + * timex_ecto_1_0_4 + * tmdb_0_0_6 + * togglex_0_2_0 + * tomlex_0_0_4 + * tracker_request_0_0_4 + * tractor_0_1_0 + * traitify_elixir_0_1_1 + * travis_ex_0_0_2 + * tributary_0_0_2 + * tubex_0_0_7 + * tuco_tuco_0_8_1 + * twittertex_0_1_0 + * twittex_0_0_4 + * typeformx_0_0_1 + * tzdata_0_5_7 + * u2f_0_1_3 + * ucol_2_0_0 + * ucol_nif_1_1_5 + * ueberauth_facebook_0_3_2 + * ueberauth_fitbit_0_2_1 + * ueberauth_github_0_2_0 + * ueberauth_google_0_2_0 + * ueberauth_slack_0_2_0 + * ueberauth_twitter_0_2_2 + * unsplash_0_3_0 + * untappd_0_0_1 + * upyun_0_0_1 + * uri_template_1_2_0 + * url_unroller_0_0_3 + * urna_0_1_4 + * uuid_erl_1_5_1 + * valid_field_0_3_0 + * velkoz_0_0_1 + * verk_web_0_9_4 + * viktor_0_0_9 + * vimeo_0_0_2 + * virus_total_0_0_1 + * wallaby_0_1_0 + * wayback_archiver_0_0_1 + * webdriver_0_8_1 + * weber_0_1_0 + * webmentions_0_0_5 + * webpay_0_0_4 + * weebo_0_1_2 + * wifi_0_2_0 + * wire_0_2_0 + * wizardry_0_0_1 + * wpa_supplicant_0_1_0 + * wykop_api_0_0_4 + * xe_0_0_1 + * xfighter_0_2_1 + * xkcd_0_0_1 + * xoauth2_0_0_3 + * yahoo_fx_0_2_0 + * yar_0_1_0 + * yggdrasil_1_1_1 + * yocingo_0_0_2 + * yodlee_0_1_4 + * yomel_0_5_0 + * ytx_0_0_5 + * zanox_0_0_1 + * zencoder_1_0_1 + * zipcloudx_0_0_2 + * zuppler_users_client_0_0_5 + +*/ +{ stdenv, pkgs, callPackage, overrides ? (self: super: {}) }: + +let + packages = self: rec { + abnf_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "abnf"; + version = "0.0.1"; + src = fetchHex { + pkg = "abnf"; + version = "0.0.1"; + sha256 = + "81e263f061ba677bda3e0d7f8884730eb51c14d7bc6526647c46cce659f1b054"; + }; + + meta = { + description = ''ABNF parser for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/vanstee/abnf"; + }; + } // packageOverrides) + ) {}; + + abnf = abnf_0_0_1; + + absinthe_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "absinthe"; + version = "1.0.0"; + src = fetchHex { + pkg = "absinthe"; + version = "1.0.0"; + sha256 = + "c5606be8b46003e7ac47e87c924908cb390b892fef0eae390deb66f8ee123a1c"; + }; + + meta = { + description = ''GraphQL for Elixir''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/CargoSense/absinthe"; + }; + } // packageOverrides) + ) {}; + + absinthe_1_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "absinthe"; + version = "1.1.2"; + src = fetchHex { + pkg = "absinthe"; + version = "1.1.2"; + sha256 = + "e15a387d865922df70506a4cdb63520de8ae9473358deefaffa3f70195193b07"; + }; + + meta = { + description = ''GraphQL for Elixir''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/CargoSense/absinthe"; + }; + } // packageOverrides) + ) {}; + + absinthe = absinthe_1_1_2; + + absinthe_plug_1_0_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + absinthe_1_0_0 + }: + buildMix ({ + name = "absinthe_plug"; + version = "1.0.0"; + src = fetchHex { + pkg = "absinthe_plug"; + version = "1.0.0"; + sha256 = + "08459823fe1fd4f0325a8bf0c937a4520583a5a26d73b193040ab30a1dfc0b33"; + }; + beamDeps = [ plug_1_1_3 absinthe_1_0_0 ]; + + meta = { + description = ''A plug for Absinthe, an experimental GraphQL + toolkit''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/CargoSense/absinthe_plug"; + }; + } // packageOverrides) + ) {}; + + absinthe_plug = absinthe_plug_1_0_0; + + absinthe_relay_0_8_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, absinthe_1_1_2 }: + buildMix ({ + name = "absinthe_relay"; + version = "0.8.0"; + src = fetchHex { + pkg = "absinthe_relay"; + version = "0.8.0"; + sha256 = + "a54ba3775d06db5d7cf3eaa7165bfa3eeaf26f7ee1d5021e0b4db3d74a3ecdd9"; + }; + beamDeps = [ absinthe_1_1_2 ]; + + meta = { + description = ''Relay framework support for Absinthe''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/absinthe-graphql/absinthe_relay"; + }; + } // packageOverrides) + ) {}; + + absinthe_relay = absinthe_relay_0_8_0; + + access_token_extractor_0_1_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "access_token_extractor"; + version = "0.1.1"; + src = fetchHex { + pkg = "access_token_extractor"; + version = "0.1.1"; + sha256 = + "40f76799f8fbb5b03230b31d4d55c5a169e7c3ad82d776a9d87fe0c65c85396d"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + longDescription = ''Simple Plug to extract access_token from + request and add it to private map in Plug.Conn + struct.''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/rohanpujaris/access_token_extractor"; + }; + } // packageOverrides) + ) {}; + + access_token_extractor = access_token_extractor_0_1_1; + + adam7_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, apex_0_3_7 }: + buildMix ({ + name = "adam7"; + version = "0.4.0"; + src = fetchHex { + pkg = "adam7"; + version = "0.4.0"; + sha256 = + "8b540817f2fa92ba4b198d42d1ee4af348ed1edf8bd02d69691e0d8bdbecdcee"; + }; + beamDeps = [ apex_0_3_7 ]; + + meta = { + longDescription = ''Adam7 interlacing library for Elixir. + Primarily used for interlacing and + de-interlacing image data for PNGs.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/SenecaSystems/imagineer"; + }; + } // packageOverrides) + ) {}; + + adam7 = adam7_0_4_0; + + adap_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "adap"; + version = "0.0.1"; + src = fetchHex { + pkg = "adap"; + version = "0.0.1"; + sha256 = + "10679369764e2aa68560008c1f8bea40d5c715389e27e10b35b1ceda3fedadbb"; + }; + + meta = { + longDescription = '' Create a data stream across your information + systems to query, augment and transform data + according to Elixir matching rules. ''; + license = stdenv.lib.licenses.mit; + homepage = "http://github.com/awetzel/adap"; + }; + } // packageOverrides) + ) {}; + + adap = adap_0_0_1; + + ahab_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ahab"; + version = "0.1.1"; + src = fetchHex { + pkg = "ahab"; + version = "0.1.1"; + sha256 = + "c981c2f62dccd15a055083f9bc088aa0e4a029625ef9aa45104c4ba0ead12bd2"; + }; + + meta = { + description = ''A lightweight, low latency TCP acceptor pool for + Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jquadrin/ahab"; + }; + } // packageOverrides) + ) {}; + + ahab = ahab_0_1_1; + + alambic_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "alambic"; + version = "0.1.0"; + src = fetchHex { + pkg = "alambic"; + version = "0.1.0"; + sha256 = + "04dc4cc88d56539ec4006a84668186501be9be4c369f145af6a606bb63d97ce0"; + }; + + meta = { + longDescription = ''A collection of small elixir utilities. + Semaphore: quick way of limiting access to a + resource CountDown: quick way of counting fan + in/out events''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/sdanzan/alambic"; + }; + } // packageOverrides) + ) {}; + + alambic = alambic_0_1_0; + + alchemic_pinyin_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "alchemic_pinyin"; + version = "0.1.0"; + src = fetchHex { + pkg = "alchemic_pinyin"; + version = "0.1.0"; + sha256 = + "b1488866a9501557d9a5089726675bb34affd513316e167baccc155d7abfefd2"; + }; + + meta = { + description = ''中文汉字转拼音.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zhangsoledad/alchemic_pinyin"; + }; + } // packageOverrides) + ) {}; + + alchemic_pinyin = alchemic_pinyin_0_1_0; + + alchemist_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "alchemist"; + version = "0.0.2"; + src = fetchHex { + pkg = "alchemist"; + version = "0.0.2"; + sha256 = + "095ad9b47258b2d482b782a5794ed800df1c4024abbc126f347738be72a1aa51"; + }; + + meta = { + description = ''Carefully refactor critical paths''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jkakar/alchemist"; + }; + } // packageOverrides) + ) {}; + + alchemist = alchemist_0_0_2; + + alchemy_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }: + buildMix ({ + name = "alchemy"; + version = "0.0.1"; + src = fetchHex { + pkg = "alchemy"; + version = "0.0.1"; + sha256 = + "109ce3f83d596a6ab9a947f472516f87da7b0df823fe2d91e27bc6594a305c3d"; + }; + beamDeps = [ uuid_1_1_3 ]; + + meta = { + description = ''Perform experiments in production''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keathley/alchemy"; + }; + } // packageOverrides) + ) {}; + + alchemy = alchemy_0_0_1; + + aleppo_0_9_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "aleppo"; + version = "0.9.0"; + src = fetchHex { + pkg = "aleppo"; + version = "0.9.0"; + sha256 = + "2f360631d64da53f40621714e157fd33805a95d0160d5c62fcfb3e132986ce71"; + }; + + meta = { + description = ''Aleppo: ALternative Erlang Pre-ProcessOr''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/ErlyORM/aleppo"; + }; + } // packageOverrides) + ) {}; + + aleppo = aleppo_0_9_0; + + alexa_0_1_12 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ + name = "alexa"; + version = "0.1.12"; + src = fetchHex { + pkg = "alexa"; + version = "0.1.12"; + sha256 = + "dbc1da3081766570635abc31a799164a1afb34fce437b1d5ef14bfcc5f8ace3d"; + }; + beamDeps = [ poison_2_1_0 ]; + + meta = { + description = ''Framework for implementing an Amazon Alexa + Skill.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/col/alexa"; + }; + } // packageOverrides) + ) {}; + + alexa = alexa_0_1_12; + + alexa_plug_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "alexa_plug"; + version = "0.2.0"; + src = fetchHex { + pkg = "alexa_plug"; + version = "0.2.0"; + sha256 = + "a78f6fa5e3ba33ce0943f4cb96d6cfcc9b36637a4575314469c8a0d45fff40d0"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + longDescription = ''A simple set of plugs and utilities for + interfacing with the Amazon Echo and the Alexa + Skills Kit.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jordantdavis/alexa_plug"; + }; + } // packageOverrides) + ) {}; + + alexa_plug = alexa_plug_0_2_0; + + alexa_web_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4, + alexa_0_1_12 + }: + buildMix ({ + name = "alexa_web"; + version = "0.0.2"; + src = fetchHex { + pkg = "alexa_web"; + version = "0.0.2"; + sha256 = + "e60a7fa60eb52bbb91e445cf0ee3781e0e2a148855befa638b274e6720421126"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 alexa_0_1_12 ]; + + meta = { + description = ''A web endpoint for deploying one or a collection + of Amazon Alexa Skills''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/col/alexa_web"; + }; + } // packageOverrides) + ) {}; + + alexa_web = alexa_web_0_0_2; + + algae_0_10_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, quark_1_0_2 }: + buildMix ({ + name = "algae"; + version = "0.10.0"; + src = fetchHex { + pkg = "algae"; + version = "0.10.0"; + sha256 = + "02d89132d99da1e13271007d1109be958ef8b3b7a5e64323299b84d0aa2353e1"; + }; + beamDeps = [ quark_1_0_2 ]; + + meta = { + description = ''Bootstrapped algebraic data types for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/robot-overlord/algae"; + }; + } // packageOverrides) + ) {}; + + algae = algae_0_10_0; + + alphonse_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, cipher_0_1_0 }: + buildMix ({ + name = "alphonse"; + version = "0.1.0"; + src = fetchHex { + pkg = "alphonse"; + version = "0.1.0"; + sha256 = + "01666afde723be7d84fcd2e55741c90fd8bc78a407001677deb0717f685b8d21"; + }; + beamDeps = [ cipher_0_1_0 ]; + + meta = { + description = ''A module wrapper to encrypt and decrypt files + with aes-128-cbc''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/chrisenytc/alphonse"; + }; + } // packageOverrides) + ) {}; + + alphonse = alphonse_0_1_0; + + amnesia_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exquisite_0_1_6 }: + buildMix ({ + name = "amnesia"; + version = "0.2.1"; + src = fetchHex { + pkg = "amnesia"; + version = "0.2.1"; + sha256 = + "2d8b0dc6d2da2dcce7339cb2173dc3dad5a2f0865ce770f5f3ded796cd1d6e61"; + }; + beamDeps = [ exquisite_0_1_6 ]; + + meta = { + description = ''mnesia wrapper for Elixir''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/amnesia"; + }; + } // packageOverrides) + ) {}; + + amnesia = amnesia_0_2_1; + + anaphora_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "anaphora"; + version = "0.1.2"; + src = fetchHex { + pkg = "anaphora"; + version = "0.1.2"; + sha256 = + "fb60a214b2be57d7a08aa8237cd7afb009b637563d64ed5e6ec486e36c484001"; + }; + + meta = { + description = ''The anaphoric macro collection for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sviridov/anaphora-elixir"; + }; + } // packageOverrides) + ) {}; + + anaphora = anaphora_0_1_2; + + apex_0_3_7 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "apex"; + version = "0.3.7"; + src = fetchHex { + pkg = "apex"; + version = "0.3.7"; + sha256 = + "a1c8313e9c909ff2489f004b3514430293b1aafb81569b93a1822d486f56080d"; + }; + + meta = { + description = ''Elixir clone of Ruby`s awesome_print gem''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bjro/apex"; + }; + } // packageOverrides) + ) {}; + + apex_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "apex"; + version = "0.4.0"; + src = fetchHex { + pkg = "apex"; + version = "0.4.0"; + sha256 = + "0a566f042e9be5e220ed7ca2869770c0c2c0ca4560c416dee317df86f238eccf"; + }; + + meta = { + description = ''Elixir clone of Ruby`s awesome_print gem''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bjro/apex"; + }; + } // packageOverrides) + ) {}; + + apex = apex_0_4_0; + + apix_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "apix"; + version = "0.1.0"; + src = fetchHex { + pkg = "apix"; + version = "0.1.0"; + sha256 = + "d1d809cf41731e39a6c23e02fb41c9375bf04db35c8ce595c99c03eea694f30e"; + }; + + meta = { + longDescription = ''Simple convention and DSL for transformation + of elixir functions to a documented and ready + for validation API.''; + + homepage = "https://github.com/liveforeverx/apix"; + }; + } // packageOverrides) + ) {}; + + apix = apix_0_1_0; + + apns_0_0_12 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + poison_1_5_2 + }: + buildMix ({ + name = "apns"; + version = "0.0.12"; + src = fetchHex { + pkg = "apns"; + version = "0.0.12"; + sha256 = + "3eb40b6ef9e73a5082593f6ac1e8ba8548bbfd4bff1f3a5c5d5707ac114fc172"; + }; + beamDeps = [ poolboy_1_5_1 poison_1_5_2 ]; + + meta = { + description = ''APNS (Apple Push Notification Service) library + for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/chvanikoff/apns4ex"; + }; + } // packageOverrides) + ) {}; + + apns = apns_0_0_12; + + ar2ecto_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ar2ecto"; + version = "0.1.2"; + src = fetchHex { + pkg = "ar2ecto"; + version = "0.1.2"; + sha256 = + "a32322d39f1c0cff335b05b5c2252e531091565c3cf754811087edd2e115a718"; + }; + + meta = { + description = ''Ar2ecto is a set of mix tasks to help you migrate + from ActiveRecord to Ecto.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/aforward/ar2ecto"; + }; + } // packageOverrides) + ) {}; + + ar2ecto = ar2ecto_0_1_2; + + argent_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "argent"; + version = "0.0.1"; + src = fetchHex { + pkg = "argent"; + version = "0.0.1"; + sha256 = + "dde0920308efca2c8dd9681057e5196f625b53ed8dff86a27242807c3653d645"; + }; + + meta = { + description = ''A currency management library for elixir.''; + + }; + } // packageOverrides) + ) {}; + + argent = argent_0_0_1; + + argument_parser_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "argument_parser"; + version = "0.1.3"; + src = fetchHex { + pkg = "argument_parser"; + version = "0.1.3"; + sha256 = + "2c56a6c9dfa9790aabdb8f9268ac501404376ffb13396ff515e66f1ebf64817d"; + }; + + meta = { + description = ''More powerful argument parser for creating nice + scripts''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jisaacstone/ex_argument_parser"; + }; + } // packageOverrides) + ) {}; + + argument_parser = argument_parser_0_1_3; + + array_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "array"; + version = "1.0.1"; + src = fetchHex { + pkg = "array"; + version = "1.0.1"; + sha256 = + "626ac1383566dadee3a10357cd6d192151c6d604ee3266809daf0da6b5e33bbb"; + }; + + meta = { + description = ''An elixir wrapper library for Erlang`s array.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/takscape/elixir-array"; + }; + } // packageOverrides) + ) {}; + + array = array_1_0_1; + + artifact_0_4_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + porcelain_2_0_1, + poolboy_1_5_1, + plug_1_1_3 + }: + buildMix ({ + name = "artifact"; + version = "0.4.0"; + src = fetchHex { + pkg = "artifact"; + version = "0.4.0"; + sha256 = + "6c66a3c745418e1f1207940c3815828d1a0f022d8186e5da593599d1f460197f"; + }; + beamDeps = [ porcelain_2_0_1 poolboy_1_5_1 plug_1_1_3 ]; + + meta = { + description = ''File upload and on-the-fly processing for + Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/doomspork/artifact"; + }; + } // packageOverrides) + ) {}; + + artifact = artifact_0_4_0; + + aruspex_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + zipper_tree_0_1_1, + exyz_1_0_0 + }: + buildMix ({ + name = "aruspex"; + version = "0.1.0"; + src = fetchHex { + pkg = "aruspex"; + version = "0.1.0"; + sha256 = + "2effd16e1081a7af2e5ade9c58cdf4c4d90e2095749ccf733332be2924a6d771"; + }; + beamDeps = [ zipper_tree_0_1_1 exyz_1_0_0 ]; + + meta = { + description = ''A configurable constraint solver with an API + based on JSR 331.''; + license = stdenv.lib.licenses.mit; + homepage = "https://www.github.com/dkendal/aruspex"; + }; + } // packageOverrides) + ) {}; + + aruspex = aruspex_0_1_0; + + ashes_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ashes"; + version = "0.0.3"; + src = fetchHex { + pkg = "ashes"; + version = "0.0.3"; + sha256 = + "2178ab8c0fa1cf53b6d6152773ae79ca6100c80861d59e55e5fa06c5979b042b"; + }; + + meta = { + description = ''A code generation tool for the phoenix web + framework''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nickgartmann/ashes"; + }; + } // packageOverrides) + ) {}; + + ashes = ashes_0_0_3; + + assert_diff_0_0_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "assert_diff"; + version = "0.0.5"; + src = fetchHex { + pkg = "assert_diff"; + version = "0.0.5"; + sha256 = + "ad53a2819c33d39ad2f71404a964625691e9d6bf3d63dbc28442acda71109426"; + }; + + meta = { + description = ''assert_diff which fallbacks to git diff''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ske77/assert_diff"; + }; + } // packageOverrides) + ) {}; + + assert_diff = assert_diff_0_0_5; + + auth_test_support_0_0_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "auth_test_support"; + version = "0.0.6"; + src = fetchHex { + pkg = "auth_test_support"; + version = "0.0.6"; + sha256 = + "930596c61d237fbf74b86d87819f0a7df8da8ef79051294a1982ded403cb2401"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''Authentication and authorization test support + functions''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/DockYard/auth_test_support"; + }; + } // packageOverrides) + ) {}; + + auth_test_support = auth_test_support_0_0_6; + + authentic_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "authentic"; + version = "0.0.1"; + src = fetchHex { + pkg = "authentic"; + version = "0.0.1"; + sha256 = + "2fba6e1efde9fef4866d17499907811a3957ded8c07866c7b34474f0f0d59e29"; + }; + + meta = { + description = ''Auth for Phoenix''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + authentic = authentic_0_0_1; + + auto_doc_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3 + }: + buildMix ({ + name = "auto_doc"; + version = "0.0.2"; + src = fetchHex { + pkg = "auto_doc"; + version = "0.0.2"; + sha256 = + "9c4b30c526e59f63173fe2f0d0c360ac678f1e7a11adcf209dfc843a3e63e6f7"; + }; + beamDeps = [ poison_1_5_2 plug_1_1_3 ]; + + meta = { + description = ''A package that will create REST API docs based on + your ExUnit tests.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/meatherly/auto_doc"; + }; + } // packageOverrides) + ) {}; + + auto_doc = auto_doc_0_0_2; + + autobots_license_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "autobots_license"; + version = "0.1.0"; + src = fetchHex { + pkg = "autobots_license"; + version = "0.1.0"; + sha256 = + "7cfa258ce5eff01018dfd6faf509b430d03770fb733c1b10217b9e52770014b3"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { }; + } // packageOverrides) + ) {}; + + autobots_license = autobots_license_0_1_0; + + avex_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "avex"; + version = "0.2.0"; + src = fetchHex { + pkg = "avex"; + version = "0.2.0"; + sha256 = + "e63970026cc566e9aa9c24c261f43843a7553835d2009b16e838217644ded815"; + }; + + meta = { + description = ''Awesome validations for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jonhkr/avex"; + }; + } // packageOverrides) + ) {}; + + avex = avex_0_2_0; + + aws_auth_0_2_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ + name = "aws_auth"; + version = "0.2.5"; + src = fetchHex { + pkg = "aws_auth"; + version = "0.2.5"; + sha256 = + "646f1f42652adfb329b5eedde28ddda516c6d02dce45932108b85e2d8bd91b0a"; + }; + beamDeps = [ timex_1_0_2 ]; + + meta = { + description = ''AWS Signature Version 4 Signing Library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/bryanjos/aws_auth"; + }; + } // packageOverrides) + ) {}; + + aws_auth = aws_auth_0_2_5; + + aws_cli_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, erlexec_1_1_0 }: + buildRebar3 ({ + name = "aws_cli"; + version = "0.1.0"; + src = fetchHex { + pkg = "aws_cli"; + version = "0.1.0"; + sha256 = + "14fd91c4752a5eb5b2c781c4843589824b35750d7785b57e0460ba6d96bfe8c1"; + }; + + beamDeps = [ erlexec_1_1_0 ]; + + meta = { + description = ''AWS cli wrapper for Erlang''; + + homepage = "https://github.com/fyler/aws_cli"; + }; + } // packageOverrides) + ) {}; + + aws_cli = aws_cli_0_1_0; + + bankster_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "bankster"; + version = "0.1.0"; + src = fetchHex { + pkg = "bankster"; + version = "0.1.0"; + sha256 = + "c56909377e5246b37043b4b19a940a4eac8ef57d8e8006d10e201928fd2bbcb7"; + }; + + meta = { + description = ''Bankster is an IBAN and BIC validation tool for + Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/railsmechanic/bankster"; + }; + } // packageOverrides) + ) {}; + + bankster = bankster_0_1_0; + + banner_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "banner"; + version = "0.1.0"; + src = fetchHex { + pkg = "banner"; + version = "0.1.0"; + sha256 = + "309a752cd592bd8dda3526865d050b1e20a953baed8b7480d0489001688f7a0f"; + }; + + meta = { + description = ''It is Elixir sysvbanner port from + https://github.com/uffejakobsen/sysvbanner.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/winebarrel/elixir-sysvbanner"; + }; + } // packageOverrides) + ) {}; + + banner = banner_0_1_0; + + barrel_ibrowse_4_2_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "barrel_ibrowse"; + version = "4.2.0"; + src = fetchHex { + pkg = "barrel_ibrowse"; + version = "4.2.0"; + sha256 = + "58bd9e45932c10fd3d0ceb5c4e47952c3243ea300b388192761ac20be197b2ca"; + }; + + meta = { + description = ''Erlang HTTP client application''; + + homepage = "https://github.com/barrel-db/ibrowse"; + }; + } // packageOverrides) + ) {}; + + barrel_ibrowse = barrel_ibrowse_4_2_0; + + barrel_oauth_1_6_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "barrel_oauth"; + version = "1.6.0"; + src = fetchHex { + pkg = "barrel_oauth"; + version = "1.6.0"; + sha256 = + "b2a800b771d45f32a9a55d416054b3bdfab3a925b62e8000f2c08b719390d4dd"; + }; + + meta = { + description = ''An Erlang OAuth 1.0 implementation''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/barrel-db/erlang-oauth"; + }; + } // packageOverrides) + ) {}; + + barrel_oauth = barrel_oauth_1_6_0; + + base16_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "base16"; + version = "1.0.0"; + src = fetchHex { + pkg = "base16"; + version = "1.0.0"; + sha256 = + "02afd0827e61a7b07093873e063575ca3a2b07520567c7f8cec7c5d42f052d76"; + }; + + meta = { + description = ''Base16 encoding and decoding''; + license = with stdenv.lib.licenses; [ bsd3 free ]; + homepage = "https://github.com/goj/base16"; + }; + } // packageOverrides) + ) {}; + + base16 = base16_1_0_0; + + base58_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "base58"; + version = "0.1.0"; + src = fetchHex { + pkg = "base58"; + version = "0.1.0"; + sha256 = + "e9746b7fa618f15d22e3098e06b35083977aff8fe0594628baae282769a2ceff"; + }; + + meta = { + description = ''Base58 encoding/decoding for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jrdnull/base58"; + }; + } // packageOverrides) + ) {}; + + base58 = base58_0_1_0; + + base58check_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "base58check"; + version = "0.1.0"; + src = fetchHex { + pkg = "base58check"; + version = "0.1.0"; + sha256 = + "29617beb2aaffe27ef40d7232a60beb5ad208667df4f2b619552367698cd4ca4"; + }; + + meta = { + description = ''Elixir implementation of Base58Check encoding + meant for Bitcoin ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gjaldon/base58check"; + }; + } // packageOverrides) + ) {}; + + base58check = base58check_0_1_0; + + base62_1_2_0 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, custom_base_0_2_0 + }: + buildMix ({ + name = "base62"; + version = "1.2.0"; + src = fetchHex { + pkg = "base62"; + version = "1.2.0"; + sha256 = + "14aac55c7978b7a710906ee29df65ba1cee5af2d43efe236c96311696618088b"; + }; + beamDeps = [ custom_base_0_2_0 ]; + + meta = { + description = ''Base62 encoder/decoder in pure Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/igas/base62"; + }; + } // packageOverrides) + ) {}; + + base62 = base62_1_2_0; + + base64url_0_0_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "base64url"; + version = "0.0.1"; + src = fetchHex { + pkg = "base64url"; + version = "0.0.1"; + sha256 = + "fab09b20e3f5db886725544cbcf875b8e73ec93363954eb8a1a9ed834aa8c1f9"; + }; + + meta = { + description = ''URL safe base64-compatible codec''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dvv/base64url"; + }; + } // packageOverrides) + ) {}; + + base64url = base64url_0_0_1; + + basho_poolboy_0_8_1_p3 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "basho_poolboy"; + version = "0.8.1-p3"; + src = fetchHex { + pkg = "basho_poolboy"; + version = "0.8.1-p3"; + sha256 = + "8e2ead104eaa80bbfcf5c688774f4ddab73733cab79230e78d097c7ba880c42d"; + }; + + meta = { + description = ''A hunky Erlang worker pool factory''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/basho/riak_sysmon"; + }; + } // packageOverrides) + ) {}; + + basho_poolboy = basho_poolboy_0_8_1_p3; + + batcher_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "batcher"; + version = "0.0.1"; + src = fetchHex { + pkg = "batcher"; + version = "0.0.1"; + sha256 = + "738a930f809603dc21e6612c1df38cbc452887ddf34670d20f05e136231f3671"; + }; + + meta = { + longDescription = ''Process a backlog of items after it has grown + to a certain size or a defined time has + passed''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/behe/batcher"; + }; + } // packageOverrides) + ) {}; + + batcher = batcher_0_0_1; + + bbmustache_1_0_3 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "bbmustache"; + version = "1.0.3"; + src = fetchHex { + pkg = "bbmustache"; + version = "1.0.3"; + sha256 = + "d79d9f3f90d14e20bda0c801063801ce9b72b71f5831d70b8d36065fb1a52208"; + }; + + meta = { + description = ''Binary pattern match Based Mustache template + engine for Erlang/OTP''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/soranoba/bbmustache"; + }; + } // packageOverrides) + ) {}; + + bbmustache_1_0_4 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "bbmustache"; + version = "1.0.4"; + src = fetchHex { + pkg = "bbmustache"; + version = "1.0.4"; + sha256 = + "03b0d47db66e86df993896dce7578d7e4aae5f84636809b45fa8a3e34ee59b12"; + }; + + meta = { + description = ''Binary pattern match Based Mustache template + engine for Erlang/OTP''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/soranoba/bbmustache"; + }; + } // packageOverrides) + ) {}; + + bbmustache_1_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "bbmustache"; + version = "1.1.0"; + src = fetchHex { + pkg = "bbmustache"; + version = "1.1.0"; + sha256 = + "aa22469836bb8a9928ad741bdd2038d49116228bfbe0c2d6c792e1bdd4b256d9"; + }; + + meta = { + description = ''Binary pattern match Based Mustache template + engine for Erlang/OTP''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/soranoba/bbmustache"; + }; + } // packageOverrides) + ) {}; + + bbmustache = bbmustache_1_1_0; + + bcrypt_0_5_0_p3a = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "bcrypt"; + version = "0.5.0-p3a"; + src = fetchHex { + pkg = "bcrypt"; + version = "0.5.0-p3a"; + sha256 = + "492decdc633399b356a3bbfe8279c10a49b1040fc082c8cbf2d30b41ff88f310"; + }; + compilePorts = true; + buildPlugins = [ pc ]; + + + meta = { + description = ''An Erlang wrapper (NIF or port program) for the + OpenBSD password scheme, bcrypt.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/chef/erlang-bcrypt"; + }; + } // packageOverrides) + ) {}; + + bcrypt = bcrypt_0_5_0_p3a; + + beam_analyzer_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "beam_analyzer"; + version = "0.0.3"; + src = fetchHex { + pkg = "beam_analyzer"; + version = "0.0.3"; + sha256 = + "acfb7b4d92c1147401f2de8e0fe5ad33236814a57fdcfbcb184e9292e43c7d27"; + }; + + meta = { + description = ''Get information about Erlang/Elixir modules and + BEAM files''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/joeyates/beam_analyzer"; + }; + } // packageOverrides) + ) {}; + + beam_analyzer = beam_analyzer_0_0_3; + + bear_0_8_3 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "bear"; + version = "0.8.3"; + src = fetchHex { + pkg = "bear"; + version = "0.8.3"; + sha256 = + "0a04ce4702e00e0a43c0fcdd63e38c9c7d64dceb32b27ffed261709e7c3861ad"; + }; + + meta = { + description = ''Statistics functions for Erlang''; + + homepage = "https://github.com/puzza007/bear"; + }; + } // packageOverrides) + ) {}; + + bear = bear_0_8_3; + + belixir_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "belixir"; + version = "0.2.0"; + src = fetchHex { + pkg = "belixir"; + version = "0.2.0"; + sha256 = + "1d4cea63bf593f8ccdbad32270158704d65aa6f88ee2df48422aced2566465e3"; + }; + + meta = { + longDescription = ''Benchmark ips tool for elixir-lang. Runs + given codes in given seconds and compares + them.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/meinac/belixir"; + }; + } // packageOverrides) + ) {}; + + belixir = belixir_0_2_0; + + belvedere_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "belvedere"; + version = "0.0.1"; + src = fetchHex { + pkg = "belvedere"; + version = "0.0.1"; + sha256 = + "b222f5c3ab855655b7950681542e2c3941c52533bd8b6cbb08be60f91427113e"; + }; + + meta = { + description = ''An example Elixir project with CircleCI, Docker, + Dialyzer integration.''; + license = stdenv.lib.licenses.mit; + homepage = "http://nirvana.io"; + }; + } // packageOverrides) + ) {}; + + belvedere = belvedere_0_0_1; + + benchfella_0_3_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "benchfella"; + version = "0.3.2"; + src = fetchHex { + pkg = "benchfella"; + version = "0.3.2"; + sha256 = + "322270993f38246b02c8a98d64491a2b46a4efef5667a479d55a49ec53ea6dcf"; + }; + + meta = { + description = ''Microbenchmarking tool for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/alco/benchfella"; + }; + } // packageOverrides) + ) {}; + + benchfella = benchfella_0_3_2; + + benchmark_ips_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "benchmark_ips"; + version = "0.2.0"; + src = fetchHex { + pkg = "benchmark_ips"; + version = "0.2.0"; + sha256 = + "7c55c4317dae5b8dae6a655e25a7aa491acd076e36efb9c9852a789a3592b703"; + }; + + meta = { + description = ''A tool to run benchmarks to determine iteration + per second.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mxhold/benchmark_ips"; + }; + } // packageOverrides) + ) {}; + + benchmark_ips = benchmark_ips_0_2_0; + + bencode_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, eqc_ex_1_2_4 }: + buildMix ({ + name = "bencode"; + version = "0.3.0"; + src = fetchHex { + pkg = "bencode"; + version = "0.3.0"; + sha256 = + "98d397fd0a13ba47bfb51927fede25c780539d38946e6d53c6b83c998636a002"; + }; + beamDeps = [ eqc_ex_1_2_4 ]; + + meta = { + longDescription = ''A complete and correct Bencode encoder and + decoder written in pure Elixir. The decoder will + return the info hash with along with the decoded + data, and the encoder is implemented as a + protocol, allowing any data structure to be + bcode encoded.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/gausby/bencode"; + }; + } // packageOverrides) + ) {}; + + bencode = bencode_0_3_0; + + bencodex_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "bencodex"; + version = "1.0.0"; + src = fetchHex { + pkg = "bencodex"; + version = "1.0.0"; + sha256 = + "a70c319eed907d4d0520bf2ed6eedc77cbf1312274b144341dc4ecc74136124d"; + }; + + meta = { + description = ''Encoder and decoder for the bencode format''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/patrickgombert/bencodex"; + }; + } // packageOverrides) + ) {}; + + bencodex = bencodex_1_0_0; + + bento_0_9_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ + name = "bento"; + version = "0.9.0"; + src = fetchHex { + pkg = "bento"; + version = "0.9.0"; + sha256 = + "3bc189cab5909af848cda351cc2bf3ff8998f41b6c21524204217674cbcff8c4"; + }; + beamDeps = [ poison_2_1_0 ]; + + meta = { + description = ''An incredibly fast, pure Elixir Bencoding + library.''; + license = stdenv.lib.licenses.mpl20; + homepage = "https://github.com/folz/bento"; + }; + } // packageOverrides) + ) {}; + + bento = bento_0_9_0; + + bert_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "bert"; + version = "0.1.0"; + src = fetchHex { + pkg = "bert"; + version = "0.1.0"; + sha256 = + "2a561521ec3529b248658a3e2d3d4bfe6729b0ab8291c701bf15ef413eda1506"; + }; + + meta = { + description = ''BERT Encoder/Decoder''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yuce/bert.erl"; + }; + } // packageOverrides) + ) {}; + + bert = bert_0_1_0; + + bigflake_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, base62_1_2_0 }: + buildMix ({ + name = "bigflake"; + version = "0.3.0"; + src = fetchHex { + pkg = "bigflake"; + version = "0.3.0"; + sha256 = + "18505f0ca3a7b77fe267840b9172ec5000e118587cb36d148d73c5e642c400a5"; + }; + beamDeps = [ base62_1_2_0 ]; + + meta = { + description = ''128-bit, k-ordered, conflict-free IDs Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stevedomin/bigflake"; + }; + } // packageOverrides) + ) {}; + + bigflake = bigflake_0_3_0; + + billiards_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "billiards"; + version = "0.0.1"; + src = fetchHex { + pkg = "billiards"; + version = "0.0.1"; + sha256 = + "5b8d8eab12e35c0c7eff5be02a4adf0a7aa4cf10688a5faeec9b10f2c2f04046"; + }; + meta = { }; + } // packageOverrides) + ) {}; + + billiards = billiards_0_0_1; + + bin_format_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "bin_format"; + version = "0.0.1"; + src = fetchHex { + pkg = "bin_format"; + version = "0.0.1"; + sha256 = + "f73b9d1691499964d248b4a19b56284b2c51652015a63b77c2688b92cb55d66a"; + }; + + meta = { + longDescription = ''Automatically generate the boilerplate to + convert between binaries and Elixir structs.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/willpenington/bin_format"; + }; + } // packageOverrides) + ) {}; + + bin_format = bin_format_0_0_1; + + binstructor_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "binstructor"; + version = "0.0.1"; + src = fetchHex { + pkg = "binstructor"; + version = "0.0.1"; + sha256 = + "ab6e619628d4308a47744dcf9dd0c9ff48f4a5cc5e00ce6bb3852d92e654ba74"; + }; + + meta = { + longDescription = ''Automatically generate the boilerplate to + convert between binaries and Elixir structs.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/willpenington/binstructor"; + }; + } // packageOverrides) + ) {}; + + binstructor = binstructor_0_0_1; + + bit_field_set_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, eqc_ex_1_2_4 }: + buildMix ({ + name = "bit_field_set"; + version = "0.1.0"; + src = fetchHex { + pkg = "bit_field_set"; + version = "0.1.0"; + sha256 = + "63a9c8eb05dc0f9cd79590d718db56ccc1b41cd48d91457d94754a44a2663044"; + }; + beamDeps = [ eqc_ex_1_2_4 ]; + + meta = { + longDescription = ''Store and manipulate a set of bit flags, + mostly used for syncing the state between peers + in a peer to peer network, such as + BitTorrent.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/gausby/bit_field_set"; + }; + } // packageOverrides) + ) {}; + + bit_field_set = bit_field_set_0_1_0; + + bitcask_2_0_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "bitcask"; + version = "2.0.2"; + src = fetchHex { + pkg = "bitcask"; + version = "2.0.2"; + sha256 = + "666bd79d17faabd62a626ed6fc98176b818266f7bb9639d76244f003ed5b2fe2"; + }; + compilePorts = true; + buildPlugins = [ pc ]; + + + meta = { + description = ''Bitcask key value store''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/basho/bitcask"; + }; + } // packageOverrides) + ) {}; + + bitcask = bitcask_2_0_2; + + bitfield_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "bitfield"; + version = "1.0.0"; + src = fetchHex { + pkg = "bitfield"; + version = "1.0.0"; + sha256 = + "0f1ca3f3e9f8661cc2686561717c326309541f95e4f82f7b7d927e150f5f7b5a"; + }; + + meta = { + description = ''Simple bitfields for erlang/elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/bitfield.erl"; + }; + } // packageOverrides) + ) {}; + + bitfield = bitfield_1_0_0; + + bitmap_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "bitmap"; + version = "1.0.0"; + src = fetchHex { + pkg = "bitmap"; + version = "1.0.0"; + sha256 = + "c33ca1dd28d6979e61f3517140ef71e80f8ded4029debabbb6482ef650384b34"; + }; + + meta = { + longDescription = ''Package to help you create and work with + bitmaps + (https://en.wikipedia.org/wiki/Bitmap)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hashd/bitmap-elixir"; + }; + } // packageOverrides) + ) {}; + + bitmap = bitmap_1_0_0; + + blacksmith_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, faker_0_6_0 }: + buildMix ({ + name = "blacksmith"; + version = "0.1.3"; + src = fetchHex { + pkg = "blacksmith"; + version = "0.1.3"; + sha256 = + "d070295cac13fef8d05cc50b900413e8e6dd863f4958bd55986b56d3874a20b4"; + }; + beamDeps = [ faker_0_6_0 ]; + + meta = { + description = ''Elixir fake data generation for testing and + development''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/batate/blacksmith"; + }; + } // packageOverrides) + ) {}; + + blacksmith = blacksmith_0_1_3; + + blaguth_1_2_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "blaguth"; + version = "1.2.1"; + src = fetchHex { + pkg = "blaguth"; + version = "1.2.1"; + sha256 = + "2900dc5b7c6f7810bdf5e0ede8749632997811ae5b72ada34f59699b4310a65a"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + description = ''Basic Access Authentication in Plug + applications.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/lexmag/blaguth"; + }; + } // packageOverrides) + ) {}; + + blaguth = blaguth_1_2_1; + + blake2_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "blake2"; + version = "0.0.1"; + src = fetchHex { + pkg = "blake2"; + version = "0.0.1"; + sha256 = + "3f4d66c465d424076f3673065bdd3f3cdcda2cdc59bbdfc7216fa405fa563264"; + }; + + meta = { + description = ''BLAKE2 hash function''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/blake2_ex"; + }; + } // packageOverrides) + ) {}; + + blake2 = blake2_0_0_1; + + blanket_0_3_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "blanket"; + version = "0.3.1"; + src = fetchHex { + pkg = "blanket"; + version = "0.3.1"; + sha256 = + "9d7f382c1254b83ba3334d143b942afd4a03c0ae1d32f7fee5fd3de184f4c016"; + }; + + meta = { + description = ''Blanket covers your tables ! Don`t loose your ETS + tables with Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/niahoo/blanket"; + }; + } // packageOverrides) + ) {}; + + blanket = blanket_0_3_1; + + blocking_queue_1_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "blocking_queue"; + version = "1.3.0"; + src = fetchHex { + pkg = "blocking_queue"; + version = "1.3.0"; + sha256 = + "10f2b942a29f83c3bfef6285096d7f42028201c89f317c731e708b528a7fc17d"; + }; + + meta = { + longDescription = ''BlockingQueue is a simple queue implemented + as a GenServer. It has a fixed maximum length + established when it is created.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/joekain/BlockingQueue"; + }; + } // packageOverrides) + ) {}; + + blocking_queue = blocking_queue_1_3_0; + + bloomex_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "bloomex"; + version = "1.0.0"; + src = fetchHex { + pkg = "bloomex"; + version = "1.0.0"; + sha256 = + "598f414e8bb23054843430fff449861ce7d8f6a81a220cbfed8cf42dcd1dd299"; + }; + + meta = { + description = ''Bloomex is a pure Elixir implementation of + Scalable Bloom Filters.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gmcabrita/bloomex"; + }; + } // packageOverrides) + ) {}; + + bloomex = bloomex_1_0_0; + + bmark_1_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "bmark"; + version = "1.0.3"; + src = fetchHex { + pkg = "bmark"; + version = "1.0.3"; + sha256 = + "243b04d2e2431d01d93f442896d5e6ee52396782c161ef0a0e4f51a353393d93"; + }; + + meta = { + longDescription = ''A benchmarking tool for Elixir with a focus + on comparing results with confidence.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/joekain/bmark"; + }; + } // packageOverrides) + ) {}; + + bmark = bmark_1_0_3; + + boltun_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, postgrex_0_11_1 }: + buildMix ({ + name = "boltun"; + version = "0.0.4"; + src = fetchHex { + pkg = "boltun"; + version = "0.0.4"; + sha256 = + "fcf18b4bfab0afcd1c31133c9c5232776ededd1fb3caa1536ded8265002ab867"; + }; + beamDeps = [ postgrex_0_11_1 ]; + + meta = { + longDescription = ''Transforms notifications from the Postgres + LISTEN/NOTIFY mechanism into callback + execution''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/briksoftware/boltun"; + }; + } // packageOverrides) + ) {}; + + boltun = boltun_0_0_4; + + braise_0_3_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_3_1 }: + buildMix ({ + name = "braise"; + version = "0.3.2"; + src = fetchHex { + pkg = "braise"; + version = "0.3.2"; + sha256 = + "5efb63b074308be51d25b1f324799b8b715b5b025bfdbdd9a39972b36a7b957c"; + }; + beamDeps = [ poison_1_3_1 ]; + + meta = { + description = ''A library that converts JSON Schema into ember + models/adapters.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/IoraHealth/braise"; + }; + } // packageOverrides) + ) {}; + + braise = braise_0_3_2; + + brcpfcnpj_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "brcpfcnpj"; + version = "0.1.0"; + src = fetchHex { + pkg = "brcpfcnpj"; + version = "0.1.0"; + sha256 = + "19ba4d572c93c70d571a36d6ada2fca4d03330d8f96c6b7d8e4c47fa9f809c90"; + }; + + meta = { + longDescription = ''Valida Cpf/Cnpj e Formatar em String caso + necessario Number format and Validate, to the + documents brazilians (CPF/CNPJ)''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/williamgueiros/Brcpfcnpj"; + }; + } // packageOverrides) + ) {}; + + brcpfcnpj = brcpfcnpj_0_1_0; + + breadcrumble_1_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "breadcrumble"; + version = "1.0.3"; + src = fetchHex { + pkg = "breadcrumble"; + version = "1.0.3"; + sha256 = + "f1d3ec0d3bf74670c58d4ff6c1d10cad0757c003b56ba9f77e3d76a05ac68be3"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''Elixir port of Breadcrumble library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ma2gedev/breadcrumble_ex"; + }; + } // packageOverrides) + ) {}; + + breadcrumble = breadcrumble_1_0_3; + + briefly_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "briefly"; + version = "0.3.0"; + src = fetchHex { + pkg = "briefly"; + version = "0.3.0"; + sha256 = + "c6ebf8fc3dcd4950dd10c03e953fb4f553a8bcf0ff4c8c40d71542434cd7e046"; + }; + + meta = { + description = ''Simple, robust temporary file support''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/CargoSense/briefly"; + }; + } // packageOverrides) + ) {}; + + briefly = briefly_0_3_0; + + browser_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "browser"; + version = "0.1.2"; + src = fetchHex { + pkg = "browser"; + version = "0.1.2"; + sha256 = + "37919c96372654f687ee9d6645c50b8f6182baad589978326a00f671133446e7"; + }; + + meta = { + description = ''Browser detection library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tuvistavie/elixir-browser"; + }; + } // packageOverrides) + ) {}; + + browser = browser_0_1_2; + + bstr_0_3_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "bstr"; + version = "0.3.0"; + src = fetchHex { + pkg = "bstr"; + version = "0.3.0"; + sha256 = + "0fb4e05619663d48dabcd21023915741277ba392f2a5710dde7ab6034760284d"; + }; + + meta = { + description = ''Erlang library that uses binaries as strings''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/jcomellas/bstr"; + }; + } // packageOverrides) + ) {}; + + bstr = bstr_0_3_0; + + buffer_0_3_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "buffer"; + version = "0.3.6"; + src = fetchHex { + pkg = "buffer"; + version = "0.3.6"; + sha256 = + "409f4d725b69bd36635ec18df9e2c3b6e78ef6ebc14a0e55a98dc58b4c65b7c3"; + }; + + meta = { + description = ''Provide read and write buffers for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/adrienmo/buffer"; + }; + } // packageOverrides) + ) {}; + + buffer = buffer_0_3_6; + + build_client_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "build_client"; + version = "0.0.1"; + src = fetchHex { + pkg = "build_client"; + version = "0.0.1"; + sha256 = + "ee28ca64db404b76316fa578f30888b7725cbde91d6f89fa7dfc384a32b9c095"; + }; + + meta = { + description = ''AX Deployment Client''; + + homepage = "https://github.com/dapdizzy/build_client"; + }; + } // packageOverrides) + ) {}; + + build_client = build_client_0_0_1; + + bunt_0_1_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "bunt"; + version = "0.1.5"; + src = fetchHex { + pkg = "bunt"; + version = "0.1.5"; + sha256 = + "5a365df70e90a021617d1bcf6dedada848176728c84a33b463e59fb0c9b8cc65"; + }; + + meta = { + description = ''256 color ANSI coloring in the terminal''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rrrene/bunt"; + }; + } // packageOverrides) + ) {}; + + bunt = bunt_0_1_5; + + bypass_0_5_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "bypass"; + version = "0.5.1"; + src = fetchHex { + pkg = "bypass"; + version = "0.5.1"; + sha256 = + "bbff87f453cd98a81c9caeb305e5bcee25fe4fe31089cb19127a36dd224c2454"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + longDescription = ''Bypass provides a quick way to create a + custom plug that can be put in place instead of + an actual HTTP server to return prebaked + responses to client requests. This is most + useful in tests, when you want to create a mock + HTTP server and test how your HTTP client + handles different types of responses from the + server.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pspdfkit-labs/bypass"; + }; + } // packageOverrides) + ) {}; + + bypass = bypass_0_5_1; + + cachex_0_8_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "cachex"; + version = "0.8.0"; + src = fetchHex { + pkg = "cachex"; + version = "0.8.0"; + sha256 = + "b6fa0414bc725a557fc73deed144b318831f2f4ed5f67e525da8972eb789059d"; + }; + + meta = { + description = ''Powerful in-memory key/value storage for + Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zackehh/cachex"; + }; + } // packageOverrides) + ) {}; + + cachex = cachex_0_8_0; + + calendar_0_12_4 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, tzdata_0_1_201603 + }: + buildMix ({ + name = "calendar"; + version = "0.12.4"; + src = fetchHex { + pkg = "calendar"; + version = "0.12.4"; + sha256 = + "1df7cc23b7dfa3228498fff3bd298495d8431433be94db62a60e93ffa455a060"; + }; + beamDeps = [ tzdata_0_1_201603 ]; + + meta = { + longDescription = ''Calendar is a datetime library for Elixir. + Providing explicit types for datetimes, dates + and times. Full timezone support via its sister + package `tzdata`. Safe parsing and formatting of + standard formats (ISO, RFC, Unix, JS etc.) plus + strftime formatting. Easy and safe + interoperability with erlang style datetime + tuples. Extendable through protocols. Related + packages are available for i18n, Ecto and + Phoenix interoperability.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lau/calendar"; + }; + } // packageOverrides) + ) {}; + + calendar_0_13_2 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, tzdata_0_1_201603 + }: + buildMix ({ + name = "calendar"; + version = "0.13.2"; + src = fetchHex { + pkg = "calendar"; + version = "0.13.2"; + sha256 = + "5be3a69db1a177ed39d24d582ac7be3dab59ee8aeae41ee17c36a263a9818460"; + }; + beamDeps = [ tzdata_0_1_201603 ]; + + meta = { + longDescription = ''Calendar is a datetime library for Elixir. + Providing explicit types for datetimes, dates + and times. Full timezone support via its sister + package `tzdata`. Safe parsing and formatting of + standard formats (ISO, RFC, Unix, JS etc.) plus + strftime formatting. Easy and safe + interoperability with erlang style datetime + tuples. Extendable through protocols. Related + packages are available for i18n, Ecto and + Phoenix interoperability.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lau/calendar"; + }; + } // packageOverrides) + ) {}; + + calendar = calendar_0_13_2; + + calendar_translations_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, calendar_0_13_2 }: + buildMix ({ + name = "calendar_translations"; + version = "0.0.3"; + src = fetchHex { + pkg = "calendar_translations"; + version = "0.0.3"; + sha256 = + "b232912959f7f645a34e1a6ceca4657156e64bb5db3573fbc61c603c648dcb09"; + }; + beamDeps = [ calendar_0_13_2 ]; + + meta = { + description = ''Translations for the Calendar library.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/padde/calendar_translations"; + }; + } // packageOverrides) + ) {}; + + calendar_translations = calendar_translations_0_0_3; + + calliope_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "calliope"; + version = "0.3.0"; + src = fetchHex { + pkg = "calliope"; + version = "0.3.0"; + sha256 = + "0a0ccf87616459c36ff1f1551701da38485eb601500e74cffd7e42fe9862f74d"; + }; + + meta = { + description = ''An Elixir library for parsing haml templates.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/nurugger07/calliope"; + }; + } // packageOverrides) + ) {}; + + calliope = calliope_0_3_0; + + cartographer_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "cartographer"; + version = "0.0.1"; + src = fetchHex { + pkg = "cartographer"; + version = "0.0.1"; + sha256 = + "8f070615ca221b94a22e846303a3b9cc7ae31c2dea5c3d8f39a116f0d8c4b18f"; + }; + + meta = { + description = ''Geohash algorithm implementation in Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/afronski/cartographer"; + }; + } // packageOverrides) + ) {}; + + cartographer = cartographer_0_0_1; + + certifi_0_1_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "certifi"; + version = "0.1.1"; + src = fetchHex { + pkg = "certifi"; + version = "0.1.1"; + sha256 = + "e6d1dda48fad1b1c5b454c8402e2ac375ae12bf85a9910decaf791f330a7de29"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''An OTP library''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/certifi/erlang-certifi"; + }; + } // packageOverrides) + ) {}; + + certifi_0_3_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "certifi"; + version = "0.3.0"; + src = fetchHex { + pkg = "certifi"; + version = "0.3.0"; + sha256 = + "42ae85fe91c038a634a5fb8d0c77f4fc581914c508f087c7138e9366a1517f6a"; + }; + + meta = { + description = ''An OTP library''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/certifi/erlang-certifi"; + }; + } // packageOverrides) + ) {}; + + certifi_0_4_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "certifi"; + version = "0.4.0"; + src = fetchHex { + pkg = "certifi"; + version = "0.4.0"; + sha256 = + "1cc233bee2d6990e7b0ff4c5824d7f401edda8a3cfad04d3328e35ad97de7611"; + }; + + meta = { + description = ''An OTP library''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/certifi/erlang-certifi"; + }; + } // packageOverrides) + ) {}; + + certifi = certifi_0_4_0; + + cf_0_1_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "cf"; + version = "0.1.2"; + src = fetchHex { + pkg = "cf"; + version = "0.1.2"; + sha256 = + "c86f56bca74dd3616057b28574d920973fe665ecb064aa458dc6a2447f3f4924"; + }; + + meta = { + description = ''Terminal colour helper''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + cf_0_2_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "cf"; + version = "0.2.1"; + src = fetchHex { + pkg = "cf"; + version = "0.2.1"; + sha256 = + "baee9aa7ec2dfa3cb4486b67211177caa293f876780f0b313b45718edef6a0a5"; + }; + + meta = { + description = ''Terminal colour helper''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + cf = cf_0_2_1; + + chacha20_0_3_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "chacha20"; + version = "0.3.2"; + src = fetchHex { + pkg = "chacha20"; + version = "0.3.2"; + sha256 = + "26882c84da45dd1158a0249031f5a67329a6c4cd89e075d409324eee30444410"; + }; + + meta = { + description = ''Chacha20 symmetric stream cipher''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/chacha20_ex"; + }; + } // packageOverrides) + ) {}; + + chacha20 = chacha20_0_3_2; + + changeset_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, defmemo_0_1_1 }: + buildMix ({ + name = "changeset"; + version = "0.2.1"; + src = fetchHex { + pkg = "changeset"; + version = "0.2.1"; + sha256 = + "b2ae6487630bcd2931f54331852f4d834dc1ae47687abc95fbc9194c15c55a5f"; + }; + beamDeps = [ defmemo_0_1_1 ]; + + meta = { + description = ''A package for calculating between-list edit + distances.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/erwald/elixir-changeset"; + }; + } // packageOverrides) + ) {}; + + changeset = changeset_0_2_1; + + changex_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "changex"; + version = "0.1.1"; + src = fetchHex { + pkg = "changex"; + version = "0.1.1"; + sha256 = + "e087a4c3cc8eb3e94eba6050c5b1cc24dba3427eb4e4e15cebdb4000582c9851"; + }; + + meta = { + description = ''Automatically generate a CHANGELOG.md file based + on git commit history. ''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/Gazler/changex"; + }; + } // packageOverrides) + ) {}; + + changex = changex_0_1_1; + + chartkick_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + uuid_1_1_3, + poison_1_5_2 + }: + buildMix ({ + name = "chartkick"; + version = "0.0.2"; + src = fetchHex { + pkg = "chartkick"; + version = "0.0.2"; + sha256 = + "6a4f4170b162117f3be9d0a9d98b63b58da8ec2cea4e29155d14441a0b12ac6c"; + }; + beamDeps = [ uuid_1_1_3 poison_1_5_2 ]; + + meta = { }; + } // packageOverrides) + ) {}; + + chartkick = chartkick_0_0_2; + + chash_0_1_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "chash"; + version = "0.1.1"; + src = fetchHex { + pkg = "chash"; + version = "0.1.1"; + sha256 = + "607d369e56016a51218c42f2692312cd116834193805c99debbe02889013c84a"; + }; + + meta = { + description = ''Riaks CHash implementation''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/project-fifo/chash"; + }; + } // packageOverrides) + ) {}; + + chash = chash_0_1_1; + + chronos_0_3_9 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "chronos"; + version = "0.3.9"; + src = fetchHex { + pkg = "chronos"; + version = "0.3.9"; + sha256 = + "973e1273088677a12afc1a72aad78fe5070fb0ad6f9b1c648d79dd251292dee4"; + }; + + meta = { + longDescription = ''An Elixir library for handling dates. It can + be used to quickly determine a date. In a human + readable format.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/nurugger07/chronos"; + }; + } // packageOverrides) + ) {}; + + chronos_1_5_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "chronos"; + version = "1.5.1"; + src = fetchHex { + pkg = "chronos"; + version = "1.5.1"; + sha256 = + "015d881b1d095b53f626dc32f8db05e5faca8635b199d3cc2022a057c469904b"; + }; + + meta = { + longDescription = ''An Elixir library for handling dates. It can + be used to quickly determine a date. In a human + readable format.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/nurugger07/chronos"; + }; + } // packageOverrides) + ) {}; + + chronos = chronos_1_5_1; + + chunky_svg_0_0_4 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, xml_builder_0_0_8 + }: + buildMix ({ + name = "chunky_svg"; + version = "0.0.4"; + src = fetchHex { + pkg = "chunky_svg"; + version = "0.0.4"; + sha256 = + "c8d7212148d72b03b6ed102410017a2cf77987a09fb889320fc381d383e68c75"; + }; + beamDeps = [ xml_builder_0_0_8 ]; + + meta = { + description = '' A library for drawing things with SVG ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mmmries/chunky_svg"; + }; + } // packageOverrides) + ) {}; + + chunky_svg = chunky_svg_0_0_4; + + cidr_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "cidr"; + version = "1.0.0"; + src = fetchHex { + pkg = "cidr"; + version = "1.0.0"; + sha256 = + "3bffa78af48cfbcd89461144bd2e1990b4f2631a8328c42cb033fa71c14b8f46"; + }; + + meta = { + description = ''Classless Inter-Domain Routing (CIDR) for + Elixir''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/c-rack/cidr-elixir"; + }; + } // packageOverrides) + ) {}; + + cidr = cidr_1_0_0; + + cipher_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "cipher"; + version = "0.1.0"; + src = fetchHex { + pkg = "cipher"; + version = "0.1.0"; + sha256 = + "f70300294a15cc9db597f2c5f2251e87572cf701a6fe4e2981420fc902e640e5"; + }; + + meta = { + longDescription = ''Elixir crypto library to encrypt/decrypt + arbitrary binaries. It uses Erlang Crypto, so + it`s not big deal. Mostly a collection of + helpers wrapping it. It allows to use a crypted + key to validate signed requests. The exact same + cipher is implemented for Python, Ruby and + Elixir, so it can be used to integrate apps from + different languages.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rubencaro/cipher"; + }; + } // packageOverrides) + ) {}; + + cirru_parser_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "cirru_parser"; + version = "0.0.1"; + src = fetchHex { + pkg = "cirru_parser"; + version = "0.0.1"; + sha256 = + "259f533ee97805c50eb12fa8472b5553eaca5bfd58216d54a734dfa1c4d0c678"; + }; + + meta = { + description = ''Cirru Parser in Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Cirru/parser.ex"; + }; + } // packageOverrides) + ) {}; + + cirru_parser = cirru_parser_0_0_1; + + ckan_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + httpotion_2_2_2 + }: + buildMix ({ + name = "ckan"; + version = "0.0.2"; + src = fetchHex { + pkg = "ckan"; + version = "0.0.2"; + sha256 = + "471a58f1d38df7a6ff36af9a1e9d4c6cb9d310c5acb2db95ff3184717d7762a0"; + }; + beamDeps = [ poison_1_5_2 httpotion_2_2_2 ]; + + meta = { + description = ''A small library for interacting with CKAN + (ckan.org) instances''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/rossjones/ckan_ex"; + }; + } // packageOverrides) + ) {}; + + ckan = ckan_0_0_2; + + clint_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_0_11_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "clint"; + version = "0.0.1"; + src = fetchHex { + pkg = "clint"; + version = "0.0.1"; + sha256 = + "41c6781b5f4b986bce14c3578d39c497bcb8427f1d36d8cde5fcaa6e03cae2b1"; + }; + beamDeps = [ plug_0_11_3 cowboy_1_0_4 ]; + + meta = { + description = ''An Elixir web micro-framework, inspired by + Sinatra''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lpil/clint"; + }; + } // packageOverrides) + ) {}; + + clint = clint_0_0_1; + + clique_3_0_1 = callPackage + ( + { + buildRebar3, packageOverrides ? {}, fetchHex, cuttlefish_2_0_7 + }: + buildRebar3 ({ + name = "clique"; + version = "3.0.1"; + src = fetchHex { + pkg = "clique"; + version = "3.0.1"; + sha256 = + "f26bd1d293a88223b9dc21dc5a2643e64823f3e8e178536fb66e97c4ff4a2ac2"; + }; + + beamDeps = [ cuttlefish_2_0_7 ]; + + meta = { + description = ''A CLI library for erlang''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/basho/clique"; + }; + } // packageOverrides) + ) {}; + + clique = clique_3_0_1; + + close_enough_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "close_enough"; + version = "0.0.1"; + src = fetchHex { + pkg = "close_enough"; + version = "0.0.1"; + sha256 = + "cbd73a651bffc50259035a311e5a03cb01176667b76aece059778dda9bd72079"; + }; + + meta = { + description = ''Forget typos in function names name, CloseEnough + handles them.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sivsushruth/close_enough"; + }; + } // packageOverrides) + ) {}; + + close_enough = close_enough_0_0_1; + + cobertura_cover_0_9_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "cobertura_cover"; + version = "0.9.0"; + src = fetchHex { + pkg = "cobertura_cover"; + version = "0.9.0"; + sha256 = + "870bc4658cacc5c80d13f1206b688925234d2dc4e00278e8a3e72fbbd6bea0b1"; + }; + + meta = { + longDescription = ''A plugin for `mix test --cover` that writes a + `coverage.xml` file compatible with Jenkins` + Cobertura plugin. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/PSPDFKit-labs/cobertura_cover"; + }; + } // packageOverrides) + ) {}; + + cobertura_cover = cobertura_cover_0_9_0; + + codepagex_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "codepagex"; + version = "0.1.2"; + src = fetchHex { + pkg = "codepagex"; + version = "0.1.2"; + sha256 = + "cb6fbd1ebf1b1748aee9d956fb15115af407db3348efc26bc9d3d637c6441074"; + }; + + meta = { + longDescription = ''Codepagex is an elixir library to convert + between string encodings to and from utf-8. Like + iconv, but written in pure Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/tallakt/codepagex"; + }; + } // packageOverrides) + ) {}; + + codepagex = codepagex_0_1_2; + + coffee_rotor_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, rotor_0_2_2 }: + buildMix ({ + name = "coffee_rotor"; + version = "0.2.1"; + src = fetchHex { + pkg = "coffee_rotor"; + version = "0.2.1"; + sha256 = + "cb2f786c1abf109ed4d86ec175c02cb09adb1f1ee52d7a4ef0c9e65979d4f365"; + }; + beamDeps = [ rotor_0_2_2 ]; + + meta = { + description = ''A [rotor](https://github.com/HashNuke/rotor) to + compile CoffeeScript files ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/HashNuke/coffee_rotor"; + }; + } // packageOverrides) + ) {}; + + coffee_rotor = coffee_rotor_0_2_1; + + colixir_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "colixir"; + version = "0.0.1"; + src = fetchHex { + pkg = "colixir"; + version = "0.0.1"; + sha256 = + "38dc49351419c6fcfdb76bbc785e07c3acf83cc29f632719dd601ecadbfb73b8"; + }; + + meta = { + description = ''Colixir creates colorized text for terminal + output''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/mondok/colixir"; + }; + } // packageOverrides) + ) {}; + + colixir = colixir_0_0_1; + + color_stream_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "color_stream"; + version = "0.0.2"; + src = fetchHex { + pkg = "color_stream"; + version = "0.0.2"; + sha256 = + "b1181f32b310311016006f4f8d52b3418d1af6f06e71903daabafdcaa602a29d"; + }; + + meta = { + description = ''Generate random colors that are fairly spaced out + and look nice.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/code-lever/color-stream-elixir"; + }; + } // packageOverrides) + ) {}; + + color_stream = color_stream_0_0_2; + + color_utils_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "color_utils"; + version = "0.2.0"; + src = fetchHex { + pkg = "color_utils"; + version = "0.2.0"; + sha256 = + "bf16a1a9de7d837a68ede139c6e06bc9d57f9eccedff302f730105bd80d98647"; + }; + + meta = { + description = ''A Color Util library for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/barakyo/color_utils"; + }; + } // packageOverrides) + ) {}; + + color_utils = color_utils_0_2_0; + + colorful_0_6_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "colorful"; + version = "0.6.0"; + src = fetchHex { + pkg = "colorful"; + version = "0.6.0"; + sha256 = + "6b00225f137efdde7901d3ddc7626a3b33031c20ea145097b2442680e72adc3d"; + }; + + meta = { + description = ''Modules which manage colors''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Joe-noh/colorful"; + }; + } // packageOverrides) + ) {}; + + colorful = colorful_0_6_0; + + colorize_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "colorize"; + version = "0.2.0"; + src = fetchHex { + pkg = "colorize"; + version = "0.2.0"; + sha256 = + "d43757bae49d6da310d641cf7ec809bdc0b6a9eb40fb7ac4c57c1dbbb7d4e32e"; + }; + + meta = { + description = ''Colorize your text in the console''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/shiroyasha/colorize"; + }; + } // packageOverrides) + ) {}; + + colorize = colorize_0_2_0; + + colors_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "colors"; + version = "1.0.1"; + src = fetchHex { + pkg = "colors"; + version = "1.0.1"; + sha256 = + "960aa874a3cbbf4356c64ef8194d5215c8373537a720fc0ab46c90400ecf8949"; + }; + + meta = { + description = ''a colors util''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/lidashuang/colors"; + }; + } // packageOverrides) + ) {}; + + colors = colors_1_0_1; + + combination_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "combination"; + version = "0.0.2"; + src = fetchHex { + pkg = "combination"; + version = "0.0.2"; + sha256 = + "f3e4934d2077d161e4ec8c6e54a2c4b6b39d8189a1434866ca3e2afedd38be04"; + }; + + meta = { + description = ''Elixir library computing simple combination and + permutation on Enumerables.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/seantanly/elixir-combination"; + }; + } // packageOverrides) + ) {}; + + combination = combination_0_0_2; + + combine_0_7_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "combine"; + version = "0.7.0"; + src = fetchHex { + pkg = "combine"; + version = "0.7.0"; + sha256 = + "3ac1b6622e6149204899c7069b850a53ed38d1a749cc7357aeffe86e8bfc593c"; + }; + + meta = { + description = ''A parser combinator library for Elixir + projects.''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + combine = combine_0_7_0; + + comeonin_i18n_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }: + buildMix ({ + name = "comeonin_i18n"; + version = "0.1.3"; + src = fetchHex { + pkg = "comeonin_i18n"; + version = "0.1.3"; + sha256 = + "4b45ca5af3cbf20bf7d3f7e874629041a2a921ad5a62ca9b94546a1e559023a6"; + }; + beamDeps = [ gettext_0_10_0 ]; + + meta = { + description = ''Internationalization support for the Comeonin + password hashing library.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/elixircnx/comeonin_i18n"; + }; + } // packageOverrides) + ) {}; + + comeonin_i18n = comeonin_i18n_0_1_3; + + complex_0_2_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + exprintf_0_1_6, + earmark_0_2_1 + }: + buildMix ({ + name = "complex"; + version = "0.2.0"; + src = fetchHex { + pkg = "complex"; + version = "0.2.0"; + sha256 = + "6db6a2850ed907c4d9e062591110dc70c35c3818ccf609f1268052a3f4bf10b0"; + }; + beamDeps = [ exprintf_0_1_6 earmark_0_2_1 ]; + + meta = { + description = ''Complex is a library for types and mathematical + functions for complex numbers.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/twist-vector/elixir-complex.git"; + }; + } // packageOverrides) + ) {}; + + complex = complex_0_2_0; + + con_cache_0_11_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }: + buildMix ({ + name = "con_cache"; + version = "0.11.0"; + src = fetchHex { + pkg = "con_cache"; + version = "0.11.0"; + sha256 = + "cd6d3dd4f6900520e3975592e1bbb57ac217e15f1f350f5bcba0c63578cb0a49"; + }; + beamDeps = [ exactor_2_2_0 ]; + + meta = { + longDescription = ''ETS based key-value storage with support for + row-level isolated writes, TTL auto-purge, and + modification callbacks.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sasa1977/con_cache"; + }; + } // packageOverrides) + ) {}; + + con_cache = con_cache_0_11_0; + + con_cache_0_9_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }: + buildMix ({ + name = "con_cache"; + version = "0.9.0"; + src = fetchHex { + pkg = "con_cache"; + version = "0.9.0"; + sha256 = + "600b122653d7e5f6414bb0728fa6133c656e2d24fad7f0a31bb89c1c70ec68bb"; + }; + beamDeps = [ exactor_2_2_0 ]; + + meta = { + longDescription = ''ETS based key-value storage with support for + row-level isolated writes, TTL auto-purge, and + modification callbacks.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sasa1977/con_cache"; + }; + } // packageOverrides) + ) {}; + + config_values_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "config_values"; + version = "1.0.0"; + src = fetchHex { + pkg = "config_values"; + version = "1.0.0"; + sha256 = + "cdbd33fd68cf7fa4fe88dfc1f73e5d26f69d86132650dfba9a636dc75f6cb26c"; + }; + + meta = { + description = ''Interpolated configuration values''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hassox/config_values"; + }; + } // packageOverrides) + ) {}; + + config_values = config_values_1_0_0; + + configparser_ex_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "configparser_ex"; + version = "0.2.1"; + src = fetchHex { + pkg = "configparser_ex"; + version = "0.2.1"; + sha256 = + "3319861498f5e711058b1b3b54f88275af85e1bf9493bd0b904393d5971f117e"; + }; + + meta = { + description = ''A module that parses INI-like files. Not unlike + Python configparser package.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/easco/configparser_ex"; + }; + } // packageOverrides) + ) {}; + + configparser_ex = configparser_ex_0_2_1; + + conform_0_16_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }: + buildMix ({ + name = "conform"; + version = "0.16.0"; + src = fetchHex { + pkg = "conform"; + version = "0.16.0"; + sha256 = + "4d510e428fe05d7b505cefca66359bb4700aa7b68189624f5ba4cd1c22b5bf1a"; + }; + beamDeps = [ neotoma_1_7_3 ]; + + meta = { + description = ''Easy release configuration for Elixir apps.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/conform"; + }; + } // packageOverrides) + ) {}; + + conform_1_0_0_rc8 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }: + buildMix ({ + name = "conform"; + version = "1.0.0-rc8"; + src = fetchHex { + pkg = "conform"; + version = "1.0.0-rc8"; + sha256 = + "0177ab7eaf0f66372df9aadd1d4e198e205b76f561be0e26f6a52ca6adcadf80"; + }; + beamDeps = [ neotoma_1_7_3 ]; + + meta = { + description = ''Easy release configuration for Elixir apps.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/conform"; + }; + } // packageOverrides) + ) {}; + + conform_2_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }: + buildMix ({ + name = "conform"; + version = "2.0.0"; + src = fetchHex { + pkg = "conform"; + version = "2.0.0"; + sha256 = + "2a3bc36dd50363778c0cb2f13026d65b5e4c919abf91be21c1a51c480c723403"; + }; + beamDeps = [ neotoma_1_7_3 ]; + + meta = { + description = ''Easy release configuration for Elixir apps.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/conform"; + }; + } // packageOverrides) + ) {}; + + conform = conform_2_0_0; + + conform_exrm_1_0_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + exrm_1_0_3, + conform_2_0_0 + }: + buildMix ({ + name = "conform_exrm"; + version = "1.0.0"; + src = fetchHex { + pkg = "conform_exrm"; + version = "1.0.0"; + sha256 = + "acf8eb831b0f8573a92694da4d3b513f551b8d854a8c4670c560379ae5c0f2fd"; + }; + beamDeps = [ exrm_1_0_3 conform_2_0_0 ]; + + meta = { + description = ''Conform plugin for ExRM''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/conform_exrm"; + }; + } // packageOverrides) + ) {}; + + conform_exrm = conform_exrm_1_0_0; + + connection_1_0_0_rc_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "connection"; + version = "1.0.0-rc.1"; + src = fetchHex { + pkg = "connection"; + version = "1.0.0-rc.1"; + sha256 = + "915a998f7bf30013611bf3cfc778b0d8ff163a968bd7604e7021aca272136a48"; + }; + + meta = { + description = ''Connection behaviour for connection processes''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fishcakez/connection"; + }; + } // packageOverrides) + ) {}; + + connection_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "connection"; + version = "1.0.2"; + src = fetchHex { + pkg = "connection"; + version = "1.0.2"; + sha256 = + "b4ffd56c0ad3caac8dc6125a007e416ba2dab54a1d4b380766bb9e87c56120fb"; + }; + + meta = { + description = ''Connection behaviour for connection processes''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fishcakez/connection"; + }; + } // packageOverrides) + ) {}; + + connection = connection_1_0_2; + + conqueuer_0_5_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + inflex_1_5_0 + }: + buildMix ({ + name = "conqueuer"; + version = "0.5.1"; + src = fetchHex { + pkg = "conqueuer"; + version = "0.5.1"; + sha256 = + "7370e2a0201f73ced6b202877b4dcb6872e1b6bbb0c024b1edee3a058dd653ab"; + }; + beamDeps = [ poolboy_1_5_1 inflex_1_5_0 ]; + + meta = { + description = ''An Elixir in memory work queue.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/midas/conqueuer"; + }; + } // packageOverrides) + ) {}; + + conqueuer = conqueuer_0_5_1; + + console_tree_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "console_tree"; + version = "0.0.1"; + src = fetchHex { + pkg = "console_tree"; + version = "0.0.1"; + sha256 = + "c7dea20c14fd8bc6697a68f2917def38d20c772eb4b5715b18197672e7ddc0eb"; + }; + + meta = { + longDescription = ''A simple library to print a text + representation of a tree structure, intended for + use in a terminal environment.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ciaran/console_tree"; + }; + } // packageOverrides) + ) {}; + + console_tree = console_tree_0_0_1; + + control_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "control"; + version = "0.0.4"; + src = fetchHex { + pkg = "control"; + version = "0.0.4"; + sha256 = + "c806da1d82614a27f876aea5d222edb1cdb52d883553ada03f1ff79c09c024d9"; + }; + + meta = { + description = ''An exploratory look into functors, applicatives, + and monads for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slogsdon/elixir-control"; + }; + } // packageOverrides) + ) {}; + + control = control_0_0_4; + + convertat_1_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "convertat"; + version = "1.1.0"; + src = fetchHex { + pkg = "convertat"; + version = "1.1.0"; + sha256 = + "603229c43df6769f2166c78c5c3f31316390bf6e19fa8e15f02026170ab51a79"; + }; + + meta = { + description = ''Provides functions for converting from and to + arbitrary bases. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/whatyouhide/convertat"; + }; + } // packageOverrides) + ) {}; + + convertat = convertat_1_1_0; + + cors_plug_1_1_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "cors_plug"; + version = "1.1.1"; + src = fetchHex { + pkg = "cors_plug"; + version = "1.1.1"; + sha256 = + "12300007530a014c32f6dfe71a1775d1b39dd43fd7b35697574ab7d78c5e629c"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + longDescription = ''An elixir plug that adds CORS headers to + requests and responds to preflight requests + (OPTIONS)''; + license = stdenv.lib.licenses.asl20; + homepage = "http://github.com/mschae/cors_plug"; + }; + } // packageOverrides) + ) {}; + + cors_plug = cors_plug_1_1_1; + + corsica_0_4_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "corsica"; + version = "0.4.1"; + src = fetchHex { + pkg = "corsica"; + version = "0.4.1"; + sha256 = + "718b95d067cba24563b6fcc5ac64ced304c71323df3c0abe58351054125f964d"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + description = ''Plug-based swiss-army knife for CORS requests.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/whatyouhide/corsica"; + }; + } // packageOverrides) + ) {}; + + corsica = corsica_0_4_1; + + couch_factory_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "couch_factory"; + version = "0.1.1"; + src = fetchHex { + pkg = "couch_factory"; + version = "0.1.1"; + sha256 = + "79b2e2c48bf6b036f959ff70c14b0d4da767e4bca7efae8f6c758eefab1a28d5"; + }; + + meta = { + description = ''Factory Girl implementation with CouchDb + persistence.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/javierg/couch_factory"; + }; + } // packageOverrides) + ) {}; + + couch_factory = couch_factory_0_1_1; + + couchex_0_6_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "couchex"; + version = "0.6.0"; + src = fetchHex { + pkg = "couchex"; + version = "0.6.0"; + sha256 = + "44e02558dc29d739cf27dad76bfc8e8632c4779ce2c701a418409912641b7c3b"; + }; + + meta = { + description = ''CouchDB client, wrapping couchbeam erlang + client.''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/ringling/couchex"; + }; + } // packageOverrides) + ) {}; + + couchex = couchex_0_6_0; + + count_buffer_0_1_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, pool_ring_0_1_5 }: + buildMix ({ + name = "count_buffer"; + version = "0.1.5"; + src = fetchHex { + pkg = "count_buffer"; + version = "0.1.5"; + sha256 = + "6e78dc0458dac8dae9d41d7857c7185b3164cecd9992a1407265ebfa3455544e"; + }; + beamDeps = [ pool_ring_0_1_5 ]; + + meta = { + description = ''buffer a large set of counters and flush + periodically''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/count_buffer"; + }; + } // packageOverrides) + ) {}; + + count_buffer = count_buffer_0_1_5; + + courier_0_0_3 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + mail_0_0_4, + gen_smtp_0_9_0 + }: + buildMix ({ + name = "courier"; + version = "0.0.3"; + src = fetchHex { + pkg = "courier"; + version = "0.0.3"; + sha256 = + "8c8c560da7011c8846ed5ee60af867124ff043a7d37773156b6d8a08390b73fc"; + }; + beamDeps = [ mail_0_0_4 gen_smtp_0_9_0 ]; + + meta = { + description = ''Adapter based email delivery''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/DockYard/courier"; + }; + } // packageOverrides) + ) {}; + + courier = courier_0_0_3; + + cowboy_1_0_4 = callPackage + ( + { + buildErlangMk, + packageOverrides ? {}, + fetchHex, + cowlib_1_0_2, + ranch_1_2_1 + }: + buildErlangMk ({ + name = "cowboy"; + version = "1.0.4"; + src = fetchHex { + pkg = "cowboy"; + version = "1.0.4"; + sha256 = + "6a0edee96885fae3a8dd0ac1f333538a42e807db638a9453064ccfdaa6b9fdac"; + }; + beamDeps = [ cowlib_1_0_2 ranch_1_2_1 ]; + + meta = { + description = ''Small, fast, modular HTTP server written in + Erlang.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/ninenines/cowboy"; + }; + } // packageOverrides) + ) {}; + + cowboy = cowboy_1_0_4; + + cowgirl_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "cowgirl"; + version = "0.0.1"; + src = fetchHex { + pkg = "cowgirl"; + version = "0.0.1"; + sha256 = + "3b06ca6bb82fa3674ddad182cc479d9ab1538b83a4cf616c666e0d6f873c44e5"; + }; + + meta = { + description = ''Small, fast, modular HTTP server written in + Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/larrylv/cowgirl"; + }; + } // packageOverrides) + ) {}; + + cowgirl = cowgirl_0_0_1; + + cowlib_1_0_0 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "cowlib"; + version = "1.0.0"; + src = fetchHex { + pkg = "cowlib"; + version = "1.0.0"; + sha256 = + "4dacd60356177ec8cf93dbff399de17435b613f3318202614d3d5acbccee1474"; + }; + + meta = { + description = ''Support library for manipulating Web + protocols.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/ninenines/cowlib"; + }; + } // packageOverrides) + ) {}; + + cowlib_1_0_2 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "cowlib"; + version = "1.0.2"; + src = fetchHex { + pkg = "cowlib"; + version = "1.0.2"; + sha256 = + "db622da03aa039e6366ab953e31186cc8190d32905e33788a1acb22744e6abd2"; + }; + + meta = { + description = ''Support library for manipulating Web + protocols.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/ninenines/cowlib"; + }; + } // packageOverrides) + ) {}; + + cowlib_1_3_0 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "cowlib"; + version = "1.3.0"; + src = fetchHex { + pkg = "cowlib"; + version = "1.3.0"; + sha256 = + "2b1ac020ec92e7a59cb7322779870c2d3adc7c904ecb3b9fa406f04dc9816b73"; + }; + + meta = { + description = ''Support library for manipulating Web + protocols.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/ninenines/cowlib"; + }; + } // packageOverrides) + ) {}; + + cowlib = cowlib_1_3_0; + + cowsay_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "cowsay"; + version = "0.0.1"; + src = fetchHex { + pkg = "cowsay"; + version = "0.0.1"; + sha256 = + "9f8a6634710974787751279b22ef5d7cb3c6a74db42636540ae5db37c4632e2a"; + }; + + meta = { + description = ''A cow-friend who will speak your mind''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bbrock25/cowsay"; + }; + } // packageOverrides) + ) {}; + + cowsay = cowsay_0_0_1; + + cqex_0_1_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "cqex"; + version = "0.1.4"; + src = fetchHex { + pkg = "cqex"; + version = "0.1.4"; + sha256 = + "3c6a461605cc7e664178e6343cb585aa8c453831bb4447519007fcfe39697328"; + }; + + meta = { + description = ''Idiomatic Elixir client for Cassandra.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/matehat/cqex"; + }; + } // packageOverrides) + ) {}; + + cqex = cqex_0_1_4; + + credit_card_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "credit_card"; + version = "1.0.0"; + src = fetchHex { + pkg = "credit_card"; + version = "1.0.0"; + sha256 = + "c7dee15035f4ff925f08bc806c4bd1817209c64d8ba089d0731808ee35e97ba0"; + }; + + meta = { + description = ''A library for validating credit card numbers''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/abakhi/credit_card"; + }; + } // packageOverrides) + ) {}; + + credit_card = credit_card_1_0_0; + + credo_0_3_10 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, bunt_0_1_5 }: + buildMix ({ + name = "credo"; + version = "0.3.10"; + src = fetchHex { + pkg = "credo"; + version = "0.3.10"; + sha256 = + "dbc6e8ed6cd3567576bb6c4cc0dbea6fb3f7ef88a530aa2d17d13a1106cff156"; + }; + beamDeps = [ bunt_0_1_5 ]; + + meta = { + longDescription = ''A static code analysis tool for the Elixir + language with a focus on code consistency and + teaching.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rrrene/credo"; + }; + } // packageOverrides) + ) {}; + + credo = credo_0_3_10; + + credo_0_3_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, bunt_0_1_5 }: + buildMix ({ + name = "credo"; + version = "0.3.2"; + src = fetchHex { + pkg = "credo"; + version = "0.3.2"; + sha256 = + "0040bfc7a76f3c345647dc32743f4c1ca2911cc1fc53bc2dc3f9fd98704da805"; + }; + beamDeps = [ bunt_0_1_5 ]; + + meta = { + longDescription = ''A static code analysis tool for the Elixir + language with a focus on code consistency and + teaching.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rrrene/credo"; + }; + } // packageOverrides) + ) {}; + + croma_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "croma"; + version = "0.4.0"; + src = fetchHex { + pkg = "croma"; + version = "0.4.0"; + sha256 = + "6bcf8a0aad588fc57b4a4dedacf54ec4461e6906da5273c4bd8e121d179e3413"; + }; + + meta = { + description = ''Elixir macro utilities''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + croma = croma_0_4_0; + + crutches_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "crutches"; + version = "1.0.0"; + src = fetchHex { + pkg = "crutches"; + version = "1.0.0"; + sha256 = + "cfd97962a22fe30820e6ca6d0671c763232a7edf149aa11bd62ee77dff0ffff0"; + }; + + meta = { + description = ''An Elixir toolbelt freely inspired from Ruby`s + ActiveSupport''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mykewould/crutches"; + }; + } // packageOverrides) + ) {}; + + crutches = crutches_1_0_0; + + cryptex_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "cryptex"; + version = "0.0.1"; + src = fetchHex { + pkg = "cryptex"; + version = "0.0.1"; + sha256 = + "19d709c6ffbda3c74ec811190d168170db0435720cbe788c0233bea4afee1d16"; + }; + + meta = { + description = ''An Elixir library for encrypting/decrypting, + signing/verifying data. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/scrogson/cryptex"; + }; + } // packageOverrides) + ) {}; + + cryptex = cryptex_0_0_1; + + crypto_rsassa_pss_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "crypto_rsassa_pss"; + version = "1.0.0"; + src = fetchHex { + pkg = "crypto_rsassa_pss"; + version = "1.0.0"; + sha256 = + "d8f48874dbef940a8954126249499714e702d8ae0a8f23230a6c2f4a92833313"; + }; + + meta = { + description = ''RSASSA-PSS Public Key Cryptographic Signature + Algorithm for Erlang''; + license = stdenv.lib.licenses.mpl20; + homepage = + "https://github.com/potatosalad/erlang-crypto_rsassa_pss"; + }; + } // packageOverrides) + ) {}; + + crypto_rsassa_pss = crypto_rsassa_pss_1_0_0; + + cspex_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }: + buildMix ({ + name = "cspex"; + version = "1.0.0"; + src = fetchHex { + pkg = "cspex"; + version = "1.0.0"; + sha256 = + "f5df9923dd4250444a3e9f5f49fa76398c0b1415d468047b9a83ef5480348646"; + }; + beamDeps = [ exactor_2_2_0 ]; + + meta = { + description = ''A library that brings all the CSP joy to the + Elixir land.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/vidalraphael/cspex"; + }; + } // packageOverrides) + ) {}; + + cspex = cspex_1_0_0; + + csv_1_3_3 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, parallel_stream_1_0_3 + }: + buildMix ({ + name = "csv"; + version = "1.3.3"; + src = fetchHex { + pkg = "csv"; + version = "1.3.3"; + sha256 = + "f3ef7b1ae28a55e53b8cb5c11d0e0b64e76e38d5f3e830bf2e3bf2cc0a89d848"; + }; + beamDeps = [ parallel_stream_1_0_3 ]; + + meta = { + description = ''CSV Decoding and Encoding for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/beatrichartz/csv"; + }; + } // packageOverrides) + ) {}; + + csv = csv_1_3_3; + + csvlixir_2_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "csvlixir"; + version = "2.0.2"; + src = fetchHex { + pkg = "csvlixir"; + version = "2.0.2"; + sha256 = + "f1e4ca61af3004a66efbe5d02486519a5d6c3610b9d5404352dbf6cd8ec593ec"; + }; + + meta = { + longDescription = ''CSVLixir is a CSV reader/writer for Elixir. + It operates on files and strings. The reader can + read CSV files or CSV strings. Reading from + files returns a stream of lists. Reading from + strings returns a list of lists. The writer + transforms a (possibly lazy) list of lists into + a stream of CSV strings. It can also take a + single list and return a single CSV string.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jimm/csvlixir"; + }; + } // packageOverrides) + ) {}; + + csvlixir = csvlixir_2_0_2; + + cth_readable_1_2_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, cf_0_2_1 }: + buildRebar3 ({ + name = "cth_readable"; + version = "1.2.2"; + src = fetchHex { + pkg = "cth_readable"; + version = "1.2.2"; + sha256 = + "77585432b98b45b9ee086399cefa97b2191b6d780c4e795bf43c529412d9694d"; + }; + + beamDeps = [ cf_0_2_1 ]; + + meta = { + description = ''Common Test hooks for more readable logs''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/ferd/cth_readable"; + }; + } // packageOverrides) + ) {}; + + cth_readable = cth_readable_1_2_2; + + cuckoo_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, murmur_1_0_0 }: + buildMix ({ + name = "cuckoo"; + version = "1.0.0"; + src = fetchHex { + pkg = "cuckoo"; + version = "1.0.0"; + sha256 = + "18f31763c50c20bb89e1fbc4b9eb5b97f6ffc23e3a90ba4cf5e97ccd96da8df2"; + }; + beamDeps = [ murmur_1_0_0 ]; + + meta = { + description = ''Cuckoo is a pure Elixir implementation of Cuckoo + Filters.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gmcabrita/cuckoo"; + }; + } // packageOverrides) + ) {}; + + cuckoo = cuckoo_1_0_0; + + cucumberl_0_0_6 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "cucumberl"; + version = "0.0.6"; + src = fetchHex { + pkg = "cucumberl"; + version = "0.0.6"; + sha256 = + "3b9ea813997fd8c1e3d2b004e89288496dc21d2e5027f432e5900569d2c61cf3"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''A pure-erlang implementation of Cucumber.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ericbmerritt/cucumberl"; + }; + } // packageOverrides) + ) {}; + + cucumberl = cucumberl_0_0_6; + + cuid_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "cuid"; + version = "0.1.0"; + src = fetchHex { + pkg = "cuid"; + version = "0.1.0"; + sha256 = + "80cd46bd323e05b706c60008368e631b559307b554c0acc54292ab2c73a3340b"; + }; + + meta = { + description = ''Generate collision-resistant ids, in Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/duailibe/cuid"; + }; + } // packageOverrides) + ) {}; + + cuid = cuid_0_1_0; + + currency_formatter_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ + name = "currency_formatter"; + version = "0.0.1"; + src = fetchHex { + pkg = "currency_formatter"; + version = "0.0.1"; + sha256 = + "dab55279ae6377f00a9d01a0a7ab015d380d550d71f303900ae554f8d0065606"; + }; + beamDeps = [ poison_2_1_0 ]; + + meta = { + description = ''A function to format a number to a currency using + iso standards''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/smeevil/currency_formatter"; + }; + } // packageOverrides) + ) {}; + + currency_formatter = currency_formatter_0_0_1; + + current_user_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "current_user"; + version = "0.0.1"; + src = fetchHex { + pkg = "current_user"; + version = "0.0.1"; + sha256 = + "8a400d8cbd02da89bccf67a357733b682e0d6d4c421b7230405ac16b1988809c"; + }; + + meta = { + description = ''Configurable user authentication for Phoenix''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/halogenandtoast/current_user"; + }; + } // packageOverrides) + ) {}; + + current_user = current_user_0_0_1; + + curry_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "curry"; + version = "0.0.1"; + src = fetchHex { + pkg = "curry"; + version = "0.0.1"; + sha256 = + "e8f56fee1cb82ae2616c36021d4dd8c2b4169490e224dea84f63feb47475d6f0"; + }; + + meta = { + description = ''A simple currying macro allowing to define + curried functions in Elixir modules.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/niahoo/elixir-curry"; + }; + } // packageOverrides) + ) {}; + + curry = curry_0_0_1; + + curtail_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "curtail"; + version = "0.1.0"; + src = fetchHex { + pkg = "curtail"; + version = "0.1.0"; + sha256 = + "0d43f4bcecf91c935a89cd52af62efa62e264b4c82a07e29e9945988735fdc1f"; + }; + + meta = { + description = ''HTML-safe string truncation.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/seankay/curtail"; + }; + } // packageOverrides) + ) {}; + + curtail = curtail_0_1_0; + + curtains_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_0_3 }: + buildMix ({ + name = "curtains"; + version = "0.0.1"; + src = fetchHex { + pkg = "curtains"; + version = "0.0.1"; + sha256 = + "d547bd024049630fd072994a759befaab908fa69f5e200b2b584e12f12e9842f"; + }; + beamDeps = [ plug_1_0_3 ]; + + meta = { + longDescription = ''Curtains is a Elixir package that \"takes + over\" your Elixir website by returning content + of a specified file (if it exists). This makes + it perfect for \"Under construction\" and + \"Maintenance\" pages. At it`s heart, it`s just + a Plug.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fteem/curtains"; + }; + } // packageOverrides) + ) {}; + + curtains = curtains_0_0_1; + + curve25519_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "curve25519"; + version = "0.1.0"; + src = fetchHex { + pkg = "curve25519"; + version = "0.1.0"; + sha256 = + "786f9ede0aa9503f65015c19d9cd1b9263c5e7523cd215ee23d6d94ba16473d1"; + }; + + meta = { + description = ''Curve25519 Diffie-Hellman functions''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/curve25519_ex"; + }; + } // packageOverrides) + ) {}; + + curve25519 = curve25519_0_1_0; + + cushion_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, httpotion_2_2_2 }: + buildMix ({ + name = "cushion"; + version = "0.0.3"; + src = fetchHex { + pkg = "cushion"; + version = "0.0.3"; + sha256 = + "1371ab210bd3b7ef7381dbe3f53fedb8afbbb0c562f45d614e4849373919482b"; + }; + beamDeps = [ httpotion_2_2_2 ]; + + meta = { + longDescription = ''A really simple Buffer API client for sending + updates. Right now it only supports sending text + updates, but hopefully will support more in the + future.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ryanbillingsley/cushion"; + }; + } // packageOverrides) + ) {}; + + cushion = cushion_0_0_3; + + custom_base_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "custom_base"; + version = "0.2.0"; + src = fetchHex { + pkg = "custom_base"; + version = "0.2.0"; + sha256 = + "d7c26409eb22b00d69f591fd89cc4e84550656862c655c7ae3edf63f7381899b"; + }; + + meta = { + description = ''Allow you to make custom base conversion in + Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/igas/custom_base"; + }; + } // packageOverrides) + ) {}; + + custom_base = custom_base_0_2_0; + + cuttlefish_2_0_7 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + lager_3_0_2, + getopt_0_8_2 + }: + buildRebar3 ({ + name = "cuttlefish"; + version = "2.0.7"; + src = fetchHex { + pkg = "cuttlefish"; + version = "2.0.7"; + sha256 = + "57589747ba40a75c53872002cd251a2933102457cdcc99b8ed72823ba1288869"; + }; + + beamDeps = [ lager_3_0_2 getopt_0_8_2 ]; + + meta = { + description = ''cuttlefish configuration abstraction''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/tsloughter/cuttlefish"; + }; + } // packageOverrides) + ) {}; + + cuttlefish = cuttlefish_2_0_7; + + cypher_query_0_0_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "cypher_query"; + version = "0.0.1"; + src = fetchHex { + pkg = "cypher_query"; + version = "0.0.1"; + sha256 = + "068bee4f13275d3448a4676bf113d5b2e414b47a9f84bb6e1614a009104c3f30"; + }; + + meta = { + description = ''A dumb string-based query builder for neo4j + Cypher queries''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/collin/cypher_query"; + }; + } // packageOverrides) + ) {}; + + cypher_query = cypher_query_0_0_1; + + data_leaf_walker_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "data_leaf_walker"; + version = "0.1.0"; + src = fetchHex { + pkg = "data_leaf_walker"; + version = "0.1.0"; + sha256 = + "9d3a8688c3751765453f04e8f60f3826757396dce66baf7e2cf7335c9c373bbd"; + }; + + meta = { + longDescription = ''Traverse and map values of deeply nested data + structures: Provides a `map_deeply/2` function + for Maps and Lists and Keyword Lists''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gutschilla/elixir-map-deeply"; + }; + } // packageOverrides) + ) {}; + + data_leaf_walker = data_leaf_walker_0_1_0; + + database_url_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "database_url"; + version = "0.1.0"; + src = fetchHex { + pkg = "database_url"; + version = "0.1.0"; + sha256 = + "273c8c926761d5716fee17c8a8494583d729a4419e30479a292eb6cea3d9a756"; + }; + + meta = { + description = ''Parse database URL and renturn keyword list for + use with Ecto.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/s-m-i-t-a/database_url"; + }; + } // packageOverrides) + ) {}; + + database_url = database_url_0_1_0; + + db_connection_0_2_4 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + sbroker_0_7_0, + poolboy_1_5_1, + connection_1_0_2 + }: + buildMix ({ + name = "db_connection"; + version = "0.2.4"; + src = fetchHex { + pkg = "db_connection"; + version = "0.2.4"; + sha256 = + "fbb5074affe8d57d0f677cf3692371a1fa3f90673c81e61214b0388995b4d4a7"; + }; + beamDeps = [ sbroker_0_7_0 poolboy_1_5_1 connection_1_0_2 ]; + + meta = { + description = ''Database connection behaviour for database + transactions and connection pooling''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fishcakez/db_connection"; + }; + } // packageOverrides) + ) {}; + + db_connection = db_connection_0_2_4; + + dbg_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dbg"; + version = "1.0.1"; + src = fetchHex { + pkg = "dbg"; + version = "1.0.1"; + sha256 = + "866159f496a1ad9b959501f16db3d1338bb6cef029a75a67ca5615d25b38345f"; + }; + + meta = { + description = ''Distributed tracing''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fishcakez/dbg"; + }; + } // packageOverrides) + ) {}; + + dbg = dbg_1_0_1; + + decimal_1_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "decimal"; + version = "1.1.1"; + src = fetchHex { + pkg = "decimal"; + version = "1.1.1"; + sha256 = + "c73f361389c2221e2fda0e2ba63c6de88d1545b00ddc0b4d5885202ccc34c568"; + }; + + meta = { + description = ''Arbitrary precision decimal arithmetic for + Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ericmj/decimal"; + }; + } // packageOverrides) + ) {}; + + decimal = decimal_1_1_1; + + decks_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "decks"; + version = "0.0.1"; + src = fetchHex { + pkg = "decks"; + version = "0.0.1"; + sha256 = + "de75b96c66f23c365935949ec53efab1f2f5d187803c26d733dd3b2df535af7d"; + }; + + meta = { + description = ''Implements standard card decks for Elixir-based + card games.''; + + }; + } // packageOverrides) + ) {}; + + decks = decks_0_0_1; + + decoction_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "decoction"; + version = "0.0.1"; + src = fetchHex { + pkg = "decoction"; + version = "0.0.1"; + sha256 = + "cdf7ad35cdf87962e153bb56d9c68f8dd061469d58cae8923cbdcd2980d7adc0"; + }; + + meta = { + description = ''Decoction is a static site generator written in + Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/aarvay/decoction"; + }; + } // packageOverrides) + ) {}; + + decoction = decoction_0_0_1; + + defmemo_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "defmemo"; + version = "0.1.1"; + src = fetchHex { + pkg = "defmemo"; + version = "0.1.1"; + sha256 = + "8fefc49ff64b06fdb1ee15292419c16919a7a3c6b8e5cac6afd7a13919715e0f"; + }; + + meta = { + description = '' A memoization macro (defmemo) for elixir using a + genserver backing store. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/os6sense/DefMemo"; + }; + } // packageOverrides) + ) {}; + + defmemo = defmemo_0_1_1; + + delayed_otp_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "delayed_otp"; + version = "0.0.2"; + src = fetchHex { + pkg = "delayed_otp"; + version = "0.0.2"; + sha256 = + "22fe457d78fe1f216dcfca8c84431ac1f31e93267fdd563a5ca86c8289e2620f"; + }; + + meta = { + longDescription = ''Delay death of supervisor children or + gen_server : for instance Erlang supervisor with + exponential backoff restart strategy.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/delayed_otp"; + }; + } // packageOverrides) + ) {}; + + delayed_otp = delayed_otp_0_0_2; + + delegate_behaviour_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "delegate_behaviour"; + version = "0.1.3"; + src = fetchHex { + pkg = "delegate_behaviour"; + version = "0.1.3"; + sha256 = + "15b335b5c30072ce8e0845eeb8116397ef357efbfbc64b59b6c113b96520e9c5"; + }; + + meta = { + description = ''Macros to define modules that delegate to + concrete implementations of behaviours''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + delegate_behaviour = delegate_behaviour_0_1_3; + + demacro_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "demacro"; + version = "0.0.1"; + src = fetchHex { + pkg = "demacro"; + version = "0.0.1"; + sha256 = + "e2a83d48f6b3e03764baf2e149dd5420e632d0d4daa77c5226697a3755a89d16"; + }; + meta = { }; + } // packageOverrides) + ) {}; + + demacro = demacro_0_0_1; + + detergent_0_3_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "detergent"; + version = "0.3.0"; + src = fetchHex { + pkg = "detergent"; + version = "0.3.0"; + sha256 = + "510cfb5d35b4b344762f074b73c8696b4bdde654ea046b3365cf92760ae33362"; + }; + + meta = { + description = ''An emulsifying Erlang SOAP library''; + license = with stdenv.lib.licenses; [ unlicense bsd3 ]; + homepage = "https://github.com/devinus/detergent"; + }; + } // packageOverrides) + ) {}; + + detergent = detergent_0_3_0; + + detergentex_0_0_7 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, detergent_0_3_0 }: + buildMix ({ + name = "detergentex"; + version = "0.0.7"; + src = fetchHex { + pkg = "detergentex"; + version = "0.0.7"; + sha256 = + "6bb1bc2fe9228f97e512ef012c473ed822263dc38c3dbaa727fcd111ce1c4771"; + }; + beamDeps = [ detergent_0_3_0 ]; + + meta = { + description = ''Elixir binding to Detergent erlang library used + to call WSDL SOAP Services''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/r-icarus/detergentex"; + }; + } // packageOverrides) + ) {}; + + detergentex = detergentex_0_0_7; + + dflow_0_1_5 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "dflow"; + version = "0.1.5"; + src = fetchHex { + pkg = "dflow"; + version = "0.1.5"; + sha256 = + "f08e73f22d4c620ef5f358a0b40f8fe3b91219ca3922fbdbe7e42f1cb58f737e"; + }; + + meta = { + description = ''Pipelined flow processing engine''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dalmatinerdb/dflow"; + }; + } // packageOverrides) + ) {}; + + dflow = dflow_0_1_5; + + dialyxir_0_3_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dialyxir"; + version = "0.3.3"; + src = fetchHex { + pkg = "dialyxir"; + version = "0.3.3"; + sha256 = + "8851d7c582ce9db43b0564f026b2f6a461df62e139a7891fde50f9b6a7fc496c"; + }; + + meta = { + description = ''Mix tasks to simplify use of Dialyzer in Elixir + projects.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jeremyjh/dialyxir"; + }; + } // packageOverrides) + ) {}; + + dialyxir = dialyxir_0_3_3; + + dialyze_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dialyze"; + version = "0.2.1"; + src = fetchHex { + pkg = "dialyze"; + version = "0.2.1"; + sha256 = + "f485181fa53229356621261a384963cb47511cccf1454e82ca4fde53274fcd48"; + }; + + meta = { + description = ''Dialyzer Mix task''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fishcakez/dialyze"; + }; + } // packageOverrides) + ) {}; + + dialyze = dialyze_0_2_1; + + dice_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dice"; + version = "0.0.1"; + src = fetchHex { + pkg = "dice"; + version = "0.0.1"; + sha256 = + "975795636d6374bf120669cdbd6008a64bdd193a2ff202ffbdeefaa03d11bb9c"; + }; + + meta = { + description = ''Library and CLI app for rolling dice ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stocks29/dice"; + }; + } // packageOverrides) + ) {}; + + dice = dice_0_0_1; + + dice_roller_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dice_roller"; + version = "1.0.1"; + src = fetchHex { + pkg = "dice_roller"; + version = "1.0.1"; + sha256 = + "a9c4b9a85dc7d26a78ff1dcc58aee9e6bcc9df473531b032d95e6cd6e2402679"; + }; + + meta = { + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KevinGreene/DiceRoller"; + }; + } // packageOverrides) + ) {}; + + dice_roller = dice_roller_1_0_1; + + dicon_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dicon"; + version = "0.3.0"; + src = fetchHex { + pkg = "dicon"; + version = "0.3.0"; + sha256 = + "52c5839feb9e0fa4247a564b79ac6717d8adc0e65a34739caaf26982fa213a12"; + }; + + meta = { + description = ''Simple release deliverer for Elixir''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/lexmag/dicon"; + }; + } // packageOverrides) + ) {}; + + dicon = dicon_0_3_0; + + difficult_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_11_4, + earmark_0_2_1 + }: + buildMix ({ + name = "difficult"; + version = "0.0.2"; + src = fetchHex { + pkg = "difficult"; + version = "0.0.2"; + sha256 = + "5e47c31935cd81082942ac4515c24cad2630ef024e27c5e9cde96f60a93cc39b"; + }; + beamDeps = [ ex_doc_0_11_4 earmark_0_2_1 ]; + + meta = { + description = ''Difficult, but computable functions''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/massn/Difficult"; + }; + } // packageOverrides) + ) {}; + + difficult = difficult_0_0_2; + + dir_walker_0_0_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dir_walker"; + version = "0.0.6"; + src = fetchHex { + pkg = "dir_walker"; + version = "0.0.6"; + sha256 = + "5bf891b970cca8df7d6e7d94857c508d2f5b48c615903427edbcbc483358fc92"; + }; + + meta = { + longDescription = ''DirWalker lazily traverses one or more + directory trees, depth first, returning + successive file names. Initialize the walker + using {:ok, walker} = DirWalker.start_link(path) + # or [path, path...] Then return the next `n` + path names using paths = DirWalker.next(walker + <, n \\ 1>) Successive calls to `next` will + return successive file names, until all file + names have been returned. These methods have + also been wrapped into a Stream resource. paths + = DirWalker.stream(path) # or [path,path...] ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/pragdave/dir_walker"; + }; + } // packageOverrides) + ) {}; + + dir_walker = dir_walker_0_0_6; + + dismake_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dismake"; + version = "1.0.0"; + src = fetchHex { + pkg = "dismake"; + version = "1.0.0"; + sha256 = + "7eeff4a362ed4b4250e4090caa6861ee7b27a524919f574b9f836067b63ac058"; + }; + + meta = { + description = ''Dismake is a \"compiler\" (as in Mix.compilers) + that just runs make. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jarednorman/dismake"; + }; + } // packageOverrides) + ) {}; + + dismake = dismake_1_0_0; + + distance_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "distance"; + version = "0.1.2"; + src = fetchHex { + pkg = "distance"; + version = "0.1.2"; + sha256 = + "8eca7e3d5cf36bc52814a858b07380f13d236ba5d7b70c4d4b1c6a455294aaf3"; + }; + + meta = { + description = ''Various distance functions for geometric or + geographic calculations''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pkinney/distance"; + }; + } // packageOverrides) + ) {}; + + distance_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "distance"; + version = "0.2.0"; + src = fetchHex { + pkg = "distance"; + version = "0.2.0"; + sha256 = + "5ee0a5d05468c50c74d6ae4bcb13c5cd8e31f9ea45fce12290f2ad093df04944"; + }; + + meta = { + description = ''Various distance functions for geometric or + geographic calculations''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pkinney/distance"; + }; + } // packageOverrides) + ) {}; + + distance = distance_0_2_0; + + distancex_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "distancex"; + version = "0.1.0"; + src = fetchHex { + pkg = "distancex"; + version = "0.1.0"; + sha256 = + "62d78de83026d809dc93c1ea92452cffc6e905f157e9dfa25cbc51b44e54d6f4"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + longDescription = ''Elixir-wrapper for Google Directions API. Can + return the drive time and driving distance + between two places.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/vysakh0/distancex"; + }; + } // packageOverrides) + ) {}; + + distancex = distancex_0_1_0; + + diver_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "diver"; + version = "0.1.1"; + src = fetchHex { + pkg = "diver"; + version = "0.1.1"; + sha256 = + "6860e05da87741be919e0b4264178e0ca1b50a108bcaeb1a2a51c9e1726d3079"; + }; + + meta = { + longDescription = ''A HBase driver for Erlang/Elixir using + jinterface and the Asynchbase Java client to + query the database. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/novabyte/diver"; + }; + } // packageOverrides) + ) {}; + + diver = diver_0_1_1; + + dlist_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dlist"; + version = "0.0.1"; + src = fetchHex { + pkg = "dlist"; + version = "0.0.1"; + sha256 = + "51c9d4a9e02c9a8892450876939d1e18b7f9ae78b237a683f0efad47d46e5f9a"; + }; + + meta = { + description = ''Deque implementations ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stocks29/dlist.git"; + }; + } // packageOverrides) + ) {}; + + dlist = dlist_0_0_1; + + doc_first_formatter_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "doc_first_formatter"; + version = "0.0.1"; + src = fetchHex { + pkg = "doc_first_formatter"; + version = "0.0.1"; + sha256 = + "d1bd7a64e8a742847f910557b66d302b65a10b8180e4e660edfc22987cda3262"; + }; + + meta = { + longDescription = ''An ExUnit formatter that puts a list of tests + first, distinguishes pending from failed tests, + and saves detailed error information for once + the test suite is finished.''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/bkerley/doc_first_formatter"; + }; + } // packageOverrides) + ) {}; + + doc_first_formatter = doc_first_formatter_0_0_1; + + doc_plug_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "doc_plug"; + version = "1.0.2"; + src = fetchHex { + pkg = "doc_plug"; + version = "1.0.2"; + sha256 = + "2813f85dcd4f7228d54c277898d3d7483d03ef27ed4f9abc9eae6f57b00e79b8"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''Plug to automatically generate and serve project + documentation.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hild/doc_plug"; + }; + } // packageOverrides) + ) {}; + + doc_plug = doc_plug_1_0_2; + + dogma_0_1_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ + name = "dogma"; + version = "0.1.4"; + src = fetchHex { + pkg = "dogma"; + version = "0.1.4"; + sha256 = + "ebf6f6bf8291e4a73b2886fc35e05224f0068237594f0e0609d1834863172245"; + }; + beamDeps = [ poison_2_1_0 ]; + + meta = { + description = ''A code style linter for Elixir, powered by + shame.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lpil/dogma"; + }; + } // packageOverrides) + ) {}; + + dogma = dogma_0_1_4; + + dogstatsd_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dogstatsd"; + version = "0.0.3"; + src = fetchHex { + pkg = "dogstatsd"; + version = "0.0.3"; + sha256 = + "4632886c61e928f57359790ad345d3cc58c37b0f82fb7d35d485a8e2385cf887"; + }; + + meta = { + description = ''A client for DogStatsd, an extension of the + StatsD metric server for Datadog.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/adamkittelson/dogstatsd-elixir"; + }; + } // packageOverrides) + ) {}; + + dogstatsd = dogstatsd_0_0_3; + + dot_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dot"; + version = "0.0.3"; + src = fetchHex { + pkg = "dot"; + version = "0.0.3"; + sha256 = + "3411bf1f70bb8ea0caa64515054a4a161b711667a5cdb0e7c14e766ce04b06ae"; + }; + meta = { }; + } // packageOverrides) + ) {}; + + dot = dot_0_0_3; + + dotenv_2_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dotenv"; + version = "2.0.0"; + src = fetchHex { + pkg = "dotenv"; + version = "2.0.0"; + sha256 = + "bff466b9c1976a17ec1536e095b192e77ec2e2554fd229f23bbb7b598838d95f"; + }; + + meta = { + description = ''A port of dotenv to Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/avdi/dotenv_elixir"; + }; + } // packageOverrides) + ) {}; + + dotenv = dotenv_2_0_0; + + drawille_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_10_0, + earmark_0_1_19 + }: + buildMix ({ + name = "drawille"; + version = "0.0.1"; + src = fetchHex { + pkg = "drawille"; + version = "0.0.1"; + sha256 = + "58d631fee40578dc077603c8cb969e3efa32c098c9d6295648432b07728d8ae3"; + }; + beamDeps = [ ex_doc_0_10_0 earmark_0_1_19 ]; + + meta = { + description = ''Drawings using terminal braille characters.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/massn/elixir-drawille"; + }; + } // packageOverrides) + ) {}; + + drawille = drawille_0_0_1; + + durga_transport_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "durga_transport"; + version = "1.0.1"; + src = fetchHex { + pkg = "durga_transport"; + version = "1.0.1"; + sha256 = + "42db857eba0e78c4eb15823b5137e8ccad13711cc2c873b6f1b469c4c0771009"; + }; + meta = { }; + } // packageOverrides) + ) {}; + + durga_transport = durga_transport_1_0_1; + + dye_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "dye"; + version = "0.4.0"; + src = fetchHex { + pkg = "dye"; + version = "0.4.0"; + sha256 = + "95c11e5baafc79531f37bee1256066a8fef63739707723ac1e349739a3217003"; + }; + + meta = { + description = ''Dyeing your terminal!''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Kabie/dye"; + }; + } // packageOverrides) + ) {}; + + dye = dye_0_4_0; + + dynamic_compile_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "dynamic_compile"; + version = "1.0.0"; + src = fetchHex { + pkg = "dynamic_compile"; + version = "1.0.0"; + sha256 = + "eb73d8e9a6334914f79c15ee8214acad9659c42222d49beda3e8b6f6789a980a"; + }; + + meta = { + description = ''compile and load erlang modules from string + input''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/okeuday/dynamic_compile"; + }; + } // packageOverrides) + ) {}; + + dynamic_compile = dynamic_compile_1_0_0; + + e2qc_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "e2qc"; + version = "0.1.0"; + src = fetchHex { + pkg = "e2qc"; + version = "0.1.0"; + sha256 = + "3a97f9b3c60ec723002a816c041ac224dc5aba3360bd922c5e38cfd40f59c65b"; + }; + compilePorts = true; + buildPlugins = [ pc ]; + + + meta = { + description = ''2q cache''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/project-fifo/e2qc"; + }; + } // packageOverrides) + ) {}; + + e2qc = e2qc_0_1_0; + + e_queue_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "e_queue"; + version = "1.0.1"; + src = fetchHex { + pkg = "e_queue"; + version = "1.0.1"; + sha256 = + "aff37843191c1229ec49d0d067b18d5e0871a28fe049a4a82c7884e66320b7e8"; + }; + + meta = { + longDescription = ''An Elixir wrapper around the Erlang optimized + `queue` that supports the FIFO, first-in + first-out, pattern. This is useful is when you + can`t predict when an item needs to be taken or + added to the queue. Use this instead of using + `++` or double reversing lists to add items to + the \"back\" of a queue.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/benfalk/e_queue"; + }; + } // packageOverrides) + ) {}; + + e_queue = e_queue_1_0_1; + + earmark_0_1_15 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "earmark"; + version = "0.1.15"; + src = fetchHex { + pkg = "earmark"; + version = "0.1.15"; + sha256 = + "cffc809198d000cc9b81cce80ebc673da8647291451015da42fc523f9dd781d7"; + }; + + meta = { + longDescription = ''Earmark is a pure-Elixir Markdown converter. + It is intended to be used as a library (just + call Earmark.to_html), but can also be used as a + command-line tool (just run mix escript.build + first). Output generation is pluggable.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/pragdave/earmark"; + }; + } // packageOverrides) + ) {}; + + earmark_0_1_19 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "earmark"; + version = "0.1.19"; + src = fetchHex { + pkg = "earmark"; + version = "0.1.19"; + sha256 = + "db85f989ba3030d40d3a901d7eebbf926ee07355bf6113d730b8aaf9404a6bd7"; + }; + + meta = { + longDescription = ''Earmark is a pure-Elixir Markdown converter. + It is intended to be used as a library (just + call Earmark.to_html), but can also be used as a + command-line tool (just run mix escript.build + first). Output generation is pluggable.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/pragdave/earmark"; + }; + } // packageOverrides) + ) {}; + + earmark_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "earmark"; + version = "0.2.1"; + src = fetchHex { + pkg = "earmark"; + version = "0.2.1"; + sha256 = + "c86afb8d22a5aa8315afd4257c7512011c0c9a48b0fea43af7612836b958098b"; + }; + + meta = { + longDescription = ''Earmark is a pure-Elixir Markdown converter. + It is intended to be used as a library (just + call Earmark.to_html), but can also be used as a + command-line tool (just run mix escript.build + first). Output generation is pluggable.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/pragdave/earmark"; + }; + } // packageOverrides) + ) {}; + + earmark = earmark_0_2_1; + + eastar_0_3_8 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "eastar"; + version = "0.3.8"; + src = fetchHex { + pkg = "eastar"; + version = "0.3.8"; + sha256 = + "c36e6ba809fb6e228902349e6f794d0362edb4bfd4f6e814107ed9bbc8c8dd17"; + }; + + meta = { + longDescription = ''Eastar is a pure-Elixir implementation of A* + graph pathfinding algorithm. All graph + environment, like nodes connectivity, distance & + H-metric are abstracted away - you provide them + as functions.''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://github.com/herenowcoder/eastar"; + }; + } // packageOverrides) + ) {}; + + eastar = eastar_0_3_8; + + easy_server_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "easy_server"; + version = "0.0.1"; + src = fetchHex { + pkg = "easy_server"; + version = "0.0.1"; + sha256 = + "af9faac0c7c440cf04bbb5d1f8aea1fc00b0c60da384c8103fafdaf0df00a0bb"; + }; + + meta = { + description = ''Easier GenServer for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/termoose/EasyServer"; + }; + } // packageOverrides) + ) {}; + + easy_server = easy_server_0_0_1; + + easypost_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "easypost"; + version = "0.0.1"; + src = fetchHex { + pkg = "easypost"; + version = "0.0.1"; + sha256 = + "8339fcfb60a1d4833b99aa611d194bf1ae94f22509dc81cf90d07ee2db0e074e"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + description = ''Elixir Easypost Client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Dania02525/easypost"; + }; + } // packageOverrides) + ) {}; + + easypost = easypost_0_0_1; + + ec2_0_9_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, jsx_2_8_0 }: + buildMix ({ + name = "ec2"; + version = "0.9.1"; + src = fetchHex { + pkg = "ec2"; + version = "0.9.1"; + sha256 = + "ae857fe633bca078fd1ee54232dd3bc74566ff46b93aa53e38d74c546c3d9b6f"; + }; + beamDeps = [ jsx_2_8_0 ]; + + meta = { + description = ''helper library for working with aws ec2 + metadata''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/talentdeficit/ec2"; + }; + } // packageOverrides) + ) {}; + + ec2 = ec2_0_9_1; + + ecdo_0_1_4 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + postgrex_0_11_1, + mariaex_0_7_0, + ecto_1_0_7 + }: + buildMix ({ + name = "ecdo"; + version = "0.1.4"; + src = fetchHex { + pkg = "ecdo"; + version = "0.1.4"; + sha256 = + "362c75113bca6c8379ac2b1654ae78ed099ab0faee4a1fbacb7b4b9b137b9f1d"; + }; + beamDeps = [ postgrex_0_11_1 mariaex_0_7_0 ecto_1_0_7 ]; + + meta = { + longDescription = ''Ecdo is a dynamic interface for ecto aims to + simplify building dynamic query API based on + ecto models.''; + + homepage = "https://github.com/xerions/ecdo"; + }; + } // packageOverrides) + ) {}; + + ecdo = ecdo_0_1_4; + + echo_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "echo"; + version = "0.2.0"; + src = fetchHex { + pkg = "echo"; + version = "0.2.0"; + sha256 = + "e03b37ada0457fbf3e91b2e721c9367b1590a17a5fb9be35672a46206309f1a4"; + }; + + meta = { + longDescription = ''A simple & highly extendable, + meta-notification system; Echo checks + notification preferences & dispatch + notifications to different adapters (ex. email, + logger, analytics, sms, etc.)''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/zmoshansky/echo"; + }; + } // packageOverrides) + ) {}; + + echo = echo_0_2_0; + + econfig_0_7_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "econfig"; + version = "0.7.1"; + src = fetchHex { + pkg = "econfig"; + version = "0.7.1"; + sha256 = + "b11d68e3d288b5cb4bd34e668e03176c4ea42790c09f1f449cdbd46a649ea7f3"; + }; + + meta = { + description = ''simple Erlang config handler using INI files''; + + homepage = "https://github.com/benoitc/econfig"; + }; + } // packageOverrides) + ) {}; + + econfig = econfig_0_7_1; + + ecto_0_15_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + sbroker_0_7_0, + postgrex_0_9_1, + poolboy_1_5_1, + poison_1_5_2, + mariaex_0_4_3, + decimal_1_1_1 + }: + buildMix ({ + name = "ecto"; + version = "0.15.0"; + src = fetchHex { + pkg = "ecto"; + version = "0.15.0"; + sha256 = + "44bbe98d66c20aa70dcac2cb41f6ae058aa50c3029089e2158d043113110164b"; + }; + beamDeps = [ + sbroker_0_7_0 + postgrex_0_9_1 + poolboy_1_5_1 + poison_1_5_2 + mariaex_0_4_3 + decimal_1_1_1 + ]; + + meta = { + longDescription = ''Ecto is a domain specific language for + writing queries and interacting with databases + in Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixir-lang/ecto"; + }; + } // packageOverrides) + ) {}; + + ecto_0_16_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + sbroker_0_7_0, + postgrex_0_9_1, + poolboy_1_5_1, + poison_1_5_2, + mariaex_0_4_3, + decimal_1_1_1 + }: + buildMix ({ + name = "ecto"; + version = "0.16.0"; + src = fetchHex { + pkg = "ecto"; + version = "0.16.0"; + sha256 = + "45643e7a09fdd0a32cf440c5b2e71c5120f24310280da50f51713399d9bb49d6"; + }; + beamDeps = [ + sbroker_0_7_0 + postgrex_0_9_1 + poolboy_1_5_1 + poison_1_5_2 + mariaex_0_4_3 + decimal_1_1_1 + ]; + + meta = { + longDescription = ''Ecto is a domain specific language for + writing queries and interacting with databases + in Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixir-lang/ecto"; + }; + } // packageOverrides) + ) {}; + + ecto_1_0_7 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + sbroker_0_7_0, + postgrex_0_9_1, + poolboy_1_5_1, + poison_1_5_2, + mariaex_0_4_3, + decimal_1_1_1 + }: + buildMix ({ + name = "ecto"; + version = "1.0.7"; + src = fetchHex { + pkg = "ecto"; + version = "1.0.7"; + sha256 = + "d56766fb8e93dcec7e6dd9ef8bfe624b9b6d1f3a433fac4f0e7532681f501086"; + }; + beamDeps = [ + sbroker_0_7_0 + postgrex_0_9_1 + poolboy_1_5_1 + poison_1_5_2 + mariaex_0_4_3 + decimal_1_1_1 + ]; + + meta = { + longDescription = ''Ecto is a domain specific language for + writing queries and interacting with databases + in Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixir-lang/ecto"; + }; + } // packageOverrides) + ) {}; + + ecto_1_1_5 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + sbroker_0_7_0, + postgrex_0_11_1, + poolboy_1_5_1, + poison_1_5_2, + mariaex_0_1_7, + decimal_1_1_1 + }: + buildMix ({ + name = "ecto"; + version = "1.1.5"; + src = fetchHex { + pkg = "ecto"; + version = "1.1.5"; + sha256 = + "6283cae93763257ac7a319e28ab2308efcd3a4c1571e65ef55721067a01caf69"; + }; + beamDeps = [ + sbroker_0_7_0 + postgrex_0_11_1 + poolboy_1_5_1 + poison_1_5_2 + mariaex_0_1_7 + decimal_1_1_1 + ]; + + meta = { + longDescription = ''Ecto is a domain specific language for + writing queries and interacting with databases + in Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixir-lang/ecto"; + }; + } // packageOverrides) + ) {}; + + ecto_audit_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ecto_audit"; + version = "0.0.1"; + src = fetchHex { + pkg = "ecto_audit"; + version = "0.0.1"; + sha256 = + "04829a9670d4258b96c6218043093b68a1d3b03c37ee316a1c19366a59dbbd59"; + }; + + meta = { + description = ''Ecto extension to support auditing data changes + in your Schema.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mattweldon/ecto_audit"; + }; + } // packageOverrides) + ) {}; + + ecto_audit = ecto_audit_0_0_1; + + ecto_gettext_0_1_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }: + buildMix ({ + name = "ecto_gettext"; + version = "0.1.4"; + src = fetchHex { + pkg = "ecto_gettext"; + version = "0.1.4"; + sha256 = + "fdd333fd0655a86f985bed4558132b6b382cdafbce23e21cab4a9afc08b47f82"; + }; + beamDeps = [ gettext_0_10_0 ]; + + meta = { + description = ''EctoGettext - library for localization Ecto + validation errors with using Gettext''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/exbugs-elixir/ecto_gettext"; + }; + } // packageOverrides) + ) {}; + + ecto_gettext = ecto_gettext_0_1_4; + + ectograph_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + graphql_0_2_0, + ecto_1_1_5 + }: + buildMix ({ + name = "ectograph"; + version = "0.0.2"; + src = fetchHex { + pkg = "ectograph"; + version = "0.0.2"; + sha256 = + "44eff08624c5f93af30878f4e1e47d69354078ff9081bf2b0203513bb6e0ead9"; + }; + beamDeps = [ graphql_0_2_0 ecto_1_1_5 ]; + + meta = { + longDescription = ''Ectograph is a set of utility functions for + using Ecto in combination with GraphQL + (joshprice/graphql-elixir)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/icidasset/ectograph"; + }; + } // packageOverrides) + ) {}; + + ectograph = ectograph_0_0_2; + + edeliver_1_1_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }: + buildMix ({ + name = "edeliver"; + version = "1.1.4"; + src = fetchHex { + pkg = "edeliver"; + version = "1.1.4"; + sha256 = + "b7c95a499efb0fc9baf681dfaba3c09c64d9cde5c4cf4faafd44d6de9cba8928"; + }; + beamDeps = [ exrm_1_0_3 ]; + + meta = { + longDescription = ''Build and Deploy Elixir Applications and + perform Hot-Code Upgrades and Schema + Migrations''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/boldpoker/edeliver"; + }; + } // packageOverrides) + ) {}; + + edeliver = edeliver_1_1_4; + + edib_0_5_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "edib"; + version = "0.5.1"; + src = fetchHex { + pkg = "edib"; + version = "0.5.1"; + sha256 = + "25218e2eca8c5b51b0344c04d635551689b4791760104227963173299b7d60e0"; + }; + + meta = { + longDescription = ''Mix task to create a docker image of your + application release. More detailed information + about release image building at: + https://github.com/edib-tool/elixir-docker-image-builder''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edib-tool/mix-edib"; + }; + } // packageOverrides) + ) {}; + + edib = edib_0_5_1; + + edip_0_4_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "edip"; + version = "0.4.3"; + src = fetchHex { + pkg = "edip"; + version = "0.4.3"; + sha256 = + "b0b9f34b2048b3f03c1f25b6dc60a1567b6f3ec8c6ad945de30dc313d7608800"; + }; + + meta = { + longDescription = ''Mix task to create a docker image of your + application release. More detailed information + about release image packaging at: + https://github.com/asaaki/elixir-docker-image-packager''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/asaaki/mix-edip"; + }; + } // packageOverrides) + ) {}; + + edip = edip_0_4_3; + + eeb_0_1_3 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + tzdata_0_1_201603, + timex_1_0_2, + plug_0_14_0, + earmark_0_1_19, + cowboy_1_0_4 + }: + buildMix ({ + name = "eeb"; + version = "0.1.3"; + src = fetchHex { + pkg = "eeb"; + version = "0.1.3"; + sha256 = + "c2f4bc1e6dbada6b7086e92db14a401ac1440d25d5c5ac078fc55e6545c73f4e"; + }; + beamDeps = [ + tzdata_0_1_201603 + timex_1_0_2 + plug_0_14_0 + earmark_0_1_19 + cowboy_1_0_4 + ]; + + meta = { + description = ''Elixir extendable blog.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/aborn/eeb"; + }; + } // packageOverrides) + ) {}; + + eeb = eeb_0_1_3; + + efirebirdsql_0_1_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "efirebirdsql"; + version = "0.1.1"; + src = fetchHex { + pkg = "efirebirdsql"; + version = "0.1.1"; + sha256 = + "dff29bcd6f5f99baa18dd339c01f441b498030e88ac4a1d7c4524da79b0a4cb7"; + }; + + meta = { + description = ''Firebird Client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nakagami/efirebirdsql"; + }; + } // packageOverrides) + ) {}; + + efirebirdsql = efirebirdsql_0_1_1; + + egithub_0_2_2 = callPackage + ( + { + buildErlangMk, + packageOverrides ? {}, + fetchHex, + shotgun_0_2_2, + jiffy_0_14_7, + lager_3_0_2, + goldrush_0_1_7 + }: + buildErlangMk ({ + name = "egithub"; + version = "0.2.2"; + src = fetchHex { + pkg = "egithub"; + version = "0.2.2"; + sha256 = + "ff8e279d3868576cc2a05336c7ca4bed3972f7a01676be859b7e1750da4570f8"; + }; + beamDeps = [ + shotgun_0_2_2 jiffy_0_14_7 lager_3_0_2 goldrush_0_1_7 + ]; + + meta = { + description = ''GitHub API client''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/inaka/erlang-github"; + }; + } // packageOverrides) + ) {}; + + egithub = egithub_0_2_2; + + eh_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "eh"; + version = "0.2.0"; + src = fetchHex { + pkg = "eh"; + version = "0.2.0"; + sha256 = + "91013c78138c8854c5699ef42324e66286fed0048c4d4212c4dc3012d764c628"; + }; + + meta = { + description = ''Lookup Elixir documentation from the command line + ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/Frost/eh.git"; + }; + } // packageOverrides) + ) {}; + + eh = eh_0_2_0; + + eight_ball_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "eight_ball"; + version = "0.0.1"; + src = fetchHex { + pkg = "eight_ball"; + version = "0.0.1"; + sha256 = + "1ba1b2b5f3dfaba751b51f101c3c526a09f0c989768f265e82a6a065447a6aa4"; + }; + + meta = { + description = ''Library that acts like a real life Magic 8 + Ball.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fteem/eight_ball"; + }; + } // packageOverrides) + ) {}; + + eight_ball = eight_ball_0_0_1; + + eight_ball_dj_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "eight_ball_dj"; + version = "0.0.2"; + src = fetchHex { + pkg = "eight_ball_dj"; + version = "0.0.2"; + sha256 = + "5b0d4f92a76f3d48d5541936ae8540154ed2a14ccda1a45e250d6a577bb541f5"; + }; + + meta = { + description = ''Ask a question to the Magic Eight Ball''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/djkianoosh/eight_ball"; + }; + } // packageOverrides) + ) {}; + + eight_ball_dj = eight_ball_dj_0_0_2; + + eio_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "eio"; + version = "0.1.0"; + src = fetchHex { + pkg = "eio"; + version = "0.1.0"; + sha256 = + "f39f017c73713b36ee27d8a0635634ac2e96b4d540f28db9dd358d8744dccd88"; + }; + beamDeps = [ poison_1_5_2 plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + description = ''Engine.io server for Elixir.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/falood/eio"; + }; + } // packageOverrides) + ) {}; + + eio = eio_0_1_0; + + ejabberd_dev_15_9_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ejabberd_dev"; + version = "15.9.0"; + src = fetchHex { + pkg = "ejabberd_dev"; + version = "15.9.0"; + sha256 = + "4c4ca5b3ee1900bd7e5babed76cae361b6350ed5793ce013cbfccc06208c291e"; + }; + + meta = { + longDescription = ''A package to help with building ejabberd + modules. This package includes source and header + files from the ejabberd project that are + necessary in order to build a gen_mod module.''; + license = stdenv.lib.licenses.gpl3; + homepage = "https://github.com/scrogson/ejabberd_dev"; + }; + } // packageOverrides) + ) {}; + + ejabberd_dev = ejabberd_dev_15_9_0; + + elixir_ami_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "elixir_ami"; + version = "0.0.3"; + src = fetchHex { + pkg = "elixir_ami"; + version = "0.0.3"; + sha256 = + "781171af1bcc20466117fb119646b55ad473c93ce57549ffec4c65f7ba8a1ede"; + }; + + meta = { + longDescription = ''Elixir client for the Asterisk AMI protocol. + Find the user guide in the github repo at: + https://github.com/marcelog/elixir_ami.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/marcelog/elixir_ami"; + }; + } // packageOverrides) + ) {}; + + elixir_ami = elixir_ami_0_0_3; + + elixir_authorizenet_0_2_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + xml_builder_0_0_8, + exmerl_0_1_1 + }: + buildMix ({ + name = "elixir_authorizenet"; + version = "0.2.2"; + src = fetchHex { + pkg = "elixir_authorizenet"; + version = "0.2.2"; + sha256 = + "10111f4fe073d69a5ae817838377ba52bf6b04199c8386f48ca13804db6e2f70"; + }; + beamDeps = [ xml_builder_0_0_8 exmerl_0_1_1 ]; + + meta = { + longDescription = ''Elixir client for the Authorize.Net merchant + API. This should help you integrate using the + AIM. A nice number of features are implemented + (probably most of the ones used on a daily basis + are already there), but since the API offers a + big number of features and combinations, I still + consider this as WIP, and pull requests, + suggestions, or other kind of feedback are very + welcome! Find the user guide in the github repo + at: + https://github.com/marcelog/elixir_authorizenet.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/marcelog/elixir_authorizenet"; + }; + } // packageOverrides) + ) {}; + + elixir_authorizenet = elixir_authorizenet_0_2_2; + + elixir_bencode_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "elixir_bencode"; + version = "1.0.0"; + src = fetchHex { + pkg = "elixir_bencode"; + version = "1.0.0"; + sha256 = + "2c4c86843b2377182da7cff125784a227c7bc63ef9e92ce7257f14b132667ebe"; + }; + + meta = { + description = ''Bencode encoder / decoder in Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/AntonFagerberg/elixir_bencode"; + }; + } // packageOverrides) + ) {}; + + elixir_bencode = elixir_bencode_1_0_0; + + elixir_drawille_0_0_3 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_10_0, + earmark_0_1_19 + }: + buildMix ({ + name = "elixir_drawille"; + version = "0.0.3"; + src = fetchHex { + pkg = "elixir_drawille"; + version = "0.0.3"; + sha256 = + "5fab2af19c8f8c68e62aa4f0a3c17d23a9519e998617470df3ae3cb59516c52c"; + }; + beamDeps = [ ex_doc_0_10_0 earmark_0_1_19 ]; + + meta = { + description = ''Drawings using terminal braille characters.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/massn/elixir-drawille"; + }; + } // packageOverrides) + ) {}; + + elixir_drawille = elixir_drawille_0_0_3; + + elixir_exif_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "elixir_exif"; + version = "0.1.1"; + src = fetchHex { + pkg = "elixir_exif"; + version = "0.1.1"; + sha256 = + "a491a3e134c00f2a1f59c8e3a1bd62b9b94c1ce4179a20d737903f3edcc9bd78"; + }; + + meta = { + description = ''Parse exif and thumbnail data from jpeg/tiff + images.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sschneider1207/ElixirExif"; + }; + } // packageOverrides) + ) {}; + + elixir_exif = elixir_exif_0_1_1; + + elixir_feed_parser_0_9_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "elixir_feed_parser"; + version = "0.9.0"; + src = fetchHex { + pkg = "elixir_feed_parser"; + version = "0.9.0"; + sha256 = + "35e0164c63e513d100008a9ada090ba6f1efe89cafc7995f321c0168e39cce5c"; + }; + + meta = { + description = ''An Elixir Atom/RSS2 feed parser.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/fdietz/elixir-feed-parser"; + }; + } // packageOverrides) + ) {}; + + elixir_feed_parser = elixir_feed_parser_0_9_0; + + elixir_freshbooks_0_0_4 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + xml_builder_0_0_8, + exmerl_0_1_1 + }: + buildMix ({ + name = "elixir_freshbooks"; + version = "0.0.4"; + src = fetchHex { + pkg = "elixir_freshbooks"; + version = "0.0.4"; + sha256 = + "404ba66129bb1a756f6c06460d483d72d59990bc460616a1e61bd87af4108628"; + }; + beamDeps = [ xml_builder_0_0_8 exmerl_0_1_1 ]; + + meta = { + description = ''Elixir client for FreshBooks.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/marcelog/elixir_freshbooks"; + }; + } // packageOverrides) + ) {}; + + elixir_freshbooks = elixir_freshbooks_0_0_4; + + elixir_mbcs_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "elixir_mbcs"; + version = "0.1.2"; + src = fetchHex { + pkg = "elixir_mbcs"; + version = "0.1.2"; + sha256 = + "45d2572ed4c2bae10e961ddf95846ffd64f83ed7427898b8fdf3221607f610b5"; + }; + + meta = { + description = ''Convert the character encoding''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/woxtu/elixir-mbcs"; + }; + } // packageOverrides) + ) {}; + + elixir_mbcs = elixir_mbcs_0_1_2; + + elixir_mod_event_0_0_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }: + buildMix ({ + name = "elixir_mod_event"; + version = "0.0.5"; + src = fetchHex { + pkg = "elixir_mod_event"; + version = "0.0.5"; + sha256 = + "d38fe29a32107e889c52f849ceec6267709591b7db98db14bd3890683ca78b0f"; + }; + beamDeps = [ uuid_1_1_3 ]; + + meta = { + longDescription = ''Elixir client for FreeSWITCH + mod_event_socket. Find the user guide in the + github repo at: + https://github.com/marcelog/elixir_mod_event.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/marcelog/elixir_mod_event"; + }; + } // packageOverrides) + ) {}; + + elixir_mod_event = elixir_mod_event_0_0_5; + + elixir_prelude_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "elixir_prelude"; + version = "0.2.1"; + src = fetchHex { + pkg = "elixir_prelude"; + version = "0.2.1"; + sha256 = + "178d8de9762447e8f8271bd6af356a171af9fb7c20fcd4fa510a05e19b24240d"; + }; + + meta = { + description = ''Small set of useful utility functions''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ruby2elixir/elixir_prelude"; + }; + } // packageOverrides) + ) {}; + + elixir_prelude = elixir_prelude_0_2_1; + + elixir_radius_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "elixir_radius"; + version = "0.1.0"; + src = fetchHex { + pkg = "elixir_radius"; + version = "0.1.0"; + sha256 = + "40f4c2a792c5967e21d4e7914a91a62fbed3712bf9c6ec5f0a549e659e4ddc94"; + }; + + meta = { + description = ''Decode & encode RADIUS packets ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bearice/elixir-radius"; + }; + } // packageOverrides) + ) {}; + + elixir_radius = elixir_radius_0_1_0; + + elixir_script_0_16_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, estree_2_3_0 }: + buildMix ({ + name = "elixir_script"; + version = "0.16.0"; + src = fetchHex { + pkg = "elixir_script"; + version = "0.16.0"; + sha256 = + "a2ff037d9c3562198fb3e35ff112cb35827078b1a905368be5ff351c582966a9"; + }; + beamDeps = [ estree_2_3_0 ]; + + meta = { + description = ''ElixirScript: compiles Elixir code to + JavaScript''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bryanjos/elixirscript"; + }; + } // packageOverrides) + ) {}; + + elixir_script = elixir_script_0_16_0; + + elixir_tea_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "elixir_tea"; + version = "1.0.0"; + src = fetchHex { + pkg = "elixir_tea"; + version = "1.0.0"; + sha256 = + "c1e46d2d7b07a926ba8730452f517db45cf4f8f35d119b84aa0f0f676048cdcc"; + }; + + meta = { + description = ''A TEA (Tiny Encryption Algorithm) implemented in + pure Elixir. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keichan34/elixir_tea"; + }; + } // packageOverrides) + ) {}; + + elixir_tea = elixir_tea_1_0_0; + + elixir_v8_0_2_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + exjsx_3_2_0 + }: + buildMix ({ + name = "elixir_v8"; + version = "0.2.2"; + src = fetchHex { + pkg = "elixir_v8"; + version = "0.2.2"; + sha256 = + "71034e37c2b8113156b19b1ca5b9b772fb454fe11c1cba33567fb61d3c8cedbe"; + }; + beamDeps = [ poolboy_1_5_1 exjsx_3_2_0 ]; + + meta = { + description = ''V8 engine for Elixir with pools.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/le0pard/elixir_v8"; + }; + } // packageOverrides) + ) {}; + + elixir_v8 = elixir_v8_0_2_2; + + elixlsx_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "elixlsx"; + version = "0.0.2"; + src = fetchHex { + pkg = "elixlsx"; + version = "0.0.2"; + sha256 = + "59778841cecdaec28cf6b008add62a7653a4bd5eb9031e6fb0a076cc9e69fb3d"; + }; + + meta = { + description = ''a writer for XLSX spreadsheet files''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/xou/elixlsx"; + }; + } // packageOverrides) + ) {}; + + elixlsx = elixlsx_0_0_2; + + elli_1_0_5 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "elli"; + version = "1.0.5"; + src = fetchHex { + pkg = "elli"; + version = "1.0.5"; + sha256 = + "fb55bab884f1d921f2e86c00738909a9e56aca14604e617b138e163093609c97"; + }; + + meta = { + description = ''Fast and robust web server for building + high-throughput, low-latency apps''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/knutin/elli"; + }; + } // packageOverrides) + ) {}; + + elli = elli_1_0_5; + + eministat_0_10_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "eministat"; + version = "0.10.1"; + src = fetchHex { + pkg = "eministat"; + version = "0.10.1"; + sha256 = + "1e581fe282e8851c036fb6e4908add91956eba62ce0cce97fceee66067157d5f"; + }; + + meta = { + description = ''Basic statistics for comparing datasets from + benchmarks''; + + }; + } // packageOverrides) + ) {}; + + eministat = eministat_0_10_1; + + eml_0_7_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "eml"; + version = "0.7.1"; + src = fetchHex { + pkg = "eml"; + version = "0.7.1"; + sha256 = + "f03a35e2684455ee9e8b641f9550d41893f5b013c1277751685414f56cee9c0a"; + }; + + meta = { + longDescription = ''Eml makes markup a first class citizen in + Elixir. It provides a flexible and modular + toolkit for generating, parsing and manipulating + markup. It`s main focus is html, but other + markup languages could be implemented as well. + ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/zambal/eml"; + }; + } // packageOverrides) + ) {}; + + eml = eml_0_7_1; + + emodel_1_3_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "emodel"; + version = "1.3.1"; + src = fetchHex { + pkg = "emodel"; + version = "1.3.1"; + sha256 = + "6271ac4fb20c81b60ce568345ddec8abaea59a6b1eb63aa35ada25a009464ce2"; + }; + + meta = { + description = ''Erlang data transformation/validation library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/egobrain/emodel"; + }; + } // packageOverrides) + ) {}; + + emodel = emodel_1_3_1; + + envy_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "envy"; + version = "0.0.2"; + src = fetchHex { + pkg = "envy"; + version = "0.0.2"; + sha256 = + "01e20425b7b5acfa1f43d7431601015e059d9363bf9d50b00f2aeb6b0e3fa03f"; + }; + + meta = { + description = ''A package for managing env files''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/BlakeWilliams/envy"; + }; + } // packageOverrides) + ) {}; + + envy = envy_0_0_2; + + eper_0_94_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "eper"; + version = "0.94.0"; + src = fetchHex { + pkg = "eper"; + version = "0.94.0"; + sha256 = + "8d853792fa61a7fd068fe9c113a8a44bc839e11ad70cb8d5d2884566e3bede39"; + }; + + meta = { + longDescription = ''Erlang Performance and Debugging Tools sherk + - a profiler, similar to Linux oprofile or MacOs + shark gperf - a graphical performance monitor; + shows CPU, memory and network usage dtop - + similar to unix top redbug- similar to the OTP + dbg application, but safer, better etc.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/massemanet/eper"; + }; + } // packageOverrides) + ) {}; + + eper = eper_0_94_0; + + epgsql_3_1_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "epgsql"; + version = "3.1.1"; + src = fetchHex { + pkg = "epgsql"; + version = "3.1.1"; + sha256 = + "4b3f478ad090aed7200b2a8c9f2d5ef45c3aaa167be896b5237bba4b40f461d8"; + }; + + meta = { + description = ''PostgreSQL Client''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/epgsql/epgsql"; + }; + } // packageOverrides) + ) {}; + + epgsql = epgsql_3_1_1; + + epiphany_0_1_0_dev = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }: + buildMix ({ + name = "epiphany"; + version = "0.1.0-dev"; + src = fetchHex { + pkg = "epiphany"; + version = "0.1.0-dev"; + sha256 = + "38b15e762a4bb8c57a3ef238531dd465113b1019fb5aa63d7c8b38ed579f15f9"; + }; + beamDeps = [ connection_1_0_2 ]; + + meta = { + description = ''Cassandra driver for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/vptheron/epiphany"; + }; + } // packageOverrides) + ) {}; + + epiphany = epiphany_0_1_0_dev; + + episcina_1_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, gproc_0_3_1 }: + buildRebar3 ({ + name = "episcina"; + version = "1.1.0"; + src = fetchHex { + pkg = "episcina"; + version = "1.1.0"; + sha256 = + "16238717bfbc8cb226342f6b098bb1fafb48c7547265a10ad3e6e83899abc46f"; + }; + + beamDeps = [ gproc_0_3_1 ]; + + meta = { + description = ''Erlang Connection Pool''; + + }; + } // packageOverrides) + ) {}; + + episcina = episcina_1_1_0; + + eqc_ex_1_2_4 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "eqc_ex"; + version = "1.2.4"; + src = fetchHex { + pkg = "eqc_ex"; + version = "1.2.4"; + sha256 = + "2d2895bedf784ffaf11144d25e6ca11a4cfff5b73c35ec6bedd3c5ec5cabc5e9"; + }; + + meta = { + description = ''Wrappers to facilitate using Quviq QuickCheck + with Elixir.''; + license = stdenv.lib.licenses.bsd3; + }; + } // packageOverrides) + ) {}; + + eqc_ex = eqc_ex_1_2_4; + + eql_0_1_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "eql"; + version = "0.1.2"; + src = fetchHex { + pkg = "eql"; + version = "0.1.2"; + sha256 = + "3b1a85c491d44262802058c0de97a2c90678d5d45851b88a076b1a45a8d6d4b3"; + }; + + meta = { + description = ''Erlang with SQL''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/artemeff/eql"; + }; + } // packageOverrides) + ) {}; + + eql = eql_0_1_2; + + equery_0_2_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "equery"; + version = "0.2.0"; + src = fetchHex { + pkg = "equery"; + version = "0.2.0"; + sha256 = + "4e1f91ecdcaf61db99be759ebe133d351aec760ff8e7ea1c33e6f0626cf6068b"; + }; + + meta = { + description = ''Sql generator library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/egobrain/equery"; + }; + } // packageOverrides) + ) {}; + + equery = equery_0_2_0; + + eredis_1_0_8 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "eredis"; + version = "1.0.8"; + src = fetchHex { + pkg = "eredis"; + version = "1.0.8"; + sha256 = + "f303533e72129b264a2d8217c4ddc977c7527ff4b8a6a55f92f62b7fcc099334"; + }; + + meta = { + description = ''Erlang Redis client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/wooga/eredis"; + }; + } // packageOverrides) + ) {}; + + eredis = eredis_1_0_8; + + erl2ex_0_0_8 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "erl2ex"; + version = "0.0.8"; + src = fetchHex { + pkg = "erl2ex"; + version = "0.0.8"; + sha256 = + "bbe0b1a43e1621158d7985e77d7d1f00db0410d5987b429c30c8d0cc582e0f6f"; + }; + + meta = { + longDescription = ''Erl2ex is an Erlang to Elixir transpiler, + converting well-formed Erlang source to Elixir + source with equivalent functionality.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/dazuma/erl2ex"; + }; + } // packageOverrides) + ) {}; + + erl2ex = erl2ex_0_0_8; + + erlang_localtime_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "erlang_localtime"; + version = "1.0.0"; + src = fetchHex { + pkg = "erlang_localtime"; + version = "1.0.0"; + sha256 = + "46e3f7b18477b377ec71f9dcd91c4d30fe82a128ffa9f89be1595d4d08414844"; + }; + + meta = { + description = ''Erlang library for conversion from one local time + to another''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/choptastic/erlang_localtime"; + }; + } // packageOverrides) + ) {}; + + erlang_localtime = erlang_localtime_1_0_0; + + erlang_term_1_5_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "erlang_term"; + version = "1.5.1"; + src = fetchHex { + pkg = "erlang_term"; + version = "1.5.1"; + sha256 = + "88bae81a80306e82fd3fc43e2d8228049e666f3cfe4627687832cd7edb878e06"; + }; + + meta = { + description = ''Provide the in-memory size of Erlang terms''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/erlang_term"; + }; + } // packageOverrides) + ) {}; + + erlang_term = erlang_term_1_5_1; + + erlang_version_0_2_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "erlang_version"; + version = "0.2.0"; + src = fetchHex { + pkg = "erlang_version"; + version = "0.2.0"; + sha256 = + "74daddba65a247ec57913e5de8f243af42bbbc3d6a0c411a1252da81c09ae661"; + }; + + meta = { + description = ''Retrieve Erlang/OTP version like `18.1`''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sapporo-beam/erlang_version"; + }; + } // packageOverrides) + ) {}; + + erlang_version = erlang_version_0_2_0; + + erlaudio_0_2_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "erlaudio"; + version = "0.2.3"; + src = fetchHex { + pkg = "erlaudio"; + version = "0.2.3"; + sha256 = + "cb9efb0ce80faae003ab39f8cc2d3fccbb4bd1c8f5f525aea392f28662517032"; + }; + + meta = { + description = ''Erlang audio bindings to portaudio''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/asonge/erlaudio"; + }; + } // packageOverrides) + ) {}; + + erlaudio = erlaudio_0_2_3; + + erlcloud_0_13_0 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + lhttpc_1_3_0, + jsx_2_8_0 + }: + buildRebar3 ({ + name = "erlcloud"; + version = "0.13.0"; + src = fetchHex { + pkg = "erlcloud"; + version = "0.13.0"; + sha256 = + "70e1f5aa86b5f7a62d1141a7507a9e334f833793e3b909fe9c1cfc9916e516a0"; + }; + + beamDeps = [ lhttpc_1_3_0 jsx_2_8_0 ]; + + meta = { + description = ''Erlang cloud computing library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/erlcloud/erlcloud"; + }; + } // packageOverrides) + ) {}; + + erlcloud_0_13_2 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + lhttpc_1_4_0, + jsx_2_8_0 + }: + buildRebar3 ({ + name = "erlcloud"; + version = "0.13.2"; + src = fetchHex { + pkg = "erlcloud"; + version = "0.13.2"; + sha256 = + "568d464760802322b7dc81e95f9c7bfb2fa8121423e67b2db6ed1c80697e1277"; + }; + + beamDeps = [ lhttpc_1_4_0 jsx_2_8_0 ]; + + meta = { + description = ''Erlang cloud computing library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/erlcloud/erlcloud"; + }; + } // packageOverrides) + ) {}; + + erlcloud = erlcloud_0_13_2; + + erlexec_1_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "erlexec"; + version = "1.1.0"; + src = fetchHex { + pkg = "erlexec"; + version = "1.1.0"; + sha256 = + "772162f0f0349f89ea11b9f27401cb437ccaabf480320284a13f2259bb63cb87"; + }; + compilePorts = true; + buildPlugins = [ pc ]; + + + meta = { + description = ''OS Process Manager''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/saleyn/erlexec"; + }; + } // packageOverrides) + ) {}; + + erlogger_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "erlogger"; + version = "0.1.0"; + src = fetchHex { + pkg = "erlogger"; + version = "0.1.0"; + sha256 = + "de2d64f0932e8af46264d92a224ed46e41f2b698b1bbd245ae19321715322146"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''Logging service for Erlang Applications.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/knusbaum/erlogger"; + }; + } // packageOverrides) + ) {}; + + erlogger = erlogger_0_1_0; + + erlsh_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "erlsh"; + version = "0.1.0"; + src = fetchHex { + pkg = "erlsh"; + version = "0.1.0"; + sha256 = + "94ef1492dd59fef211f01ffd40c47b6e51c0f59e2a3d0739366e4890961332d9"; + }; + compilePorts = true; + + meta = { + longDescription = ''Family of functions and ports involving + interacting with the system shell, paths and + external programs.''; + + }; + } // packageOverrides) + ) {}; + + erlsh = erlsh_0_1_0; + + erlsom_1_2_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "erlsom"; + version = "1.2.1"; + src = fetchHex { + pkg = "erlsom"; + version = "1.2.1"; + sha256 = + "e8f4d1d83583df7d1db8346aa30b82a6599b93fcc4b2d9165007e02ed40e7cae"; + }; + + meta = { + description = ''erlsom XSD parser''; + + }; + } // packageOverrides) + ) {}; + + erlsom = erlsom_1_2_1; + + erlware_commons_0_15_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "erlware_commons"; + version = "0.15.0"; + src = fetchHex { + pkg = "erlware_commons"; + version = "0.15.0"; + sha256 = + "5f38cb1df90148a7b21d48b221f399244ce86256584e6ea7986f2de732dee3c6"; + }; + + meta = { + description = ''Additional standard library for Erlang''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/erlware/erlware_commons"; + }; + } // packageOverrides) + ) {}; + + erlware_commons_0_18_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, cf_0_2_1 }: + buildRebar3 ({ + name = "erlware_commons"; + version = "0.18.0"; + src = fetchHex { + pkg = "erlware_commons"; + version = "0.18.0"; + sha256 = + "e71dda7cd5dcf34c9d07255d49c67e1d229dd230c101fdb996820bcdb5b03c49"; + }; + + beamDeps = [ cf_0_2_1 ]; + + meta = { + description = ''Additional standard library for Erlang''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/erlware/erlware_commons"; + }; + } // packageOverrides) + ) {}; + + erlware_commons_0_19_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, cf_0_2_1 }: + buildRebar3 ({ + name = "erlware_commons"; + version = "0.19.0"; + src = fetchHex { + pkg = "erlware_commons"; + version = "0.19.0"; + sha256 = + "5bbff9402cd9e973af81745a8a40177d245b55b4c239f80a236949b856f2dabd"; + }; + + beamDeps = [ cf_0_2_1 ]; + + meta = { + description = ''Additional standard library for Erlang''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/erlware/erlware_commons"; + }; + } // packageOverrides) + ) {}; + + erlware_commons_0_20_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, cf_0_2_1 }: + buildRebar3 ({ + name = "erlware_commons"; + version = "0.20.0"; + src = fetchHex { + pkg = "erlware_commons"; + version = "0.20.0"; + sha256 = + "bff981dbd0acb12ac9d10b41ca96ba76a26e2a1f2714d1e0cb0112f4a67d956a"; + }; + + beamDeps = [ cf_0_2_1 ]; + + meta = { + description = ''Additional standard library for Erlang''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/erlware/erlware_commons"; + }; + } // packageOverrides) + ) {}; + + erlware_commons = erlware_commons_0_20_0; + + erlydtl_0_11_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "erlydtl"; + version = "0.11.1"; + src = fetchHex { + pkg = "erlydtl"; + version = "0.11.1"; + sha256 = + "b1958c0ec95de69458c6af8b5bffbdde0070d5042710a63b1616cacdf39ae188"; + }; + + meta = { + description = ''Django Template Language for Erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/project-fifo/fifo_spec"; + }; + } // packageOverrides) + ) {}; + + erlydtl = erlydtl_0_11_1; + + erlydtl2_0_11_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "erlydtl2"; + version = "0.11.1"; + src = fetchHex { + pkg = "erlydtl2"; + version = "0.11.1"; + sha256 = + "ae0d9f293ce8a2eeaabedf2b5f950d21e14570e67e5a38c11fe1e4ca598e6d5b"; + }; + + meta = { + description = ''Django Template Language for Erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/erlydtl/erlydtl"; + }; + } // packageOverrides) + ) {}; + + erlydtl2 = erlydtl2_0_11_1; + + esel_0_1_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "esel"; + version = "0.1.2"; + src = fetchHex { + pkg = "esel"; + version = "0.1.2"; + sha256 = + "874d1775c86d27d9e88486a37351ffc09f826ef062c8ea211e65d08e103f946c"; + }; + + meta = { + description = ''An wrapper around openssl''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + esel = esel_0_1_2; + + estree_2_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "estree"; + version = "2.3.0"; + src = fetchHex { + pkg = "estree"; + version = "2.3.0"; + sha256 = + "f73bf510523aac5518845d4d844a9690ba30450fc666ac138e8965a6c88b26ae"; + }; + + meta = { + longDescription = ''Represents the JavaScript AST from the ESTree + spec. Includes tools for building an AST and + generating code from it.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bryanjos/elixir-estree"; + }; + } // packageOverrides) + ) {}; + + estree = estree_2_3_0; + + esync_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "esync"; + version = "0.0.1"; + src = fetchHex { + pkg = "esync"; + version = "0.0.1"; + sha256 = + "28a59a0cbe885ec39dec4992aac8495147d1ec9b623883b01e8aa775cb334f03"; + }; + + meta = { + description = ''Concurrently sync two or more directories so that + their contents are identical''; + + homepage = "https://github.com/GrahamGoudeau21/ElixirSync"; + }; + } // packageOverrides) + ) {}; + + esync = esync_0_0_1; + + ether_0_0_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "ether"; + version = "0.0.1"; + src = fetchHex { + pkg = "ether"; + version = "0.0.1"; + sha256 = + "867752143aa09e07d0a50ae9526b7c8f620e189f509326a635c304b453496f16"; + }; + + meta = { + description = ''Elixir Debugger ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/maarek/ether"; + }; + } // packageOverrides) + ) {}; + + ether = ether_0_0_1; + + ets_map_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ets_map"; + version = "0.0.1"; + src = fetchHex { + pkg = "ets_map"; + version = "0.0.1"; + sha256 = + "c33d714212c56d99b2472d522e24db808cd8a407101051d407be310412d61eae"; + }; + + meta = { + description = ''A Map-like Elixir data structure that is backed + by an ETS table.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/antipax/ets_map"; + }; + } // packageOverrides) + ) {}; + + ets_map = ets_map_0_0_1; + + etude_0_3_7 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + rebind_0_1_3, + lineo_0_1_0 + }: + buildMix ({ + name = "etude"; + version = "0.3.7"; + src = fetchHex { + pkg = "etude"; + version = "0.3.7"; + sha256 = + "ee18b03eec697eccfd7027c4aaaa944e0d3335ece6c150504248763d94bbc338"; + }; + beamDeps = [ rebind_0_1_3 lineo_0_1_0 ]; + + meta = { + description = ''parallel computation coordination utilities for + erlang/elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/etude"; + }; + } // packageOverrides) + ) {}; + + etude_1_0_0_beta_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + nile_0_1_3 + }: + buildMix ({ + name = "etude"; + version = "1.0.0-beta.0"; + src = fetchHex { + pkg = "etude"; + version = "1.0.0-beta.0"; + sha256 = + "f5a2896982cd062fe188dcb0216ef5c960959aa2ba77f4d31b00d0dda56890dd"; + }; + beamDeps = [ poison_2_1_0 nile_0_1_3 ]; + + meta = { + description = ''parallel computation coordination utilities for + erlang/elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/etude"; + }; + } // packageOverrides) + ) {}; + + etude = etude_1_0_0_beta_0; + + eunit_formatters_0_3_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "eunit_formatters"; + version = "0.3.1"; + src = fetchHex { + pkg = "eunit_formatters"; + version = "0.3.1"; + sha256 = + "64a40741429b7aff149c605d5a6135a48046af394a7282074e6003b3b56ae931"; + }; + + meta = { + description = ''Better output for eunit suites''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/seancribbs/eunit_formatters"; + }; + } // packageOverrides) + ) {}; + + eunit_formatters = eunit_formatters_0_3_1; + + evel_0_1_0 = callPackage + ( + { + buildRebar3, packageOverrides ? {}, fetchHex, hash_ring_0_4_0 + }: + buildRebar3 ({ + name = "evel"; + version = "0.1.0"; + src = fetchHex { + pkg = "evel"; + version = "0.1.0"; + sha256 = + "5f381ab07b2f914b437808da2ef01fb2905349d17d467f5b5008bfdb5a2418dd"; + }; + + beamDeps = [ hash_ring_0_4_0 ]; + + meta = { + description = ''An Eventual Leader Election Library for Erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sile/evel"; + }; + } // packageOverrides) + ) {}; + + evel = evel_0_1_0; + + eventstore_0_2_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + postgrex_0_11_1, + poolboy_1_5_1, + fsm_0_2_0 + }: + buildMix ({ + name = "eventstore"; + version = "0.2.1"; + src = fetchHex { + pkg = "eventstore"; + version = "0.2.1"; + sha256 = + "ca035c60f925868826eb81bc85a91a7fa5e0637e3232d68e2d7aef248bf2ca35"; + }; + beamDeps = [ postgrex_0_11_1 poolboy_1_5_1 fsm_0_2_0 ]; + + meta = { + description = ''EventStore using PostgreSQL for persistence.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slashdotdash/eventstore"; + }; + } // packageOverrides) + ) {}; + + eventstore = eventstore_0_2_1; + + ewebmachine_2_0_12 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "ewebmachine"; + version = "2.0.12"; + src = fetchHex { + pkg = "ewebmachine"; + version = "2.0.12"; + sha256 = + "66a4ca701594da9396d6bab03f074f1ab56080a62e6545e6e455a24296c96a1a"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + longDescription = ''Ewebmachine contains macros and plugs to + allow you to compose HTTP decision handlers and + run the HTTP decision tree to get your HTTP + response. This project is a rewrite for Elixir + and Plug of basho webmachine.''; + license = stdenv.lib.licenses.mit; + homepage = "http://github.com/awetzel/ewebmachine"; + }; + } // packageOverrides) + ) {}; + + ewebmachine = ewebmachine_2_0_12; + + ex2ms_1_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex2ms"; + version = "1.4.0"; + src = fetchHex { + pkg = "ex2ms"; + version = "1.4.0"; + sha256 = + "8a743796d9f067f047e50d9726dfd8eb2791e6ce00c79edbd5ced6a06fe5e388"; + }; + + meta = { + description = ''Translates Elixir functions to match + specifications for use with `ets`.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ericmj/ex2ms"; + }; + } // packageOverrides) + ) {}; + + ex2ms = ex2ms_1_4_0; + + ex_abnf_0_2_7 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_abnf"; + version = "0.2.7"; + src = fetchHex { + pkg = "ex_abnf"; + version = "0.2.7"; + sha256 = + "2ca070a97b392a142619f0a126e48c7e27d39353be9a76fb358c401821495e1a"; + }; + + meta = { + longDescription = ''A parser and interpreter for ABNF grammars. + This is not a parser generator, but an + interpreter. It will load up an ABNF grammar, + and generate an AST for it. Then one can apply + any of the rules to an input and the interpreter + will parse the input according to the rule.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/marcelog/ex_abnf"; + }; + } // packageOverrides) + ) {}; + + ex_abnf = ex_abnf_0_2_7; + + ex_brace_expansion_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_brace_expansion"; + version = "0.0.2"; + src = fetchHex { + pkg = "ex_brace_expansion"; + version = "0.0.2"; + sha256 = + "d7470a00cffe4425f89e83d7288c24b641c3f6cbde136a08089e7420467cd237"; + }; + + meta = { + longDescription = ''Brace expansion, as known from sh/bash, in + Elixir. Quick example: + ExBraceExpansion.expand(\"file-{a,b,c}.jpg\") => + [\"file-a.jpg\", \"file-b.jpg\", \"file-c.jpg\"] + ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gniquil/ex_brace_expansion"; + }; + } // packageOverrides) + ) {}; + + ex_brace_expansion = ex_brace_expansion_0_0_2; + + ex_clacks_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "ex_clacks"; + version = "0.1.1"; + src = fetchHex { + pkg = "ex_clacks"; + version = "0.1.1"; + sha256 = + "524f966b03b1a1ac4ab3f6beeef6ce5030cf3b16927c466d42a8b08c5355b231"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''A Plug that pays homage to Terry Pratchett''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/polymetis/ex_clacks"; + }; + } // packageOverrides) + ) {}; + + ex_clacks = ex_clacks_0_1_1; + + ex_csv_0_1_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_csv"; + version = "0.1.4"; + src = fetchHex { + pkg = "ex_csv"; + version = "0.1.4"; + sha256 = + "56ee6b70564aa1762f5bfc2b205e55caa83aef046d974614a22b8ec0f839005e"; + }; + + meta = { + description = ''CSV for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/CargoSense/ex_csv"; + }; + } // packageOverrides) + ) {}; + + ex_csv = ex_csv_0_1_4; + + ex_doc_0_10_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, earmark_0_1_15 }: + buildMix ({ + name = "ex_doc"; + version = "0.10.0"; + src = fetchHex { + pkg = "ex_doc"; + version = "0.10.0"; + sha256 = + "3d9f15777aa3fb62700d5984eb09ceeb6c1574d61be0f70801e3390e36942b35"; + }; + beamDeps = [ earmark_0_1_15 ]; + + meta = { + description = ''ExDoc is a documentation generation tool for + Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixir-lang/ex_doc"; + }; + } // packageOverrides) + ) {}; + + ex_doc_0_11_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, earmark_0_1_15 }: + buildMix ({ + name = "ex_doc"; + version = "0.11.4"; + src = fetchHex { + pkg = "ex_doc"; + version = "0.11.4"; + sha256 = + "639e97b24c1c6c172f557163b830673646983417de9ac0da2c25c7063deed293"; + }; + beamDeps = [ earmark_0_1_15 ]; + + meta = { + description = ''ExDoc is a documentation generation tool for + Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixir-lang/ex_doc"; + }; + } // packageOverrides) + ) {}; + + ex_doc = ex_doc_0_11_4; + + ex_doc_0_7_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, earmark_0_1_15 }: + buildMix ({ + name = "ex_doc"; + version = "0.7.3"; + src = fetchHex { + pkg = "ex_doc"; + version = "0.7.3"; + sha256 = + "45efbc6d2dc58d864e41be8a4321a5ecf643a061ec71487453447b29539f81ff"; + }; + beamDeps = [ earmark_0_1_15 ]; + + meta = { + description = ''ExDoc is a documentation generation tool for + Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixir-lang/ex_doc"; + }; + } // packageOverrides) + ) {}; + + ex_doc_dash_0_3_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_11_4, + earmark_0_1_15 + }: + buildMix ({ + name = "ex_doc_dash"; + version = "0.3.0"; + src = fetchHex { + pkg = "ex_doc_dash"; + version = "0.3.0"; + sha256 = + "0b511eecda1dd2c51fab8b1e071e3d6292f6a136232425d3f20baa9ca0fbeb43"; + }; + beamDeps = [ ex_doc_0_11_4 earmark_0_1_15 ]; + + meta = { + description = ''Formatter for ExDoc to generate docset + documentation for use in Dash.app.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/JonGretar/ExDocDash"; + }; + } // packageOverrides) + ) {}; + + ex_doc_dash = ex_doc_dash_0_3_0; + + ex_doc_epub_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_11_4, + earmark_0_1_19 + }: + buildMix ({ + name = "ex_doc_epub"; + version = "0.0.2"; + src = fetchHex { + pkg = "ex_doc_epub"; + version = "0.0.2"; + sha256 = + "dbb606e86c70cff37fb2e228f9b5971ee3afb08a10c247d5734b114c5d5fdb15"; + }; + beamDeps = [ ex_doc_0_11_4 earmark_0_1_19 ]; + + meta = { + description = ''Create documentation for Elixir projects in EPUB + format''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/milmazz/ex_doc_epub"; + }; + } // packageOverrides) + ) {}; + + ex_doc_epub = ex_doc_epub_0_0_2; + + ex_enum_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }: + buildMix ({ + name = "ex_enum"; + version = "0.1.0"; + src = fetchHex { + pkg = "ex_enum"; + version = "0.1.0"; + sha256 = + "f6685959ef337018e42c4baccdce98cc9618974759d1fdb969fcf9a266e590ea"; + }; + beamDeps = [ gettext_0_10_0 ]; + + meta = { + description = ''Enum library for Elixir inspired by + ActiveHash::Enum.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kenta-aktsk/ex_enum"; + }; + } // packageOverrides) + ) {}; + + ex_enum = ex_enum_0_1_0; + + ex_fabricators_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_fabricators"; + version = "0.1.0"; + src = fetchHex { + pkg = "ex_fabricators"; + version = "0.1.0"; + sha256 = + "edde1017f8a8fc3dbb3915c8791a6d0801f06fbe72f69ec50222dc47930c57d9"; + }; + + meta = { + description = ''Easy way to cook your structs for tests''; + + homepage = "https://github.com/alterego-labs/ex_fabricators"; + }; + } // packageOverrides) + ) {}; + + ex_fabricators = ex_fabricators_0_1_0; + + ex_guard_0_10_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }: + buildMix ({ + name = "ex_guard"; + version = "0.10.0"; + src = fetchHex { + pkg = "ex_guard"; + version = "0.10.0"; + sha256 = + "5e099659bf2e197e8d7acfbad597b48c59961c1f61f8ec45d4e22a5d6f6e6fb5"; + }; + beamDeps = [ fs_0_9_2 ]; + + meta = { + longDescription = ''ExGuard automates various tasks by running + custom rules whenever file or directories are + modified.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slashmili/ex_guard"; + }; + } // packageOverrides) + ) {}; + + ex_guard = ex_guard_0_10_0; + + ex_hl7_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_hl7"; + version = "0.1.3"; + src = fetchHex { + pkg = "ex_hl7"; + version = "0.1.3"; + sha256 = + "57ea6567e6da3cb14098bddb95a843dbfb04981578ad5a0f3c437bce8ac9cd29"; + }; + + meta = { + description = ''HL7 Parser for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jcomellas/ex_hl7"; + }; + } // packageOverrides) + ) {}; + + ex_hl7 = ex_hl7_0_1_3; + + ex_ical_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ + name = "ex_ical"; + version = "0.0.1"; + src = fetchHex { + pkg = "ex_ical"; + version = "0.0.1"; + sha256 = + "b8b41eb4626fc41e36f054de8983d944d100f103979bd82d069b3a982bb51959"; + }; + beamDeps = [ timex_1_0_2 ]; + + meta = { + description = ''ICalendar parser.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/fazibear/ex_ical"; + }; + } // packageOverrides) + ) {}; + + ex_ical = ex_ical_0_0_1; + + ex_json_schema_0_3_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_json_schema"; + version = "0.3.1"; + src = fetchHex { + pkg = "ex_json_schema"; + version = "0.3.1"; + sha256 = + "928faaafb82e08f0458257b4eea9e7fb7cc0bd2551103d0ae4fcb1840d343cc4"; + }; + + meta = { + longDescription = ''A JSON Schema validator with full support for + the draft 4 specification and zero + dependencies.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jonasschmidt/ex_json_schema"; + }; + } // packageOverrides) + ) {}; + + ex_json_schema = ex_json_schema_0_3_1; + + ex_link_header_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_link_header"; + version = "0.0.3"; + src = fetchHex { + pkg = "ex_link_header"; + version = "0.0.3"; + sha256 = + "f4edcb2194c7480f2b03f00da68d25de03c38d217497639ebdbca6325890e153"; + }; + + meta = { + description = ''Parse HTTP link headers in Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/simonrand/ex_link_header"; + }; + } // packageOverrides) + ) {}; + + ex_link_header = ex_link_header_0_0_3; + + ex_machina_0_6_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_machina"; + version = "0.6.1"; + src = fetchHex { + pkg = "ex_machina"; + version = "0.6.1"; + sha256 = + "f55476400ca109d24f216ee961a6d04be4a932429ecd3ae6a948d5d04f4fa2ea"; + }; + + meta = { + description = ''A factory library by the creators of + FactoryGirl''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/thoughtbot/ex_machina"; + }; + } // packageOverrides) + ) {}; + + ex_machina = ex_machina_0_6_1; + + ex_mark2pdf_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, earmark_0_1_19 }: + buildMix ({ + name = "ex_mark2pdf"; + version = "0.1.0"; + src = fetchHex { + pkg = "ex_mark2pdf"; + version = "0.1.0"; + sha256 = + "d1458c9b01bc53b9c365d4d12ac8187b09e06f02667639d4a63c4543427dfb1d"; + }; + beamDeps = [ earmark_0_1_19 ]; + + meta = { + description = ''Generate a PDF from Markdown file.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/darui00kara/ex_mark2pdf"; + }; + } // packageOverrides) + ) {}; + + ex_mark2pdf = ex_mark2pdf_0_1_0; + + ex_marshal_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ + name = "ex_marshal"; + version = "0.0.3"; + src = fetchHex { + pkg = "ex_marshal"; + version = "0.0.3"; + sha256 = + "28eaf18799bca83519d0ac517a4fd0a9a2211bea7f96c74b27952a20be2938a8"; + }; + beamDeps = [ decimal_1_1_1 ]; + + meta = { + description = ''Ruby Marshal format implemented in Elixir.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/gaynetdinov/ex_marshal"; + }; + } // packageOverrides) + ) {}; + + ex_marshal = ex_marshal_0_0_3; + + ex_minimatch_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_brace_expansion_0_0_2 + }: + buildMix ({ + name = "ex_minimatch"; + version = "0.0.1"; + src = fetchHex { + pkg = "ex_minimatch"; + version = "0.0.1"; + sha256 = + "3255bb8496635d3ef5d86ec6829958a3573ff730ca01534b0fead9c2e3af7de4"; + }; + beamDeps = [ ex_brace_expansion_0_0_2 ]; + + meta = { + longDescription = ''Globbing paths without walking the tree! + Elixir and Erlang provide `wildcard` functions + in the stdlib. But these will walk the directory + tree. If you simply want to test whether a file + path matches a glob, ExMinimatch is for you. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gniquil/ex_minimatch"; + }; + } // packageOverrides) + ) {}; + + ex_minimatch = ex_minimatch_0_0_1; + + ex_modbus_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_modbus"; + version = "0.0.3"; + src = fetchHex { + pkg = "ex_modbus"; + version = "0.0.3"; + sha256 = + "bdfd52c43e690a9af041f34b7cd1f6c2843e39fe51b9afcc2a83fbf4d254fd50"; + }; + + meta = { + description = ''An Elixir ModbusTCP client implementation.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hirschenberger/ex_modbus"; + }; + } // packageOverrides) + ) {}; + + ex_modbus = ex_modbus_0_0_3; + + ex_parametarized_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_parametarized"; + version = "1.0.0"; + src = fetchHex { + pkg = "ex_parametarized"; + version = "1.0.0"; + sha256 = + "daa04087cc41608f1604f2cc52dfe3e3c3ee4612c3b6091d7b6025d10d79f31a"; + }; + + meta = { + description = ''Simple macro for parametarized testing''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KazuCocoa/ex_parametarized"; + }; + } // packageOverrides) + ) {}; + + ex_parametarized = ex_parametarized_1_0_0; + + ex_parameterized_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_parameterized"; + version = "1.0.2"; + src = fetchHex { + pkg = "ex_parameterized"; + version = "1.0.2"; + sha256 = + "c3a9b2471060a7f2cfc4cac4617125d4272991315d6223156d67c10abd055b10"; + }; + + meta = { + description = ''Simple macro for parameterized testing''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KazuCocoa/ex_parameterized"; + }; + } // packageOverrides) + ) {}; + + ex_parameterized = ex_parameterized_1_0_2; + + ex_pool_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_pool"; + version = "0.1.1"; + src = fetchHex { + pkg = "ex_pool"; + version = "0.1.1"; + sha256 = + "0e2a945acefa067f902dbfa6cb683884838099d6be496dc43cb7dccf31df978d"; + }; + + meta = { + description = ''A generic pooling library for Elixir''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/jcabotc/ex_pool"; + }; + } // packageOverrides) + ) {}; + + ex_pool = ex_pool_0_1_1; + + ex_prometheus_io_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "ex_prometheus_io"; + version = "0.0.3"; + src = fetchHex { + pkg = "ex_prometheus_io"; + version = "0.0.3"; + sha256 = + "7c2baaf0eef43d3e68d822532e0ca22daea41f6cce85de6b0ba538819fdb3832"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + description = ''Prometheus.io Elixir client API library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/kennyballou/ex_prometheus_io"; + }; + } // packageOverrides) + ) {}; + + ex_prometheus_io = ex_prometheus_io_0_0_3; + + ex_rated_1_2_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, ex2ms_1_4_0 }: + buildMix ({ + name = "ex_rated"; + version = "1.2.2"; + src = fetchHex { + pkg = "ex_rated"; + version = "1.2.2"; + sha256 = + "65f7e9aaba3ba5bf8995b34a29c9572652b051cfdd7988e5f9b7ea329bb71ca1"; + }; + beamDeps = [ ex2ms_1_4_0 ]; + + meta = { + longDescription = ''ExRated, the OTP GenServer with the naughty + name that allows you to rate-limit calls to any + service that requires it. For example, + rate-limit calls to your favorite API which + requires no more than `limit` API calls within a + `scale` milliseconds time window. You can + enforce limits for windows as narrow as + milliseconds, or as broad as you like.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/grempe/ex_rated"; + }; + } // packageOverrides) + ) {}; + + ex_rated = ex_rated_1_2_2; + + ex_rfc3966_0_2_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, ex_abnf_0_2_7 }: + buildMix ({ + name = "ex_rfc3966"; + version = "0.2.3"; + src = fetchHex { + pkg = "ex_rfc3966"; + version = "0.2.3"; + sha256 = + "730e14d9670ab0d2b2b24c2d3bfabe861bf21d4163c01db747a91c54090cc0d5"; + }; + beamDeps = [ ex_abnf_0_2_7 ]; + + meta = { + longDescription = ''A \"tel\" URI parser trying to be strictly + compatible with RFC3966. Uses official ABNF + grammar and ex_abnf as interpreter.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/marcelog/ex_rfc3966"; + }; + } // packageOverrides) + ) {}; + + ex_rfc3966 = ex_rfc3966_0_2_3; + + ex_rfc3986_0_2_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, ex_abnf_0_2_7 }: + buildMix ({ + name = "ex_rfc3986"; + version = "0.2.6"; + src = fetchHex { + pkg = "ex_rfc3986"; + version = "0.2.6"; + sha256 = + "bfc8ce510f910dbbd1f4a8433de85090375d1701e0b9a488ba7afd8efae98bfa"; + }; + beamDeps = [ ex_abnf_0_2_7 ]; + + meta = { + longDescription = ''An URI parser trying to be strictly + compatible with RFC3986. Uses official ABNF + grammar and ex_abnf as interpreter.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/marcelog/ex_rfc3986"; + }; + } // packageOverrides) + ) {}; + + ex_rfc3986 = ex_rfc3986_0_2_6; + + ex_slp_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_11_4, + earmark_0_2_1 + }: + buildMix ({ + name = "ex_slp"; + version = "0.1.0"; + src = fetchHex { + pkg = "ex_slp"; + version = "0.1.0"; + sha256 = + "9356a927d0809af648320b56d40929edb7c5807955b7460f362f674f1326e4c2"; + }; + beamDeps = [ ex_doc_0_11_4 earmark_0_2_1 ]; + + meta = { + longDescription = ''Zero-config local network Elixir/Erlang node + discovery lib. Allows an Elixir node to register + itself as a local netowrk service and discover + the orher registered services.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/4pcbr/ex_slp_tk"; + }; + } // packageOverrides) + ) {}; + + ex_slp = ex_slp_0_1_0; + + ex_spec_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_spec"; + version = "1.0.0"; + src = fetchHex { + pkg = "ex_spec"; + version = "1.0.0"; + sha256 = + "e5f4b6ee0a918015d1d190ead7807f31ec62a8d8920fc93602bf722c171e7ae8"; + }; + + meta = { + description = ''BDD-like syntax for ExUnit''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/drewolson/ex_spec"; + }; + } // packageOverrides) + ) {}; + + ex_spec = ex_spec_1_0_0; + + ex_sshd_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_sshd"; + version = "0.0.1"; + src = fetchHex { + pkg = "ex_sshd"; + version = "0.0.1"; + sha256 = + "5227d6e0bc1c2227f60529679bc60494f6599f1ebe786389e0d15a7a2d92d83e"; + }; + + meta = { + longDescription = ''Simple Elixir SSH worker that provides an + Elixir shell over SSH into your application.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tverlaan/ex_sshd"; + }; + } // packageOverrides) + ) {}; + + ex_sshd = ex_sshd_0_0_1; + + ex_statsd_0_5_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_statsd"; + version = "0.5.3"; + src = fetchHex { + pkg = "ex_statsd"; + version = "0.5.3"; + sha256 = + "357c616a327a40133e49a54db1d46b0d7c9ab2de186f7bfecdc0efca6394adf6"; + }; + + meta = { + description = ''A StatsD client for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/CargoSense/ex_statsd"; + }; + } // packageOverrides) + ) {}; + + ex_statsd = ex_statsd_0_5_3; + + ex_sync_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }: + buildMix ({ + name = "ex_sync"; + version = "0.0.2"; + src = fetchHex { + pkg = "ex_sync"; + version = "0.0.2"; + sha256 = + "2e6eb61310c708f59d10a5c53549230091a4e75c98352dcf04f34fabf3f81c35"; + }; + beamDeps = [ connection_1_0_2 ]; + + meta = { + longDescription = ''A library to handle [Differential + Synchroniazation](https://neil.fraser.name/writing/sync/) + in an Elixir app.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/invrs/exsync"; + }; + } // packageOverrides) + ) {}; + + ex_sync = ex_sync_0_0_2; + + ex_test_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_test"; + version = "0.0.2"; + src = fetchHex { + pkg = "ex_test"; + version = "0.0.2"; + sha256 = + "fdc33e0fa2fdab921fa54f0484645681ed0695f69439a6f40430e31fbc589756"; + }; + + meta = { + description = ''Wrapper around ExUnit to support BBD (rspec) like + syntax''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mcb/ex_test"; + }; + } // packageOverrides) + ) {}; + + ex_test = ex_test_0_0_2; + + ex_twilio_0_1_4 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + inflex_1_5_0, + httpotion_2_2_2 + }: + buildMix ({ + name = "ex_twilio"; + version = "0.1.4"; + src = fetchHex { + pkg = "ex_twilio"; + version = "0.1.4"; + sha256 = + "97caa270770cd0d9f17de05ad8498fab48eb8c6ac28e66cf6a64aa0ebf26b60d"; + }; + beamDeps = [ poison_1_5_2 inflex_1_5_0 httpotion_2_2_2 ]; + + meta = { + description = ''Twilio API library for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/danielberkompas/ex_twilio"; + }; + } // packageOverrides) + ) {}; + + ex_twilio = ex_twilio_0_1_4; + + ex_twiml_2_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_twiml"; + version = "2.1.0"; + src = fetchHex { + pkg = "ex_twiml"; + version = "2.1.0"; + sha256 = + "7515c90ea4342e178b2894ca4cf8f03225a20c35e94c1f19e47bb839cc5f627d"; + }; + + meta = { + description = ''Generate TwiML with Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/danielberkompas/ex_twiml"; + }; + } // packageOverrides) + ) {}; + + ex_twiml = ex_twiml_2_1_0; + + ex_unit_fixtures_0_3_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_unit_fixtures"; + version = "0.3.1"; + src = fetchHex { + pkg = "ex_unit_fixtures"; + version = "0.3.1"; + sha256 = + "b4b988211bf4cd08a26eb76756e4563c94c6648c195e45af26ea62e4d37a65f6"; + }; + + meta = { + description = ''A modular fixture system for ExUnit, inspired by + py.test fixtures.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/obmarg/ex_unit_fixtures"; + }; + } // packageOverrides) + ) {}; + + ex_unit_fixtures = ex_unit_fixtures_0_3_1; + + ex_unit_notifier_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_unit_notifier"; + version = "0.1.0"; + src = fetchHex { + pkg = "ex_unit_notifier"; + version = "0.1.0"; + sha256 = + "e7566bd9ec23dc6862ea660667f1e9525af26609cef5ed03694b4e33049c5325"; + }; + + meta = { + description = ''Show status notifications for ExUnit test runs''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/navinpeiris/ex_unit_notifier"; + }; + } // packageOverrides) + ) {}; + + ex_unit_notifier = ex_unit_notifier_0_1_0; + + ex_victor_ops_0_2_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + httpotion_2_2_2 + }: + buildMix ({ + name = "ex_victor_ops"; + version = "0.2.1"; + src = fetchHex { + pkg = "ex_victor_ops"; + version = "0.2.1"; + sha256 = + "86941d8955783640b7991c0f049ba428a3595d55aa85dcd1cb3e4edaaee62125"; + }; + beamDeps = [ poison_2_1_0 httpotion_2_2_2 ]; + + meta = { + description = ''VictorOps API library for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cagedata/ex_victor_ops"; + }; + } // packageOverrides) + ) {}; + + ex_victor_ops = ex_victor_ops_0_2_1; + + ex_vmstats_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ex_vmstats"; + version = "0.0.1"; + src = fetchHex { + pkg = "ex_vmstats"; + version = "0.0.1"; + sha256 = + "587d088696b51b0e053b2626c6de51ca7be67b5e3a49c7320da5b4e7cd96d347"; + }; + + meta = { + description = ''An Elixir package for pushing Erlang VM stats + into StatsD.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fanduel/ex_vmstats"; + }; + } // packageOverrides) + ) {}; + + ex_vmstats = ex_vmstats_0_0_1; + + exactor_2_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exactor"; + version = "2.2.0"; + src = fetchHex { + pkg = "exactor"; + version = "2.2.0"; + sha256 = + "c60cd68899db3ec0bdbd41c7ccf3ae3b52391a18704040461763f052e97b5e15"; + }; + + meta = { + description = ''Simplified creation of GenServer based processes + in Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sasa1977/exactor"; + }; + } // packageOverrides) + ) {}; + + exactor = exactor_2_2_0; + + exalgebra_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, eye_drops_1_0_1 }: + buildMix ({ + name = "exalgebra"; + version = "0.0.4"; + src = fetchHex { + pkg = "exalgebra"; + version = "0.0.4"; + sha256 = + "8994432fa46db0aa36fa1637a1a856c8ade4472435335220db4f9f56e2c23c4d"; + }; + beamDeps = [ eye_drops_1_0_1 ]; + + meta = { + longDescription = ''The ExAlgebra library is a collection of + functions that are commonly used in linear + algebra.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/leighshepperson/exalgebra"; + }; + } // packageOverrides) + ) {}; + + exalgebra = exalgebra_0_0_4; + + example_files_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "example_files"; + version = "0.2.0"; + src = fetchHex { + pkg = "example_files"; + version = "0.2.0"; + sha256 = + "5454a42e421f5b35669fa80aeac067ca010dfb4fd7f834a530070e2a95d71689"; + }; + + meta = { + longDescription = ''Mix tasks for managing example files in your + project. Your project may contain files that are + intended to serve as explanatory samples of + files provided by a project contributor or user, + such as configuration and the like. The Mix + tasks provided here enable you to easily find, + copy, and check the freshness of example files + and your copies of them.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/njonsson/example_files"; + }; + } // packageOverrides) + ) {}; + + example_files = example_files_0_2_0; + + exbackoff_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exbackoff"; + version = "0.0.3"; + src = fetchHex { + pkg = "exbackoff"; + version = "0.0.3"; + sha256 = + "dc3df168c73800c0978d732c121cd934ce2e5564d6addb953f8601e3010ae225"; + }; + + meta = { + description = ''Simple exponential backoffs in Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mingchuno/exbackoff"; + }; + } // packageOverrides) + ) {}; + + exbackoff = exbackoff_0_0_3; + + exbouncer_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exbouncer"; + version = "0.0.1"; + src = fetchHex { + pkg = "exbouncer"; + version = "0.0.1"; + sha256 = + "1152124b31dd00eddfb59fff015d92632744fa5cd4630a7eb8976a82aa012e41"; + }; + + meta = { + longDescription = ''An authorization library in Elixir for Plug + applications that restricts what resources the + current user/admin or any role is allowed to + access,''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/vysakh0/exbouncer"; + }; + } // packageOverrides) + ) {}; + + exbouncer = exbouncer_0_0_1; + + excaliper_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "excaliper"; + version = "0.0.1"; + src = fetchHex { + pkg = "excaliper"; + version = "0.0.1"; + sha256 = + "d43430518ffcf8de60a1d44355f6a200f348ec1ca8bc4287ca17c97543e86732"; + }; + + meta = { + description = ''Fast image dimension detector inspired by the + Node.JS module Calipers.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mgartner/excaliper"; + }; + } // packageOverrides) + ) {}; + + excaliper = excaliper_0_0_1; + + excellent_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "excellent"; + version = "0.0.1"; + src = fetchHex { + pkg = "excellent"; + version = "0.0.1"; + sha256 = + "a0628dce02de6a33cf441883723c480b0f07fdacade46f6d608465bb717491bd"; + }; + + meta = { + description = ''A OpenXL (Excel files ending with .xlsx) parser + for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/leifg/excellent"; + }; + } // packageOverrides) + ) {}; + + excellent = excellent_0_0_1; + + excoap_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "excoap"; + version = "0.0.1"; + src = fetchHex { + pkg = "excoap"; + version = "0.0.1"; + sha256 = + "06caae698590da85aded80db7996300127d48a4e9cf7bdca8d35113c094e5094"; + }; + + meta = { + description = ''CoAP implementation for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mbialon/excoap"; + }; + } // packageOverrides) + ) {}; + + excoap = excoap_0_0_1; + + exconstructor_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exconstructor"; + version = "1.0.2"; + src = fetchHex { + pkg = "exconstructor"; + version = "1.0.2"; + sha256 = + "e8cd1c88d5ea044a340fed75deb1fda2edc71afaac157dce561288a6bf733035"; + }; + + meta = { + longDescription = ''ExConstructor generates constructor functions + for your structs, handling map-vs-keyword-list, + string-vs-atom-keys, and + camelCase-vs-under_score issues + automatically.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/appcues/exconstructor"; + }; + } // packageOverrides) + ) {}; + + exconstructor = exconstructor_1_0_2; + + exdatauri_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exdatauri"; + version = "0.1.0"; + src = fetchHex { + pkg = "exdatauri"; + version = "0.1.0"; + sha256 = + "46d064019d4d785428226baafbc3f11fc8621838b0d633768f18182d2cf4a719"; + }; + + meta = { + description = ''A RFC 2397 URI parser for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/flupke/exdatauri"; + }; + } // packageOverrides) + ) {}; + + exdatauri = exdatauri_0_1_0; + + exdisque_0_0_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, eredis_1_0_8 }: + buildRebar3 ({ + name = "exdisque"; + version = "0.0.1"; + src = fetchHex { + pkg = "exdisque"; + version = "0.0.1"; + sha256 = + "c3b7ec89217df46ae6cf1adadb81118877c66272266f0ee5e2c7ff45d048fb31"; + }; + + beamDeps = [ eredis_1_0_8 ]; + + meta = { + description = ''Elixir client library for Disque: + https://github.com/antirez/disque''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mosic/exdisque"; + }; + } // packageOverrides) + ) {}; + + exdisque = exdisque_0_0_1; + + exdm_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exrm_0_19_9 }: + buildMix ({ + name = "exdm"; + version = "0.0.4"; + src = fetchHex { + pkg = "exdm"; + version = "0.0.4"; + sha256 = + "85e8fa483a760c46e19f0e8e0f53eb35ed74cc17f23c72d3002e47a847011e39"; + }; + beamDeps = [ exrm_0_19_9 ]; + + meta = { + description = ''Deploy Elixir applications via mix tasks''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/joeyates/exdm"; + }; + } // packageOverrides) + ) {}; + + exdm = exdm_0_0_4; + + exec_1_0_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "exec"; + version = "1.0.1"; + src = fetchHex { + pkg = "exec"; + version = "1.0.1"; + sha256 = + "87c7ef2dea2bb503bb0eec8cb34776172999aecc6e12d90f7629796a7a3ccb1f"; + }; + compilePorts = true; + buildPlugins = [ pc ]; + + + meta = { + description = ''OS Process Manager''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/saleyn/erlexec"; + }; + } // packageOverrides) + ) {}; + + exec = exec_1_0_1; + + execjs_1_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "execjs"; + version = "1.1.3"; + src = fetchHex { + pkg = "execjs"; + version = "1.1.3"; + sha256 = + "a0992d14ccc3458563be305d70fd6f6f6e9db6e8b62dd4e15bf69aeb382eb074"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + description = ''Run JavaScript code from Elixir''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/devinus/execjs"; + }; + } // packageOverrides) + ) {}; + + execjs = execjs_1_1_3; + + exelli_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exelli"; + version = "0.1.0"; + src = fetchHex { + pkg = "exelli"; + version = "0.1.0"; + sha256 = + "9777493429d5b4e3f3a9391ede7706deba65b253aa0d810efa9e26859b6f269c"; + }; + + meta = { + longDescription = ''Elli wrapper in elixir, with some sugar + syntax. (even 2 times faster than Plug on + Cowboy) ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/pigmej/exelli"; + }; + } // packageOverrides) + ) {}; + + exelli = exelli_0_1_0; + + exexif_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exexif"; + version = "0.0.1"; + src = fetchHex { + pkg = "exexif"; + version = "0.0.1"; + sha256 = + "48db21d8a77a9f922046ad6018266c0df32efb82331113ccb787e08fb7464a74"; + }; + + meta = { + longDescription = ''Read TIFF and EXIF information from a + JPEG-format image. 1. Retrieve data from a file: + iex> {:ok, info} = + Exexif.exif_from_jpeg_file(path) Retrieve data + from a binary containing the JPEG (you don`t + need the whole thing—the exif is near the + beginning of a JPEG, so 100k or so should do + fine). iex> {:ok, info} = + Exexif.exif_from_jpeg_buffer(buffer) 2. Access + the high level TIFF data: iex> info.x_resolution + 72 iex> info.model \"DSC-RX100M2\" 3. The exif + data is in there, too. iex> + info.exif.color_space \"sRGB\" iex> info.exif |> + Dict.keys [:brightness_value, :color_space, + :component_configuration, + :compressed_bits_per_pixel, :contrast, + :custom_rendered, :datetime_original, + :datetime_tigitized, :digital_zoom_ratio, + :exif_image_height, :exif_image_width, + :exif_version, :exposure_bias_value, + :exposure_mode, :exposure_program, + :exposure_time, :f_number, :file_source, :flash, + :flash_pix_persion, :focal_length, + :focal_length_in_35mm_film, :iso_speed_ratings, + :lens_info, :light_source, :max_aperture_value, + :metering_mode, :recommended_exposure, + :saturation, :scene_capture_type, :scene_type, + :sensitivity_type, :sharpness, :white_balance] + ''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/pragdave/exexif"; + }; + } // packageOverrides) + ) {}; + + exexif = exexif_0_0_1; + + exfirebase_0_4_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + httpotion_2_2_2, + exjsx_3_2_0 + }: + buildMix ({ + name = "exfirebase"; + version = "0.4.0"; + src = fetchHex { + pkg = "exfirebase"; + version = "0.4.0"; + sha256 = + "acd2f1fe87e83437a5d52b811b3e86bc75933bc29b0daa2da836a97ddd60b478"; + }; + beamDeps = [ httpotion_2_2_2 exjsx_3_2_0 ]; + + meta = { + description = ''An elixir library for accessing the Firebase REST + API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/parroty/exfirebase"; + }; + } // packageOverrides) + ) {}; + + exfirebase = exfirebase_0_4_0; + + exfsm_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exfsm"; + version = "0.1.3"; + src = fetchHex { + pkg = "exfsm"; + version = "0.1.3"; + sha256 = + "6535a0565d6013ca728c10e11c9ac85216d995652892469f7380147da8c3d727"; + }; + + meta = { + longDescription = ''Simple elixir library to define composable + FSM as function (not related at all with + `:gen_fsm`, no state/process management)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/exfsm"; + }; + } // packageOverrides) + ) {}; + + exfsm = exfsm_0_1_3; + + exfswatch_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }: + buildMix ({ + name = "exfswatch"; + version = "0.1.1"; + src = fetchHex { + pkg = "exfswatch"; + version = "0.1.1"; + sha256 = + "b97d5e120dc9efbf31e182625e1382f09202cf66863161570221bb4e1bfa82a1"; + }; + beamDeps = [ fs_0_9_2 ]; + + meta = { + description = ''A file change watcher wrapper based on + [fs](https://github.com/synrc/fs)''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/falood/exfswatch"; + }; + } // packageOverrides) + ) {}; + + exfswatch = exfswatch_0_1_1; + + exfuck_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exfuck"; + version = "0.1.0"; + src = fetchHex { + pkg = "exfuck"; + version = "0.1.0"; + sha256 = + "c71358ae7a31682d84f89f7f5fdc1c6b545ea93f70391a9ec15987458d70dbe8"; + }; + + meta = { + description = ''Brainfuck interpreter written in elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/shiroyasha/exfuck"; + }; + } // packageOverrides) + ) {}; + + exfuck = exfuck_0_1_0; + + exgravatar_2_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exgravatar"; + version = "2.0.0"; + src = fetchHex { + pkg = "exgravatar"; + version = "2.0.0"; + sha256 = + "ddfcfc899f24fd98c811a6824964c85b5c87a60f41fe034380081680d5c8e765"; + }; + + meta = { + description = ''An Elixir module for generating Gravatar urls.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/scrogson/exgravatar"; + }; + } // packageOverrides) + ) {}; + + exgravatar = exgravatar_2_0_0; + + exhcl_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exhcl"; + version = "0.2.1"; + src = fetchHex { + pkg = "exhcl"; + version = "0.2.1"; + sha256 = + "9c7ab6216cd978b2dd3f6573dd3ccf0a9d5055b36008a0ada01d9431198c17f7"; + }; + + meta = { + description = ''Configuration language inspired by HCL''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/asakura/exhcl"; + }; + } // packageOverrides) + ) {}; + + exhcl = exhcl_0_2_1; + + exiban_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exiban"; + version = "0.0.4"; + src = fetchHex { + pkg = "exiban"; + version = "0.0.4"; + sha256 = + "c1d1da991db264ca99b9e9245bb09d69f6297050b18329be1e4c01d5106778b5"; + }; + + meta = { + description = ''Library for manipulating and validating IBAN + account numbers.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kkempin/exiban"; + }; + } // packageOverrides) + ) {}; + + exiban = exiban_0_0_4; + + exirc_0_10_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exirc"; + version = "0.10.0"; + src = fetchHex { + pkg = "exirc"; + version = "0.10.0"; + sha256 = + "f2382ad3d97e791cc38ce54558296bb0afe7d222dc5f248ec72c6a0ca9c494a8"; + }; + + meta = { + description = ''An IRC client library for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/exirc"; + }; + } // packageOverrides) + ) {}; + + exirc = exirc_0_10_0; + + exjson_0_5_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exjson"; + version = "0.5.0"; + src = fetchHex { + pkg = "exjson"; + version = "0.5.0"; + sha256 = + "749422adf4381c8089a910d0ca545282ff0bd506cd4e17a6a08f4f9e7799fa94"; + }; + + meta = { + description = ''A simple Elixir implementation of JSON with an + Erlang parser.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/guedes/exjson"; + }; + } // packageOverrides) + ) {}; + + exjson = exjson_0_5_0; + + exjsx_3_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, jsx_2_3_1 }: + buildMix ({ + name = "exjsx"; + version = "3.0.2"; + src = fetchHex { + pkg = "exjsx"; + version = "3.0.2"; + sha256 = + "2cd67240a54e9cd2616bc83c0c352d47f87bccd2ec599eceedc00bcbe9063f07"; + }; + beamDeps = [ jsx_2_3_1 ]; + + meta = { + description = ''json for elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/exjsx"; + }; + } // packageOverrides) + ) {}; + + exjsx_3_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, jsx_2_4_0 }: + buildMix ({ + name = "exjsx"; + version = "3.1.0"; + src = fetchHex { + pkg = "exjsx"; + version = "3.1.0"; + sha256 = + "588a0b67ed0c45b21f018515fc478efac83c088661bd588831e41c9073a818fb"; + }; + beamDeps = [ jsx_2_4_0 ]; + + meta = { + description = ''json for elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/exjsx"; + }; + } // packageOverrides) + ) {}; + + exjsx_3_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, jsx_2_6_2 }: + buildMix ({ + name = "exjsx"; + version = "3.2.0"; + src = fetchHex { + pkg = "exjsx"; + version = "3.2.0"; + sha256 = + "9c8600822e894e3c31bed800c78a5a04812b71a6e5a5656426c6ce01ebe2cf1c"; + }; + beamDeps = [ jsx_2_6_2 ]; + + meta = { + description = ''json for elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/exjsx"; + }; + } // packageOverrides) + ) {}; + + exjsx = exjsx_3_2_0; + + exkanji_0_2_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exromaji_0_3_0 }: + buildMix ({ + name = "exkanji"; + version = "0.2.6"; + src = fetchHex { + pkg = "exkanji"; + version = "0.2.6"; + sha256 = + "2de4907764e9f1f2c67d9bc6b49a44d50fd0cbc86b5848cbada14438616636d1"; + }; + beamDeps = [ exromaji_0_3_0 ]; + + meta = { + longDescription = ''A Elixir library for translating between + hiragana, katakana, romaji and kanji. It uses + Mecab.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ikeikeikeike/exkanji"; + }; + } // packageOverrides) + ) {}; + + exkanji = exkanji_0_2_6; + + exldap_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exldap"; + version = "0.1.1"; + src = fetchHex { + pkg = "exldap"; + version = "0.1.1"; + sha256 = + "5cade5ad64caaeb0e0d70fcd9567aa827e6f50cb375599e2887319c40807cc92"; + }; + + meta = { + description = ''A module for working with LDAP from Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jmerriweather/exldap"; + }; + } // packageOverrides) + ) {}; + + exldap = exldap_0_1_1; + + exleveldb_0_7_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exleveldb"; + version = "0.7.0"; + src = fetchHex { + pkg = "exleveldb"; + version = "0.7.0"; + sha256 = + "90ff2b76b58c889e60203951c1cf5072cf24fd1fad9faad3dce6c96bf34330fc"; + }; + + meta = { + longDescription = ''Exleveldb is a thin wrapper around Basho`s + eleveldb (github.com/basho/eleveldb). At the + moment, Exleveldb exposes functions for the + following features of LevelDB: - Opening a new + datastore. - Closing an open datastore. - + Getting values by key. - Storing individual + key-value pairs. - Deleting stored key-value + pairs. - Checking if a datastore is empty. - + Folding over key-value pairs in the datastore. - + Folding over keys in the datastore. - Batch + writes to the datastore (put or delete). - + Destroying a datastore. Additionally, the option + of streaming key-value pairs or keys from the + datastore has been added in v0.5.0. Note: + Because eleveldb is not a hex package, you will + need to include it as a separate dependency in + your project (See `README.md`).''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/skovsgaard/exleveldb.git"; + }; + } // packageOverrides) + ) {}; + + exleveldb = exleveldb_0_7_0; + + exlibris_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exlibris"; + version = "0.0.1"; + src = fetchHex { + pkg = "exlibris"; + version = "0.0.1"; + sha256 = + "c6f957233b464eeddf590bad43368427ee9c715470e89d2f348d7d01935ad7be"; + }; + + meta = { + longDescription = ''A collection of random library functions I + use across multiple projects: pipe_while_ok: + Create pipelines that terminate early if any + step fails to return a tuple that starts {:ok, + ...} before_returning: Like Ruby`s returning, it + evaluates its first argument, then evalates the + do block. It always returns the value of its + first argument. ''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/pragdave/exlibris"; + }; + } // packageOverrides) + ) {}; + + exlibris = exlibris_0_0_1; + + exlingr_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exlingr"; + version = "0.0.1"; + src = fetchHex { + pkg = "exlingr"; + version = "0.0.1"; + sha256 = + "b45acd0e10f719b88c943b3194b7fded6ece9874c7da2c1f18b2ce2425581701"; + }; + + meta = { + description = ''Lingr client library for elixir. ''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/mtwtkman/exlingr"; + }; + } // packageOverrides) + ) {}; + + exlingr = exlingr_0_0_1; + + exmatrix_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, benchfella_0_3_2 }: + buildMix ({ + name = "exmatrix"; + version = "0.0.1"; + src = fetchHex { + pkg = "exmatrix"; + version = "0.0.1"; + sha256 = + "58fe316b1ee31f9394f246ec91a6a9157dfae0c38ea649a4c11f70976ca1d13b"; + }; + beamDeps = [ benchfella_0_3_2 ]; + + meta = { + longDescription = ''ExMatrix is a small library for working with + matrices, originally developed for testing + matrix multiplication in parallel.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/a115/exmatrix"; + }; + } // packageOverrides) + ) {}; + + exmatrix = exmatrix_0_0_1; + + exmerl_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exmerl"; + version = "0.1.1"; + src = fetchHex { + pkg = "exmerl"; + version = "0.1.1"; + sha256 = + "4bb5d6c1863c5e381b460416c9b517a211db9abd9abf0f32c99b07e128b842aa"; + }; + + meta = { + description = ''An Elixir wrapper for parsing XML through the + xmerl_* suite of modules ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/pwoolcoc/exmerl"; + }; + } // packageOverrides) + ) {}; + + exmerl = exmerl_0_1_1; + + exmetrics_1_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exmetrics"; + version = "1.1.0"; + src = fetchHex { + pkg = "exmetrics"; + version = "1.1.0"; + sha256 = + "1f4645ca0e9ef9b1815c0b301ff2f9a5b5548bc45adb68386cb6529998513d1b"; + }; + + meta = { + longDescription = ''Exmetrics provides counters, gauges and + histograms for instrumenting an elixir + application.''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + exmetrics = exmetrics_1_1_0; + + exml_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exml"; + version = "0.1.0"; + src = fetchHex { + pkg = "exml"; + version = "0.1.0"; + sha256 = + "aeed2cc53cae303180fa18eb552241af32e7f05af94ac82de9b81d67b71dee78"; + }; + + meta = { + description = ''Most simple Elixir wrapper for xmerl xpath''; + + }; + } // packageOverrides) + ) {}; + + exml = exml_0_1_0; + + exmoji_0_2_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "exmoji"; + version = "0.2.2"; + src = fetchHex { + pkg = "exmoji"; + version = "0.2.2"; + sha256 = + "d0123ec6fd14506da93b0e8fdb7c2efa819cc69addeb56a78f3c1e0b8a09d015"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + description = ''Emoji encoding swiss army knife for dealing with + Unicode and other gotchas.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mroth/exmoji"; + }; + } // packageOverrides) + ) {}; + + exmoji = exmoji_0_2_2; + + exns_0_3_2_beta = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + uuid_1_1_3, + poolboy_1_5_1, + poison_1_5_2, + msgpax_0_8_2 + }: + buildMix ({ + name = "exns"; + version = "0.3.2-beta"; + src = fetchHex { + pkg = "exns"; + version = "0.3.2-beta"; + sha256 = + "cc29b065ea9c346a14052e6ebe738fe93714ed936ef23d57b08786f968c4dc48"; + }; + beamDeps = [ uuid_1_1_3 poolboy_1_5_1 poison_1_5_2 msgpax_0_8_2 + ]; + + meta = { + longDescription = ''A library for writing clients to communicate + with Python nanoservices via nanomsg.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/walkr/exns"; + }; + } // packageOverrides) + ) {}; + + exns = exns_0_3_2_beta; + + exnumerable_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exnumerable"; + version = "0.0.1"; + src = fetchHex { + pkg = "exnumerable"; + version = "0.0.1"; + sha256 = + "ea6041540da09b96176a37bdd71e3c6fbacb8353aca3b084deedb17cee265e2e"; + }; + + meta = { + description = ''Enumerable type definition in a simple way to be + used with any database.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KamilLelonek/exnumerable"; + }; + } // packageOverrides) + ) {}; + + exnumerable = exnumerable_0_0_1; + + exnumerator_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exnumerator"; + version = "1.0.0"; + src = fetchHex { + pkg = "exnumerator"; + version = "1.0.0"; + sha256 = + "7511385b408e6aa2f494444dac4fd8734b91456734adbc46f17c7185a504514a"; + }; + + meta = { + description = ''Enumerable type definition in a simple way to be + used with any database.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KamilLelonek/exnumerator"; + }; + } // packageOverrides) + ) {}; + + exnumerator = exnumerator_1_0_0; + + exnumterator_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exnumterator"; + version = "1.0.0"; + src = fetchHex { + pkg = "exnumterator"; + version = "1.0.0"; + sha256 = + "895b1dfff48d0459e66338ca8a8b831c2f31654fc0758a24e11a2f54a9cb1106"; + }; + + meta = { + description = ''Enumerable type definition in a simple way to be + used with any database.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KamilLelonek/exnumterator"; + }; + } // packageOverrides) + ) {}; + + exnumterator = exnumterator_1_0_0; + + exoddic_1_3_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exoddic"; + version = "1.3.1"; + src = fetchHex { + pkg = "exoddic"; + version = "1.3.1"; + sha256 = + "e244c4aab1a25836300973f8afd42aef41dea19121c748c4b6d7b447db842194"; + }; + + meta = { + description = ''Odds and probability handling and conversions''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/exoddic"; + }; + } // packageOverrides) + ) {}; + + exoddic = exoddic_1_3_1; + + expand_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "expand"; + version = "0.0.3"; + src = fetchHex { + pkg = "expand"; + version = "0.0.3"; + sha256 = + "5f2ce07ba074392100fc5f6b8e8af9ec728ce4716e592422c510997d543efa63"; + }; + + meta = { + description = ''A pretty printer''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/joeyates/expand"; + }; + } // packageOverrides) + ) {}; + + expand = expand_0_0_3; + + experiment_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "experiment"; + version = "0.0.3"; + src = fetchHex { + pkg = "experiment"; + version = "0.0.3"; + sha256 = + "5acb6c232aff08719f97254ca27ed1eb165c3f2d229e03cda85e4d31ad7b3156"; + }; + + meta = { + description = ''Experiment is a library for carefully refactoring + critical paths in production.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/andrewvy/experiment"; + }; + } // packageOverrides) + ) {}; + + experiment = experiment_0_0_3; + + expinboard_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + ibrowse_4_2_2, + httpotion_2_2_2, + exjsx_3_2_0 + }: + buildMix ({ + name = "expinboard"; + version = "0.0.1"; + src = fetchHex { + pkg = "expinboard"; + version = "0.0.1"; + sha256 = + "3ff152d837293c0f53ead6cba4180ced55308d2869faa698e459abbe23d59bdc"; + }; + beamDeps = [ ibrowse_4_2_2 httpotion_2_2_2 exjsx_3_2_0 ]; + + meta = { + description = ''A simple elixir pinboard client.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/thilko/expinboard"; + }; + } // packageOverrides) + ) {}; + + expinboard = expinboard_0_0_1; + + expletive_0_1_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "expletive"; + version = "0.1.4"; + src = fetchHex { + pkg = "expletive"; + version = "0.1.4"; + sha256 = + "dfb9ac919526bcb7f28b5acadad634b7e9d220203874ef124a87264a078f24b4"; + }; + + meta = { + description = ''Profanity detection and sanitization library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/xavier/expletive"; + }; + } // packageOverrides) + ) {}; + + expletive = expletive_0_1_4; + + expool_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "expool"; + version = "0.2.0"; + src = fetchHex { + pkg = "expool"; + version = "0.2.0"; + sha256 = + "f0cc61c365d1950522ad5816cf638353602db5a5d74feb7c96748dfa2b6f9d07"; + }; + + meta = { + description = ''Simple process pooling and task submission''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zackehh/expool"; + }; + } // packageOverrides) + ) {}; + + expool = expool_0_2_0; + + export_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "export"; + version = "0.0.2"; + src = fetchHex { + pkg = "export"; + version = "0.0.2"; + sha256 = + "f956aa84d18d089b9a8250d53ac6c8ecff3ea29313e661cbb19ed329762f2acb"; + }; + + meta = { + description = ''Erlport wrapper for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/fazibear/export"; + }; + } // packageOverrides) + ) {}; + + export = export_0_0_2; + + expr_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "expr"; + version = "0.1.0"; + src = fetchHex { + pkg = "expr"; + version = "0.1.0"; + sha256 = + "5076c73cb6beaafeab5fab4731170c29dca5581eec44df3be363660a872abb97"; + }; + + meta = { + description = ''An Elixir library for parsing and evaluating + mathematical expressions ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Rob-bie/Expr"; + }; + } // packageOverrides) + ) {}; + + expr = expr_0_1_0; + + exprintf_0_1_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exprintf"; + version = "0.1.6"; + src = fetchHex { + pkg = "exprintf"; + version = "0.1.6"; + sha256 = + "7acb31f93cef83effd3aa1f0572f9e29d7d1b4f50a6d456e2830fa7594c16182"; + }; + + meta = { + description = ''A printf / sprintf library for Elixir. It works + as a wrapper for :io.format. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/parroty/exprintf"; + }; + } // packageOverrides) + ) {}; + + exprintf = exprintf_0_1_6; + + exprof_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exprintf_0_1_6 }: + buildMix ({ + name = "exprof"; + version = "0.2.0"; + src = fetchHex { + pkg = "exprof"; + version = "0.2.0"; + sha256 = + "2b3b8c623873172a6c7ba1707981f51feea6b6edbabd5347752030803ad0c954"; + }; + beamDeps = [ exprintf_0_1_6 ]; + + meta = { + description = ''A simple code profiler for Elixir using eprof. + ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/parroty/exprof"; + }; + } // packageOverrides) + ) {}; + + exprof = exprof_0_2_0; + + exq_0_6_5 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + uuid_1_1_3, + timex_2_1_3, + redix_0_3_6, + poison_2_1_0 + }: + buildMix ({ + name = "exq"; + version = "0.6.5"; + src = fetchHex { + pkg = "exq"; + version = "0.6.5"; + sha256 = + "bacb92950e9c01532c9467dc7b4f7d930d8a70ef8d7b9797237aac6f0b608ba2"; + }; + beamDeps = [ uuid_1_1_3 timex_2_1_3 redix_0_3_6 poison_2_1_0 ]; + + meta = { + longDescription = ''Exq is a job processing library compatible + with Resque / Sidekiq for the Elixir + language.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/akira/exq"; + }; + } // packageOverrides) + ) {}; + + exq = exq_0_6_5; + + exq_ui_0_6_5 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + exq_0_6_5, + cowboy_1_0_4 + }: + buildMix ({ + name = "exq_ui"; + version = "0.6.5"; + src = fetchHex { + pkg = "exq_ui"; + version = "0.6.5"; + sha256 = + "88763e802738438d54e3b33966e2544832ed2d8215497c9c63b08d8c7199b7f3"; + }; + beamDeps = [ plug_1_1_3 exq_0_6_5 cowboy_1_0_4 ]; + + meta = { + longDescription = ''Exq UI is the UI component for Exq, a job + processing library. Exq UI provides the UI + dashboard to display stats on job processing.''; + + homepage = "https://github.com/akira/exq"; + }; + } // packageOverrides) + ) {}; + + exq_ui = exq_ui_0_6_5; + + exql_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, tds_0_5_4 }: + buildMix ({ + name = "exql"; + version = "0.0.3"; + src = fetchHex { + pkg = "exql"; + version = "0.0.3"; + sha256 = + "0dea2cd0f6cb1ba6c1cd4298716131fafb4271f2c076df0dd6e73e37cecb4705"; + }; + beamDeps = [ tds_0_5_4 ]; + + meta = { + description = ''A functional query tool for MSSQL.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mattweldon/exql"; + }; + } // packageOverrides) + ) {}; + + exql = exql_0_0_3; + + exquery_0_0_11 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + ex_doc_0_11_4, + earmark_0_1_19 + }: + buildRebar3 ({ + name = "exquery"; + version = "0.0.11"; + src = fetchHex { + pkg = "exquery"; + version = "0.0.11"; + sha256 = + "61b520599fa33dc8c97be32f41c8fe4a6eb9d8b98b72a72cb88185868692a0c1"; + }; + + beamDeps = [ ex_doc_0_11_4 earmark_0_1_19 ]; + + meta = { + longDescription = '' A library for parsing HTML and querying + elements within. Handy for web scraping or + autmated testing. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rozap/exquery"; + }; + } // packageOverrides) + ) {}; + + exquery = exquery_0_0_11; + + exquisite_0_1_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exquisite"; + version = "0.1.6"; + src = fetchHex { + pkg = "exquisite"; + version = "0.1.6"; + sha256 = + "8bd974eea0ef20d841f999818e4b6f0edd8e52b6723e8c5b2c4ba7a22fa07c7a"; + }; + + meta = { + description = ''DSL to match_spec''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/exquisite"; + }; + } // packageOverrides) + ) {}; + + exquisite = exquisite_0_1_6; + + exredis_0_2_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, eredis_1_0_8 }: + buildMix ({ + name = "exredis"; + version = "0.2.3"; + src = fetchHex { + pkg = "exredis"; + version = "0.2.3"; + sha256 = + "0d5a48cd27ec6200c3ffa5442d7dc615d7dbfe94a500d1240b9c0c9205ec4e56"; + }; + beamDeps = [ eredis_1_0_8 ]; + + meta = { + description = ''Redis client for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/artemeff/exredis"; + }; + } // packageOverrides) + ) {}; + + exredis = exredis_0_2_3; + + exref_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exref"; + version = "0.1.0"; + src = fetchHex { + pkg = "exref"; + version = "0.1.0"; + sha256 = + "19597fbdd563e447608d5f3a43171c29cde4e0462f5163314cc1db74ccef2f65"; + }; + + meta = { + description = ''Damn simple mix integration of xref.''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + exref = exref_0_1_0; + + exrequester_0_5_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + httpotion_2_2_2 + }: + buildMix ({ + name = "exrequester"; + version = "0.5.2"; + src = fetchHex { + pkg = "exrequester"; + version = "0.5.2"; + sha256 = + "9c55974b2f9a4294dd9a53ebed8f9b1c2788cd0845dccbc9471cf6869201903a"; + }; + beamDeps = [ poison_1_5_2 httpotion_2_2_2 ]; + + meta = { + description = ''Quickly create API clients using module + attributes.''; + + homepage = "https://github.com/oarrabi/exrequester"; + }; + } // packageOverrides) + ) {}; + + exrequester = exrequester_0_5_2; + + exrethinkdb_0_0_3 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, poison_1_4_0 }: + buildRebar3 ({ + name = "exrethinkdb"; + version = "0.0.3"; + src = fetchHex { + pkg = "exrethinkdb"; + version = "0.0.3"; + sha256 = + "c48a25a613de9f4c8ffe490044e448f01d816e0f6806af018494c3a19890ed1a"; + }; + + beamDeps = [ poison_1_4_0 ]; + + meta = { + description = ''RethinkDB driver for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hamiltop/exrethinkdb"; + }; + } // packageOverrides) + ) {}; + + exrethinkdb = exrethinkdb_0_0_3; + + exrm_0_19_9 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + relx_3_5_0, + conform_1_0_0_rc8 + }: + buildMix ({ + name = "exrm"; + version = "0.19.9"; + src = fetchHex { + pkg = "exrm"; + version = "0.19.9"; + sha256 = + "3107dcac0727f7e986ef36604e13943759a52188fbee630d72b1b3adb4594941"; + }; + beamDeps = [ relx_3_5_0 conform_1_0_0_rc8 ]; + + meta = { + longDescription = ''Exrm, or Elixir Release Manager, provides mix + tasks for building, upgrading, and controlling + release packages for your application.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/exrm"; + }; + } // packageOverrides) + ) {}; + + exrm_1_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, relx_3_18_0 }: + buildMix ({ + name = "exrm"; + version = "1.0.3"; + src = fetchHex { + pkg = "exrm"; + version = "1.0.3"; + sha256 = + "22ce83a1ffab133ebc94cef871d830971ca0b2f9df3ba44caa8f7eadb13bbe3b"; + }; + beamDeps = [ relx_3_18_0 ]; + + meta = { + longDescription = ''Exrm, or Elixir Release Manager, provides mix + tasks for building, upgrading, and controlling + release packages for your application.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/exrm"; + }; + } // packageOverrides) + ) {}; + + exrm = exrm_1_0_3; + + exrm_deb_0_0_5 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + vex_0_5_5, + timex_1_0_2, + exrm_1_0_3, + ex_doc_0_11_4, + earmark_0_2_1 + }: + buildMix ({ + name = "exrm_deb"; + version = "0.0.5"; + src = fetchHex { + pkg = "exrm_deb"; + version = "0.0.5"; + sha256 = + "b74c80e7c25750f78c4fefc75e8df66356d235d2c038751037ae60dad0ac7fc3"; + }; + beamDeps = [ + vex_0_5_5 + timex_1_0_2 + exrm_1_0_3 + ex_doc_0_11_4 + earmark_0_2_1 + ]; + + meta = { + description = ''Create a deb for your elixir release with ease''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/johnhamelink/exrm_deb"; + }; + } // packageOverrides) + ) {}; + + exrm_deb = exrm_deb_0_0_5; + + exrm_heroku_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }: + buildMix ({ + name = "exrm_heroku"; + version = "0.1.1"; + src = fetchHex { + pkg = "exrm_heroku"; + version = "0.1.1"; + sha256 = + "19fc16f1cfcc1c86bc64796a287028b8a8d951f7737024893c1772ba658da76d"; + }; + beamDeps = [ exrm_1_0_3 ]; + + meta = { + description = ''Publish Elixir releases created with exrm release + manager to Heroku. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ride/exrm-heroku"; + }; + } // packageOverrides) + ) {}; + + exrm_heroku = exrm_heroku_0_1_1; + + exromaji_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exromaji"; + version = "0.3.0"; + src = fetchHex { + pkg = "exromaji"; + version = "0.3.0"; + sha256 = + "d1b820b3de05bb3729b3b1d8b3e22ee965899a90abbec44ed6d18507a5f174d3"; + }; + + meta = { + description = ''A Elixir library for translating between + hiragana, katakana, and romaji.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ikeikeikeike/exromaji"; + }; + } // packageOverrides) + ) {}; + + exromaji = exromaji_0_3_0; + + exrun_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exrun"; + version = "0.1.1"; + src = fetchHex { + pkg = "exrun"; + version = "0.1.1"; + sha256 = + "d61b90c23ba37c9b44b379d6094ef8411522d17d94d33b786e1dc5bfac09bfc0"; + }; + + meta = { + longDescription = ''Elixir - save and easy to use, tracing tools + for running elixir and erlang applications''; + + homepage = "https://github.com/liveforeverx/exrun"; + }; + } // packageOverrides) + ) {}; + + exrun = exrun_0_1_1; + + exsamples_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exsamples"; + version = "0.1.0"; + src = fetchHex { + pkg = "exsamples"; + version = "0.1.0"; + sha256 = + "92acafe7e8a5d6b1c1b5ca937b9dab887f9a4474cfd6510a7117690a6c6da86d"; + }; + + meta = { + longDescription = ''Initializes lists of maps, structs or keyword + lists using tabular data in Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/msaraiva/exsamples"; + }; + } // packageOverrides) + ) {}; + + exsamples = exsamples_0_1_0; + + exscript_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exscript"; + version = "0.0.1"; + src = fetchHex { + pkg = "exscript"; + version = "0.0.1"; + sha256 = + "56360c7f6063df2088deb0ec7683dee90c4bfede861ef85b81fa94cc0abe302b"; + }; + + meta = { + description = ''Escript generator ''; + + homepage = "https://github.com/liveforeverx/exscript"; + }; + } // packageOverrides) + ) {}; + + exscript = exscript_0_0_1; + + exstatic_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "exstatic"; + version = "0.1.0"; + src = fetchHex { + pkg = "exstatic"; + version = "0.1.0"; + sha256 = + "e063b91c0b2995e4a1a2c1aa56cdd578374320a8755844cc6471b58fa3874d0d"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + longDescription = ''Serve static files from memory in the Phoenix + Framework. This extension compiles all of a + project`s static assets (e.g. Javascript, HTML, + images, etc) into Erlang modules and loads them + into the Erlang VM, with the purpose of serving + them fast and without a dependency on a + filesystem.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/arjan/exstatic"; + }; + } // packageOverrides) + ) {}; + + exstatic = exstatic_0_1_0; + + exstatsd_0_1_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }: + buildMix ({ + name = "exstatsd"; + version = "0.1.5"; + src = fetchHex { + pkg = "exstatsd"; + version = "0.1.5"; + sha256 = + "4fcad707df57fdb91338dae212355704924bea8db10207715b95e3c110e7b219"; + }; + beamDeps = [ exactor_2_2_0 ]; + + meta = { + description = ''An Elixir ports client for StatsD''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/upbit/ExStatsD"; + }; + } // packageOverrides) + ) {}; + + exstatsd = exstatsd_0_1_5; + + exsync_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exfswatch_0_1_1 }: + buildMix ({ + name = "exsync"; + version = "0.1.2"; + src = fetchHex { + pkg = "exsync"; + version = "0.1.2"; + sha256 = + "21a1106d5e62ced84a567bde2acbdff73ddf06d2a78fbd80ffa488fae4bde48b"; + }; + beamDeps = [ exfswatch_0_1_1 ]; + + meta = { + description = ''Yet another Elixir reloader.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/falood/exsync"; + }; + } // packageOverrides) + ) {}; + + exsync = exsync_0_1_2; + + extwitter_0_7_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "extwitter"; + version = "0.7.0"; + src = fetchHex { + pkg = "extwitter"; + version = "0.7.0"; + sha256 = + "15fca145977192f315382d51258324ffd1862161deb586c67aaf0a205ca3cc73"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + description = ''Twitter client library for elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/parroty/extwitter"; + }; + } // packageOverrides) + ) {}; + + extwitter = extwitter_0_7_0; + + exyz_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "exyz"; + version = "1.0.0"; + src = fetchHex { + pkg = "exyz"; + version = "1.0.0"; + sha256 = + "b1d53964ca72f70dd71c91327bf912858619d0357a53765ed3a08671e6769ef5"; + }; + + meta = { + description = ''Z-combinator in elixir: recursive anonymous + functions.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/Dkendal/exyz"; + }; + } // packageOverrides) + ) {}; + + exyz = exyz_1_0_0; + + eye_drops_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }: + buildMix ({ + name = "eye_drops"; + version = "1.0.1"; + src = fetchHex { + pkg = "eye_drops"; + version = "1.0.1"; + sha256 = + "4b57c4e6ec58e8e278c5dd2849ad248ccbf1cb9c340476cfebb7ac31e1bbe85d"; + }; + beamDeps = [ fs_0_9_2 ]; + + meta = { + longDescription = ''A configurable mix task to watch file changes + Watch file changes in a project and run the + corresponding command when a change happens.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rkotze/eye_drops"; + }; + } // packageOverrides) + ) {}; + + eye_drops_1_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }: + buildMix ({ + name = "eye_drops"; + version = "1.2.0"; + src = fetchHex { + pkg = "eye_drops"; + version = "1.2.0"; + sha256 = + "0e0fe7ccf1fc4208ae0811c60a0f0d1e37ef9a60dfaefc8ff235a8be51fa9ae7"; + }; + beamDeps = [ fs_0_9_2 ]; + + meta = { + longDescription = ''A configurable mix task to watch file changes + Watch file changes in a project and run the + corresponding command when a change happens.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rkotze/eye_drops"; + }; + } // packageOverrides) + ) {}; + + eye_drops = eye_drops_1_2_0; + + ezcryptex_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, cryptex_0_0_1 }: + buildMix ({ + name = "ezcryptex"; + version = "0.0.1"; + src = fetchHex { + pkg = "ezcryptex"; + version = "0.0.1"; + sha256 = + "0c1c295cf5500106f7288949021ccbdc0d3a9276c2ae9938e45254b7500017b5"; + }; + beamDeps = [ cryptex_0_0_1 ]; + + meta = { + longDescription = ''Thin layer on top of Cryptex for more easily + encrypting/decrypting, signing/verifying data in + elixir. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stocks29/ezcryptex"; + }; + } // packageOverrides) + ) {}; + + ezcryptex = ezcryptex_0_0_1; + + factory_girl_elixir_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "factory_girl_elixir"; + version = "0.1.1"; + src = fetchHex { + pkg = "factory_girl_elixir"; + version = "0.1.1"; + sha256 = + "2e07de9813089c6e6a45f0584eb2bfd28d3acbf654073b9e2ed6d0fd531b8f7e"; + }; + + meta = { + description = ''Minimal implementation of Ruby`s factory_girl in + Elixir. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sinetris/factory_girl_elixir"; + }; + } // packageOverrides) + ) {}; + + factory_girl_elixir = factory_girl_elixir_0_1_1; + + fake_cas_1_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4, + bypass_0_5_1 + }: + buildMix ({ + name = "fake_cas"; + version = "1.0.1"; + src = fetchHex { + pkg = "fake_cas"; + version = "1.0.1"; + sha256 = + "bb3522de447f7a3d84ced7b55e83b9ce72ce7c509581ed87ab26264fb39aafe5"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 bypass_0_5_1 ]; + + meta = { + description = ''A Cas server stub''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rhruiz/elixir-fake_cas"; + }; + } // packageOverrides) + ) {}; + + fake_cas = fake_cas_1_0_1; + + faker_0_6_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "faker"; + version = "0.6.0"; + src = fetchHex { + pkg = "faker"; + version = "0.6.0"; + sha256 = + "4f305a9ec9a2645bf4777dda1b56643d04333b7ff601145bf4b80acca030c2a0"; + }; + + meta = { + description = ''Faker is a pure Elixir library for generating + fake data.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/igas/faker"; + }; + } // packageOverrides) + ) {}; + + faker = faker_0_6_0; + + faust_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "faust"; + version = "0.1.0"; + src = fetchHex { + pkg = "faust"; + version = "0.1.0"; + sha256 = + "0ab347a6f377a97e621db0f659841436d6dbb31f1b7c8309e3fb543bec0c473e"; + }; + + meta = { + description = ''A Markov chain text generator for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jquadrin/faust"; + }; + } // packageOverrides) + ) {}; + + faust = faust_0_1_0; + + fdg_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "fdg"; + version = "0.0.4"; + src = fetchHex { + pkg = "fdg"; + version = "0.0.4"; + sha256 = + "a5ec0f8214e52c63186e620a3556a3d61c6fa9118bf4a6b84b67ff236b8a98da"; + }; + + meta = { + longDescription = ''This project aims to be a simple library with + which to build force directed graphs. Ideally, + FDG will be used to produce visualiations of + networks and static analysis of code.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/johnhamelink/elixir-fdg"; + }; + } // packageOverrides) + ) {}; + + fdg = fdg_0_0_4; + + feature_toggler_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exredis_0_2_3 }: + buildMix ({ + name = "feature_toggler"; + version = "0.0.1"; + src = fetchHex { + pkg = "feature_toggler"; + version = "0.0.1"; + sha256 = + "dac607aa67971e87b9d8fb8eb3057246d4480c99e11951faa1ed9f204b7f48ae"; + }; + beamDeps = [ exredis_0_2_3 ]; + + meta = { + description = ''This is a simple feature toggler/switch with + redis database written in elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/aravindgd/feature_toggler"; + }; + } // packageOverrides) + ) {}; + + feature_toggler = feature_toggler_0_0_1; + + feeder_1_4_7 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "feeder"; + version = "1.4.7"; + src = fetchHex { + pkg = "feeder"; + version = "1.4.7"; + sha256 = + "1ac4696d0801c5e433caedeb38001341a9e22120998dcb0ee6d358266260c3da"; + }; + + meta = { + description = ''Stream parse RSS and Atom formatted XML feeds. + ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/michaelnisi/feeder"; + }; + } // packageOverrides) + ) {}; + + feeder_2_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "feeder"; + version = "2.0.0"; + src = fetchHex { + pkg = "feeder"; + version = "2.0.0"; + sha256 = + "9780c5f032d3480cf7d9fd71d3f0c5f73211e0d3a8d9cdabcb1327b3a4ff758e"; + }; + + meta = { + description = ''Stream parse RSS and Atom formatted XML feeds. + ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/michaelnisi/feeder"; + }; + } // packageOverrides) + ) {}; + + feeder = feeder_2_0_0; + + feeder_ex_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, feeder_1_4_7 }: + buildMix ({ + name = "feeder_ex"; + version = "0.0.2"; + src = fetchHex { + pkg = "feeder_ex"; + version = "0.0.2"; + sha256 = + "0816c5c2757098d02727dcba55dfb8b4ecff66736d0f74d4bd36ffe93f033c31"; + }; + beamDeps = [ feeder_1_4_7 ]; + + meta = { + description = ''RSS feed parser. Simple wrapper for feeder.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/manukall/feeder_ex"; + }; + } // packageOverrides) + ) {}; + + feeder_ex = feeder_ex_0_0_2; + + feederer_0_5_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }: + buildMix ({ + name = "feederer"; + version = "0.5.6"; + src = fetchHex { + pkg = "feederer"; + version = "0.5.6"; + sha256 = + "07e25464b14b9263b343602b649bb9680764481b1dfe64270dcef5c83321522c"; + }; + beamDeps = [ poolboy_1_5_1 ]; + + meta = { + longDescription = ''Parses XML syndication feeds such as RSS, + Atom, etc. Elixir feedparser wrapper using + erlport.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/draftli/feederer"; + }; + } // packageOverrides) + ) {}; + + feederer = feederer_0_5_6; + + feedparser_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "feedparser"; + version = "0.0.3"; + src = fetchHex { + pkg = "feedparser"; + version = "0.0.3"; + sha256 = + "ef19d82d5d0db4ca10e1a83c8eefe82678538cdeb143e707bf7ef738177c3eeb"; + }; + + meta = { + description = ''Discover and parse RSS and Atom feeds''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/l3kn/Elixir-Feedparser"; + }; + } // packageOverrides) + ) {}; + + feedparser = feedparser_0_0_3; + + fernet_ecto_0_0_5 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + fernetex_0_0_2, + ecto_1_1_5 + }: + buildMix ({ + name = "fernet_ecto"; + version = "0.0.5"; + src = fetchHex { + pkg = "fernet_ecto"; + version = "0.0.5"; + sha256 = + "d4f9d0c6ffda955b9a1870bfc525def01fb65fef0bb3c4ed739ce5bbfbb98cda"; + }; + beamDeps = [ fernetex_0_0_2 ecto_1_1_5 ]; + + meta = { + description = ''Fernet-encrypted fields for Ecto''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jkakar/fernet-ecto"; + }; + } // packageOverrides) + ) {}; + + fernet_ecto = fernet_ecto_0_0_5; + + fernetex_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ + name = "fernetex"; + version = "0.0.2"; + src = fetchHex { + pkg = "fernetex"; + version = "0.0.2"; + sha256 = + "a6d052384397defe780d3551a16b8b639dba6f89aeea7a6984ecadf44501cfc9"; + }; + beamDeps = [ timex_1_0_2 ]; + + meta = { + description = ''Elixir implementation of Fernet library based on + https://github.com/fernet/spec''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kennyp/fernetex"; + }; + } // packageOverrides) + ) {}; + + fernetex = fernetex_0_0_2; + + fifo_lager_0_1_3 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + lager_logstash_backend_0_1_0, + lager_graylog_0_1_0, + lager_3_0_2 + }: + buildRebar3 ({ + name = "fifo_lager"; + version = "0.1.3"; + src = fetchHex { + pkg = "fifo_lager"; + version = "0.1.3"; + sha256 = + "89904ffcaaec1e92329d01d18805b26a71683b2ea646bbe8ed4f73de92ce267e"; + }; + + beamDeps = [ + lager_logstash_backend_0_1_0 + lager_graylog_0_1_0 + lager_3_0_2 + ]; + + meta = { + description = ''Lager config and dependencies''; + + }; + } // packageOverrides) + ) {}; + + fifo_lager = fifo_lager_0_1_3; + + fifo_s3_0_1_16 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + lager_3_0_2, + erlcloud_0_13_0, + base16_1_0_0 + }: + buildRebar3 ({ + name = "fifo_s3"; + version = "0.1.16"; + src = fetchHex { + pkg = "fifo_s3"; + version = "0.1.16"; + sha256 = + "14a3601a7586d37ae5fd8996db45d0f7a7ef82c0bc1adaefa36cd881997ed32f"; + }; + + beamDeps = [ + poolboy_1_5_1 lager_3_0_2 erlcloud_0_13_0 base16_1_0_0 + ]; + + meta = { + description = ''S3 storange client library for erlang''; + + }; + } // packageOverrides) + ) {}; + + fifo_s3 = fifo_s3_0_1_16; + + fifocache_1_0_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "fifocache"; + version = "1.0.1"; + src = fetchHex { + pkg = "fifocache"; + version = "1.0.1"; + sha256 = + "363f03e2871b8d8c7564a47133162ce18c362bd70897f5bd58fa246a0e169a43"; + }; + + meta = { + description = ''Fixed size FIFO cache implementation''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/mururu/fifocache"; + }; + } // packageOverrides) + ) {}; + + fifocache = fifocache_1_0_1; + + figaro_elixir_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "figaro_elixir"; + version = "1.0.0"; + src = fetchHex { + pkg = "figaro_elixir"; + version = "1.0.0"; + sha256 = + "98a7690c60fc32874e73b025b7deb5887d7cdff4556178af1849bde38a7ba104"; + }; + + meta = { + description = ''Environmental variables manager and configuration + management tool.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KamilLelonek/figaro-elixir"; + }; + } // packageOverrides) + ) {}; + + figaro_elixir = figaro_elixir_1_0_0; + + file_info_0_0_2 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, mimetype_parser_0_1_2 + }: + buildMix ({ + name = "file_info"; + version = "0.0.2"; + src = fetchHex { + pkg = "file_info"; + version = "0.0.2"; + sha256 = + "f28456aafd014c01a4188fee36c1571e9669b0506eb22c830db357084c0c9cb2"; + }; + beamDeps = [ mimetype_parser_0_1_2 ]; + + meta = { + description = ''Get MIME-type of a file by its magic number + (linux only)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/NobbZ/file_info"; + }; + } // packageOverrides) + ) {}; + + file_info = file_info_0_0_2; + + finance_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ + name = "finance"; + version = "0.0.1"; + src = fetchHex { + pkg = "finance"; + version = "0.0.1"; + sha256 = + "fe08fc521e65605d54fd8b68fbdfdbd233b408e8330cf8038337214b553c2c17"; + }; + beamDeps = [ timex_1_0_2 ]; + + meta = { + longDescription = ''A library to calculate Xirr through the + bisection method using parallel processes.''; + + }; + } // packageOverrides) + ) {}; + + finance = finance_0_0_1; + + finicity_0_0_5 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + xml_builder_0_0_8, + httpotion_2_2_2, + floki_0_8_0 + }: + buildMix ({ + name = "finicity"; + version = "0.0.5"; + src = fetchHex { + pkg = "finicity"; + version = "0.0.5"; + sha256 = + "b58ef39987976cf50851311a95b40504ba763c0d82256b012f5b1246bd92d9b4"; + }; + beamDeps = [ xml_builder_0_0_8 httpotion_2_2_2 floki_0_8_0 ]; + + meta = { + description = ''Client library for Finicity.''; + + }; + } // packageOverrides) + ) {}; + + finicity = finicity_0_0_5; + + firmata_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "firmata"; + version = "0.0.1"; + src = fetchHex { + pkg = "firmata"; + version = "0.0.1"; + sha256 = + "c3f928839c32e366389b3f9d34cfc73505952f854dd13c52eff56b9e5853ea6c"; + }; + + meta = { + longDescription = ''This package implements the Firmata protocol. + Firmata is a MIDI-based protocol for + communicating with microcontrollers.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/kfatehi/firmata"; + }; + } // packageOverrides) + ) {}; + + firmata = firmata_0_0_1; + + fixby_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "fixby"; + version = "0.0.1"; + src = fetchHex { + pkg = "fixby"; + version = "0.0.1"; + sha256 = + "e361bb9324c616e397fc78bda81a3629a39189f4675aefdeb54e85dfa74a629f"; + }; + + meta = { + description = ''FIXBY comments that raise after a given version + of Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/CoderDennis/fixby-elixir"; + }; + } // packageOverrides) + ) {}; + + fixby = fixby_0_0_1; + + fixme_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "fixme"; + version = "0.0.4"; + src = fetchHex { + pkg = "fixme"; + version = "0.0.4"; + sha256 = + "e5e36db0c083a96a459723d89c151fc1f33f9873122e6c4924e06d18d20f9e84"; + }; + + meta = { + description = ''FIXME comments that raise after a certain point + in time.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/henrik/fixme-elixir"; + }; + } // packageOverrides) + ) {}; + + fixme = fixme_0_0_4; + + flasked_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "flasked"; + version = "0.3.0"; + src = fetchHex { + pkg = "flasked"; + version = "0.3.0"; + sha256 = + "371368ec9586939343fad0196f6dc3492bb4e56309490271d29bf46beede9210"; + }; + + meta = { + longDescription = ''Flasked injects application environment + configuration at runtime based on given ENV + variables and a mapping. This is pretty useful + for applications following the 12factor app + principle or which are deployed in + containerization infrastructures like Docker.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/asaaki/flasked"; + }; + } // packageOverrides) + ) {}; + + flasked = flasked_0_3_0; + + flock_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "flock"; + version = "0.0.1"; + src = fetchHex { + pkg = "flock"; + version = "0.0.1"; + sha256 = + "3a533d32a450cb0e5b78880c421080fb34fb95d4cf3c1ee053b4e97c6cadd4c8"; + }; + + meta = { + description = ''Distributed Services ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/chrismccord/flock"; + }; + } // packageOverrides) + ) {}; + + flock = flock_0_0_1; + + floki_0_0_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "floki"; + version = "0.0.5"; + src = fetchHex { + pkg = "floki"; + version = "0.0.5"; + sha256 = + "05044b8dade147bc0390300eefe48c3118eb61d94a57bd73966549a24c76e795"; + }; + + meta = { + description = ''Floki is a simple HTML parser that enables search + for nodes using CSS selectors.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/philss/floki"; + }; + } // packageOverrides) + ) {}; + + floki_0_8_0 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, mochiweb_html_2_13_0 + }: + buildMix ({ + name = "floki"; + version = "0.8.0"; + src = fetchHex { + pkg = "floki"; + version = "0.8.0"; + sha256 = + "9cc084ca7adf275f639bb7a292838d7dc86d8917314c22f8aa2d8f6ba8b8d18d"; + }; + beamDeps = [ mochiweb_html_2_13_0 ]; + + meta = { + description = ''Floki is a simple HTML parser that enables search + for nodes using CSS selectors.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/philss/floki"; + }; + } // packageOverrides) + ) {}; + + floki = floki_0_8_0; + + floorplan_0_1_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + xml_builder_0_0_8, + tzdata_0_1_201603, + timex_1_0_2, + postgrex_0_11_1, + poison_1_5_2, + httpotion_2_2_2 + }: + buildMix ({ + name = "floorplan"; + version = "0.1.1"; + src = fetchHex { + pkg = "floorplan"; + version = "0.1.1"; + sha256 = + "56679e586efa7ae179a940920ef2b4d56e40b9b1d01cb4ce8528ef6870a77b00"; + }; + beamDeps = [ + xml_builder_0_0_8 + tzdata_0_1_201603 + timex_1_0_2 + postgrex_0_11_1 + poison_1_5_2 + httpotion_2_2_2 + ]; + + meta = { + description = ''A module for generating sitemaps from a variety + of data sources''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/househappy/floorplan"; + }; + } // packageOverrides) + ) {}; + + floorplan = floorplan_0_1_1; + + fluxter_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "fluxter"; + version = "0.2.0"; + src = fetchHex { + pkg = "fluxter"; + version = "0.2.0"; + sha256 = + "7834e830d156bf9ee819e69929a42f9ce8373a4d50c3e002ad9949cfeb42391d"; + }; + + meta = { + description = ''An InfluxDB writer for Elixir''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/lexmag/fluxter"; + }; + } // packageOverrides) + ) {}; + + fluxter = fluxter_0_2_0; + + fn_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "fn"; + version = "1.0.0"; + src = fetchHex { + pkg = "fn"; + version = "1.0.0"; + sha256 = + "1433b353c8739bb28ac0d6826c9f6a05033f158e8c8195faf01a863668b3bbc7"; + }; + + meta = { + description = ''More functional Erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/artemeff/fn"; + }; + } // packageOverrides) + ) {}; + + fn = fn_1_0_0; + + fnv_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, hexate_0_5_1 }: + buildMix ({ + name = "fnv"; + version = "0.2.1"; + src = fetchHex { + pkg = "fnv"; + version = "0.2.1"; + sha256 = + "4f64367d63f0f40fd6bd1618164df41173c76517b10ce96d8358ccc01e1cb2a4"; + }; + beamDeps = [ hexate_0_5_1 ]; + + meta = { + description = ''Pure Elixir implementation of Fowler–Noll–Vo + hash functions (FNV-1/FNV-1a)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/asaaki/fnv.ex"; + }; + } // packageOverrides) + ) {}; + + fnv = fnv_0_2_1; + + folsom_0_8_3 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, bear_0_8_3 }: + buildRebar3 ({ + name = "folsom"; + version = "0.8.3"; + src = fetchHex { + pkg = "folsom"; + version = "0.8.3"; + sha256 = + "afaa1ea4cd2a10a32242ac5d76fa7b17e98d202883859136b791d9a383b26820"; + }; + + beamDeps = [ bear_0_8_3 ]; + + meta = { + description = ''Erlang based metrics system''; + + }; + } // packageOverrides) + ) {}; + + folsom = folsom_0_8_3; + + folsomite_1_2_8 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, folsom_0_8_3 }: + buildRebar3 ({ + name = "folsomite"; + version = "1.2.8"; + src = fetchHex { + pkg = "folsomite"; + version = "1.2.8"; + sha256 = + "9ce64603cdffb8ad55e950142146b3fe05533020906a81aa9c2f524635d813dc"; + }; + + beamDeps = [ folsom_0_8_3 ]; + + meta = { + description = ''Blow up your Graphite server with Folsom + metrics''; + + }; + } // packageOverrides) + ) {}; + + folsomite = folsomite_1_2_8; + + forms_0_0_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "forms"; + version = "0.0.1"; + src = fetchHex { + pkg = "forms"; + version = "0.0.1"; + sha256 = + "530f63ed8ed5a171f744fc75bd69cb2e36496899d19dbef48101b4636b795868"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''Toolbox that simplifies working with Erlang`s + abstract format''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/efcasado/forms"; + }; + } // packageOverrides) + ) {}; + + forms = forms_0_0_1; + + friendly_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, floki_0_8_0 }: + buildMix ({ + name = "friendly"; + version = "1.0.1"; + src = fetchHex { + pkg = "friendly"; + version = "1.0.1"; + sha256 = + "5bacdeba9a6752613c037f7ffacd4f7185cf9b348b3b41c73497e539bbb17602"; + }; + beamDeps = [ floki_0_8_0 ]; + + meta = { + longDescription = ''HTML and XML parser with the most friendly + API in Elixir land. CSS selector in, list of + elements out.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/qertoip/friendly/"; + }; + } // packageOverrides) + ) {}; + + friendly = friendly_1_0_1; + + fs_0_9_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "fs"; + version = "0.9.2"; + src = fetchHex { + pkg = "fs"; + version = "0.9.2"; + sha256 = + "9a00246e8af58cdf465ae7c48fd6fd7ba2e43300413dfcc25447ecd3bf76f0c1"; + }; + compilePorts = true; + + meta = { + description = ''FS VXZ Listener''; + + }; + } // packageOverrides) + ) {}; + + fs = fs_0_9_2; + + fsm_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "fsm"; + version = "0.2.0"; + src = fetchHex { + pkg = "fsm"; + version = "0.2.0"; + sha256 = + "dbc7b316d37f258db4f1a897109da14c2c76aa706fe85859532eff2ea30986bf"; + }; + + meta = { + description = ''Finite state machine as a functional data + structure.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sasa1977/fsm"; + }; + } // packageOverrides) + ) {}; + + fsm = fsm_0_2_0; + + fumanchu_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "fumanchu"; + version = "0.0.1"; + src = fetchHex { + pkg = "fumanchu"; + version = "0.0.1"; + sha256 = + "3ae3f825b598d2af9ace3f9ef25ff23b7724507cddb2dddb2176e4a49afabc89"; + }; + + meta = { + description = ''An (almost) spec-compliant Mustache parser + written in Elixir''; + + }; + } // packageOverrides) + ) {}; + + fumanchu = fumanchu_0_0_1; + + function_decorating_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "function_decorating"; + version = "0.0.1"; + src = fetchHex { + pkg = "function_decorating"; + version = "0.0.1"; + sha256 = + "06016a2765de8ea0243b7993226177c96d0f6d51a2db2f84ee9d224a355c3b92"; + }; + + meta = { + longDescription = ''A function decorator macro for Elixir. Used + mainly for adding log statements to the function + calls.''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/elpddev/elixir-function-decorating"; + }; + } // packageOverrides) + ) {}; + + function_decorating = function_decorating_0_0_1; + + fuse_2_2_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "fuse"; + version = "2.2.0"; + src = fetchHex { + pkg = "fuse"; + version = "2.2.0"; + sha256 = + "c397f336455ab6596842d2199f018af69855f17df1635e212d3871a135ad46fa"; + }; + + meta = { + description = ''A Circuit breaker implementation for Erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jlouis/fuse"; + }; + } // packageOverrides) + ) {}; + + fuse = fuse_2_2_0; + + fuzzyurl_0_8_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "fuzzyurl"; + version = "0.8.1"; + src = fetchHex { + pkg = "fuzzyurl"; + version = "0.8.1"; + sha256 = + "8229d3d14bcbaf792a550ee68347662efd93022e7fc0221f7681c104b3356900"; + }; + + meta = { + longDescription = ''Fuzzyurl is a library for non-strict parsing, + construction, and fuzzy-matching of URLs.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/gamache/fuzzyurl.ex"; + }; + } // packageOverrides) + ) {}; + + fuzzyurl = fuzzyurl_0_8_1; + + fwatch_0_5_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + fs_0_9_2, + earmark_0_2_1 + }: + buildMix ({ + name = "fwatch"; + version = "0.5.0"; + src = fetchHex { + pkg = "fwatch"; + version = "0.5.0"; + sha256 = + "1cd46bcae7074c10a4a4d25989ef20ab515d075d762af8e6c86e8d50c011604c"; + }; + beamDeps = [ fs_0_9_2 earmark_0_2_1 ]; + + meta = { + description = ''A file watcher for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ryo33/fwatch-ex"; + }; + } // packageOverrides) + ) {}; + + fwatch = fwatch_0_5_0; + + gb2260_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ + name = "gb2260"; + version = "0.4.0"; + src = fetchHex { + pkg = "gb2260"; + version = "0.4.0"; + sha256 = + "62e89f7f4fcee973e8092e41676a903831f0cf88e31d6bedcf88382dfe40f333"; + }; + beamDeps = [ poison_2_1_0 ]; + + meta = { + description = ''The Elixir implementation for looking up the + Chinese administrative divisions.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/LcpMarvel/gb2260"; + }; + } // packageOverrides) + ) {}; + + gb2260 = gb2260_0_4_0; + + gealts_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "gealts"; + version = "0.0.1"; + src = fetchHex { + pkg = "gealts"; + version = "0.0.1"; + sha256 = + "c23b96986b19801c3428ff961e26e5b7327cd38141c2161951fdba233b71ac2b"; + }; + + meta = { + description = ''A crude genetic programming library.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/0010-IO/gealts"; + }; + } // packageOverrides) + ) {}; + + gealts = gealts_0_0_1; + + gelf_logger_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ + name = "gelf_logger"; + version = "0.2.0"; + src = fetchHex { + pkg = "gelf_logger"; + version = "0.2.0"; + sha256 = + "3729e42e3c8d492ec4b18cd7a70783cc2d15811b7096613a60da04743d1f7838"; + }; + beamDeps = [ poison_2_1_0 ]; + + meta = { + longDescription = ''A Logger backend that will generate Graylog + Extended Log Format messages and send them to a + compatible server.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jschniper/gelf_logger"; + }; + } // packageOverrides) + ) {}; + + gelf_logger = gelf_logger_0_2_0; + + gelfex_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + connection_1_0_2 + }: + buildMix ({ + name = "gelfex"; + version = "0.0.1"; + src = fetchHex { + pkg = "gelfex"; + version = "0.0.1"; + sha256 = + "35ca2deb8221379fc8eb2d4e33888ce590defe91dbbaaa10ef352d6654723279"; + }; + beamDeps = [ poison_1_5_2 connection_1_0_2 ]; + + meta = { + description = ''Elixir client for logging GELF messages to + Graylog.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/donpinkster/gelfex"; + }; + } // packageOverrides) + ) {}; + + gelfex = gelfex_0_0_1; + + gen_leader_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "gen_leader"; + version = "0.1.0"; + src = fetchHex { + pkg = "gen_leader"; + version = "0.1.0"; + sha256 = + "31340f49935767f12b639b69cdc585f26ebcc1802ba46b33555b229da2366207"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''The gen_leader behaviour''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/knusbaum/gen_leader_revival"; + }; + } // packageOverrides) + ) {}; + + gen_leader = gen_leader_0_1_0; + + gen_listener_tcp_0_3_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "gen_listener_tcp"; + version = "0.3.2"; + src = fetchHex { + pkg = "gen_listener_tcp"; + version = "0.3.2"; + sha256 = + "b3c3fbc525ba2b32d947b06811d38470d5b0abe2ca81b623192a71539ed22336"; + }; + + meta = { + description = ''Generic TCP Server''; + + homepage = "https://github.com/travelping/gen_listener_tcp"; + }; + } // packageOverrides) + ) {}; + + gen_listener_tcp = gen_listener_tcp_0_3_2; + + gen_smtp_0_9_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "gen_smtp"; + version = "0.9.0"; + src = fetchHex { + pkg = "gen_smtp"; + version = "0.9.0"; + sha256 = + "5a05f23a7cbe0c6242d290b445c6bbc0c287e3d0e09d3fcdc6bcd2c8973b6688"; + }; + + meta = { + longDescription = ''A generic Erlang SMTP server framework that + can be extended via callback modules in the OTP + style. ''; + + homepage = "https://github.com/Vagabond/gen_smtp"; + }; + } // packageOverrides) + ) {}; + + gen_smtp = gen_smtp_0_9_0; + + gendex_0_5_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "gendex"; + version = "0.5.1"; + src = fetchHex { + pkg = "gendex"; + version = "0.5.1"; + sha256 = + "b3eedba31b1a76ab33e6b57689e4312625fafb2667ac7b485df22c05b4c9439f"; + }; + + meta = { + description = ''Gendex tells you the most likely gender of a + person based on first name.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dre1080/gendex"; + }; + } // packageOverrides) + ) {}; + + gendex = gendex_0_5_1; + + geocalc_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "geocalc"; + version = "0.4.0"; + src = fetchHex { + pkg = "geocalc"; + version = "0.4.0"; + sha256 = + "353bcb1efc5b64fc3f8ca33338e51b47ae5f39b272da79be7f1ff7a6daa8dafb"; + }; + + meta = { + description = ''Calculate distance, bearing and more between + latitude/longitude points.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yltsrc/geocalc"; + }; + } // packageOverrides) + ) {}; + + geocalc = geocalc_0_4_0; + + geohash_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "geohash"; + version = "0.1.1"; + src = fetchHex { + pkg = "geohash"; + version = "0.1.1"; + sha256 = + "ffca8ce73cce9c52aae2000c5f417009b87f23d6e2df69cd6985bc5cc05aa998"; + }; + + meta = { + description = ''Geohash encode/decode implementation for + Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/polmuz/elixir-geohash"; + }; + } // packageOverrides) + ) {}; + + geohash = geohash_0_1_1; + + geolix_0_9_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }: + buildMix ({ + name = "geolix"; + version = "0.9.0"; + src = fetchHex { + pkg = "geolix"; + version = "0.9.0"; + sha256 = + "05bf3057a8997aaf70abc2e8f3ef04679c12b061829af263b3bfb44ad3e8e6a0"; + }; + beamDeps = [ poolboy_1_5_1 ]; + + meta = { + description = ''MaxMind GeoIP2 database reader/decoder''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/mneudert/geolix"; + }; + } // packageOverrides) + ) {}; + + geolix = geolix_0_9_0; + + getopt_0_8_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "getopt"; + version = "0.8.2"; + src = fetchHex { + pkg = "getopt"; + version = "0.8.2"; + sha256 = + "736e6db3679fbbad46373efb96b69509f8e420281635e9d92989af9f0a0483f7"; + }; + + meta = { + description = ''Command-line options parser for Erlang''; + + homepage = "https://github.com/jcomellas/getopt"; + }; + } // packageOverrides) + ) {}; + + getopt = getopt_0_8_2; + + gettext_0_10_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "gettext"; + version = "0.10.0"; + src = fetchHex { + pkg = "gettext"; + version = "0.10.0"; + sha256 = + "c37747dced24fe00cb4245cb348a36556fa82851c10748cfe4c6a0253aea374e"; + }; + + meta = { + description = ''Internationalization and localization through + gettext''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixir-lang/gettext"; + }; + } // packageOverrides) + ) {}; + + gettext = gettext_0_10_0; + + gh_webhook_plug_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "gh_webhook_plug"; + version = "0.0.2"; + src = fetchHex { + pkg = "gh_webhook_plug"; + version = "0.0.2"; + sha256 = + "f89c7b883923aea3a3c488e3344390e0771735df72dad7fec270ce49aba88854"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + longDescription = ''This Plug makes it easy to listen and respond + to Github webhook requests in your Elixir + apps.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/emilsoman/gh_webhook_plug"; + }; + } // packageOverrides) + ) {}; + + gh_webhook_plug = gh_webhook_plug_0_0_2; + + gibran_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "gibran"; + version = "0.0.2"; + src = fetchHex { + pkg = "gibran"; + version = "0.0.2"; + sha256 = + "bdf0eb8c7469ac17e14e898b26fb47d4a360409f7a750bfde5d7d0765f327ca4"; + }; + + meta = { + description = ''An Elixir natural language processor.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/abitdodgy/gibran"; + }; + } // packageOverrides) + ) {}; + + gibran = gibran_0_0_2; + + git_cli_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "git_cli"; + version = "0.2.0"; + src = fetchHex { + pkg = "git_cli"; + version = "0.2.0"; + sha256 = + "8e52506764fd6ba5f153d2bcd5635c160ed83a7a4e8834b4e67eee317a37f962"; + }; + + meta = { + description = ''A simple interface to Git CLI''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tuvistavie/elixir-git-cli"; + }; + } // packageOverrides) + ) {}; + + git_cli = git_cli_0_2_0; + + gitex_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "gitex"; + version = "0.1.0"; + src = fetchHex { + pkg = "gitex"; + version = "0.1.0"; + sha256 = + "ac3bfa723cf2f734837fc7d89a330fa80156f96eaa2e6326d2ab60880a804de7"; + }; + + meta = { + longDescription = ''Elixir implementation of the Git object + storage, but with the goal to implement the same + semantic with other storage and topics''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/gitex"; + }; + } // packageOverrides) + ) {}; + + gitex_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "gitex"; + version = "0.2.0"; + src = fetchHex { + pkg = "gitex"; + version = "0.2.0"; + sha256 = + "68074becf5e9a01d00096c306a05b023d0107bafca178ff0f043f893b7b95450"; + }; + + meta = { + longDescription = ''Elixir implementation of the Git object + storage, but with the goal to implement the same + semantic with other storage and topics''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/gitex"; + }; + } // packageOverrides) + ) {}; + + gitex = gitex_0_2_0; + + glitchylicious_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "glitchylicious"; + version = "0.0.1"; + src = fetchHex { + pkg = "glitchylicious"; + version = "0.0.1"; + sha256 = + "2d7c55bd138722ff810006d4b36873d80ad0473e074ccc377e381c5a88f0a9db"; + }; + + meta = { + description = ''Glitching and image corruption library.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/0010-IO/glitchylicious"; + }; + } // packageOverrides) + ) {}; + + glitchylicious = glitchylicious_0_0_1; + + global_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "global"; + version = "1.0.0"; + src = fetchHex { + pkg = "global"; + version = "1.0.0"; + sha256 = + "00b0637bc2d86154af2885807296d4b6616e6b50a2d52c8ce187ddfe317890ee"; + }; + + meta = { + description = ''A wrapper for Erlang`s :global module with + documentation.''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/mgwidmann/global"; + }; + } // packageOverrides) + ) {}; + + global = global_1_0_0; + + gm_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "gm"; + version = "0.0.2"; + src = fetchHex { + pkg = "gm"; + version = "0.0.2"; + sha256 = + "3dc6e1d336afe370219b8b465a651012168f6fe7b9e9d2b0609b6384e1bcb8f7"; + }; + + meta = { + description = ''Idiomatic GraphicsMagick wrapper for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/utkarshkukreti/gm.ex"; + }; + } // packageOverrides) + ) {}; + + gm = gm_0_0_2; + + goldrush_0_1_7 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "goldrush"; + version = "0.1.7"; + src = fetchHex { + pkg = "goldrush"; + version = "0.1.7"; + sha256 = + "a94a74cd363ce5f4970ed8242c551ec62b71939db1bbfd2e030142cab25a4ffe"; + }; + + meta = { + description = ''Small, Fast event processing and monitoring for + Erlang/OTP applications. ''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/DeadZen/goldrush"; + }; + } // packageOverrides) + ) {}; + + goldrush = goldrush_0_1_7; + + good_enough_geoid_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, csv_1_3_3 }: + buildMix ({ + name = "good_enough_geoid"; + version = "0.0.2"; + src = fetchHex { + pkg = "good_enough_geoid"; + version = "0.0.2"; + sha256 = + "7b2a556206f71e743d77c26a55b60b3282bd799b8254510f62afe2a4ec330746"; + }; + beamDeps = [ csv_1_3_3 ]; + + meta = { + description = ''Get EGM Geoid heights that are good enough for + some purposes (maybe yours).''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/code-lever/good-enough-geoid-elixir"; + }; + } // packageOverrides) + ) {}; + + good_enough_geoid = good_enough_geoid_0_0_2; + + good_times_1_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "good_times"; + version = "1.1.1"; + src = fetchHex { + pkg = "good_times"; + version = "1.1.1"; + sha256 = + "1ecb4524b506a5dde5fa9e2312d6f98249b4b45e49a74cf799a8577b52157b90"; + }; + + meta = { + description = ''Expressive and easy to use datetime functions.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/DevL/good_times"; + }; + } // packageOverrides) + ) {}; + + good_times = good_times_1_1_1; + + google_auth_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + module_mocker_0_2_0, + cowboy_1_0_4, + access_token_extractor_0_1_1 + }: + buildMix ({ + name = "google_auth"; + version = "0.0.2"; + src = fetchHex { + pkg = "google_auth"; + version = "0.0.2"; + sha256 = + "029f2399456a7b7474635cab36544d35e200ddd7a470a905191de0fc3612adb5"; + }; + beamDeps = [ + plug_1_1_3 + module_mocker_0_2_0 + cowboy_1_0_4 + access_token_extractor_0_1_1 + ]; + + meta = { + longDescription = ''Simple Plug to provide google based + authentication. Just pass access_token received + from client side google auth flow and this plug + will get name, emai and picture of user from + google and add it to private inside Plug.Conn''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rohanpujaris/google_auth"; + }; + } // packageOverrides) + ) {}; + + google_auth = google_auth_0_0_2; + + gproc_0_3_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "gproc"; + version = "0.3.1"; + src = fetchHex { + pkg = "gproc"; + version = "0.3.1"; + sha256 = + "3c449925a5cbf57cc40d13c6c282bc1080b5ed3bad97e1acdbe969fd63a65fce"; + }; + + meta = { + longDescription = ''Gproc is a process dictionary for Erlang, + which provides a number of useful features + beyond what the built-in dictionary has: * Use + any term as a process alias * Register a process + under several aliases * Non-unique properties + can be registered simultaneously by many + processes * QLC and match specification + interface for efficient queries on the + dictionary * Await registration, let`s you wait + until a process registers itself * Atomically + give away registered names and properties to + another process * Counters, and aggregated + counters, which automatically maintain the total + of all counters with a given name * Global + registry, with all the above functions applied + to a network of nodes''; + license = stdenv.lib.licenses.epl10; + homepage = "https://github.com/uwiger/gproc"; + }; + } // packageOverrides) + ) {}; + + gproc_0_5_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "gproc"; + version = "0.5.0"; + src = fetchHex { + pkg = "gproc"; + version = "0.5.0"; + sha256 = + "5bc0fa4e999a6665b92ce57a7f12d7e9d1c26bfc39b0f657994be05cd3818b18"; + }; + + meta = { + longDescription = ''Gproc is a process dictionary for Erlang, + which provides a number of useful features + beyond what the built-in dictionary has: * Use + any term as a process alias * Register a process + under several aliases * Non-unique properties + can be registered simultaneously by many + processes * QLC and match specification + interface for efficient queries on the + dictionary * Await registration, let`s you wait + until a process registers itself * Atomically + give away registered names and properties to + another process * Counters, and aggregated + counters, which automatically maintain the total + of all counters with a given name * Global + registry, with all the above functions applied + to a network of nodes''; + license = stdenv.lib.licenses.epl10; + homepage = "https://github.com/uwiger/gproc"; + }; + } // packageOverrides) + ) {}; + + gproc = gproc_0_5_0; + + graphex_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "graphex"; + version = "0.2.1"; + src = fetchHex { + pkg = "graphex"; + version = "0.2.1"; + sha256 = + "9279db515110de152479903488b1df6ad2de409f5b48d00fac55211bfab2e728"; + }; + + meta = { + description = ''A task graph execution library for elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stocks29/graphex"; + }; + } // packageOverrides) + ) {}; + + graphex = graphex_0_2_1; + + graphmath_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "graphmath"; + version = "1.0.2"; + src = fetchHex { + pkg = "graphmath"; + version = "1.0.2"; + sha256 = + "6be38a7f4c6167f2c766ee74fd2642c8d98412c4b2bd4c1238cad493f30f4524"; + }; + + meta = { + description = ''Graphmath is a library for doing 2D and 3D + mathemtical operations.''; + license = with stdenv.lib.licenses; [ free wtfpl free ]; + homepage = "https://github.com/crertel/graphmath"; + }; + } // packageOverrides) + ) {}; + + graphmath = graphmath_1_0_2; + + graphql_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "graphql"; + version = "0.2.0"; + src = fetchHex { + pkg = "graphql"; + version = "0.2.0"; + sha256 = + "2469337ef663fb63922e67beafa2a50d56de14176c699758a855210140c269df"; + }; + + meta = { + description = ''GraphQL Elixir implementation''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/graphql-elixir/graphql"; + }; + } // packageOverrides) + ) {}; + + graphql = graphql_0_2_0; + + graphql_ex_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "graphql_ex"; + version = "0.0.1"; + src = fetchHex { + pkg = "graphql_ex"; + version = "0.0.1"; + sha256 = + "51884d5275d354b915db03eb390e858ead88b3f3e4f699b2fa7dc8eb442bc343"; + }; + meta = { }; + } // packageOverrides) + ) {}; + + graphql_ex = graphql_ex_0_0_1; + + gravatarify_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "gravatarify"; + version = "0.1.0"; + src = fetchHex { + pkg = "gravatarify"; + version = "0.1.0"; + sha256 = + "d11f416611ed802d72e57f649c74f17c6dbf0e751da87e355cbfd14d4047d17e"; + }; + + meta = { + description = ''Gravatar images with an ease''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/shiroyasha/gravatarify"; + }; + } // packageOverrides) + ) {}; + + gravatarify = gravatarify_0_1_0; + + gray_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "gray"; + version = "0.0.2"; + src = fetchHex { + pkg = "gray"; + version = "0.0.2"; + sha256 = + "95b071e0742ed10298c5d0ff027aec3eaadf3a807ed5e88bd4d2861a5220be62"; + }; + + meta = { + longDescription = ''Package to help you operate with [gray codes] + (https://en.wikipedia.org/wiki/Gray_code)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hashd/gray"; + }; + } // packageOverrides) + ) {}; + + gray = gray_0_0_2; + + growl_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "growl"; + version = "0.0.2"; + src = fetchHex { + pkg = "growl"; + version = "0.0.2"; + sha256 = + "0b43fba8d18349b5bd507b457016298cfafea4a50831e8ce944569b45d3bceb8"; + }; + + meta = { + longDescription = ''# Growl A simple wrapper to the command line + interface for the [Growl OSX notification + system](http://growl.info/). ## Setup ```Elixir + defp deps do [ {:growl, github: + \"zhallett/growl\"} ] ``` ## Usage Within the + script you would like to create a `growl` + notification, make the module call as follows: + ```Elixir Growl.notify(\"This is a + notification\") ``` The API accepts messages in + a string format, as well as a list. If the first + argument is a list, the first object is the + title line, with subsequent lines being the body + of the notification. ```Elixir + Growl.notify([\"Example\", \"This is an example + notification\"]) ``` would give the following + notification: ![Forced + Update](https://github.com/zhallett/growl/blob/master/multi_line_notification.png?raw=true + \"Multi-Line notification Screenshot\")) ## + Contributing 1. Fork it 2. Create your feature + branch (`git checkout -b my-new-feature`) 3. + Commit your changes (`git commit -am `Add some + feature``) 4. Push to the branch (`git push + origin my-new-feature`) 5. Create new Pull + Request ''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/zhallett/growl"; + }; + } // packageOverrides) + ) {}; + + growl = growl_0_0_2; + + guardsafe_0_5_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "guardsafe"; + version = "0.5.0"; + src = fetchHex { + pkg = "guardsafe"; + version = "0.5.0"; + sha256 = + "e6808876c07f21d78c3935c0607791cd2ceec40f3b855fa03774e8087bcfc277"; + }; + + meta = { + description = ''Macros expanding into code that can be safely + used in guard clauses.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/DevL/guardsafe"; + }; + } // packageOverrides) + ) {}; + + guardsafe = guardsafe_0_5_0; + + gun_1_0_0_pre_1 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + ranch_1_1_0, + cowlib_1_3_0 + }: + buildRebar3 ({ + name = "gun"; + version = "1.0.0-pre.1"; + src = fetchHex { + pkg = "gun"; + version = "1.0.0-pre.1"; + sha256 = + "53aca19e83b15127aa4e299435823b367d5ba6797852984af6c2b9b493be9d56"; + }; + + beamDeps = [ ranch_1_1_0 cowlib_1_3_0 ]; + + meta = { + description = ''Asynchronous SPDY, HTTP and Websocket client.''; + + }; + } // packageOverrides) + ) {}; + + gun = gun_1_0_0_pre_1; + + gurka_0_1_7 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "gurka"; + version = "0.1.7"; + src = fetchHex { + pkg = "gurka"; + version = "0.1.7"; + sha256 = + "b46c96446f46a53411a3b45d126ec19e724178818206ca1d2dd16abff28df6b5"; + }; + + meta = { + description = ''Erlang implementation of Cucumber''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + gurka = gurka_0_1_7; + + haikunator_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "haikunator"; + version = "1.0.1"; + src = fetchHex { + pkg = "haikunator"; + version = "1.0.1"; + sha256 = + "60692df3a559df14bac6a8c115091977f0a45eea55123a5cb37e3d763cbe92e8"; + }; + + meta = { + longDescription = ''Generate Heroku-like memorable random names + to use in your apps or anywhere else.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/knrz/Haikunator"; + }; + } // packageOverrides) + ) {}; + + haikunator = haikunator_1_0_1; + + happy_1_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "happy"; + version = "1.1.1"; + src = fetchHex { + pkg = "happy"; + version = "1.1.1"; + sha256 = + "3b2ee083ea1d68063df4fb0561eb462703e6188d9352d0763b458ee6ce385060"; + }; + + meta = { + longDescription = ''Happy path programming in elixir. Alternative + to ok_jose, elixir`s 1.2 `with` keyword and that + kind of stuff.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/vic/happy"; + }; + } // packageOverrides) + ) {}; + + happy = happy_1_1_1; + + harakiri_0_6_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "harakiri"; + version = "0.6.0"; + src = fetchHex { + pkg = "harakiri"; + version = "0.6.0"; + sha256 = + "0cd6f40db8d2e475ea4b9ae4c872656171bced2571e8f86caf49ac7680656b94"; + }; + + meta = { + description = ''Help applications do things to themselves.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rubencaro/harakiri"; + }; + } // packageOverrides) + ) {}; + + harakiri = harakiri_0_6_0; + + hash_ring_0_4_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "hash_ring"; + version = "0.4.0"; + src = fetchHex { + pkg = "hash_ring"; + version = "0.4.0"; + sha256 = + "97f7b4252e660ae3c66fd163277267d3445cfea097342027fe6cc3512fdafd16"; + }; + + meta = { + description = ''Consistent Hash Ring''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sile/hash_ring"; + }; + } // packageOverrides) + ) {}; + + hash_ring = hash_ring_0_4_0; + + hashids_2_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "hashids"; + version = "2.0.2"; + src = fetchHex { + pkg = "hashids"; + version = "2.0.2"; + sha256 = + "3dae063908483454ec691e61da580a056997b4c9affcf12b2330937ee48e6bf0"; + }; + + meta = { + description = ''Hashids lets you obfuscate numerical identifiers + via reversible mapping.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/alco/hashids-elixir"; + }; + } // packageOverrides) + ) {}; + + hashids = hashids_2_0_2; + + heap_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "heap"; + version = "1.0.0"; + src = fetchHex { + pkg = "heap"; + version = "1.0.0"; + sha256 = + "39ddb188337ef43dd46e1920abba0bb88821a8cc19cc8688aa36045a58f733d0"; + }; + + meta = { + description = ''Heap data structure and tools''; + + }; + } // packageOverrides) + ) {}; + + heap = heap_1_0_0; + + heapq_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "heapq"; + version = "0.0.1"; + src = fetchHex { + pkg = "heapq"; + version = "0.0.1"; + sha256 = + "60bc20c109360c6899203f4015fae42c9e5a4f82707f76b064e10d6da135d4fd"; + }; + + meta = { + description = ''A Heap-based Priority Queue Implementation in + Elixir.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/takscape/elixir-heapq"; + }; + } // packageOverrides) + ) {}; + + heapq = heapq_0_0_1; + + hedwig_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, gproc_0_5_0 }: + buildMix ({ + name = "hedwig"; + version = "0.3.0"; + src = fetchHex { + pkg = "hedwig"; + version = "0.3.0"; + sha256 = + "2a1dfd91c56c43e804fbfb7a24fcaee67f17add19615e66321205ad486231e53"; + }; + beamDeps = [ gproc_0_5_0 ]; + + meta = { + description = ''An adapter-based chat bot framework''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hedwig-im/hedwig"; + }; + } // packageOverrides) + ) {}; + + hedwig_1_0_0_rc3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, gproc_0_5_0 }: + buildMix ({ + name = "hedwig"; + version = "1.0.0-rc3"; + src = fetchHex { + pkg = "hedwig"; + version = "1.0.0-rc3"; + sha256 = + "846347c6ae462e98b8c8c8a60f0bef8ee2c4ffa28463a0df030ae8a938cc773f"; + }; + beamDeps = [ gproc_0_5_0 ]; + + meta = { + description = ''An adapter-based chat bot framework''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hedwig-im/hedwig"; + }; + } // packageOverrides) + ) {}; + + hedwig = hedwig_1_0_0_rc3; + + hermes_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, chronos_1_5_1 }: + buildMix ({ + name = "hermes"; + version = "0.1.0"; + src = fetchHex { + pkg = "hermes"; + version = "0.1.0"; + sha256 = + "f28880392a8b1b027c58c387870099f854f842fdeb1f7a0ba94a0b1ca07643bf"; + }; + beamDeps = [ chronos_1_5_1 ]; + + meta = { + longDescription = ''Is a mailer component for sending & recieving + emails. The name comes from the greek messanger + of the gods.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/nurugger07/hemes"; + }; + } // packageOverrides) + ) {}; + + hermes = hermes_0_1_0; + + hex_math_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "hex_math"; + version = "0.0.2"; + src = fetchHex { + pkg = "hex_math"; + version = "0.0.2"; + sha256 = + "1dd9284c402d06bcd63ccb8df6022342defb2de4bd666066ed409e3b3c47761b"; + }; + + meta = { + description = ''Library for working with hex grids.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tjcelaya/hex_math"; + }; + } // packageOverrides) + ) {}; + + hex_math = hex_math_0_0_2; + + hexate_0_5_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "hexate"; + version = "0.5.1"; + src = fetchHex { + pkg = "hexate"; + version = "0.5.1"; + sha256 = + "b146d4c48380bef3eee74e16bc243f91783f72502759f1f18460b6a8da441270"; + }; + + meta = { + description = ''A simple module for working with hex strings in + Elixir. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rjsamson/hexate"; + }; + } // packageOverrides) + ) {}; + + hexate = hexate_0_5_1; + + hexbot_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "hexbot"; + version = "0.0.1"; + src = fetchHex { + pkg = "hexbot"; + version = "0.0.1"; + sha256 = + "f9b8c9805468f7b93fa88440f1e75d8ed2fc3b7d11a68c455abf81efcc31590c"; + }; + + meta = { + description = ''A hubot-like bot framework for chatops.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tombell/hexbot"; + }; + } // packageOverrides) + ) {}; + + hexbot = hexbot_0_0_1; + + hexdocset_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, floki_0_0_5 }: + buildMix ({ + name = "hexdocset"; + version = "1.0.0"; + src = fetchHex { + pkg = "hexdocset"; + version = "1.0.0"; + sha256 = + "846ed02411d759710f0f72a401d81a67cbc181421e461d3246540b3d471044be"; + }; + beamDeps = [ floki_0_0_5 ]; + + meta = { + description = ''Convert hex doc to Dash.app`s docset format.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yesmeck/hexdocset"; + }; + } // packageOverrides) + ) {}; + + hexdocset = hexdocset_1_0_0; + + hlc_2_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "hlc"; + version = "2.0.0"; + src = fetchHex { + pkg = "hlc"; + version = "2.0.0"; + sha256 = + "460ac04654e920e068d1fd17aec1f78b1879cc42ac7f3def7497f0d1cc5056ad"; + }; + + meta = { + description = ''hybrid logical clock''; + + homepage = "https://github.com/barrel-db/hlc"; + }; + } // packageOverrides) + ) {}; + + hlc = hlc_2_0_0; + + hoax_0_11_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "hoax"; + version = "0.11.1"; + src = fetchHex { + pkg = "hoax"; + version = "0.11.1"; + sha256 = + "49476b151d5aac771fca9fc079c745339203d5a7313b357e90942b5d929d0110"; + }; + + meta = { + description = ''Yet another mocking library for Erlang''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/xenolinguist/hoax"; + }; + } // packageOverrides) + ) {}; + + hoax = hoax_0_11_1; + + holidays_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "holidays"; + version = "0.1.1"; + src = fetchHex { + pkg = "holidays"; + version = "0.1.1"; + sha256 = + "098f192bd02f1fd68fd22ae69dc608a03e89a4c814c3c3901d56c8f697cda622"; + }; + + meta = { + description = ''Library for finding which holidays fall on given + dates.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/CoderDennis/holidays"; + }; + } // packageOverrides) + ) {}; + + holidays = holidays_0_1_1; + + hooks_1_1_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "hooks"; + version = "1.1.1"; + src = fetchHex { + pkg = "hooks"; + version = "1.1.1"; + sha256 = + "6834ad3a2a624a5ffd49e9cb146ff49ded423b67f31905b122d24128c72c5c85"; + }; + + meta = { + description = ''generic plugin & hook system''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/barrel-db/hooks"; + }; + } // packageOverrides) + ) {}; + + hooks = hooks_1_1_1; + + hpack_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "hpack"; + version = "1.0.0"; + src = fetchHex { + pkg = "hpack"; + version = "1.0.0"; + sha256 = + "092fe46ef1c59bf2d7d47f627520321eb6965861db1516c95ef19d484958aea5"; + }; + + meta = { + longDescription = ''Implementation of the + [HPack](https://http2.github.io/http2-spec/compression.html) + protocol, a compression format for efficiently + representing HTTP header fields, to be used in + HTTP/2.''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + hpack = hpack_1_0_0; + + html_builder_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "html_builder"; + version = "0.1.1"; + src = fetchHex { + pkg = "html_builder"; + version = "0.1.1"; + sha256 = + "7cba41180419a26e2fb8ff1c075efcdf31e4079e06144d58623c32c1de3835d9"; + }; + + meta = { + description = ''generate html in elixir with simple data + structures''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/html_builder"; + }; + } // packageOverrides) + ) {}; + + html_builder = html_builder_0_1_1; + + html_entities_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "html_entities"; + version = "0.3.0"; + src = fetchHex { + pkg = "html_entities"; + version = "0.3.0"; + sha256 = + "93811511394efeee964f6e7df3b72b37ad39c1d185030c3561aebf1c15c4d995"; + }; + + meta = { + description = ''Decode and encode HTML entities in a string.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/martinsvalin/html_entities"; + }; + } // packageOverrides) + ) {}; + + html_entities = html_entities_0_3_0; + + html_to_pdf_0_5_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "html_to_pdf"; + version = "0.5.2"; + src = fetchHex { + pkg = "html_to_pdf"; + version = "0.5.2"; + sha256 = + "7adcde56c221e8f2447837d3b5983775f53071035d9ce9f179635a5e94c795e3"; + }; + + meta = { + description = ''Super simple library for turning raw HTML or + webpages into beautiful PDFs.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mattweldon/html_to_pdf"; + }; + } // packageOverrides) + ) {}; + + html_to_pdf = html_to_pdf_0_5_2; + + http2_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "http2"; + version = "0.0.2"; + src = fetchHex { + pkg = "http2"; + version = "0.0.2"; + sha256 = + "fd8354d9c7800223ffcb66c2c359a40a5be3809ea4e3b2046fee253a5d049250"; + }; + + meta = { + description = ''HPACK implementation for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kiennt/hpack"; + }; + } // packageOverrides) + ) {}; + + http2 = http2_0_0_2; + + http_params_serializer_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "http_params_serializer"; + version = "0.1.1"; + src = fetchHex { + pkg = "http_params_serializer"; + version = "0.1.1"; + sha256 = + "7d6c2184814b7232130a3193c9832827c5eeaaae928155d96863ec426da6ce69"; + }; + + meta = { + longDescription = ''A small library to serialize deeply nested + datastructures into HTTP parameters that most + backends do understand''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/ruby2elixir/http_params_serializer"; + }; + } // packageOverrides) + ) {}; + + http_params_serializer = http_params_serializer_0_1_1; + + http_router_0_0_8 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + xml_builder_0_0_8, + poison_1_5_2, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "http_router"; + version = "0.0.8"; + src = fetchHex { + pkg = "http_router"; + version = "0.0.8"; + sha256 = + "9a2844cc8c880621ca2689e0056f50e2c19e3b0e87a8e2524489459b377a8dc3"; + }; + beamDeps = [ + xml_builder_0_0_8 poison_1_5_2 plug_1_1_3 cowboy_1_0_4 + ]; + + meta = { + longDescription = ''HTTP Router with various macros to assist in + developing your application and organizing your + code''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/sugar-framework/elixir-http-router"; + }; + } // packageOverrides) + ) {}; + + http_router = http_router_0_0_8; + + http_signature_1_1_0 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "http_signature"; + version = "1.1.0"; + src = fetchHex { + pkg = "http_signature"; + version = "1.1.0"; + sha256 = + "3e6036d9c29289ed0e35dd6f41821dec9061ce20aad3c4d35dcbae8c84eb3baa"; + }; + + meta = { + description = ''Erlang and Elixir implementations of Joyent`s + HTTP Signature Scheme.''; + license = stdenv.lib.licenses.mpl20; + homepage = + "https://github.com/potatosalad/erlang-http_signature"; + }; + } // packageOverrides) + ) {}; + + http_signature = http_signature_1_1_0; + + httparrot_0_3_4 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + exjsx_3_2_0, + cowboy_1_0_4 + }: + buildMix ({ + name = "httparrot"; + version = "0.3.4"; + src = fetchHex { + pkg = "httparrot"; + version = "0.3.4"; + sha256 = + "05dc3a30de92a5fc284c937339131c478d57b125cb3d65e97b99bc0fce3d3452"; + }; + beamDeps = [ exjsx_3_2_0 cowboy_1_0_4 ]; + + meta = { + description = '' HTTP Request & Response Server. An incomplete + clone of http://httpbin.org ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/httparrot"; + }; + } // packageOverrides) + ) {}; + + httparrot = httparrot_0_3_4; + + httpotion_2_2_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, ibrowse_4_2_2 }: + buildMix ({ + name = "httpotion"; + version = "2.2.2"; + src = fetchHex { + pkg = "httpotion"; + version = "2.2.2"; + sha256 = + "47c6b6c535592547366fe16bfa175385e7de09eecbb2dc6b0f2cea526ef45fbd"; + }; + beamDeps = [ ibrowse_4_2_2 ]; + + meta = { + description = ''Fancy HTTP client for Elixir, based on + ibrowse.''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/myfreeweb/httpotion"; + }; + } // packageOverrides) + ) {}; + + httpotion = httpotion_2_2_2; + + huami_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "huami"; + version = "0.0.1"; + src = fetchHex { + pkg = "huami"; + version = "0.0.1"; + sha256 = + "c12f38e24e7b085422e5f57c991792cd5045bd083574b1cca0458d8f2dfae40d"; + }; + + meta = { + description = ''A CLI version of flower password writing in + Elixir. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yesmeck/huami.ex"; + }; + } // packageOverrides) + ) {}; + + huami = huami_0_0_1; + + hufflehoff_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "hufflehoff"; + version = "0.0.1"; + src = fetchHex { + pkg = "hufflehoff"; + version = "0.0.1"; + sha256 = + "f10c6ffceb3b6d161ff5aa4dfeb8fe77affabf073f0bc7059d8296a4256093f2"; + }; + + meta = { + description = ''A Huffman encoder/decoder for HTTP/2 headers.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sideshow/hufflehoff"; + }; + } // packageOverrides) + ) {}; + + hufflehoff = hufflehoff_0_0_1; + + huffman_1_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "huffman"; + version = "1.1.1"; + src = fetchHex { + pkg = "huffman"; + version = "1.1.1"; + sha256 = + "6983b0eebb29e6f7b4e971cf46e04ebcf52f073ca97f7ed29b5c0de68d58c496"; + }; + + meta = { + description = ''Huffman encoding and decoding.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/SenecaSystems/huffman"; + }; + } // packageOverrides) + ) {}; + + huffman = huffman_1_1_1; + + hulaaki_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "hulaaki"; + version = "0.0.2"; + src = fetchHex { + pkg = "hulaaki"; + version = "0.0.2"; + sha256 = + "d1bea8de565a4ca49f0e362c37597c3e8744b0323a7e9104cf09ac555e713ebe"; + }; + + meta = { + description = ''An MQTT 3.1.1 client library written in + Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/suvash/hulaaki"; + }; + } // packageOverrides) + ) {}; + + hulaaki = hulaaki_0_0_2; + + hypermedia_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "hypermedia"; + version = "0.0.1"; + src = fetchHex { + pkg = "hypermedia"; + version = "0.0.1"; + sha256 = + "595c174772c45206f293f61b338105e61d96dba1436b07ed5b3b12eb07842721"; + }; + + meta = { + description = ''A Elixir library for creating HAL/JSON Hypermedia + APIs''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jurriaan/hypermedia"; + }; + } // packageOverrides) + ) {}; + + hypermedia = hypermedia_0_0_1; + + iam_role_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, jsone_1_2_1 }: + buildMix ({ + name = "iam_role"; + version = "1.0.0"; + src = fetchHex { + pkg = "iam_role"; + version = "1.0.0"; + sha256 = + "acfc5d5c5130a36dfb2b460f790bd9e32bf39274f17333bd65c28d216983761d"; + }; + beamDeps = [ jsone_1_2_1 ]; + + meta = { + description = ''Application for automatically fetching AWS IAM + role security credentials.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsharju/iam_role"; + }; + } // packageOverrides) + ) {}; + + iam_role = iam_role_1_0_0; + + ibrowse_4_2_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "ibrowse"; + version = "4.2.2"; + src = fetchHex { + pkg = "ibrowse"; + version = "4.2.2"; + sha256 = + "b800cb7442bcc852c6832821e9d0a7098ff626e1415bddaeff4596640b31c0ae"; + }; + + meta = { + description = ''Erlang HTTP client application''; + license = with stdenv.lib.licenses; [ free bsd3 ]; + homepage = "https://github.com/cmullaparthi/ibrowse"; + }; + } // packageOverrides) + ) {}; + + ibrowse = ibrowse_4_2_2; + + identicon_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "identicon"; + version = "0.2.0"; + src = fetchHex { + pkg = "identicon"; + version = "0.2.0"; + sha256 = + "38b11bb3ed2c76956fcbf8673be8cbf6570ef8a85d92b51ce45304ed0368d88c"; + }; + + meta = { + description = ''Elixir library for generating 5x5 symmetrical + identicons''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/rbishop/identicon"; + }; + } // packageOverrides) + ) {}; + + identicon = identicon_0_2_0; + + idna_1_0_2 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "idna"; + version = "1.0.2"; + src = fetchHex { + pkg = "idna"; + version = "1.0.2"; + sha256 = + "a5d645e307aa4f67efe31682f720b7eaf431ab148b3d6fb66cbaf6314499610f"; + }; + + meta = { + description = ''A pure Erlang IDNA implementation''; + + homepage = "https://github.com/benoitc/erlang-idna"; + }; + } // packageOverrides) + ) {}; + + idna_1_0_3 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "idna"; + version = "1.0.3"; + src = fetchHex { + pkg = "idna"; + version = "1.0.3"; + sha256 = + "357d489a51112db4f216034406834f9172b3c0ff5a12f83fb28b25ca271541d1"; + }; + + meta = { + description = ''A pure Erlang IDNA implementation''; + + homepage = "https://github.com/benoitc/erlang-idna"; + }; + } // packageOverrides) + ) {}; + + idna_1_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "idna"; + version = "1.1.0"; + src = fetchHex { + pkg = "idna"; + version = "1.1.0"; + sha256 = + "d399393011cd2fa93761d70199b604b2f055bcf6cb45cac922870e122d2eb2fe"; + }; + + meta = { + description = ''A pure Erlang IDNA implementation''; + + homepage = "https://github.com/benoitc/erlang-idna"; + }; + } // packageOverrides) + ) {}; + + idna_1_2_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "idna"; + version = "1.2.0"; + src = fetchHex { + pkg = "idna"; + version = "1.2.0"; + sha256 = + "1d724cdafb66397e61774ead242c9b725de7033cde8ea98fa4a91e64ac5ef5b3"; + }; + + meta = { + description = ''A pure Erlang IDNA implementation''; + + homepage = "https://github.com/benoitc/erlang-idna"; + }; + } // packageOverrides) + ) {}; + + idna_2_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "idna"; + version = "2.0.0"; + src = fetchHex { + pkg = "idna"; + version = "2.0.0"; + sha256 = + "881226593c79eb4b2bf7106a3f2995c70ee6ffbb371c8d1bc71f2869686089f4"; + }; + + meta = { + description = ''A pure Erlang IDNA implementation''; + + homepage = "https://github.com/benoitc/erlang-idna"; + }; + } // packageOverrides) + ) {}; + + idna = idna_2_0_0; + + ieex_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ieex"; + version = "0.0.3"; + src = fetchHex { + pkg = "ieex"; + version = "0.0.3"; + sha256 = + "c448a86c7979bc75f98e9eb32473041975fb633bc9715f1965958e4a9dbbd1ff"; + }; + + meta = { + description = ''Biblioteca para validacao de Inscricao + Estadual''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edmaarcosta/IEEx"; + }; + } // packageOverrides) + ) {}; + + ieex = ieex_0_0_3; + + imagineer_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, apex_0_3_7 }: + buildMix ({ + name = "imagineer"; + version = "0.2.1"; + src = fetchHex { + pkg = "imagineer"; + version = "0.2.1"; + sha256 = + "31a8430b89770fdd6ec9d96a6e3d9ea92296dfc57e98bb812cd376e60f2e70f8"; + }; + beamDeps = [ apex_0_3_7 ]; + + meta = { + description = ''Image processing in Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/SenecaSystems/imagineer"; + }; + } // packageOverrides) + ) {}; + + imagineer = imagineer_0_2_1; + + imgex_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "imgex"; + version = "0.1.0"; + src = fetchHex { + pkg = "imgex"; + version = "0.1.0"; + sha256 = + "783e78b0624b87d1431d8acaa790998ac75d8654312e5799eff7b12956246c49"; + }; + + meta = { + description = ''Unofficial client library for generating imgix + URLs in Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ianwalter/imgex"; + }; + } // packageOverrides) + ) {}; + + imgex = imgex_0_1_0; + + immortal_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "immortal"; + version = "0.2.0"; + src = fetchHex { + pkg = "immortal"; + version = "0.2.0"; + sha256 = + "4387bffa9e2c25b8bfed0bf9d80fd918861c6a4098b853138d2398d5b6f24be2"; + }; + + meta = { + description = ''Helpers for fault-tolerant OTP applications''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/danielberkompas/immortal"; + }; + } // packageOverrides) + ) {}; + + immortal = immortal_0_2_0; + + indefinite_article_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "indefinite_article"; + version = "0.0.1"; + src = fetchHex { + pkg = "indefinite_article"; + version = "0.0.1"; + sha256 = + "cb59d3373c5ff05693f74f445e7807d1fe5c38b9cfa6bcedfd9efedb4a0861ae"; + }; + + meta = { + description = ''Returns you the indefinite article of a string + (*a* banana, *an* apple, etc)''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/Buyapowa/indefinite_article"; + }; + } // packageOverrides) + ) {}; + + indefinite_article = indefinite_article_0_0_1; + + inet_cidr_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "inet_cidr"; + version = "1.0.1"; + src = fetchHex { + pkg = "inet_cidr"; + version = "1.0.1"; + sha256 = + "4809be88cf1a436b819acec2b07a33e7ad24beb0cf9b6c8a94217aea7d298d8a"; + }; + + meta = { + longDescription = ''Classless Inter-Domain Routing (CIDR) library + for Elixir Compatible with Erlang`s :inet module + and support for IPv4 and IPv6''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/cobenian/inet_cidr"; + }; + } // packageOverrides) + ) {}; + + inet_cidr = inet_cidr_1_0_1; + + inflex_0_2_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "inflex"; + version = "0.2.4"; + src = fetchHex { + pkg = "inflex"; + version = "0.2.4"; + sha256 = + "f4bf8389a59b04f2b92be024d6234fc3583863f06d23db70324f9cb6b5eba8bf"; + }; + + meta = { + description = ''An Elixir library for handling word + inflections.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/nurugger07/inflex"; + }; + } // packageOverrides) + ) {}; + + inflex_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "inflex"; + version = "0.3.0"; + src = fetchHex { + pkg = "inflex"; + version = "0.3.0"; + sha256 = + "2cb9896a2572eb0989d92d7d98653829e079ccb804aa1b98beafff7678275852"; + }; + + meta = { + description = ''An Elixir library for handling word + inflections.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/nurugger07/inflex"; + }; + } // packageOverrides) + ) {}; + + inflex_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "inflex"; + version = "1.0.0"; + src = fetchHex { + pkg = "inflex"; + version = "1.0.0"; + sha256 = + "549ebe94420051cdf845028372d1f89c8fbdd7b5f5ddd51e0619b827b7be6793"; + }; + + meta = { + description = ''An Elixir library for handling word + inflections.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/nurugger07/inflex"; + }; + } // packageOverrides) + ) {}; + + inflex_1_4_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "inflex"; + version = "1.4.1"; + src = fetchHex { + pkg = "inflex"; + version = "1.4.1"; + sha256 = + "d316fecd9db83db97828bbcbdb689f5c412e3aaf658329cf479cad5baa856c92"; + }; + + meta = { + description = ''An Elixir library for handling word + inflections.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/nurugger07/inflex"; + }; + } // packageOverrides) + ) {}; + + inflex_1_5_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "inflex"; + version = "1.5.0"; + src = fetchHex { + pkg = "inflex"; + version = "1.5.0"; + sha256 = + "d48609edc5bb7901b95dcc00c1e38f259e8006904865a028954ccfe9336a3384"; + }; + + meta = { + description = ''An Elixir library for handling word + inflections.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/nurugger07/inflex"; + }; + } // packageOverrides) + ) {}; + + inflex = inflex_1_5_0; + + ini_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ini"; + version = "0.0.1"; + src = fetchHex { + pkg = "ini"; + version = "0.0.1"; + sha256 = + "96b86cf664ca8247cdad166c29251ef4ddc156f16f906bdf2ea1c37831fbf804"; + }; + + meta = { + description = ''Module to parse ini files.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nathanjohnson320/ini"; + }; + } // packageOverrides) + ) {}; + + ini = ini_0_0_1; + + insert_ordered_set_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "insert_ordered_set"; + version = "0.0.1"; + src = fetchHex { + pkg = "insert_ordered_set"; + version = "0.0.1"; + sha256 = + "78ebc47d780aa1e8fabce7d4f4d5f3b9c90e1443514ad830b32f7c5184f87634"; + }; + + meta = { + longDescription = ''Provides a data structure with the following + properties: 1. Contains unique values. 2. O(1) + manipulation operations (e.g. insert, delete) by + using an underlying Map. 3. Preserves insertion + order when converting to a list. Allows reverse + insertion ordering.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/localshred/insert_ordered_set"; + }; + } // packageOverrides) + ) {}; + + insert_ordered_set = insert_ordered_set_0_0_1; + + insights_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "insights"; + version = "0.0.2"; + src = fetchHex { + pkg = "insights"; + version = "0.0.2"; + sha256 = + "92794ab7ba760a7b17ffac1f98ecff1a848148d15a1d9fabe58b0150767cddbd"; + }; + + meta = { + longDescription = ''Insights is a wrapper for sending and data + capture for keen.io or others adapters''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/gullitmiranda/insights"; + }; + } // packageOverrides) + ) {}; + + insights = insights_0_0_2; + + instrumental_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "instrumental"; + version = "0.1.3"; + src = fetchHex { + pkg = "instrumental"; + version = "0.1.3"; + sha256 = + "26d3c6dcd2b04d716266afa9d12ba193fc1f038d21c67178e50f77ef1671acec"; + }; + + meta = { + description = ''An Elixir client for Instrumental + (http://instrumentalapp.com).''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/undeadlabs/instrumental-ex"; + }; + } // packageOverrides) + ) {}; + + instrumental = instrumental_0_1_3; + + iplist_1_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + earmark_0_2_1, + cidr_1_0_0 + }: + buildMix ({ + name = "iplist"; + version = "1.0.2"; + src = fetchHex { + pkg = "iplist"; + version = "1.0.2"; + sha256 = + "fae5b5accc8b7a7618c2d1fbf94607ce6e79ca3b493da6643dbb1bd92be30bd4"; + }; + beamDeps = [ earmark_0_2_1 cidr_1_0_0 ]; + + meta = { + description = ''Library and CLI tool to expand IPv4 ranges to + lists of IP numbers''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/digitalronin/iplist"; + }; + } // packageOverrides) + ) {}; + + iplist = iplist_1_0_2; + + iptools_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "iptools"; + version = "0.0.1"; + src = fetchHex { + pkg = "iptools"; + version = "0.0.1"; + sha256 = + "c8733e46e083c7497f3293e6e366e6fe384abb67557a72c3e362434e4eb0665d"; + }; + + meta = { + description = ''A set of functions for validating and + transforming IPv4 addresses''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/blackfist/iptools"; + }; + } // packageOverrides) + ) {}; + + iptools = iptools_0_0_1; + + is_chinese_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "is_chinese"; + version = "1.0.0"; + src = fetchHex { + pkg = "is_chinese"; + version = "1.0.0"; + sha256 = + "907da2e2995c104bb89152d276c41337b6c4075aa866663e3fb7ebe48da8ff62"; + }; + + meta = { + description = ''Check whether string is Chinese''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/lidashuang/is_chinese"; + }; + } // packageOverrides) + ) {}; + + is_chinese = is_chinese_1_0_0; + + is_email_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "is_email"; + version = "0.0.2"; + src = fetchHex { + pkg = "is_email"; + version = "0.0.2"; + sha256 = + "fefcf35b6ca506cd7d2e3d1d850b49e9a2545180db46e291845aa9fd54812d82"; + }; + + meta = { + description = ''Loosely check whether a given string is an + email''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/johnotander/is_email"; + }; + } // packageOverrides) + ) {}; + + is_email = is_email_0_0_2; + + is_up_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, httpotion_2_2_2 }: + buildMix ({ + name = "is_up"; + version = "1.0.0"; + src = fetchHex { + pkg = "is_up"; + version = "1.0.0"; + sha256 = + "8811dde26c0142174987941b6395e1934e54c3a88db1d5b19e38b6f794e93c87"; + }; + beamDeps = [ httpotion_2_2_2 ]; + + meta = { + description = ''Check whether a given url is up.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/johnotander/is_up"; + }; + } // packageOverrides) + ) {}; + + is_up = is_up_1_0_0; + + is_url_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "is_url"; + version = "0.0.1"; + src = fetchHex { + pkg = "is_url"; + version = "0.0.1"; + sha256 = + "4c3f86302e0c675ece51a247838f64ce88335008035463c8c20b21667399d413"; + }; + + meta = { + description = ''Validate a url''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/johnotander/is_url"; + }; + } // packageOverrides) + ) {}; + + is_url = is_url_0_0_1; + + isaac_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "isaac"; + version = "0.0.1"; + src = fetchHex { + pkg = "isaac"; + version = "0.0.1"; + sha256 = + "e43c136931b8003def7cf8a9eaa49e9713ab91a76729c667591e0a4c03511fa1"; + }; + + meta = { + longDescription = ''Isaac is an elixir module for the [ISAAC + Stream + Cipher](http://burtleburtle.net/bob/rand/isaacafa.html) + It wraps around https://github.com/arianvp/ISAAC + which is a port of the ISAAC stream cipher to + platforms which have words bigger than 32 bits. + ''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/arianvp/elixir-isaac"; + }; + } // packageOverrides) + ) {}; + + isaac = isaac_0_0_1; + + iso3166_0_0_3 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + floki_0_8_0 + }: + buildMix ({ + name = "iso3166"; + version = "0.0.3"; + src = fetchHex { + pkg = "iso3166"; + version = "0.0.3"; + sha256 = + "9d531b578e4535fd7b85d8f50da3374d057ae7b7c7ecc522710eb7f638660b79"; + }; + beamDeps = [ poison_2_1_0 floki_0_8_0 ]; + + meta = { + longDescription = ''A library that provides a list of ISO3166 + country names, two letter abbreviations, three + letter abbreviations, and functions for + converting between them.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/joelpm/iso3166ex"; + }; + } // packageOverrides) + ) {}; + + iso3166 = iso3166_0_0_3; + + jequalson_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "jequalson"; + version = "0.1.1"; + src = fetchHex { + pkg = "jequalson"; + version = "0.1.1"; + sha256 = + "5ed0a54b8aaa457cb441b3baafc508d8be4fc90db29a0cc27980eeeb65db18ac"; + }; + + meta = { + description = ''Helpers for testing JSON responses.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dm1try/jequalson"; + }; + } // packageOverrides) + ) {}; + + jequalson = jequalson_0_1_1; + + jesse_0_1_3 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, jsx_2_8_0 }: + buildRebar3 ({ + name = "jesse"; + version = "0.1.3"; + src = fetchHex { + pkg = "jesse"; + version = "0.1.3"; + sha256 = + "679702baf154d8e078c60b8eb4f2b7f53304e24deea03b32cbff350772afba4d"; + }; + + beamDeps = [ jsx_2_8_0 ]; + + meta = { + description = ''jesse''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/for-GET/jesse"; + }; + } // packageOverrides) + ) {}; + + jesse = jesse_0_1_3; + + jiffy_0_14_7 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "jiffy"; + version = "0.14.7"; + src = fetchHex { + pkg = "jiffy"; + version = "0.14.7"; + sha256 = + "2b3b0f7976dae9c8266036e0d7e0398b64ac5207e3beee4c57896e44b2c17e97"; + }; + compilePorts = true; + + meta = { + description = ''JSON Decoder/Encoder.''; + license = with stdenv.lib.licenses; [ mit bsd3 ]; + homepage = "https://github.com/davisp/jiffy"; + }; + } // packageOverrides) + ) {}; + + jiffy = jiffy_0_14_7; + + jobspool_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }: + buildMix ({ + name = "jobspool"; + version = "0.1.0"; + src = fetchHex { + pkg = "jobspool"; + version = "0.1.0"; + sha256 = + "f4ba59374f844fe8ac018606748b120b7860c0f568364514d1dc87eb42829aad"; + }; + beamDeps = [ uuid_1_1_3 ]; + + meta = { + description = ''Simple Elixir jobs pool''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/flupke/exjobspool"; + }; + } // packageOverrides) + ) {}; + + jobspool = jobspool_0_1_0; + + joken_0_13_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "joken"; + version = "0.13.1"; + src = fetchHex { + pkg = "joken"; + version = "0.13.1"; + sha256 = + "f9fd7803403651c891332aabc1f97ca87ad8f01be1262d5a9a51da7987e08163"; + }; + + meta = { + description = ''JWT Library for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/bryanjos/joken"; + }; + } // packageOverrides) + ) {}; + + joken_0_16_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3, + jose_1_7_3 + }: + buildMix ({ + name = "joken"; + version = "0.16.1"; + src = fetchHex { + pkg = "joken"; + version = "0.16.1"; + sha256 = + "a804bfd350f61688f6ce8d9898bc17fd4b59990c054debeea44234d53048d93d"; + }; + beamDeps = [ poison_1_5_2 plug_1_1_3 jose_1_7_3 ]; + + meta = { + description = ''JWT Library for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/bryanjos/joken"; + }; + } // packageOverrides) + ) {}; + + jolt_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "jolt"; + version = "0.1.0"; + src = fetchHex { + pkg = "jolt"; + version = "0.1.0"; + sha256 = + "922498b234a1b0a813255d3abf5caa64a9afdc41eb4d8d71f87d71c41fe792e8"; + }; + beamDeps = [ poison_1_5_2 plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + longDescription = ''A full REST JSON API with zero coding, + powered by Elixir. It is intended to be used as + a command-line tool (just run mix escript.build + first).''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/clarkware/jolt"; + }; + } // packageOverrides) + ) {}; + + jolt = jolt_0_1_0; + + jorel_mix_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "jorel_mix"; + version = "0.0.1"; + src = fetchHex { + pkg = "jorel_mix"; + version = "0.0.1"; + sha256 = + "be990099dc7d13dd22e741d96dd3282ba9096f9e132c047ebc0f134b3d470461"; + }; + + meta = { + description = ''Just anOther RELease assembler''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/emedia-project/jorel_mix"; + }; + } // packageOverrides) + ) {}; + + jorel_mix = jorel_mix_0_0_1; + + jose_1_4_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, base64url_0_0_1 }: + buildMix ({ + name = "jose"; + version = "1.4.2"; + src = fetchHex { + pkg = "jose"; + version = "1.4.2"; + sha256 = + "7bc79dfa28b0194c9334eddeaf33d02b51d4101d5b18f08086503a7b82be7cb0"; + }; + beamDeps = [ base64url_0_0_1 ]; + + meta = { + description = ''JSON Object Signing and Encryption (JOSE) for + Erlang and Elixir.''; + license = stdenv.lib.licenses.mpl20; + homepage = "https://github.com/potatosalad/erlang-jose"; + }; + } // packageOverrides) + ) {}; + + jose_1_7_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, base64url_0_0_1 }: + buildMix ({ + name = "jose"; + version = "1.7.3"; + src = fetchHex { + pkg = "jose"; + version = "1.7.3"; + sha256 = + "d77d20c25873a138da8a64eb867c4115ba9cf44b74c00be2bc255e363da727c8"; + }; + beamDeps = [ base64url_0_0_1 ]; + + meta = { + description = ''JSON Object Signing and Encryption (JOSE) for + Erlang and Elixir.''; + license = stdenv.lib.licenses.mpl20; + homepage = "https://github.com/potatosalad/erlang-jose"; + }; + } // packageOverrides) + ) {}; + + jose = jose_1_7_3; + + jsex_2_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, jsx_2_8_0 }: + buildMix ({ + name = "jsex"; + version = "2.0.0"; + src = fetchHex { + pkg = "jsex"; + version = "2.0.0"; + sha256 = + "98c1501645e31efdbcbb6172983d4deb1335de993966197e6a4343492fa7d872"; + }; + beamDeps = [ jsx_2_8_0 ]; + + meta = { + description = ''json for elixir ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/jsex"; + }; + } // packageOverrides) + ) {}; + + jsex = jsex_2_0_0; + + json_0_3_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "json"; + version = "0.3.3"; + src = fetchHex { + pkg = "json"; + version = "0.3.3"; + sha256 = + "d1986548847189b51f1efb65d196e6ab9f2e88a6878a363aec0e3c77e2550616"; + }; + + meta = { + description = ''Native Elixir library for JSON encoding and + decoding''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/cblage/elixir-json"; + }; + } // packageOverrides) + ) {}; + + json = json_0_3_3; + + json_diff_ex_0_5_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "json_diff_ex"; + version = "0.5.0"; + src = fetchHex { + pkg = "json_diff_ex"; + version = "0.5.0"; + sha256 = + "314fe606c76dea0c5b70ca918f5dd75a89456c6330596d707bbbf70c800352c9"; + }; + + meta = { + description = ''Diff and patch for JSON in Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/olafura/json_diff_ex"; + }; + } // packageOverrides) + ) {}; + + json_diff_ex = json_diff_ex_0_5_0; + + json_logger_0_5_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, json_0_3_3 }: + buildMix ({ + name = "json_logger"; + version = "0.5.1"; + src = fetchHex { + pkg = "json_logger"; + version = "0.5.1"; + sha256 = + "08b4868fe8396fc27fc2d248a8aedac72f8ca82a671a163cc575bfa3e8a2be93"; + }; + beamDeps = [ json_0_3_3 ]; + + meta = { + description = ''A simple library for logging with JSON, best + suited with Logstash.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/LeeroyDing/json_logger"; + }; + } // packageOverrides) + ) {}; + + json_logger = json_logger_0_5_1; + + json_pointer_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "json_pointer"; + version = "0.0.2"; + src = fetchHex { + pkg = "json_pointer"; + version = "0.0.2"; + sha256 = + "150b37bc4ff689758f17aee180fbf8f7226c3eeff7d28a782e6f0a74f859417e"; + }; + + meta = { + longDescription = ''Implementation of RFC 6901 which defines a + string syntax for identifying a specific value + within a JSON document''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/xavier/json_pointer"; + }; + } // packageOverrides) + ) {}; + + json_pointer = json_pointer_0_0_2; + + json_web_token_0_2_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "json_web_token"; + version = "0.2.4"; + src = fetchHex { + pkg = "json_web_token"; + version = "0.2.4"; + sha256 = + "49d11e61cf31e212ccd80bcffe1b9c911144c2399ec062a514394376d037fa8a"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + description = ''Elixir implementation of the JSON Web Token + (JWT), RFC 7519''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/garyf/json_web_token_ex"; + }; + } // packageOverrides) + ) {}; + + json_web_token = json_web_token_0_2_4; + + jsonapi_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "jsonapi"; + version = "0.1.0"; + src = fetchHex { + pkg = "jsonapi"; + version = "0.1.0"; + sha256 = + "b4c7d4797a680f23ae8dae666b4e71573f0bb3330223ebb53985e754ade265c8"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + longDescription = ''Fully functional JSONAPI V1 Serializer as + well as a QueryParser for Plug based projects + and applications.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jeregrine/jsonapi"; + }; + } // packageOverrides) + ) {}; + + jsonapi = jsonapi_0_1_0; + + jsone_1_2_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "jsone"; + version = "1.2.1"; + src = fetchHex { + pkg = "jsone"; + version = "1.2.1"; + sha256 = + "d7e772c545a8df144790c3891d09e3be9f917965ebc0bed301f8fd8d3b319059"; + }; + + meta = { + description = ''Erlang JSON Library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sile/jsone"; + }; + } // packageOverrides) + ) {}; + + jsone = jsone_1_2_1; + + jsx_1_4_5 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "jsx"; + version = "1.4.5"; + src = fetchHex { + pkg = "jsx"; + version = "1.4.5"; + sha256 = + "ff5115611c5dd789cebe3addc07d18b86340f701c52ad063caba6fe8da3a489b"; + }; + + meta = { + longDescription = ''an erlang application for consuming, + producing and manipulating json. inspired by + yajl''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/jsx"; + }; + } // packageOverrides) + ) {}; + + jsx_2_3_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "jsx"; + version = "2.3.1"; + src = fetchHex { + pkg = "jsx"; + version = "2.3.1"; + sha256 = + "b57bc292e08c0f4a796c2d2fbb541265ff92474de294131b62468dc5ae808495"; + }; + + meta = { + longDescription = ''an erlang application for consuming, + producing and manipulating json. inspired by + yajl''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/jsx"; + }; + } // packageOverrides) + ) {}; + + jsx_2_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "jsx"; + version = "2.4.0"; + src = fetchHex { + pkg = "jsx"; + version = "2.4.0"; + sha256 = + "f9044993bfc94371a7757656ab4b9ba2daaad3ddc97df37c2368875eea049b19"; + }; + + meta = { + longDescription = ''an erlang application for consuming, + producing and manipulating json. inspired by + yajl''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/jsx"; + }; + } // packageOverrides) + ) {}; + + jsx_2_6_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "jsx"; + version = "2.6.1"; + src = fetchHex { + pkg = "jsx"; + version = "2.6.1"; + sha256 = + "5d0700bce9b5ef7c4bd5dd1004c9cc80d20a60f1bd02f8792fc3b3b2da90db59"; + }; + + meta = { + longDescription = ''an erlang application for consuming, + producing and manipulating json. inspired by + yajl''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/jsx"; + }; + } // packageOverrides) + ) {}; + + jsx_2_6_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "jsx"; + version = "2.6.2"; + src = fetchHex { + pkg = "jsx"; + version = "2.6.2"; + sha256 = + "6bfccb6461cc3c7d5cc63f3e69ffeb2f1f8de50eca5980065311c056a69a907f"; + }; + + meta = { + longDescription = ''an erlang application for consuming, + producing and manipulating json. inspired by + yajl''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/jsx"; + }; + } // packageOverrides) + ) {}; + + jsx_2_7_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "jsx"; + version = "2.7.1"; + src = fetchHex { + pkg = "jsx"; + version = "2.7.1"; + sha256 = + "52d0e8bda0c8624bc59c3119236eb49bb66289702ea3d59ad76fd2a56cdf9089"; + }; + + meta = { + longDescription = ''an erlang application for consuming, + producing and manipulating json. inspired by + yajl''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/jsx"; + }; + } // packageOverrides) + ) {}; + + jsx_2_8_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "jsx"; + version = "2.8.0"; + src = fetchHex { + pkg = "jsx"; + version = "2.8.0"; + sha256 = + "a8ba15d5bac2c48b2be1224a0542ad794538d79e2cc16841a4e24ca75f0f8378"; + }; + + meta = { + longDescription = ''an erlang application for consuming, + producing and manipulating json. inspired by + yajl''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/jsx"; + }; + } // packageOverrides) + ) {}; + + jsx = jsx_2_8_0; + + jsxd_0_1_10 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "jsxd"; + version = "0.1.10"; + src = fetchHex { + pkg = "jsxd"; + version = "0.1.10"; + sha256 = + "f71a8238f08a1dee130e8959ff5343524891fa6531392667a5b911cead5f5082"; + }; + + meta = { + description = ''jsx data structire traversing and modification + library.''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/Licenser/jsxd"; + }; + } // packageOverrides) + ) {}; + + jsxd = jsxd_0_1_10; + + junit_formatter_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "junit_formatter"; + version = "1.0.0"; + src = fetchHex { + pkg = "junit_formatter"; + version = "1.0.0"; + sha256 = + "f01064940927874ef2c3d275182822951167c7bd685f5d2b0dfcc84928fa0dcb"; + }; + + meta = { + longDescription = ''An ExUnit.Formatter that produces an XML + report of the tests run in the project _build + dir. It is a good fit with Jenkins test + reporting plugin, for example.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/victorolinasc/junit-formatter"; + }; + } // packageOverrides) + ) {}; + + junit_formatter = junit_formatter_1_0_0; + + jwalk_1_1_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "jwalk"; + version = "1.1.2"; + src = fetchHex { + pkg = "jwalk"; + version = "1.1.2"; + sha256 = + "322d6bc04c1b16efdd711711c101415f9df18a87af31315e6d04e48e678d1bf0"; + }; + + meta = { + longDescription = ''Helper module for working with Erlang + representations of JSON, handling eep-18, map, + mochijson-style and proplists representations''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jr0senblum/jwalk"; + }; + } // packageOverrides) + ) {}; + + jwalk = jwalk_1_1_2; + + jwt_0_1_2 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + jsx_2_8_0, + base64url_0_0_1 + }: + buildRebar3 ({ + name = "jwt"; + version = "0.1.2"; + src = fetchHex { + pkg = "jwt"; + version = "0.1.2"; + sha256 = + "be9a6502857f40e3c285909a80a21d00dffcb9330951abe86e6c9cffb17770f1"; + }; + + beamDeps = [ jsx_2_8_0 base64url_0_0_1 ]; + + meta = { + description = ''Erlang JWT library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/artemeff/jwt"; + }; + } // packageOverrides) + ) {}; + + jwt = jwt_0_1_2; + + jwt_claims_0_0_3 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, json_web_token_0_2_4 + }: + buildMix ({ + name = "jwt_claims"; + version = "0.0.3"; + src = fetchHex { + pkg = "jwt_claims"; + version = "0.0.3"; + sha256 = + "baf94583907a4d774079a8a98c13c0cf5d306ee6211e805f156523a20658e230"; + }; + beamDeps = [ json_web_token_0_2_4 ]; + + meta = { + description = ''Elixir implementation of JWT registered claims, + RFC 7519''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/garyf/jwt_claims_ex"; + }; + } // packageOverrides) + ) {}; + + jwt_claims = jwt_claims_0_0_3; + + jwtex_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_3_1 }: + buildMix ({ + name = "jwtex"; + version = "0.0.1"; + src = fetchHex { + pkg = "jwtex"; + version = "0.0.1"; + sha256 = + "5b8b826e8543e323f62a0e8cb2fb5714d8e7110ecce97419cd0a4a656fa411cf"; + }; + beamDeps = [ poison_1_3_1 ]; + + meta = { + description = ''JWT decoding library for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "http://github.com/mschae/jwtex"; + }; + } // packageOverrides) + ) {}; + + jwtex = jwtex_0_0_1; + + k6_bytea_1_1_5 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "k6_bytea"; + version = "1.1.5"; + src = fetchHex { + pkg = "k6_bytea"; + version = "1.1.5"; + sha256 = + "1ce4ca84bbe45890bc3c07809f8e01fb80c4613226fbd318aaac73d4cd233132"; + }; + compilePorts = true; + buildPlugins = [ pc ]; + + + meta = { + description = ''A mutable byte array for Erlang.''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + k6_bytea = k6_bytea_1_1_5; + + kafka_ex_0_5_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "kafka_ex"; + version = "0.5.0"; + src = fetchHex { + pkg = "kafka_ex"; + version = "0.5.0"; + sha256 = + "5e5d5be9bad3d9b9e77f75047c479aadc140d7e13be85a912cef8e7d647f0ae7"; + }; + + meta = { + description = ''Kafka client for Elixir/Erlang.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kafkaex/kafka_ex"; + }; + } // packageOverrides) + ) {}; + + kafka_ex = kafka_ex_0_5_0; + + kaguya_0_4_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "kaguya"; + version = "0.4.1"; + src = fetchHex { + pkg = "kaguya"; + version = "0.4.1"; + sha256 = + "071fbb9b096d2c4e987a820ea1a9d749d3da378c306053f3c44f5c9a9c748fa1"; + }; + + meta = { + longDescription = ''A small, powerful, and modular IRC bot + framework. Using a flexible macro based routing + system, modules can be easily created and + used.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/Luminarys/Kaguya"; + }; + } // packageOverrides) + ) {}; + + kaguya = kaguya_0_4_1; + + kalecto_0_3_3 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + kalends_0_6_5, + ecto_0_16_0 + }: + buildRebar3 ({ + name = "kalecto"; + version = "0.3.3"; + src = fetchHex { + pkg = "kalecto"; + version = "0.3.3"; + sha256 = + "c83d417718f626eb43ffa5527ea25fa5348f6f24f7930d27db7556759094eb1b"; + }; + + beamDeps = [ kalends_0_6_5 ecto_0_16_0 ]; + + meta = { + longDescription = ''Library for using Kalends with Ecto. This + lets you save Kalends types in Ecto and work + with date-times in multiple timezones. ''; + + homepage = "https://github.com/lau/kalecto"; + }; + } // packageOverrides) + ) {}; + + kalecto = kalecto_0_3_3; + + kalends_0_6_5 = callPackage + ( + { + buildRebar3, packageOverrides ? {}, fetchHex, tzdata_0_1_201603 + }: + buildRebar3 ({ + name = "kalends"; + version = "0.6.5"; + src = fetchHex { + pkg = "kalends"; + version = "0.6.5"; + sha256 = + "b16621edbccdbe5d3f76efe03dab59292f3782d0d7e29bbe2de9943e49968fe2"; + }; + + beamDeps = [ tzdata_0_1_201603 ]; + + meta = { + longDescription = ''Kalends is a datetime library in pure Elixir + with up-to-date timezone support using the Olson + database. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lau/kalends"; + }; + } // packageOverrides) + ) {}; + + kalends = kalends_0_6_5; + + kcl_0_4_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + salsa20_0_3_0, + poly1305_0_4_0, + curve25519_0_1_0 + }: + buildMix ({ + name = "kcl"; + version = "0.4.1"; + src = fetchHex { + pkg = "kcl"; + version = "0.4.1"; + sha256 = + "90c2492dc4333ae444d2ec4facee567c73f061e3c10878fcd02b426e347495bc"; + }; + beamDeps = [ salsa20_0_3_0 poly1305_0_4_0 curve25519_0_1_0 ]; + + meta = { + description = ''KCl - a poor NaCL crypto suite substitute''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/kcl"; + }; + } // packageOverrides) + ) {}; + + kcl = kcl_0_4_1; + + keenex_0_2_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_3_1, + httpotion_2_2_2 + }: + buildMix ({ + name = "keenex"; + version = "0.2.0"; + src = fetchHex { + pkg = "keenex"; + version = "0.2.0"; + sha256 = + "5f66d942fe7066bec625985779d7e69647462e586a704e449cc7229ea752ccb9"; + }; + beamDeps = [ poison_1_3_1 httpotion_2_2_2 ]; + + meta = { + description = ''Keen.io API Client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bryanjos/keenex"; + }; + } // packageOverrides) + ) {}; + + keenex = keenex_0_2_0; + + key2value_1_5_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "key2value"; + version = "1.5.1"; + src = fetchHex { + pkg = "key2value"; + version = "1.5.1"; + sha256 = + "2a40464b9f8ef62e8828d869ac8d2bf9135b4956d29ba4eb044e8522b2d35ffa"; + }; + + meta = { + description = ''Erlang 2-way Map''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/key2value"; + }; + } // packageOverrides) + ) {}; + + key2value = key2value_1_5_1; + + keys1value_1_5_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "keys1value"; + version = "1.5.1"; + src = fetchHex { + pkg = "keys1value"; + version = "1.5.1"; + sha256 = + "2385132be0903c170fe21e54a0c3e746a604777b66ee458bb6e5f25650d3354f"; + }; + + meta = { + description = ''Erlang Set Associative Map For Key Lists''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/keys1value"; + }; + } // packageOverrides) + ) {}; + + keys1value = keys1value_1_5_1; + + kitsune_0_5_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "kitsune"; + version = "0.5.2"; + src = fetchHex { + pkg = "kitsune"; + version = "0.5.2"; + sha256 = + "f8d48f1f3abe89aa9df7b37bc59c9bfa5932142d076d5322f97e92ec732bf993"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + longDescription = ''Kitsune is an Elixir library for transforming + the representation of data inspired by + Representable.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edubkendo/kitsune"; + }; + } // packageOverrides) + ) {}; + + kitsune = kitsune_0_5_2; + + kwfuns_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "kwfuns"; + version = "0.0.4"; + src = fetchHex { + pkg = "kwfuns"; + version = "0.0.4"; + sha256 = + "ce1ac52be8d3c3cb7c77fc339eaa877a190899e889bf97cdb92e01922fd52b54"; + }; + + meta = { + longDescription = ''Macros to create functions with syntax based + keyword parameters with default values defkw + make_list_elem( parent, text, spaced: false, + type: :ul ) do ... end translates to def + make_list_elem( parent, text, keywords \\ [] ) + do some_code_with( spaces, typed) end''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/RobertDober/lab42_defkw"; + }; + } // packageOverrides) + ) {}; + + kwfuns = kwfuns_0_0_4; + + lager_3_0_1 = callPackage + ( + { + buildRebar3, packageOverrides ? {}, fetchHex, goldrush_0_1_7 + }: + buildRebar3 ({ + name = "lager"; + version = "3.0.1"; + src = fetchHex { + pkg = "lager"; + version = "3.0.1"; + sha256 = + "d32c9233105b72dc5c1f6a8fe9a33cc205ecccc359c4449950060cee5a329e35"; + }; + + beamDeps = [ goldrush_0_1_7 ]; + + meta = { + description = ''Erlang logging framework''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/basho/lager"; + }; + } // packageOverrides) + ) {}; + + lager_3_0_2 = callPackage + ( + { + buildRebar3, packageOverrides ? {}, fetchHex, goldrush_0_1_7 + }: + buildRebar3 ({ + name = "lager"; + version = "3.0.2"; + src = fetchHex { + pkg = "lager"; + version = "3.0.2"; + sha256 = + "527f3b233e01b6cb68780c14ef675ed08ec02247dc029cacecbb56c78dfca100"; + }; + + beamDeps = [ goldrush_0_1_7 ]; + + meta = { + description = ''Erlang logging framework''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/basho/lager"; + }; + } // packageOverrides) + ) {}; + + lager = lager_3_0_2; + + lager_graylog_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, lager_3_0_2 }: + buildRebar3 ({ + name = "lager_graylog"; + version = "0.1.0"; + src = fetchHex { + pkg = "lager_graylog"; + version = "0.1.0"; + sha256 = + "539ddc1b5a4280bf5ef8c377cfa037830a2fbe989fd378af10f5355c502fc8d9"; + }; + + beamDeps = [ lager_3_0_2 ]; + + meta = { + description = ''An Erlang lager_graylog library''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/esl/lager_graylog"; + }; + } // packageOverrides) + ) {}; + + lager_graylog = lager_graylog_0_1_0; + + lager_hipchat_0_2_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, lager_3_0_2 }: + buildRebar3 ({ + name = "lager_hipchat"; + version = "0.2.0"; + src = fetchHex { + pkg = "lager_hipchat"; + version = "0.2.0"; + sha256 = + "83dc3246822b33b2889c431975ff0f8ffc6954c9e5f744bfd99acd9fa8605a1c"; + }; + + beamDeps = [ lager_3_0_2 ]; + + meta = { + description = ''HipChat backend for Lager''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/synlay/lager_hipchat"; + }; + } // packageOverrides) + ) {}; + + lager_hipchat = lager_hipchat_0_2_0; + + lager_logger_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, lager_3_0_2 }: + buildMix ({ + name = "lager_logger"; + version = "1.0.2"; + src = fetchHex { + pkg = "lager_logger"; + version = "1.0.2"; + sha256 = + "28e13b1a5d43acefdf7f49d219ecb268dd934da448d2e1d4c3f74378fdea9e89"; + }; + beamDeps = [ lager_3_0_2 ]; + + meta = { + longDescription = ''LagerLogger is a lager backend that forwards + all log messages to Elixir`s Logger.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/PSPDFKit-labs/lager_logger"; + }; + } // packageOverrides) + ) {}; + + lager_logger = lager_logger_1_0_2; + + lager_logstash_backend_0_1_0 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + lager_3_0_2, + jsx_2_6_1 + }: + buildRebar3 ({ + name = "lager_logstash_backend"; + version = "0.1.0"; + src = fetchHex { + pkg = "lager_logstash_backend"; + version = "0.1.0"; + sha256 = + "9d729050a9cae2bb965d6211d428a79838e48f8acac394f24c48e3d47e6758c9"; + }; + + beamDeps = [ lager_3_0_2 jsx_2_6_1 ]; + + meta = { + description = ''Lager Logstash Logging Backend''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/inaka/lager_logstash_backend.git"; + }; + } // packageOverrides) + ) {}; + + lager_logstash_backend = lager_logstash_backend_0_1_0; + + lasse_1_1_0 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "lasse"; + version = "1.1.0"; + src = fetchHex { + pkg = "lasse"; + version = "1.1.0"; + sha256 = + "53e70ea9031f7583331a9f9bdbb29da933e591e5c4cce521b4bf85c68e7f3385"; + }; + + meta = { + description = ''Lasse: Server-Sent Event handler for Cowboy.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/inaka/lasse"; + }; + } // packageOverrides) + ) {}; + + lasse = lasse_1_1_0; + + left_pad_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "left_pad"; + version = "0.0.3"; + src = fetchHex { + pkg = "left_pad"; + version = "0.0.3"; + sha256 = + "9b14a4b7f84f320175bd2ed2f24754a62206fdd67d90117602876c415cf22374"; + }; + + meta = { + description = ''Pad a string to the left with any number of + characters.''; + license = stdenv.lib.licenses.mpl20; + homepage = "https://github.com/folz/left_pad.ex"; + }; + } // packageOverrides) + ) {}; + + left_pad = left_pad_0_0_3; + + leftpad_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "leftpad"; + version = "1.0.1"; + src = fetchHex { + pkg = "leftpad"; + version = "1.0.1"; + sha256 = + "88e4cd8039461f2558f6e8378d834772b9315554080c5b729d65472209824a89"; + }; + + meta = { + description = ''left pad for elixir, because why not? + ¯\\_(ツ)_/¯''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/colinrymer/leftpad.ex"; + }; + } // packageOverrides) + ) {}; + + leftpad = leftpad_1_0_1; + + level_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "level"; + version = "1.0.0"; + src = fetchHex { + pkg = "level"; + version = "1.0.0"; + sha256 = + "42d54a840e79af5833e5ae335b374699c46d996053f2f3480e181a57cad2ae62"; + }; + + meta = { + longDescription = ''Level implements various helper functions and + data types for working with Googles Level data + store. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gausby/level"; + }; + } // packageOverrides) + ) {}; + + level = level_1_0_0; + + lex_luthor_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "lex_luthor"; + version = "0.1.0"; + src = fetchHex { + pkg = "lex_luthor"; + version = "0.1.0"; + sha256 = + "1a8ebf646f9cd29f3696659e67f4bbb65a5a558e4b3e1f43013c5e85022189a2"; + }; + + meta = { + longDescription = ''LexLuthor is a Lexer in Elixir (say that 10 + times fast) which uses macros to generate a + reusable lexers. Good times.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jamesotron/lex_luthor"; + }; + } // packageOverrides) + ) {}; + + lex_luthor = lex_luthor_0_1_0; + + lfsr_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "lfsr"; + version = "0.0.2"; + src = fetchHex { + pkg = "lfsr"; + version = "0.0.2"; + sha256 = + "8a14455bd0ce5c6b7dc56bf1027007c67e48979b49b70e09372cc36769d16b90"; + }; + + meta = { + description = ''Elixir implementation of a binary Galois Linear + Feedback Shift Register. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pma/lfsr"; + }; + } // packageOverrides) + ) {}; + + lfsr = lfsr_0_0_2; + + lhttpc_1_3_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "lhttpc"; + version = "1.3.0"; + src = fetchHex { + pkg = "lhttpc"; + version = "1.3.0"; + sha256 = + "ddd2bd4b85159bc987c954b14877168e6a3c3e516105702189776e97c50296a4"; + }; + + meta = { + description = ''Lightweight HTTP Client''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/talko/lhttpc"; + }; + } // packageOverrides) + ) {}; + + lhttpc_1_4_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "lhttpc"; + version = "1.4.0"; + src = fetchHex { + pkg = "lhttpc"; + version = "1.4.0"; + sha256 = + "26d5a12b63fedb3e862a816a472258007dc1e85b75a9bcdb0223425e39827777"; + }; + + meta = { + description = ''Lightweight HTTP Client''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/talko/lhttpc"; + }; + } // packageOverrides) + ) {}; + + lhttpc = lhttpc_1_4_0; + + librex_1_0_0 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, secure_random_0_2_0 + }: + buildMix ({ + name = "librex"; + version = "1.0.0"; + src = fetchHex { + pkg = "librex"; + version = "1.0.0"; + sha256 = + "c047e48eca2414394ecf5291e626fa813c8baaa9d35ab917dc6937f99461948c"; + }; + beamDeps = [ secure_random_0_2_0 ]; + + meta = { + description = ''Convert office documents to other formats using + LibreOffice''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ricn/librex"; + }; + } // packageOverrides) + ) {}; + + librex = librex_1_0_0; + + libsnarlmatch_0_1_7 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "libsnarlmatch"; + version = "0.1.7"; + src = fetchHex { + pkg = "libsnarlmatch"; + version = "0.1.7"; + sha256 = + "72e9bcf7968e75774393778146ac6596116f1c60136dd607ad249183684ee380"; + }; + + meta = { + description = ''permission matcher library''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/libsnarlmatch"; + }; + } // packageOverrides) + ) {}; + + libsnarlmatch = libsnarlmatch_0_1_7; + + lineo_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "lineo"; + version = "0.1.0"; + src = fetchHex { + pkg = "lineo"; + version = "0.1.0"; + sha256 = + "842733d2aae3b8cfadf3acfe456241eb3434e68984d1fdbb7be15e335591e21c"; + }; + + meta = { + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/lineo"; + }; + } // packageOverrides) + ) {}; + + lineo = lineo_0_1_0; + + linguist_0_1_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "linguist"; + version = "0.1.5"; + src = fetchHex { + pkg = "linguist"; + version = "0.1.5"; + sha256 = + "d8b0665512a800854152082f6d56142e56e5da5f5b0d879298117b7dfd55ba97"; + }; + + meta = { + description = ''Elixir Internationalization library ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/chrismccord/linguist"; + }; + } // packageOverrides) + ) {}; + + linguist = linguist_0_1_5; + + liquid_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "liquid"; + version = "0.1.0"; + src = fetchHex { + pkg = "liquid"; + version = "0.1.0"; + sha256 = + "f2f4e2499419de30a984b706e2119007cc9f46e79a22a865715ed040a6a1f4db"; + }; + + meta = { + description = ''Liquid implementation in elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nulian/liquid-elixir"; + }; + } // packageOverrides) + ) {}; + + liquid = liquid_0_1_0; + + lob_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + chacha20_0_3_2 + }: + buildMix ({ + name = "lob"; + version = "0.1.0"; + src = fetchHex { + pkg = "lob"; + version = "0.1.0"; + sha256 = + "adf071a07fde2fbd2393c06a18959e6d48622c7a3769e868cf577095c7eac67e"; + }; + beamDeps = [ poison_2_1_0 chacha20_0_3_2 ]; + + meta = { + description = ''Length-Object-Binary (LOB) Packet Encoding''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/lob_ex"; + }; + } // packageOverrides) + ) {}; + + lob = lob_0_1_0; + + logfmt_3_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "logfmt"; + version = "3.0.2"; + src = fetchHex { + pkg = "logfmt"; + version = "3.0.2"; + sha256 = + "d079aab159c3682d90054dbf8228cc0f86c8d5df6e6145c60d69a81110c3ee1c"; + }; + + meta = { + description = ''Logfmt is a module for encoding and decoding + logfmt-style log lines.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jclem/logfmt-elixir"; + }; + } // packageOverrides) + ) {}; + + logfmt = logfmt_3_0_2; + + logger_file_backend_0_0_7 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "logger_file_backend"; + version = "0.0.7"; + src = fetchHex { + pkg = "logger_file_backend"; + version = "0.0.7"; + sha256 = + "135823f39e810f1826cbd6fa5e1207c6d60a6de09b563c9a204f5b55587cf5a4"; + }; + + meta = { + description = ''Simple logger backend that writes to a file''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/onkel-dirtus/logger_file_backend"; + }; + } // packageOverrides) + ) {}; + + logger_file_backend = logger_file_backend_0_0_7; + + logger_logstash_backend_2_0_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + timex_2_1_3, + exjsx_3_1_0 + }: + buildMix ({ + name = "logger_logstash_backend"; + version = "2.0.0"; + src = fetchHex { + pkg = "logger_logstash_backend"; + version = "2.0.0"; + sha256 = + "e0c709aa8fbddd825ef5cc5287e0d04f4470498173555e07156675aeba2b2b7a"; + }; + beamDeps = [ timex_2_1_3 exjsx_3_1_0 ]; + + meta = { + description = ''Logstash UDP producer backend for Logger.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/marcelog/logger_logstash_backend"; + }; + } // packageOverrides) + ) {}; + + logger_logstash_backend = logger_logstash_backend_2_0_0; + + logger_papertrail_backend_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "logger_papertrail_backend"; + version = "0.0.2"; + src = fetchHex { + pkg = "logger_papertrail_backend"; + version = "0.0.2"; + sha256 = + "afc8bce277dc827172d33b20024970811950a139552ed1d0e1ea75e2860a055e"; + }; + + meta = { + description = ''A Papertrail backend for Elixir Logger''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/larskrantz/logger_papertrail_backend"; + }; + } // packageOverrides) + ) {}; + + logger_papertrail_backend = logger_papertrail_backend_0_0_2; + + lolcat_0_0_1 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + quickrand_1_5_1, + colorful_0_6_0 + }: + buildRebar3 ({ + name = "lolcat"; + version = "0.0.1"; + src = fetchHex { + pkg = "lolcat"; + version = "0.0.1"; + sha256 = + "884799d2e7f294a6a5455e19c9816592d7b1314cefaba18952876fef0c4a10af"; + }; + + beamDeps = [ quickrand_1_5_1 colorful_0_6_0 ]; + + meta = { + description = ''The clone of lolcat. written in elixir ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/restartr/ex-lolcat"; + }; + } // packageOverrides) + ) {}; + + lolcat = lolcat_0_0_1; + + loom_0_0_10 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "loom"; + version = "0.0.10"; + src = fetchHex { + pkg = "loom"; + version = "0.0.10"; + sha256 = + "f32cf0fe1c14efb9b4fda15285a5d331b64e952da7a0561c66f7e2b671d36cb8"; + }; + + meta = { + description = ''A modern CRDT library that uses protocols to + create composable CRDTs.''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/asonge/loom"; + }; + } // packageOverrides) + ) {}; + + loom = loom_0_0_10; + + lru_1_3_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "lru"; + version = "1.3.1"; + src = fetchHex { + pkg = "lru"; + version = "1.3.1"; + sha256 = + "cd6ac15c383d58cd2933df9cb918617b24b12b6e5fb24d94c4c8f200fd93f619"; + }; + + meta = { + description = ''implements a fixed-size LRU cache''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/barrel-db/erlang-lru"; + }; + } // packageOverrides) + ) {}; + + lru = lru_1_3_1; + + lru_cache_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "lru_cache"; + version = "0.1.0"; + src = fetchHex { + pkg = "lru_cache"; + version = "0.1.0"; + sha256 = + "9543e4b00ad3763fa2a92cf9ed7429dff645d912f5d9134b32d573bb327f56b5"; + }; + + meta = { + description = ''ETS-based LRU Cache''; + + homepage = "https://github.com/arago/lru_cache"; + }; + } // packageOverrides) + ) {}; + + lru_cache = lru_cache_0_1_0; + + ltsv_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ltsv"; + version = "0.1.0"; + src = fetchHex { + pkg = "ltsv"; + version = "0.1.0"; + sha256 = + "62e56251331da6cf5b95de9ecf6e0984749b0ba935356397151fa19f2491a449"; + }; + + meta = { + description = ''A Labeled Tab-separated Values Parser''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ma2gedev/ltsvex"; + }; + } // packageOverrides) + ) {}; + + ltsv = ltsv_0_1_0; + + luhn_0_3_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "luhn"; + version = "0.3.1"; + src = fetchHex { + pkg = "luhn"; + version = "0.3.1"; + sha256 = + "86aba88228660238ad981b92cb7a0e92be04772fc54fe5effb338c94b3b7d9fa"; + }; + + meta = { + description = ''Luhn algorithm in Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ma2gedev/luhn_ex"; + }; + } // packageOverrides) + ) {}; + + luhn = luhn_0_3_1; + + luhnatex_0_5_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "luhnatex"; + version = "0.5.0"; + src = fetchHex { + pkg = "luhnatex"; + version = "0.5.0"; + sha256 = + "d2edc93e2058f1608217eb90402cc776b40f389f445e6c2a82792a0993f4b6de"; + }; + + meta = { + description = ''Luhn algorithm in Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/my-flow/luhnatex"; + }; + } // packageOverrides) + ) {}; + + luhnatex = luhnatex_0_5_0; + + lz4_0_2_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "lz4"; + version = "0.2.2"; + src = fetchHex { + pkg = "lz4"; + version = "0.2.2"; + sha256 = + "a59522221e7cdfe3792bf8b3bb21cfe7ac657790e5826201fa2c5d0bc7484a2d"; + }; + compilePorts = true; + + meta = { + description = ''LZ4 bindings for Erlang''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/szktty/erlang-lz4.git"; + }; + } // packageOverrides) + ) {}; + + lz4 = lz4_0_2_2; + + lz_string_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "lz_string"; + version = "0.0.3"; + src = fetchHex { + pkg = "lz_string"; + version = "0.0.3"; + sha256 = + "747ddaee6f146d6133c16c53f18ca9dc429d5c1e0ca11d8eeb322630448ec08b"; + }; + + meta = { + description = ''Elixir implementation of pieroxy`s lz-string + compression algorithm.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/koudelka/elixir-lz-string"; + }; + } // packageOverrides) + ) {}; + + lz_string = lz_string_0_0_3; + + magic_number_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "magic_number"; + version = "0.0.1"; + src = fetchHex { + pkg = "magic_number"; + version = "0.0.1"; + sha256 = + "aef41d128da2cc8f5a4302a15048edd5ff58fcff68e847b6a6ebb000d8d44cc1"; + }; + + meta = { + description = ''MagicNumber is the module to determine a file`s + type from its magic number.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ishikawa/elixir-magic-number"; + }; + } // packageOverrides) + ) {}; + + magic_number = magic_number_0_0_1; + + mail_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mail"; + version = "0.0.4"; + src = fetchHex { + pkg = "mail"; + version = "0.0.4"; + sha256 = + "015bb93bc3233fbf0bb28daf71963ddc290d574d9b3d63e1b45641d1a2d4571e"; + }; + + meta = { + description = ''Easily build a composable mail message''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/DockYard/elixir-mail"; + }; + } // packageOverrides) + ) {}; + + mail = mail_0_0_4; + + mailer_1_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + timex_2_1_3, + gen_smtp_0_9_0 + }: + buildMix ({ + name = "mailer"; + version = "1.0.1"; + src = fetchHex { + pkg = "mailer"; + version = "1.0.1"; + sha256 = + "08b834102ad6eb2f2a363b70939935d3d23d1e3a68d96a2a7f8730fb7834c63d"; + }; + beamDeps = [ timex_2_1_3 gen_smtp_0_9_0 ]; + + meta = { + description = ''Mailer - A simple email client''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/antp/mailer"; + }; + } // packageOverrides) + ) {}; + + mailer = mailer_1_0_1; + + mailgun_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mailgun"; + version = "0.0.2"; + src = fetchHex { + pkg = "mailgun"; + version = "0.0.2"; + sha256 = + "9e00f4411d5838556d326b02038f6fa3f173a67af28148329014f9889cd4a5c4"; + }; + + meta = { + description = ''Elixir Mailgun Client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/chrismccord/mailgun"; + }; + } // packageOverrides) + ) {}; + + mailgun_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "mailgun"; + version = "0.1.2"; + src = fetchHex { + pkg = "mailgun"; + version = "0.1.2"; + sha256 = + "9cc828e06238045c92414db8f2e9a64a6004aca9b9a4856e5222db99bd8528e8"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + description = ''Elixir Mailgun Client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/chrismccord/mailgun"; + }; + } // packageOverrides) + ) {}; + + mailgun = mailgun_0_1_2; + + mailman_0_2_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + gen_smtp_0_9_0, + ex_doc_0_11_4, + earmark_0_2_1 + }: + buildMix ({ + name = "mailman"; + version = "0.2.2"; + src = fetchHex { + pkg = "mailman"; + version = "0.2.2"; + sha256 = + "3a7aaf863017c0b9d924e31ccb34649ba31bcbbd8eac4837bbe3a040c37f94ab"; + }; + beamDeps = [ gen_smtp_0_9_0 ex_doc_0_11_4 earmark_0_2_1 ]; + + meta = { + description = ''Library providing a clean way of defining mailers + in Elixir apps''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kamilc/mailman"; + }; + } // packageOverrides) + ) {}; + + mailman = mailman_0_2_2; + + majremind_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "majremind"; + version = "0.0.1"; + src = fetchHex { + pkg = "majremind"; + version = "0.0.1"; + sha256 = + "604ba3b2142497b2384c73b2320f9738711a9cc07b4348f8e870ee6e470c4749"; + }; + + meta = { + longDescription = ''A self-maintained database of your updated + server which tells you which one needs to be + updated. It uses Disk Erlang Term Storage for + its internal database, located at + $HOME/.config/majremind/ ''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + majremind = majremind_0_0_1; + + mandrag_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }: + buildMix ({ + name = "mandrag"; + version = "0.1.1"; + src = fetchHex { + pkg = "mandrag"; + version = "0.1.1"; + sha256 = + "e9e9fcbb844a2a86ecd95f5f8fa7db9f6ff88f3e2a6dca2bd996f4f71bbf125d"; + }; + beamDeps = [ exrm_1_0_3 ]; + + meta = { + description = ''A simple, extremely assumptive deploy script for + Phoenix apps''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cschiewek/mandrag"; + }; + } // packageOverrides) + ) {}; + + mandrag = mandrag_0_1_1; + + mandrake_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mandrake"; + version = "0.0.4"; + src = fetchHex { + pkg = "mandrake"; + version = "0.0.4"; + sha256 = + "ed672e094f68ff07c1f8e78a3c8a95af3e23a71ca90515ad441738446ee18887"; + }; + + meta = { + longDescription = ''Mandrake is a functional programming library + that bring something else magic in elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mbasso/mandrake"; + }; + } // packageOverrides) + ) {}; + + mandrake = mandrake_0_0_4; + + maptu_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "maptu"; + version = "0.1.0"; + src = fetchHex { + pkg = "maptu"; + version = "0.1.0"; + sha256 = + "8dc5fd69e78a948a6cd3b95a1b1cb1a7056948a4445e4abed773cae8c88c16da"; + }; + + meta = { + description = ''Tiny library to convert from \"encoded\" maps to + Elixir structs.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/whatyouhide/maptu"; + }; + } // packageOverrides) + ) {}; + + maptu = maptu_0_1_0; + + marco_polo_0_2_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + decimal_1_1_1, + connection_1_0_0_rc_1 + }: + buildMix ({ + name = "marco_polo"; + version = "0.2.1"; + src = fetchHex { + pkg = "marco_polo"; + version = "0.2.1"; + sha256 = + "60730b3b488e11c91b57f0d3490baf86fd2972cd51a481480a5aec1e2aacf5fd"; + }; + beamDeps = [ decimal_1_1_1 connection_1_0_0_rc_1 ]; + + meta = { + description = ''Binary driver for the OrientDB database.''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/MyMedsAndMe/marco_polo"; + }; + } // packageOverrides) + ) {}; + + marco_polo = marco_polo_0_2_1; + + mariaex_0_1_7 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ + name = "mariaex"; + version = "0.1.7"; + src = fetchHex { + pkg = "mariaex"; + version = "0.1.7"; + sha256 = + "58daf08d513327b422a68de199202e6a2c1785472e2fa8d8ffe212e6ee51b1fb"; + }; + beamDeps = [ decimal_1_1_1 ]; + + meta = { + description = ''Pure elixir database driver for MariaDB / + MySQL.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/xerions/mariaex"; + }; + } // packageOverrides) + ) {}; + + mariaex_0_4_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ + name = "mariaex"; + version = "0.4.3"; + src = fetchHex { + pkg = "mariaex"; + version = "0.4.3"; + sha256 = + "5403290df22598e0152c7f1edd64f6372238055d5e72cc830780d019f4d22d57"; + }; + beamDeps = [ decimal_1_1_1 ]; + + meta = { + description = ''Pure elixir database driver for MariaDB / + MySQL.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/xerions/mariaex"; + }; + } // packageOverrides) + ) {}; + + mariaex_0_7_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + decimal_1_1_1, + db_connection_0_2_4 + }: + buildMix ({ + name = "mariaex"; + version = "0.7.0"; + src = fetchHex { + pkg = "mariaex"; + version = "0.7.0"; + sha256 = + "758c1d8a75a9ce71f047e8d54b0fa1cde518252b25aecb9b8c42f918340bdfb6"; + }; + beamDeps = [ decimal_1_1_1 db_connection_0_2_4 ]; + + meta = { + description = ''Pure elixir database driver for MariaDB / + MySQL.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/xerions/mariaex"; + }; + } // packageOverrides) + ) {}; + + mariaex = mariaex_0_7_0; + + marked_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "marked"; + version = "0.0.1"; + src = fetchHex { + pkg = "marked"; + version = "0.0.1"; + sha256 = + "6e16369d41355bef05b18f98230afe08dcb3ccfaaab168382513d86c19721035"; + }; + + meta = { + description = ''CommonMark compatible Markdown parser''; + + }; + } // packageOverrides) + ) {}; + + marked = marked_0_0_1; + + maru_entity_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "maru_entity"; + version = "0.1.2"; + src = fetchHex { + pkg = "maru_entity"; + version = "0.1.2"; + sha256 = + "93b1f9f3941032cdf98b999cf4db85cace7e6259a78427322c5af8a5621e45b6"; + }; + + meta = { + description = ''Elixir copy of grape-entity''; + + }; + } // packageOverrides) + ) {}; + + maru_entity = maru_entity_0_1_2; + + math_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "math"; + version = "0.0.1"; + src = fetchHex { + pkg = "math"; + version = "0.0.1"; + sha256 = + "ca9c87163b052d2c849a7b4ef3d8664f9400024f26c6add1ce200aa72604a90d"; + }; + + meta = { + longDescription = ''The Math module adds many useful functions + that extend Elixir`s standard library. - General + Functions • a <~> b Comparison of floats, to + check if they are _nearly_ equal. • + Math.pow(x, n) Arithmetic exponentiation. Works + both with integer powers and floats. • + Math.sqrt(x) The square root of x. • + Math.nth_root(x, n) The n-th root of x. • + Math.isqrt(x) The integer square root of x. • + Math.gcd(a, b) The greatest common divisor of a + and b. • Math.lcm(a, b) The least common + multiple of a and b. • Math.factorial(n) The + n-th factorial number. • + Math.k_permutations(n, k) The number of distinct + ways to create groups of size k from n distinct + elements. • Math.k_combinations(n, k) The + number of distinct ways to create groups of size + k from n distinct elements where order does not + matter. - Logarithms • Math.exp(x) Calculates + ℯ to the xth power. • Math.log(x) Calculates + the natural logarithm (base ℯ) of x. • + Math.log(x, b) Calculates the base-b logarithm + of x • Math.log2(x) Calculates the binary + logarithm (base 2) of x. • Math.log10(x) + Calculates the common logarithm (base 10) of x. + • Math.e Returns a floating-point + approximation of the number ℯ. - Trigonometry + • Math.pi Returns a floating-point + approximation of the number π. • + Math.deg2rad(x) converts from degrees to + radians. • Math.rad2deg(x) converts from + radians to degrees. • Math.sin(x) The sine of + x. • Math.cos(x) The cosine of x. • + Math.tan(x) The tangent of x. • Math.asin(x) + The inverse sine of x. • Math.acos(x) The + inverse cosine of x. • Math.atan(x) The + inverse tangent of x. • Math.atan2(x, y) The + inverse tangent of x and y. This variant returns + the inverse tangent in the correct quadrant, as + the signs of both x and y are known. • + Math.sinh(x) The hyperbolic sine of x. • + Math.cosh(x) The hyperbolic cosine of x. • + Math.tanh(x) The hyperbolic tangent of x. • + Math.asinh(x) The inverse hyperbolic sine of x. + • Math.acosh(x) The inverse hyperbolic cosine + of x. • Math.atanh(x) The inverse hyperbolic + tangent of x. - Working with Collections • + Math.Enum.product(collection) The result of + multiplying all elements in the passed + collection. • Math.Enum.mean(collection) the + mean of the numbers in the collection. • + Math.Enum.median(collection) the median of the + numbers in the collection.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/folz/math"; + }; + } // packageOverrides) + ) {}; + + math = math_0_0_1; + + matrix_0_3_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + exprintf_0_1_6, + earmark_0_2_1 + }: + buildMix ({ + name = "matrix"; + version = "0.3.1"; + src = fetchHex { + pkg = "matrix"; + version = "0.3.1"; + sha256 = + "3184d70b36666d52e011caf8be4590e2ecf3cc772203ec22b44d90c302592523"; + }; + beamDeps = [ exprintf_0_1_6 earmark_0_2_1 ]; + + meta = { + longDescription = ''Matrix is a linear algebra library for + manipulating dense matrices. Its primary design + goal is ease of use.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/twist-vector/elixir-matrix.git"; + }; + } // packageOverrides) + ) {}; + + matrix = matrix_0_3_1; + + maybe_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "maybe"; + version = "0.0.1"; + src = fetchHex { + pkg = "maybe"; + version = "0.0.1"; + sha256 = + "b1915afa2dd6a2db64ad7b20b41eeb2d3cb576cdbd20679594eb6ef76f612638"; + }; + + meta = { + description = ''Utils to deal with errors''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zweifisch/maybe"; + }; + } // packageOverrides) + ) {}; + + maybe = maybe_0_0_1; + + mazurka_0_3_34 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + xml_builder_0_0_8, + poison_2_1_0, + plug_1_1_3, + mimetype_parser_0_1_2, + mazurka_dsl_0_1_1, + html_builder_0_1_1, + etude_0_3_7, + ecto_1_0_7 + }: + buildMix ({ + name = "mazurka"; + version = "0.3.34"; + src = fetchHex { + pkg = "mazurka"; + version = "0.3.34"; + sha256 = + "4efd11082e2c6af965bc2f5e282601858f5e8d78f9ace30ba7baa27b03333023"; + }; + beamDeps = [ + xml_builder_0_0_8 + poison_2_1_0 + plug_1_1_3 + mimetype_parser_0_1_2 + mazurka_dsl_0_1_1 + html_builder_0_1_1 + etude_0_3_7 + ecto_1_0_7 + ]; + + meta = { + description = ''hypermedia api toolkit''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mazurka/mazurka"; + }; + } // packageOverrides) + ) {}; + + mazurka = mazurka_0_3_34; + + mazurka_dsl_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mazurka_dsl"; + version = "0.1.1"; + src = fetchHex { + pkg = "mazurka_dsl"; + version = "0.1.1"; + sha256 = + "2877b27736daa1f5757ff1c2b34ec35d43c8e501b5292be5f9db7de95b88ea69"; + }; + + meta = { + description = ''DSL for defining mazurka resources''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mazurka/mazurka_dsl"; + }; + } // packageOverrides) + ) {}; + + mazurka_dsl = mazurka_dsl_0_1_1; + + mazurka_mediatype_0_2_0 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, etude_1_0_0_beta_0 + }: + buildMix ({ + name = "mazurka_mediatype"; + version = "0.2.0"; + src = fetchHex { + pkg = "mazurka_mediatype"; + version = "0.2.0"; + sha256 = + "4ccd8b27d6405e93cb34861f211d69b79ab46c2dbc5c7874d4ee3c580a5754bb"; + }; + beamDeps = [ etude_1_0_0_beta_0 ]; + + meta = { + description = ''mazurka mediatype interface''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mazurka/mazurka_mediatype"; + }; + } // packageOverrides) + ) {}; + + mazurka_mediatype = mazurka_mediatype_0_2_0; + + mazurka_mediatype_hyperjson_0_2_3 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_3_1, + mazurka_mediatype_0_2_0, + etude_1_0_0_beta_0 + }: + buildMix ({ + name = "mazurka_mediatype_hyperjson"; + version = "0.2.3"; + src = fetchHex { + pkg = "mazurka_mediatype_hyperjson"; + version = "0.2.3"; + sha256 = + "f09489f242598ece8496f50c9dfc3d1a051b6115a654ebbb9ce5336e04b2cb8d"; + }; + beamDeps = [ + poison_1_3_1 + mazurka_mediatype_0_2_0 + etude_1_0_0_beta_0 + ]; + + meta = { + description = ''hyper+json mediatype compiler for mazurka''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/mazurka/mazurka_mediatype_hyperjson"; + }; + } // packageOverrides) + ) {}; + + mazurka_mediatype_hyperjson = mazurka_mediatype_hyperjson_0_2_3; + + mc_data_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ + name = "mc_data"; + version = "0.0.2"; + src = fetchHex { + pkg = "mc_data"; + version = "0.0.2"; + sha256 = + "8faba98530129d3a79d7a3062db1f4fa358363be1575fb28acb6e74abb031e86"; + }; + beamDeps = [ poison_2_1_0 ]; + + meta = { + description = ''Provides access to data from the game + Minecraft.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/McEx/McData"; + }; + } // packageOverrides) + ) {}; + + mc_data = mc_data_0_0_2; + + mc_protocol_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }: + buildMix ({ + name = "mc_protocol"; + version = "0.0.1"; + src = fetchHex { + pkg = "mc_protocol"; + version = "0.0.1"; + sha256 = + "683d92c0c6efd034f56a664bcb4f21f17050a89577f4aa0200343673fd357865"; + }; + beamDeps = [ uuid_1_1_3 ]; + + meta = { + longDescription = ''Implementation of the Minecraft protocol in + Elixir. Aims to provide functional ways to + interact with the minecraft protocol on all + levels, including packet reading and writing, + encryption, compression, authentication and + more.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hansihe/elixir_mc_protocol"; + }; + } // packageOverrides) + ) {}; + + mc_protocol = mc_protocol_0_0_1; + + mcup_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mcup"; + version = "0.0.2"; + src = fetchHex { + pkg = "mcup"; + version = "0.0.2"; + sha256 = + "c59537882707237c961d3d69b149619ec35c808cd5e98646cbcb7985e300b975"; + }; + + meta = { + description = ''DSL for markup. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Joe-noh/mcup"; + }; + } // packageOverrides) + ) {}; + + mcup = mcup_0_0_2; + + mdns_server_0_2_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "mdns_server"; + version = "0.2.0"; + src = fetchHex { + pkg = "mdns_server"; + version = "0.2.0"; + sha256 = + "bc9465880e15e57033960ab6820258b87134bef69032210c67e53e3718e289d0"; + }; + + meta = { + description = ''mDNS service discovery server''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Licenser/erlang-mdns-server"; + }; + } // packageOverrides) + ) {}; + + mdns_server = mdns_server_0_2_0; + + mdns_server_lib_0_2_3 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + ranch_1_1_0, + mdns_server_0_2_0, + lager_3_0_2 + }: + buildRebar3 ({ + name = "mdns_server_lib"; + version = "0.2.3"; + src = fetchHex { + pkg = "mdns_server_lib"; + version = "0.2.3"; + sha256 = + "078775ccea5d768095716ca6bd82f657601203352495d9726f4cc080c8c07695"; + }; + + beamDeps = [ ranch_1_1_0 mdns_server_0_2_0 lager_3_0_2 ]; + + meta = { + description = ''server side for mdns client server + implementation''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/Licenser/mdns_server_lib"; + }; + } // packageOverrides) + ) {}; + + mdns_server_lib = mdns_server_lib_0_2_3; + + meld_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "meld"; + version = "0.1.2"; + src = fetchHex { + pkg = "meld"; + version = "0.1.2"; + sha256 = + "3f86b810df38e0767a472829a26f92c07c986c1bcc41421eba021a5a6c174e83"; + }; + + meta = { + description = ''create real CLIs in elixir, using mix tasks''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/conflate/meld"; + }; + } // packageOverrides) + ) {}; + + meld = meld_0_1_2; + + mellon_0_1_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + plug_1_1_3 + }: + buildMix ({ + name = "mellon"; + version = "0.1.1"; + src = fetchHex { + pkg = "mellon"; + version = "0.1.1"; + sha256 = + "2b05fca901c0b9609cdd65cfb015a7646a9ec239cf1694ee8f1384a53a5ac0b4"; + }; + beamDeps = [ poison_2_1_0 plug_1_1_3 ]; + + meta = { + longDescription = ''Mellon is a Plug used in authentication of + APIs. It`s flexible, you can define your own + validator etc.''; + + homepage = "https://github.com/sajmoon/mellon"; + }; + } // packageOverrides) + ) {}; + + mellon = mellon_0_1_1; + + mem_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mem"; + version = "0.1.2"; + src = fetchHex { + pkg = "mem"; + version = "0.1.2"; + sha256 = + "492f8bc52ca5d7ccdfdfac19d8a6f145eb9d268b712b02c207544022dfe2d42b"; + }; + + meta = { + description = ''KV cache with TTL, LRU and Persistence support''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/falood/mem"; + }; + } // packageOverrides) + ) {}; + + mem = mem_0_1_2; + + memcache_client_1_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + poison_2_1_0, + connection_1_0_2 + }: + buildMix ({ + name = "memcache_client"; + version = "1.1.0"; + src = fetchHex { + pkg = "memcache_client"; + version = "1.1.0"; + sha256 = + "e12d6add6d9ef817f7cf47d85c37c75c9ec81512a7ad88f23b50963048bce439"; + }; + beamDeps = [ poolboy_1_5_1 poison_2_1_0 connection_1_0_2 ]; + + meta = { + description = ''Memcache client library utilizing the memcache + binary protocol.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsharju/memcache_client"; + }; + } // packageOverrides) + ) {}; + + memcache_client = memcache_client_1_1_0; + + meta_0_0_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, forms_0_0_1 }: + buildRebar3 ({ + name = "meta"; + version = "0.0.1"; + src = fetchHex { + pkg = "meta"; + version = "0.0.1"; + sha256 = + "9aa1be58e265a16eafb9092d9675427672721ca9d3c924664e561b0857c6dcb8"; + }; + + buildPlugins = [ rebar3_hex ]; + + beamDeps = [ forms_0_0_1 ]; + + meta = { + description = ''A metaprogramming library for Erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/efcasado/forms"; + }; + } // packageOverrides) + ) {}; + + meta = meta_0_0_1; + + metainvestigator_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, floki_0_8_0 }: + buildMix ({ + name = "metainvestigator"; + version = "0.0.3"; + src = fetchHex { + pkg = "metainvestigator"; + version = "0.0.3"; + sha256 = + "774b3973090491a9a342a68c5cf099c98581ae0f1b1d313a08a7d2030d541781"; + }; + beamDeps = [ floki_0_8_0 ]; + + meta = { + description = ''A library for web scraping, inspired by + MetaInspector''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nekova/metainvestigator"; + }; + } // packageOverrides) + ) {}; + + metainvestigator = metainvestigator_0_0_3; + + metrics_1_0_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "metrics"; + version = "1.0.1"; + src = fetchHex { + pkg = "metrics"; + version = "1.0.1"; + sha256 = + "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"; + }; + + meta = { + description = ''A generic interface to different metrics systems + in Erlang.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/benoitc/erlang-metrics"; + }; + } // packageOverrides) + ) {}; + + metrics_1_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "metrics"; + version = "1.1.0"; + src = fetchHex { + pkg = "metrics"; + version = "1.1.0"; + sha256 = + "48bd4774cef5bd88680cf71c9db46acbe5a80f23072cb2a0a42e8f7d5bd33549"; + }; + + meta = { + description = ''A generic interface to different metrics systems + in Erlang.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/benoitc/erlang-metrics"; + }; + } // packageOverrides) + ) {}; + + metrics = metrics_1_1_0; + + metrix_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, logfmt_3_0_2 }: + buildMix ({ + name = "metrix"; + version = "0.2.0"; + src = fetchHex { + pkg = "metrix"; + version = "0.2.0"; + sha256 = + "544fbe90988d7ac1e828287b44d88166c8aa2738ec983b1578af7d51d7b63dd7"; + }; + beamDeps = [ logfmt_3_0_2 ]; + + meta = { + longDescription = ''Metrix is a library to log custom application + metrics, in a well-structured, human *and* + machine readable format, for use by downstream + log processing systems (like Librato, Reimann, + etc...)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rwdaigle/metrix"; + }; + } // packageOverrides) + ) {}; + + metrix = metrix_0_2_0; + + mex_0_0_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mex"; + version = "0.0.5"; + src = fetchHex { + pkg = "mex"; + version = "0.0.5"; + sha256 = + "52765dc6f5d0b03dba9f08424b85cfbc96f873dfc769cdb6a26ac391ad3344e3"; + }; + + meta = { + description = ''Macro-expansion display helper for IEx.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mrluc/mex"; + }; + } // packageOverrides) + ) {}; + + mex = mex_0_0_5; + + milliseconds_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "milliseconds"; + version = "0.0.1"; + src = fetchHex { + pkg = "milliseconds"; + version = "0.0.1"; + sha256 = + "6f82b9f47590e96ed90761d6eb331a9c11a40b68216d5e4867420899420035f0"; + }; + + meta = { + longDescription = '' Simple library to work with milliseconds. + Convert text to milliseconds: convert(\"2d\") + Convert milliseconds to text: convert(8640000) + Calculate future time: future_time(\"6hrs\") ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/davebryson/elixir_milliseconds"; + }; + } // packageOverrides) + ) {}; + + milliseconds = milliseconds_0_0_1; + + mime_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mime"; + version = "0.0.1"; + src = fetchHex { + pkg = "mime"; + version = "0.0.1"; + sha256 = + "24098ddfbd23433846d064a337531dcd3b1c3abdad4c359bf4f1a89243270a00"; + }; + + meta = { + description = ''A mime type module for elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/elixirdrops/mime"; + }; + } // packageOverrides) + ) {}; + + mime = mime_0_0_1; + + mimerl_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "mimerl"; + version = "1.0.0"; + src = fetchHex { + pkg = "mimerl"; + version = "1.0.0"; + sha256 = + "a30b01104a29bd3a363db8646e4ce0f7980f9ecd23a98707c46c3ced918c41b4"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''Library to handle mimetypes''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/benoitc/mimerl"; + }; + } // packageOverrides) + ) {}; + + mimerl_1_0_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "mimerl"; + version = "1.0.2"; + src = fetchHex { + pkg = "mimerl"; + version = "1.0.2"; + sha256 = + "7a4c8e1115a2732a67d7624e28cf6c9f30c66711a9e92928e745c255887ba465"; + }; + + meta = { + description = ''Library to handle mimetypes''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/benoitc/mimerl"; + }; + } // packageOverrides) + ) {}; + + mimerl_1_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "mimerl"; + version = "1.1.0"; + src = fetchHex { + pkg = "mimerl"; + version = "1.1.0"; + sha256 = + "def0f1922a5dcdeeee6e4f41139b364e7f0f40239774b528a0986b12bcb42ddc"; + }; + + meta = { + description = ''Library to handle mimetypes''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/benoitc/mimerl"; + }; + } // packageOverrides) + ) {}; + + mimerl = mimerl_1_1_0; + + mimetype_parser_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mimetype_parser"; + version = "0.1.2"; + src = fetchHex { + pkg = "mimetype_parser"; + version = "0.1.2"; + sha256 = + "c495521cad6cf49fb79098e68e921c58955312df46c9c5aa5abab44224c2647d"; + }; + + meta = { + description = ''parse mimetypes''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/mimetype_parser"; + }; + } // packageOverrides) + ) {}; + + mimetype_parser = mimetype_parser_0_1_2; + + mimex_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mimex"; + version = "0.1.0"; + src = fetchHex { + pkg = "mimex"; + version = "0.1.0"; + sha256 = + "68858d5fb6a59780c3b94a445fd994856c3f1d0f3ed8dff6a95b6aa80027e4de"; + }; + + meta = { + description = ''MIME type utilities for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hex-sh/mimex"; + }; + } // packageOverrides) + ) {}; + + mimex = mimex_0_1_0; + + minmaxlist_0_0_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "minmaxlist"; + version = "0.0.6"; + src = fetchHex { + pkg = "minmaxlist"; + version = "0.0.6"; + sha256 = + "cc9bc50dc971c8c3743bcecdaca35330593d6466d911c656ba7d718836e68a57"; + }; + + meta = { + longDescription = ''Elixir library extending `Enum.min_by/2`, + `Enum.max_by/2` and `Enum.min_max_by/2` to + return a list of results instead of just one.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/seantanly/elixir-minmaxlist"; + }; + } // packageOverrides) + ) {}; + + minmaxlist = minmaxlist_0_0_6; + + misc_random_0_2_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "misc_random"; + version = "0.2.6"; + src = fetchHex { + pkg = "misc_random"; + version = "0.2.6"; + sha256 = + "4fe3db3bddcf55d93404fa9f5bf006800d54bfeb78bcf583376750d28ac0d7bc"; + }; + + meta = { + longDescription = ''This is a very thin wrapper around erlang`s + random:uniform method. It allows you to create + random strings or numbers.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gutschilla/elixir-helper-random"; + }; + } // packageOverrides) + ) {}; + + misc_random = misc_random_0_2_6; + + mix_apidoc_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "mix_apidoc"; + version = "0.1.0"; + src = fetchHex { + pkg = "mix_apidoc"; + version = "0.1.0"; + sha256 = + "e22e8a2ebf33efb6feb9a7ee6ee69a2df73496c8c6793a57cd426e9e9b1ba82e"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + longDescription = ''A mix task that triggers apidoc to create + documentation for RESTful web APIs from inline + code annotations.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sldab/mix_apidoc"; + }; + } // packageOverrides) + ) {}; + + mix_apidoc = mix_apidoc_0_1_0; + + mix_deps_tree_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mix_deps_tree"; + version = "0.1.0"; + src = fetchHex { + pkg = "mix_deps_tree"; + version = "0.1.0"; + sha256 = + "de19ea3eebf578080263f25fdf6a248fdc460aa86e41d582cc0d0379329fa6b6"; + }; + + meta = { + description = ''Mix task to print dependency tree of an + application to a terminal''; + + homepage = "https://github.com/liveforeverx/mix_deps_tree"; + }; + } // packageOverrides) + ) {}; + + mix_deps_tree = mix_deps_tree_0_1_0; + + mix_erlang_tasks_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mix_erlang_tasks"; + version = "0.1.0"; + src = fetchHex { + pkg = "mix_erlang_tasks"; + version = "0.1.0"; + sha256 = + "95d2839c422c482a70c08a8702da8242f86b773f8ab6e8602a4eb72da8da04ed"; + }; + + meta = { + longDescription = ''This project provides a few Mix tasks that + make it more convenient to use Mix as a build + tool and package manager when developing + applications in Erlang.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/alco/mix-erlang-tasks"; + }; + } // packageOverrides) + ) {}; + + mix_erlang_tasks = mix_erlang_tasks_0_1_0; + + mix_eunit_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mix_eunit"; + version = "0.1.2"; + src = fetchHex { + pkg = "mix_eunit"; + version = "0.1.2"; + sha256 = + "910cd611635e845be3c57b2c6c0dac7af24c87055b3d289fe93d7df1dafaeb6c"; + }; + + meta = { + description = ''A mix task to run eunit tests, works for umbrella + projects''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dantswain/mix_eunit"; + }; + } // packageOverrides) + ) {}; + + mix_eunit = mix_eunit_0_1_2; + + mix_info_0_7_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mix_info"; + version = "0.7.2"; + src = fetchHex { + pkg = "mix_info"; + version = "0.7.2"; + sha256 = + "7b4430ea649bb0c978f3b761403c068b08d9781c3f325c3f0dc57c1b44f395a2"; + }; + + meta = { + longDescription = ''A mix task that counts directories, files, + lines of code, modules, functions etc and + displays the results.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pskordilakis/mix_info"; + }; + } // packageOverrides) + ) {}; + + mix_info = mix_info_0_7_2; + + mix_test_watch_0_2_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }: + buildMix ({ + name = "mix_test_watch"; + version = "0.2.6"; + src = fetchHex { + pkg = "mix_test_watch"; + version = "0.2.6"; + sha256 = + "b7019e9a0eba42bc98f15be9c1402f23c2b0dab7b67e71bba8bc5b337b0ab273"; + }; + beamDeps = [ fs_0_9_2 ]; + + meta = { + description = ''Automatically run tests when files change''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lpil/mix-test.watch"; + }; + } // packageOverrides) + ) {}; + + mix_test_watch = mix_test_watch_0_2_6; + + mixpanel_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exjsx_3_1_0 }: + buildMix ({ + name = "mixpanel"; + version = "0.0.3"; + src = fetchHex { + pkg = "mixpanel"; + version = "0.0.3"; + sha256 = + "7b81d80d3705e5d4451951984bac49d476e3c79131138e9ffb66538f9c51a56e"; + }; + beamDeps = [ exjsx_3_1_0 ]; + + meta = { + description = ''A client for the Mixpanel HTTP API. See + mixpanel.com.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/michihuber/mixpanel_ex"; + }; + } // packageOverrides) + ) {}; + + mixpanel = mixpanel_0_0_3; + + mixunit_0_9_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "mixunit"; + version = "0.9.2"; + src = fetchHex { + pkg = "mixunit"; + version = "0.9.2"; + sha256 = + "2c0e66d10d479ec95c636d2de1db04cba03574282182af0df49c297230b22d43"; + }; + + meta = { + description = ''an eunit task for mix''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/mixunit"; + }; + } // packageOverrides) + ) {}; + + mixunit = mixunit_0_9_2; + + mmExchangeRate_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + jsx_2_8_0, + httpotion_2_2_2 + }: + buildMix ({ + name = "mmExchangeRate"; + version = "0.0.1"; + src = fetchHex { + pkg = "mmExchangeRate"; + version = "0.0.1"; + sha256 = + "6daf6e74bf3ce8f9d7cc19b18b023d700201a847dde94a0eef1f263ce65efbac"; + }; + beamDeps = [ jsx_2_8_0 httpotion_2_2_2 ]; + + meta = { + longDescription = ''A simple exchange rate checker and calculator + based on Central Bank of Myanmar Api. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/Arkar-Aung/mmExchangeRate"; + }; + } // packageOverrides) + ) {}; + + mmExchangeRate = mmExchangeRate_0_0_1; + + mnemonic_slugs_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mnemonic_slugs"; + version = "0.0.1"; + src = fetchHex { + pkg = "mnemonic_slugs"; + version = "0.0.1"; + sha256 = + "d5200aaf06da3f9f307b58464f5eca2ed1a0dc379a12fe4f42444bb1e30a4bd8"; + }; + + meta = { + description = ''MnemonicSlugs is an Elixir library for generating + memorable slugs.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/devshane/mnemonic_slugs"; + }; + } // packageOverrides) + ) {}; + + mnemonic_slugs = mnemonic_slugs_0_0_1; + + mochiweb_html_2_13_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "mochiweb_html"; + version = "2.13.0"; + src = fetchHex { + pkg = "mochiweb_html"; + version = "2.13.0"; + sha256 = + "c05f969fd011b357ea2f577c2b996776241d179ba2eb1bcba274cc23fdcf5439"; + }; + + meta = { + description = ''Mochiweb HTML parser''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mochi/mochiweb"; + }; + } // packageOverrides) + ) {}; + + mochiweb_html = mochiweb_html_2_13_0; + + module_mocker_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "module_mocker"; + version = "0.2.0"; + src = fetchHex { + pkg = "module_mocker"; + version = "0.2.0"; + sha256 = + "ce8aa59f0c58ce7d333a1853f6a3a106fe0cbbe79f6f9aeb72370d66ed454f5b"; + }; + + meta = { + longDescription = ''ModuleMocker allows to use different module + in development and test environment. It allows + convention to mock module for test''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rohanpujaris/module_mocker"; + }; + } // packageOverrides) + ) {}; + + module_mocker = module_mocker_0_2_0; + + mogrify_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mogrify"; + version = "0.2.0"; + src = fetchHex { + pkg = "mogrify"; + version = "0.2.0"; + sha256 = + "47e9c3c9eba9772f0d5da28e430efef4e9317a7f805357de06a18945ebbf9a5e"; + }; + + meta = { + description = ''ImageMagick command line wrapper.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/route/mogrify"; + }; + } // packageOverrides) + ) {}; + + mogrify = mogrify_0_2_0; + + mojoauth_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ + name = "mojoauth"; + version = "1.0.2"; + src = fetchHex { + pkg = "mojoauth"; + version = "1.0.2"; + sha256 = + "72d8b3fdff6d6571d7dcc9ad46b249823c84e0321920a0e9d6f39ee5f9fc2f23"; + }; + beamDeps = [ timex_1_0_2 ]; + + meta = { + longDescription = ''MojoAuth is a set of standard approaches to + cross-app authentication based on HMAC.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/adhearsion/mojo-auth.ex"; + }; + } // packageOverrides) + ) {}; + + mojoauth = mojoauth_1_0_2; + + moment_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "moment"; + version = "0.1.0"; + src = fetchHex { + pkg = "moment"; + version = "0.1.0"; + sha256 = + "0cc098c8ba88f768ffd41e4bc4bb45b559d49361a2f8f7a39c686020da3f1842"; + }; + + meta = { + description = ''Parse, validate, manipulate, and display dates in + Elixir.''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/atabary/moment"; + }; + } // packageOverrides) + ) {}; + + moment = moment_0_1_0; + + mon_handler_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, dialyze_0_2_1 }: + buildMix ({ + name = "mon_handler"; + version = "1.0.2"; + src = fetchHex { + pkg = "mon_handler"; + version = "1.0.2"; + sha256 = + "d18942f95750b94e3da1d9fca7a2ea4b1b1d27c017feff76cb109b29bb308f58"; + }; + beamDeps = [ dialyze_0_2_1 ]; + + meta = { + longDescription = ''A minimal GenServer that monitors a given + GenEvent handler. This server will handle exits + of the Handler and attempt to re-add it to the + manager when unexpected exits occur. Exits for + :normal, :shutdown or :swapped reasons will not + attempt a re-add to the manager.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tattdcodemonkey/mon_handler"; + }; + } // packageOverrides) + ) {}; + + mon_handler = mon_handler_1_0_2; + + monad_1_0_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "monad"; + version = "1.0.5"; + src = fetchHex { + pkg = "monad"; + version = "1.0.5"; + sha256 = + "d8ebe20971160e96bd6cdf11b5e8b5c24b70fddde3d198e5f7c3b5ebfbc78d6e"; + }; + + meta = { + description = ''Monads and do-syntax for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rmies/monad"; + }; + } // packageOverrides) + ) {}; + + monad = monad_1_0_5; + + monadex_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "monadex"; + version = "1.0.2"; + src = fetchHex { + pkg = "monadex"; + version = "1.0.2"; + sha256 = + "968784f2789fcb30b118399e51736f2265ca6b2823cc8fcabd73d6e4ac23e082"; + }; + + meta = { + description = ''Improve pipelines with monads.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rob-brown/MonadEx"; + }; + } // packageOverrides) + ) {}; + + monadex = monadex_1_0_2; + + monetized_0_3_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + ecto_1_1_5, + decimal_1_1_1 + }: + buildMix ({ + name = "monetized"; + version = "0.3.2"; + src = fetchHex { + pkg = "monetized"; + version = "0.3.2"; + sha256 = + "1978e46c6dd352fea0e9ce208835886ea4fd07dfc1555ee2f9adce98a9e82ce6"; + }; + beamDeps = [ poison_1_5_2 ecto_1_1_5 decimal_1_1_1 ]; + + meta = { + description = ''A lightweight solution for handling and storing + money.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/theocodes/monetized"; + }; + } // packageOverrides) + ) {}; + + monetized = monetized_0_3_2; + + money_0_0_1_dev = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "money"; + version = "0.0.1-dev"; + src = fetchHex { + pkg = "money"; + version = "0.0.1-dev"; + sha256 = + "ea032fa5bbed9b9e8a91192601d612b805b1855e0ed6cdb99e3277b0a2735aeb"; + }; + + meta = { + longDescription = ''Elixir library for working with Money safer, + easier, and fun, is an interpretation of the + Fowler`s Money pattern in fun.prog.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/liuggio/money"; + }; + } // packageOverrides) + ) {}; + + money = money_0_0_1_dev; + + mongodb_0_1_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + connection_1_0_2 + }: + buildMix ({ + name = "mongodb"; + version = "0.1.1"; + src = fetchHex { + pkg = "mongodb"; + version = "0.1.1"; + sha256 = + "714f0543288c42bc42bf3ee6ac5f52db3fbc0b152610aa2536b51c244652abe0"; + }; + beamDeps = [ poolboy_1_5_1 connection_1_0_2 ]; + + meta = { + description = ''MongoDB driver for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ericmj/mongodb"; + }; + } // packageOverrides) + ) {}; + + mongodb = mongodb_0_1_1; + + mongodb_ecto_0_1_4 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + mongodb_0_1_1, + ecto_1_0_7 + }: + buildMix ({ + name = "mongodb_ecto"; + version = "0.1.4"; + src = fetchHex { + pkg = "mongodb_ecto"; + version = "0.1.4"; + sha256 = + "2f9cc8c8cd316e187f4b8b94d0a88618ce4a6cb1b6cfa7856573f3376fb443bf"; + }; + beamDeps = [ mongodb_0_1_1 ecto_1_0_7 ]; + + meta = { + description = ''MongoDB adapter for Ecto''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/michalmuskala/mongodb_ecto"; + }; + } // packageOverrides) + ) {}; + + mongodb_ecto = mongodb_ecto_0_1_4; + + monk_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "monk"; + version = "0.1.3"; + src = fetchHex { + pkg = "monk"; + version = "0.1.3"; + sha256 = + "35e6a2eea7090612fa25a003fb95ac120f27087f203445bbc33ac18682ddd724"; + }; + + meta = { + description = ''Monk helps to distinguish good from evil with an + simple ok/error monad''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/niahoo/monk"; + }; + } // packageOverrides) + ) {}; + + monk = monk_0_1_3; + + morph_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "morph"; + version = "0.1.0"; + src = fetchHex { + pkg = "morph"; + version = "0.1.0"; + sha256 = + "a20a6bfda56cb8f2d9904e2ea4b2b0a4159ab2692181919f6eb4fe9f52abf3f2"; + }; + + meta = { + description = ''Lightweight string transformations for Elixir.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/cmoncrief/elixir-morph"; + }; + } // packageOverrides) + ) {}; + + morph = morph_0_1_0; + + moxie_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "moxie"; + version = "0.0.1"; + src = fetchHex { + pkg = "moxie"; + version = "0.0.1"; + sha256 = + "193e18ce0888f01fe2b43d0dcf79af5f48e50eba3a73609703cb4c04bea2ae46"; + }; + + meta = { + license = stdenv.lib.licenses.free; + homepage = "https://github.com/molossus/moxie"; + }; + } // packageOverrides) + ) {}; + + moxie = moxie_0_0_1; + + mpinyin_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mpinyin"; + version = "0.0.2"; + src = fetchHex { + pkg = "mpinyin"; + version = "0.0.2"; + sha256 = + "1de0911391e6a76a91166f5210d4254165692ea28c00d4f153763d0a5757cb92"; + }; + + meta = { + description = ''Pinyin module for Elixir. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Hor/mpinyin"; + }; + } // packageOverrides) + ) {}; + + mpinyin = mpinyin_0_0_2; + + msgpack_0_5_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "msgpack"; + version = "0.5.0"; + src = fetchHex { + pkg = "msgpack"; + version = "0.5.0"; + sha256 = + "520ae767b3c3c0796d2913c92f463bc8b4dee091880734f5b99a90921e18b704"; + }; + + meta = { + description = ''MessagePack serializer/deserializer''; + license = stdenv.lib.licenses.apsl20; + homepage = "http://msgpack.org"; + }; + } // packageOverrides) + ) {}; + + msgpack = msgpack_0_5_0; + + msgpax_0_7_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "msgpax"; + version = "0.7.1"; + src = fetchHex { + pkg = "msgpax"; + version = "0.7.1"; + sha256 = + "3d2bb32de9552482f35b86cbdc547ee94b67615bfcc831222cde869afa202f2c"; + }; + + meta = { + longDescription = ''This library provides an API for serializing + and de-serializing Elixir terms using the + MessagePack format''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/lexmag/msgpax"; + }; + } // packageOverrides) + ) {}; + + msgpax_0_8_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "msgpax"; + version = "0.8.2"; + src = fetchHex { + pkg = "msgpax"; + version = "0.8.2"; + sha256 = + "aa0baa382383160d90275a1b5d8f72c457a2feed89cbb1bd080a5c3821389507"; + }; + + meta = { + longDescription = ''This library provides an API for serializing + and de-serializing Elixir terms using the + MessagePack format''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/lexmag/msgpax"; + }; + } // packageOverrides) + ) {}; + + msgpax = msgpax_0_8_2; + + mtx_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "mtx"; + version = "1.0.0"; + src = fetchHex { + pkg = "mtx"; + version = "1.0.0"; + sha256 = + "3bdcb209fe3cdfc5a6b5b95f619ecd123b7ee1d9203ace2178c8ff73be5bb90f"; + }; + + meta = { + description = ''Metrics Client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/synrc/mtx"; + }; + } // packageOverrides) + ) {}; + + mtx = mtx_1_0_0; + + multidef_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "multidef"; + version = "0.2.1"; + src = fetchHex { + pkg = "multidef"; + version = "0.2.1"; + sha256 = + "719dfdb9206ea34fc7b49c282b30adab752f9d1efb22678907d54fa0b54c50c6"; + }; + + meta = { + longDescription = ''Lets you define multiple heads for the same + function: defmodule Test do import MultiDef mdef + fred do { :init, val } -> fred {:double, val} { + :double, val } -> IO.puts(val*2) a, b -> a+b end + end IO.inspect Test.fred 1, 2 #=> 3 IO.inspect + Test.fred { :init, 4 } #=> 8 ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/pragdave/mdef"; + }; + } // packageOverrides) + ) {}; + + multidef = multidef_0_2_1; + + multiset_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "multiset"; + version = "0.0.4"; + src = fetchHex { + pkg = "multiset"; + version = "0.0.4"; + sha256 = + "f713b5102d17963fc516e0017725d716dade0b1fec979f0e3a53b8d203748c45"; + }; + + meta = { + description = ''Multisets for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/hilverd/multiset-elixir"; + }; + } // packageOverrides) + ) {}; + + multiset = multiset_0_0_4; + + murmur_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "murmur"; + version = "0.2.1"; + src = fetchHex { + pkg = "murmur"; + version = "0.2.1"; + sha256 = + "7e38b2f136d4e8039abb88f6cbdf50c939408d3819be4b18b639a968ee9c2bce"; + }; + + meta = { + longDescription = ''Murmur is a pure Elixir implementation of the + non-cryptographic hash Murmur3. It aims to + implement the x86_32bit, x86_128bit and + x64_128bit variants.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gmcabrita/murmur"; + }; + } // packageOverrides) + ) {}; + + murmur_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "murmur"; + version = "1.0.0"; + src = fetchHex { + pkg = "murmur"; + version = "1.0.0"; + sha256 = + "5e81af1fe3c7a166830e5a695e2f2253a5255888c2f510d206d103914b4e28da"; + }; + + meta = { + longDescription = ''Murmur is a pure Elixir implementation of the + non-cryptographic hash Murmur3. It aims to + implement the x86_32bit, x86_128bit and + x64_128bit variants.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gmcabrita/murmur"; + }; + } // packageOverrides) + ) {}; + + murmur = murmur_1_0_0; + + mustache_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mustache"; + version = "0.0.2"; + src = fetchHex { + pkg = "mustache"; + version = "0.0.2"; + sha256 = + "0d91f0a6221f482e736987c59032e84f6bade6ae9179e595592e2cc0b728b441"; + }; + + meta = { + description = ''Mustache templates for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/schultyy/Mustache.ex"; + }; + } // packageOverrides) + ) {}; + + mustache = mustache_0_0_2; + + mutant_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mutant"; + version = "0.0.2"; + src = fetchHex { + pkg = "mutant"; + version = "0.0.2"; + sha256 = + "c875062e082242b79c85356993ad3cfd7d550392d34fc6da23a132495b0dcb6f"; + }; + + meta = { + description = ''Now you can create mutable structs, use this with + care and only as a last resort''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/hackersguildco/Mutant"; + }; + } // packageOverrides) + ) {}; + + mutant = mutant_0_0_2; + + mysql_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "mysql"; + version = "1.0.0"; + src = fetchHex { + pkg = "mysql"; + version = "1.0.0"; + sha256 = + "34b8e9252e150d329798a0d7f7054f40c08703ccdd7e37dfc5116fe388513251"; + }; + + meta = { + description = ''MySQL/OTP – MySQL driver for Erlang/OTP''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/mysql-otp/mysql-otp"; + }; + } // packageOverrides) + ) {}; + + mysql = mysql_1_0_0; + + mysqlex_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, mysql_1_0_0 }: + buildMix ({ + name = "mysqlex"; + version = "0.0.1"; + src = fetchHex { + pkg = "mysqlex"; + version = "0.0.1"; + sha256 = + "5df9c80e9ff9a61fe9ddb4c8883963686f66e21168b64acfa55b14c50e9305ee"; + }; + beamDeps = [ mysql_1_0_0 ]; + + meta = { + longDescription = ''An Ecto-compatible wrapper around the + mysql-otp library. + https://github.com/mysql-otp/mysql-otp''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/tjheeta/mysqlex"; + }; + } // packageOverrides) + ) {}; + + mysqlex = mysqlex_0_0_1; + + n2o_2_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "n2o"; + version = "2.3.0"; + src = fetchHex { + pkg = "n2o"; + version = "2.3.0"; + sha256 = + "fca4f0a259fda332784d6d7948f8aadec5fb6a7695d5ac79b849b0ae547fb7b8"; + }; + + meta = { + description = ''N2O Application Server''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/synrc/n2o"; + }; + } // packageOverrides) + ) {}; + + n2o = n2o_2_3_0; + + nat_set_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "nat_set"; + version = "0.0.1"; + src = fetchHex { + pkg = "nat_set"; + version = "0.0.1"; + sha256 = + "cc6ed65c754153d7c98c9825370780831cfbe638d162cb4ae2178eadcdd00611"; + }; + + meta = { + description = ''Represent sets of natural numbers compactly in + Elixir using bitwise operations''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/hilverd/nat-set-elixir"; + }; + } // packageOverrides) + ) {}; + + nat_set = nat_set_0_0_1; + + nativegen_0_4_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "nativegen"; + version = "0.4.1"; + src = fetchHex { + pkg = "nativegen"; + version = "0.4.1"; + sha256 = + "54c36ca3c0333f04b84f8b15fa028fcecfe77614954c78e87b22ed56e977f46f"; + }; + + meta = { + description = ''Accessible REST API code generator for native + app.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yoavlt/nativegen"; + }; + } // packageOverrides) + ) {}; + + nativegen = nativegen_0_4_1; + + nats_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + json_0_3_3 + }: + buildMix ({ + name = "nats"; + version = "0.0.1"; + src = fetchHex { + pkg = "nats"; + version = "0.0.1"; + sha256 = + "5568e91f56f65388ad6cb92ddbd70cec5227dadea9d12ec558e93bfe71c9bf78"; + }; + beamDeps = [ poolboy_1_5_1 json_0_3_3 ]; + + meta = { + description = ''A NATS client written in elixir supporting + pub/sub for microservices''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/aforward/elixir_nats"; + }; + } // packageOverrides) + ) {}; + + nats = nats_0_0_1; + + nats_msg_0_4_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "nats_msg"; + version = "0.4.1"; + src = fetchHex { + pkg = "nats_msg"; + version = "0.4.1"; + sha256 = + "8e21a78bf2ae76d7702bcc03eb87bdddac1b99edebfc99db98e8e94a7a5361c4"; + }; + + meta = { + description = ''Pure Erlang NATS Protocol Message + Encoder/Decoder''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yuce/nats_msg"; + }; + } // packageOverrides) + ) {}; + + nats_msg = nats_msg_0_4_1; + + natsio_0_1_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "natsio"; + version = "0.1.4"; + src = fetchHex { + pkg = "natsio"; + version = "0.1.4"; + sha256 = + "3ed391e3e5f494828da2cb4949e661df782004cfe8273b9f1685ba4bc858187e"; + }; + + meta = { + description = ''NATS framework for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nats-io/elixir-nats"; + }; + } // packageOverrides) + ) {}; + + natsio = natsio_0_1_4; + + natural_sort_0_3_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "natural_sort"; + version = "0.3.0"; + src = fetchHex { + pkg = "natural_sort"; + version = "0.3.0"; + sha256 = + "6c3476edf395c487a8b55d104458e0f029ca2adb7a0373d12a7a08643f7e7172"; + }; + + meta = { + description = ''Sort a list of strings containing numbers in a + natural manner. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/DanCouper/natural_sort"; + }; + } // packageOverrides) + ) {}; + + natural_sort = natural_sort_0_3_0; + + navigation_history_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "navigation_history"; + version = "0.2.0"; + src = fetchHex { + pkg = "navigation_history"; + version = "0.2.0"; + sha256 = + "9fbddedd831930c3f2e784c53442558d90d68040f9921dfa9441da63d6b8dacc"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''Navigation history tracking plug''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/tuvistavie/plug-navigation-history"; + }; + } // packageOverrides) + ) {}; + + navigation_history = navigation_history_0_2_0; + + navigation_tree_0_4_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "navigation_tree"; + version = "0.4.4"; + src = fetchHex { + pkg = "navigation_tree"; + version = "0.4.4"; + sha256 = + "a4e6aad3224ad9c463a1ac0412463a18ac71b7a78ea16303ad72f43f1fb217c6"; + }; + + meta = { + longDescription = ''A navigation tree representation with helpers + to generate HTML out of it - depending of + userroles. Also creates nice HTML navbars for + Bootstrap. Implemented as Agent to hold config + state.''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/gutschilla/elixir-navigation-tree"; + }; + } // packageOverrides) + ) {}; + + navigation_tree = navigation_tree_0_4_4; + + ndc_ex_sdk_0_0_7 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + xml_builder_0_0_8, + pipe_0_0_2, + ibrowse_4_2_2, + httpotion_2_2_2 + }: + buildMix ({ + name = "ndc_ex_sdk"; + version = "0.0.7"; + src = fetchHex { + pkg = "ndc_ex_sdk"; + version = "0.0.7"; + sha256 = + "73402d51ce6da305409d48e1638e864a336038a03205e66c75c090115c8fe8b8"; + }; + beamDeps = [ + xml_builder_0_0_8 + pipe_0_0_2 + ibrowse_4_2_2 + httpotion_2_2_2 + ]; + + meta = { + longDescription = ''This is an Elixir package that wrapps any + NDC-compliant API. It`s host-agnostic and quite + flexible-through-configuration so that it can + reach NDC hosts with a certain flexibility''; + + homepage = "https://github.com/open-ndc/ndc-ex-sdk"; + }; + } // packageOverrides) + ) {}; + + ndc_ex_sdk = ndc_ex_sdk_0_0_7; + + neat_ex_1_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, json_0_3_3 }: + buildMix ({ + name = "neat_ex"; + version = "1.1.0"; + src = fetchHex { + pkg = "neat_ex"; + version = "1.1.0"; + sha256 = + "42d08b8c1bb5245d19864f683df77354ee466b285bac48abed3dd3471a738b21"; + }; + beamDeps = [ json_0_3_3 ]; + + meta = { + longDescription = ''This project provides the means to define, + simulate, and serialize + Artificial-Neural-Networks (ANNs), as well as + the means to develop them through use of the + Neuro-Evolution of Augmenting Toplogies (NEAT) + algorithm created by Dr. Kenneth Stanley. + Neuro-Evolution, unlike back-propogation, easily + allows the usage of recurrent neural networks + instead of just feed-forward networks, and + fitness functions instead of just training data. + Additionally, since NEAT augments topologies, + all the engine needs to start is the + input/output layout, and a fitness function.''; + license = stdenv.lib.licenses.asl20; + }; + } // packageOverrides) + ) {}; + + neat_ex = neat_ex_1_1_0; + + nectar_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "nectar"; + version = "0.0.1"; + src = fetchHex { + pkg = "nectar"; + version = "0.0.1"; + sha256 = + "dffc5f1c68c83d9eb83ca1c8868d923beaccfdf36ae2e5122dc7bc8edd5665f5"; + }; + + meta = { + description = ''Placeholder package for nectar ecommerce''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + nectar = nectar_0_0_1; + + neotoma_1_7_3 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "neotoma"; + version = "1.7.3"; + src = fetchHex { + pkg = "neotoma"; + version = "1.7.3"; + sha256 = + "2da322b9b1567ffa0706a7f30f6bbbde70835ae44a1050615f4b4a3d436e0f28"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''PEG/Packrat toolkit and parser-generator.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/seancribbs/neotoma"; + }; + } // packageOverrides) + ) {}; + + neotoma = neotoma_1_7_3; + + nerves_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }: + buildMix ({ + name = "nerves"; + version = "0.2.0"; + src = fetchHex { + pkg = "nerves"; + version = "0.2.0"; + sha256 = + "b53cd891c3d719597ccb084bdcfc6eb714f820d9c53c44f1bab4d530c9b0734f"; + }; + beamDeps = [ exrm_1_0_3 ]; + + meta = { + longDescription = ''Nerves - Create firmware for embedded devices + like Raspberry Pi, BeagleBone Black, and more''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/nerves-project/nerves"; + }; + } // packageOverrides) + ) {}; + + nerves = nerves_0_2_0; + + nest_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "nest"; + version = "0.0.1"; + src = fetchHex { + pkg = "nest"; + version = "0.0.1"; + sha256 = + "4092651c14022a285eb4ffb8b6e9c3d6c5937729644fcc88b43f74324bc3bac3"; + }; + + meta = { + longDescription = ''A library for using the Nest API, allowing + integration with Nest Thermostats and other Nest + devices.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/adamzaninovich/nest"; + }; + } // packageOverrides) + ) {}; + + nest = nest_0_0_1; + + nested_set_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, ecto_1_1_5 }: + buildMix ({ + name = "nested_set"; + version = "0.0.2"; + src = fetchHex { + pkg = "nested_set"; + version = "0.0.2"; + sha256 = + "283fac1cbaf129d29a7ea6b6c050248bdc63631421d395f0b909510c3f7d2e83"; + }; + beamDeps = [ ecto_1_1_5 ]; + + meta = { + longDescription = ''Nested Set implementation for Ecto/Phoenix. + It is our first attempt to make something like + acts_as_nested_set in rails. Still in WIP, be + cautious if planing to use.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/bansalakhil/elixir_nested_set"; + }; + } // packageOverrides) + ) {}; + + nested_set = nested_set_0_0_2; + + netrc_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "netrc"; + version = "0.0.2"; + src = fetchHex { + pkg = "netrc"; + version = "0.0.2"; + sha256 = + "a82b1702d8702a51b17e1756261b316ae3a72ac07bbf04e3a1258cc1210f6000"; + }; + + meta = { + description = ''Read netrc files''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ma2gedev/netrcex"; + }; + } // packageOverrides) + ) {}; + + netrc = netrc_0_0_2; + + netstrings_2_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "netstrings"; + version = "2.0.1"; + src = fetchHex { + pkg = "netstrings"; + version = "2.0.1"; + sha256 = + "f6a3727dba6ae5aa3371ffddf7adf6aaf46bf387e84873f65152083ecf821845"; + }; + + meta = { + description = ''Netstrings implementaton''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/netstrings_ex"; + }; + } // packageOverrides) + ) {}; + + netstrings = netstrings_2_0_1; + + neural_network_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "neural_network"; + version = "0.1.0"; + src = fetchHex { + pkg = "neural_network"; + version = "0.1.0"; + sha256 = + "80e84eaf4e0ff5455651c6c7cef484b9eefd60d6bd8e59606eb72a42cf18587c"; + }; + + meta = { + longDescription = ''A neural network made up of layers of neurons + connected to each other to form a relationship + allowing it to learn.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kblake/neural-net-elixir"; + }; + } // packageOverrides) + ) {}; + + neural_network = neural_network_0_1_0; + + news_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "news"; + version = "0.3.0"; + src = fetchHex { + pkg = "news"; + version = "0.3.0"; + sha256 = + "b8759a3cb0bb40e86d5a5ea65b911a066da4ec197b097be88fb67f6358838124"; + }; + + meta = { + description = ''Publish elixir and erlang new weekly''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zhongwencool/news"; + }; + } // packageOverrides) + ) {}; + + news = news_0_3_0; + + ngram_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ngram"; + version = "0.0.1"; + src = fetchHex { + pkg = "ngram"; + version = "0.0.1"; + sha256 = + "13185be68166d8314ae63f70eceb58a4e00b441d3294633450d4f8a7c565e218"; + }; + + meta = { + description = ''n-gram tokenization and distance calculations''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ardcore/ngram"; + }; + } // packageOverrides) + ) {}; + + ngram = ngram_0_0_1; + + nile_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "nile"; + version = "0.1.3"; + src = fetchHex { + pkg = "nile"; + version = "0.1.3"; + sha256 = + "73a2c8be8507bb39de74eb3fa5ae40e3c40cabef30cd884f67ab6d3400a7bea4"; + }; + + meta = { + description = ''Elixir stream extensions''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/nile"; + }; + } // packageOverrides) + ) {}; + + nile = nile_0_1_3; + + normalize_email_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, is_email_0_0_2 }: + buildMix ({ + name = "normalize_email"; + version = "0.0.1"; + src = fetchHex { + pkg = "normalize_email"; + version = "0.0.1"; + sha256 = + "ac5864ecf0d002ecbc56f9296bff7c01fc1d7e2e84e2529f7726f1a068f5d584"; + }; + beamDeps = [ is_email_0_0_2 ]; + + meta = { + description = ''Normalize an email address''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/johnotander/normalize_email"; + }; + } // packageOverrides) + ) {}; + + normalize_email = normalize_email_0_0_1; + + normalize_url_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "normalize_url"; + version = "0.0.2"; + src = fetchHex { + pkg = "normalize_url"; + version = "0.0.2"; + sha256 = + "491ea6aa41e044dd85248407e5ebc94a608f89b30292e7ee72d52c3659421016"; + }; + + meta = { + description = ''Normalize a url''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/johnotander/normalize_url"; + }; + } // packageOverrides) + ) {}; + + normalize_url = normalize_url_0_0_2; + + not_qwerty123_1_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }: + buildMix ({ + name = "not_qwerty123"; + version = "1.1.0"; + src = fetchHex { + pkg = "not_qwerty123"; + version = "1.1.0"; + sha256 = + "4997296d742f72fe95f8933cba92ab6cee3147888dc9bbd7b703c7f970e8ab58"; + }; + beamDeps = [ gettext_0_10_0 ]; + + meta = { + description = ''Library to check password strength and generate + random passwords.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/riverrun/notqwerty123"; + }; + } // packageOverrides) + ) {}; + + not_qwerty123 = not_qwerty123_1_1_0; + + number_0_4_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "number"; + version = "0.4.1"; + src = fetchHex { + pkg = "number"; + version = "0.4.1"; + sha256 = + "773d28c837acf17b0056deb54b7d966a3d6a9d853e88c08829b5732cb7029fb9"; + }; + + meta = { + description = ''Convert numbers to various string formats, such + as currency''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/danielberkompas/number"; + }; + } // packageOverrides) + ) {}; + + number = number_0_4_1; + + oauth2_erlang_0_6_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "oauth2_erlang"; + version = "0.6.1"; + src = fetchHex { + pkg = "oauth2_erlang"; + version = "0.6.1"; + sha256 = + "dc60e92de379fd27c3b9296e2368e97797233a092297d41f47f3a72846b2a974"; + }; + + meta = { + description = ''Erlang OAuth 2.0 implementation''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kivra/oauth2"; + }; + } // packageOverrides) + ) {}; + + oauth2_erlang = oauth2_erlang_0_6_1; + + oauther_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "oauther"; + version = "1.0.2"; + src = fetchHex { + pkg = "oauther"; + version = "1.0.2"; + sha256 = + "2b65e6408600d5daed7bb1b108533624b6c34491f0278b44013400aa7b551e4d"; + }; + + meta = { + description = ''Library to authenticate with OAuth 1.0 + protocol.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/lexmag/oauther"; + }; + } // packageOverrides) + ) {}; + + oauther = oauther_1_0_2; + + octet_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "octet"; + version = "0.0.2"; + src = fetchHex { + pkg = "octet"; + version = "0.0.2"; + sha256 = + "12c7d7cff035f48139e7304913e7c227ce5bf95508ad8096ed510328d916ede3"; + }; + + meta = { + description = ''Octet string converter''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kiennt/octet"; + }; + } // packageOverrides) + ) {}; + + octet = octet_0_0_2; + + odgn_json_pointer_1_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "odgn_json_pointer"; + version = "1.1.0"; + src = fetchHex { + pkg = "odgn_json_pointer"; + version = "1.1.0"; + sha256 = + "04330904e76a596342a5a9ac09c5d10250a237fc39c59d5576c8ac3b15842f3d"; + }; + + meta = { + description = ''This is an implementation of JSON Pointer (RFC + 6901) for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/odogono/elixir-jsonpointer"; + }; + } // packageOverrides) + ) {}; + + odgn_json_pointer = odgn_json_pointer_1_1_0; + + odt_potion_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "odt_potion"; + version = "0.0.1"; + src = fetchHex { + pkg = "odt_potion"; + version = "0.0.1"; + sha256 = + "f2c429129dc1e636dbd3563750c667315aff650ddfe7aefe06991299f76f35bd"; + }; + + meta = { + description = ''Substitute placeholders in ODT`s with custom + information''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/andrewcottage/odt_potion"; + }; + } // packageOverrides) + ) {}; + + odt_potion = odt_potion_0_0_1; + + og_0_0_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "og"; + version = "0.0.6"; + src = fetchHex { + pkg = "og"; + version = "0.0.6"; + sha256 = + "8934f5e495dc8fcc8ed56f37f0067e0a360c9588c04c6b800d91eb593b9067d3"; + }; + + meta = { + description = ''Og is a small collection of logger helper + functions in elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stephenmoloney/og"; + }; + } // packageOverrides) + ) {}; + + og = og_0_0_6; + + ok_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ok"; + version = "0.1.3"; + src = fetchHex { + pkg = "ok"; + version = "0.1.3"; + sha256 = + "e5ac8a719f097467925d492da2cd2ad9543dfd8729739fa4a32a671337eb08bb"; + }; + + meta = { + description = ''Effecient error handling in elixir pipelines.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/CrowdHailer/OK"; + }; + } // packageOverrides) + ) {}; + + ok = ok_0_1_3; + + ok_jose_2_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ok_jose"; + version = "2.0.0"; + src = fetchHex { + pkg = "ok_jose"; + version = "2.0.0"; + sha256 = + "55377aa3f9b6e563aeb14b3960e4d2a697a059799e8d8ee390059faeaab219eb"; + }; + + meta = { + description = ''Pipe functions that produce ok/error tuples.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/vic/ok_jose"; + }; + } // packageOverrides) + ) {}; + + ok_jose = ok_jose_2_0_0; + + onetime_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ + name = "onetime"; + version = "1.0.0"; + src = fetchHex { + pkg = "onetime"; + version = "1.0.0"; + sha256 = + "28481e7e239caa0002a42178af46cb80c3501faca7c1b953558e9d8dbba76c4c"; + }; + beamDeps = [ timex_1_0_2 ]; + + meta = { + description = ''An onetime key-value store''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ryo33/onetime-elixir"; + }; + } // packageOverrides) + ) {}; + + onetime = onetime_1_0_0; + + oop_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "oop"; + version = "0.0.4"; + src = fetchHex { + pkg = "oop"; + version = "0.0.4"; + sha256 = + "ab09b287b80ce860f34bf07652c23a9a21c4064aca730a25becfe30c6b46b81b"; + }; + + meta = { + description = ''OOP in Elixir!''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/wojtekmach/oop"; + }; + } // packageOverrides) + ) {}; + + oop = oop_0_0_4; + + ordered_list_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ordered_list"; + version = "0.1.0"; + src = fetchHex { + pkg = "ordered_list"; + version = "0.1.0"; + sha256 = + "6b6410f35d1bda7335fc0c5f16e2b6f5a6a8c162363073931347dc184521159d"; + }; + + meta = { + description = ''Sorting and reordering positions in a list.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/aarondufall/ordered_list"; + }; + } // packageOverrides) + ) {}; + + ordered_list = ordered_list_0_1_0; + + os_utils_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "os_utils"; + version = "0.3.0"; + src = fetchHex { + pkg = "os_utils"; + version = "0.3.0"; + sha256 = + "b49e32630b3f198b5fe4f6858aa03d1236d659564f98d522c9e646c045e13b64"; + }; + + meta = { + description = ''OS utilities for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/orderthruchaos/os_utils"; + }; + } // packageOverrides) + ) {}; + + os_utils = os_utils_0_3_0; + + osc_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "osc"; + version = "0.1.1"; + src = fetchHex { + pkg = "osc"; + version = "0.1.1"; + sha256 = + "41830bf1494e6f2419ab8e35d11c0f650aab1d37b45d1b3fdfcc3682e191324c"; + }; + + meta = { + description = ''OSC encoder/decoder for elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/osc_ex"; + }; + } // packageOverrides) + ) {}; + + osc = osc_0_1_1; + + p1_oauth2_0_6_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "p1_oauth2"; + version = "0.6.1"; + src = fetchHex { + pkg = "p1_oauth2"; + version = "0.6.1"; + sha256 = + "304923dcaf1edcc84b7f3f6fab1d5235777604ec3334453cf50de1060300e002"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''Erlang OAuth 2.0 implementation''; + license = with stdenv.lib.licenses; [ mit asl20 ]; + homepage = "https://github.com/processone/p1_oauth2"; + }; + } // packageOverrides) + ) {}; + + p1_oauth2 = p1_oauth2_0_6_1; + + p1_utils_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "p1_utils"; + version = "1.0.0"; + src = fetchHex { + pkg = "p1_utils"; + version = "1.0.0"; + sha256 = + "b2c6316286b071f2f667fb1c59b44fe0c996917515fa93374a4a3264affc5105"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''Erlang utility modules from ProcessOne''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/p1_utils"; + }; + } // packageOverrides) + ) {}; + + pact_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pact"; + version = "0.2.0"; + src = fetchHex { + pkg = "pact"; + version = "0.2.0"; + sha256 = + "a19000dcfd6c6b220e508ed44e9040d83e4814db2f6f74b11de1a4597a8de05e"; + }; + + meta = { + description = ''Elixir dependency registry for better testing and + cleaner code''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/BlakeWilliams/pact"; + }; + } // packageOverrides) + ) {}; + + pact = pact_0_2_0; + + paginex_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "paginex"; + version = "0.0.1"; + src = fetchHex { + pkg = "paginex"; + version = "0.0.1"; + sha256 = + "4fdc1a0bb02fbd910d24c59caae6d5793fd24a2a29d6498c04a332095e616770"; + }; + + meta = { + description = ''Exposes a pagination struct that can be helpful + to render the pagination html.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bhserna/paginex"; + }; + } // packageOverrides) + ) {}; + + paginex = paginex_0_0_1; + + painstaking_0_5_8 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exoddic_1_3_1 }: + buildMix ({ + name = "painstaking"; + version = "0.5.8"; + src = fetchHex { + pkg = "painstaking"; + version = "0.5.8"; + sha256 = + "f9de5ab6139fdda653df0a90e57fe229728a25f3611bf520c9433edd2ab81318"; + }; + beamDeps = [ exoddic_1_3_1 ]; + + meta = { + description = ''Bet stake sizing recommendations''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/painstaking"; + }; + } // packageOverrides) + ) {}; + + painstaking = painstaking_0_5_8; + + palette_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "palette"; + version = "0.0.2"; + src = fetchHex { + pkg = "palette"; + version = "0.0.2"; + sha256 = + "0ad5bbd207b4462078888882b494de937690659bb72ca34ff247b1c9c4784033"; + }; + + meta = { + description = ''A handy library for colouring strings.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lpil/palette"; + }; + } // packageOverrides) + ) {}; + + palette = palette_0_0_2; + + pandex_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pandex"; + version = "0.1.0"; + src = fetchHex { + pkg = "pandex"; + version = "0.1.0"; + sha256 = + "a9c6b401be16af5f385c4ff8fc7e3eb9686e2829b0855854de428ff2bd23e34f"; + }; + + meta = { + longDescription = ''Pandex is a lightweight Elixir wrapper for + [Pandoc](http://pandoc.org). Pandex enables you + to convert Markdown, CommonMark, HTML, Latex, + json, html to HTML, HTML5, opendocument, rtf, + texttile, asciidoc, markdown, json and others. + Pandex has no dependencies other than Pandoc + itself.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/filterkaapi/pandex"; + }; + } // packageOverrides) + ) {}; + + pandex = pandex_0_1_0; + + pangu_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pangu"; + version = "0.1.0"; + src = fetchHex { + pkg = "pangu"; + version = "0.1.0"; + sha256 = + "2634cc2463421757aca0a76665de83940d4fda12f8ed316ae929bb29f64d06c5"; + }; + + meta = { + description = ''Paranoid text spacing in Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cataska/pangu.ex"; + }; + } // packageOverrides) + ) {}; + + pangu = pangu_0_1_0; + + parabaikElixirConverter_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "parabaikElixirConverter"; + version = "0.0.1"; + src = fetchHex { + pkg = "parabaikElixirConverter"; + version = "0.0.1"; + sha256 = + "ac72f871ac393ca2e42d11f9103019f6270209b1b0fe58d6f110f5dd66c387e4"; + }; + + meta = { + longDescription = ''ParabaikElixirConverter is just a Elixir + version of Parabaik converter. It can convert + from Unicode to Zawgyi-One and Zawgyi-One to + Unicode vice versa. ''; + license = stdenv.lib.licenses.asl20; + homepage = + "https://github.com/Arkar-Aung/ParabaikElixirConverter"; + }; + } // packageOverrides) + ) {}; + + parabaikElixirConverter = parabaikElixirConverter_0_0_1; + + parallel_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "parallel"; + version = "0.0.3"; + src = fetchHex { + pkg = "parallel"; + version = "0.0.3"; + sha256 = + "d9b5e98c1892f5376b4dfa28c48a3a17029f86a28d1f9ec2f7c1a2747f256a4d"; + }; + + meta = { + description = ''Straightforward parallel processing for Elixir''; + + homepage = "https://github.com/Anonyfox/parallel"; + }; + } // packageOverrides) + ) {}; + + parallel = parallel_0_0_3; + + parallel_stream_1_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "parallel_stream"; + version = "1.0.3"; + src = fetchHex { + pkg = "parallel_stream"; + version = "1.0.3"; + sha256 = + "8b0090b13a42343ad709ed088111fd40a9e4c2d1819ef6c1e601347134ed34d0"; + }; + + meta = { + description = ''Parallel stream operations for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/beatrichartz/parallel_stream"; + }; + } // packageOverrides) + ) {}; + + parallel_stream = parallel_stream_1_0_3; + + paratize_2_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "paratize"; + version = "2.1.3"; + src = fetchHex { + pkg = "paratize"; + version = "2.1.3"; + sha256 = + "7dc6135524c65473f680ec3ade55c2f65b77ad40451ffd2bbd4128066b037d84"; + }; + + meta = { + description = ''Elixir library providing some handy parallel + processing facilities.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/seantanly/elixir-paratize"; + }; + } // packageOverrides) + ) {}; + + paratize = paratize_2_1_3; + + parse_torrent_0_2_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + earmark_0_2_1, + bencode_0_3_0 + }: + buildMix ({ + name = "parse_torrent"; + version = "0.2.0"; + src = fetchHex { + pkg = "parse_torrent"; + version = "0.2.0"; + sha256 = + "444d49f20ede110e33e0817134ef3f0b843a7af01c88e9c168acc4892ae2d320"; + }; + beamDeps = [ earmark_0_2_1 bencode_0_3_0 ]; + + meta = { + description = ''Parses a .torrent file and returns a map''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/preciz/parse_torrent"; + }; + } // packageOverrides) + ) {}; + + parse_torrent = parse_torrent_0_2_0; + + parselix_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "parselix"; + version = "0.1.0"; + src = fetchHex { + pkg = "parselix"; + version = "0.1.0"; + sha256 = + "c728426e1361e94918a7b24d45b86f00e0e7225e9086b02074ac7b33a4307406"; + }; + + meta = { + description = ''A Parser Combinator Library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ryo33/Parselix"; + }; + } // packageOverrides) + ) {}; + + parselix = parselix_0_1_0; + + pathway_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "pathway"; + version = "0.1.0"; + src = fetchHex { + pkg = "pathway"; + version = "0.1.0"; + sha256 = + "ae734bc8db0d91c0876e15b7e22e8d7616701eff94b1bd2930d2783a1b11c01d"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + description = ''A HTTP client library for the Trak.io REST API. + ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/novabyte/pathway"; + }; + } // packageOverrides) + ) {}; + + pathway = pathway_0_1_0; + + pattern_tap_0_2_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pattern_tap"; + version = "0.2.2"; + src = fetchHex { + pkg = "pattern_tap"; + version = "0.2.2"; + sha256 = + "2d17fe4c076b12efe39a362ade88d11d8bed204009027755802213db9feb3675"; + }; + + meta = { + description = ''Macro for tapping into a pattern match while + using the pipe operator ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mgwidmann/elixir-pattern_tap"; + }; + } // packageOverrides) + ) {}; + + pattern_tap = pattern_tap_0_2_2; + + pbkdf2_2_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "pbkdf2"; + version = "2.0.0"; + src = fetchHex { + pkg = "pbkdf2"; + version = "2.0.0"; + sha256 = + "1e793ce6fdb0576613115714deae9dfc1d1537eaba74f07efb36de139774488d"; + }; + + meta = { + description = ''Erlang PBKDF2 Key Derivation Function''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/basho/erlang-pbkdf2"; + }; + } // packageOverrides) + ) {}; + + pbkdf2 = pbkdf2_2_0_0; + + pbkdf2_nif_0_3_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "pbkdf2_nif"; + version = "0.3.0"; + src = fetchHex { + pkg = "pbkdf2_nif"; + version = "0.3.0"; + sha256 = + "7ad61389164cceac87e2bed9d8f184cd713cca85d51e096604c40bf86d96a8b7"; + }; + compilePorts = true; + buildPlugins = [ pc ]; + + + meta = { + description = ''PBKDF2 NIF implementation''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/barrel-db/erlang-pbkdf2-nif"; + }; + } // packageOverrides) + ) {}; + + pbkdf2_nif = pbkdf2_nif_0_3_0; + + pc_1_2_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "pc"; + version = "1.2.0"; + src = fetchHex { + pkg = "pc"; + version = "1.2.0"; + sha256 = + "ef0f59d26a25af0a5247ef1a06d28d8300f8624647b02dc521ac79a7eceb8883"; + }; + + meta = { + description = ''a rebar3 port compiler for native code''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/blt/port_compiler"; + }; + } // packageOverrides) + ) {}; + + pc = pc_1_2_0; + + pdf2htmlex_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pdf2htmlex"; + version = "0.2.0"; + src = fetchHex { + pkg = "pdf2htmlex"; + version = "0.2.0"; + sha256 = + "50885e995d25362b1f25c74796c0627657147d4d10ccb4be736be3b06b8a44a3"; + }; + + meta = { + description = ''Convert PDF docs to beautiful HTML files without + losing text or format.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ricn/pdf2htmlex"; + }; + } // packageOverrides) + ) {}; + + pdf2htmlex = pdf2htmlex_0_2_0; + + pdf_generator_0_3_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + porcelain_2_0_1, + misc_random_0_2_6 + }: + buildMix ({ + name = "pdf_generator"; + version = "0.3.1"; + src = fetchHex { + pkg = "pdf_generator"; + version = "0.3.1"; + sha256 = + "d81181dd60db4bfbf121161208c69d2aeabce74e24125a009761e1bf4cab11a7"; + }; + beamDeps = [ porcelain_2_0_1 misc_random_0_2_6 ]; + + meta = { + longDescription = ''A simple wrapper for wkhtmltopdf (HTML to + PDF) and PDFTK (adds in encryption) for use in + Elixir projects.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gutschilla/elixir-pdf-generator"; + }; + } // packageOverrides) + ) {}; + + pdf_generator = pdf_generator_0_3_1; + + peon_2_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "peon"; + version = "2.0.0"; + src = fetchHex { + pkg = "peon"; + version = "2.0.0"; + sha256 = + "3d87e626f5d014563d1cf319c0fe8576c8eb3f4399ecc9a0d7fb2385a180aaab"; + }; + + meta = { + description = ''Use Elixir maps as a document storage format.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/supernintendo/peon"; + }; + } // packageOverrides) + ) {}; + + peon = peon_2_0_0; + + petick_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "petick"; + version = "0.0.1"; + src = fetchHex { + pkg = "petick"; + version = "0.0.1"; + sha256 = + "77ca306a379109aeb98528fdc5642dccc0b66379e67058814470d0cf30053586"; + }; + + meta = { + description = ''Periodic timer''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/niku/petick"; + }; + } // packageOverrides) + ) {}; + + petick = petick_0_0_1; + + pg2pubsub_0_1_12 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pg2pubsub"; + version = "0.1.12"; + src = fetchHex { + pkg = "pg2pubsub"; + version = "0.1.12"; + sha256 = + "13d653d3f35108b3d83430794127d3df3294f205790ab27ac58e353614487af2"; + }; + + meta = { + description = ''A PubSub implementation for Elixir, using PG2 + (Erlang process groups).''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kbremner/pg2pubsub"; + }; + } // packageOverrides) + ) {}; + + pg2pubsub = pg2pubsub_0_1_12; + + phasedb_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + inflex_1_5_0, + heap_1_0_0, + calendar_0_12_4 + }: + buildMix ({ + name = "phasedb"; + version = "0.0.1"; + src = fetchHex { + pkg = "phasedb"; + version = "0.0.1"; + sha256 = + "42927c48bc8ab9645ec799b5cb7f1379692bb7ba14eff8a6895dacd98217e22d"; + }; + beamDeps = [ inflex_1_5_0 heap_1_0_0 calendar_0_12_4 ]; + + meta = { + description = ''A real-time time series database.''; + + }; + } // packageOverrides) + ) {}; + + phasedb = phasedb_0_0_1; + + phoenix_1_0_4 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "phoenix"; + version = "1.0.4"; + src = fetchHex { + pkg = "phoenix"; + version = "1.0.4"; + sha256 = + "591d5f7f3a6f5407e8491a92dc6a2d0b7b94ef4f3526ad8ef4eb82660e6f69f6"; + }; + beamDeps = [ poison_1_5_2 plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + longDescription = ''Productive. Reliable. Fast. A productive web + framework that does not compromise speed and + maintainability.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/phoenixframework/phoenix"; + }; + } // packageOverrides) + ) {}; + + phoenix_generator_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, inflex_0_3_0 }: + buildMix ({ + name = "phoenix_generator"; + version = "0.2.1"; + src = fetchHex { + pkg = "phoenix_generator"; + version = "0.2.1"; + sha256 = + "2be3753fba7b4a9afa461d270ab5111d76d1e5997b8e1587344051d85b6a1a36"; + }; + beamDeps = [ inflex_0_3_0 ]; + + meta = { + description = ''A collection of boilerplate generators for the + Phoenix web framework.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/etufe/phoenix_generator"; + }; + } // packageOverrides) + ) {}; + + phoenix_generator = phoenix_generator_0_2_1; + + phoenix_pubsub_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "phoenix_pubsub"; + version = "0.0.1"; + src = fetchHex { + pkg = "phoenix_pubsub"; + version = "0.0.1"; + sha256 = + "ea9f1853699e838965155af063f536f440afacadca316fb657858b3ac40da2eb"; + }; + + meta = { + description = ''Distributed PubSub and Presence platform''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/phoenixframework/phoenix_pubsub"; + }; + } // packageOverrides) + ) {}; + + phoenix_pubsub = phoenix_pubsub_0_0_1; + + phoenix_pubsub_postgres_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + postgrex_0_11_1, + poolboy_1_4_2 + }: + buildMix ({ + name = "phoenix_pubsub_postgres"; + version = "0.0.2"; + src = fetchHex { + pkg = "phoenix_pubsub_postgres"; + version = "0.0.2"; + sha256 = + "85b43b941b8c3dcf3f967dcd5bca1e29716235398b8b6c03d52d6611d5cf82ad"; + }; + beamDeps = [ postgrex_0_11_1 poolboy_1_4_2 ]; + + meta = { + description = ''Postgresql PubSub adapter for Phoenix apps''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/opendrops/phoenix-pubsub-postgres"; + }; + } // packageOverrides) + ) {}; + + phoenix_pubsub_postgres = phoenix_pubsub_postgres_0_0_2; + + phoenix_pubsub_vernemq_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "phoenix_pubsub_vernemq"; + version = "0.0.3"; + src = fetchHex { + pkg = "phoenix_pubsub_vernemq"; + version = "0.0.3"; + sha256 = + "92c228aee119d21c68b0b43250414686dee16986cb4d0039608612abd0d22824"; + }; + + meta = { + description = ''The VerneMQ MQTT pubsub adapter for the Phoenix + framework''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/larshesel/phoenix_pubsub_vernemq"; + }; + } // packageOverrides) + ) {}; + + phoenix_pubsub_vernemq = phoenix_pubsub_vernemq_0_0_3; + + phoenix_webpack_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "phoenix_webpack"; + version = "0.1.0"; + src = fetchHex { + pkg = "phoenix_webpack"; + version = "0.1.0"; + sha256 = + "9a5b53836b60bfc3baf36e9aa85b48cfc227f004419b81c195e5e08936562ba7"; + }; + + meta = { + description = ''Easily generate webpack configs for phoenix''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keathley/phoenix_webpack"; + }; + } // packageOverrides) + ) {}; + + phoenix_webpack = phoenix_webpack_0_1_0; + + phone_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "phone"; + version = "0.0.1"; + src = fetchHex { + pkg = "phone"; + version = "0.0.1"; + sha256 = + "9f56ea4a2a3790b779d9bedbe04f63bae4e68c7a57c6331258917edc78f0f8bd"; + }; + + meta = { + description = ''Parser for phone numbers in international + standard. NOT READY FOR USE.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fcevado/phone"; + }; + } // packageOverrides) + ) {}; + + phone = phone_0_0_1; + + phst_transform_0_9_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "phst_transform"; + version = "0.9.0"; + src = fetchHex { + pkg = "phst_transform"; + version = "0.9.0"; + sha256 = + "a5e76cd5b0549a36ec6268644a04366a7672bf449ecb5065dba441faf0c29dc1"; + }; + + meta = { + longDescription = ''An Elixir Protocol and implementation for + creating a tranform of any elixir data.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/philosophers-stone/transform"; + }; + } // packageOverrides) + ) {}; + + phst_transform = phst_transform_0_9_0; + + pinyin_0_1_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pinyin"; + version = "0.1.4"; + src = fetchHex { + pkg = "pinyin"; + version = "0.1.4"; + sha256 = + "e0fc3dc148bc938ad12f5aefabf017620eb314ca4cf045b91ad195c557d5fa96"; + }; + + meta = { + description = ''chinese pinyin library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/lidashuang/pinyin"; + }; + } // packageOverrides) + ) {}; + + pinyin = pinyin_0_1_4; + + pipe_0_0_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "pipe"; + version = "0.0.2"; + src = fetchHex { + pkg = "pipe"; + version = "0.0.2"; + sha256 = + "ad6d90981606bb04d040c0af49cf493417994214ce6e74ac572dc2ee67e2c064"; + }; + + meta = { + description = ''An Elixir extension that extends the pipe (|>) + operator through macros. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/batate/elixir-pipes"; + }; + } // packageOverrides) + ) {}; + + pipe = pipe_0_0_2; + + pipe_here_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pipe_here"; + version = "1.0.0"; + src = fetchHex { + pkg = "pipe_here"; + version = "1.0.0"; + sha256 = + "95558a60ec7736685029e1b28b1c7cd7c7eae714fab779406aa2512c0f29c51e"; + }; + + meta = { + description = ''An Elixir macro for easily piping arguments at + any position.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/vic/pipe_here"; + }; + } // packageOverrides) + ) {}; + + pipe_here = pipe_here_1_0_0; + + pipe_while_ok_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pipe_while_ok"; + version = "0.0.2"; + src = fetchHex { + pkg = "pipe_while_ok"; + version = "0.0.2"; + sha256 = + "b62708d0a0b82f421f937b99c5ff21a966e21d9a1f42ba75b8788100ac2c6567"; + }; + + meta = { + description = ''PipeWhileOk =========== Moved to + https://githib.com/pragdave/exlibris ''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/pragdave/pipe_while_ok"; + }; + } // packageOverrides) + ) {}; + + pipe_while_ok = pipe_while_ok_0_0_2; + + pkcs7_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pkcs7"; + version = "1.0.2"; + src = fetchHex { + pkg = "pkcs7"; + version = "1.0.2"; + sha256 = + "0e4faa65411e204b7952712d58f657335109ecbb24cf79163dc96458ba8d6518"; + }; + + meta = { + description = ''PKCS7 binary padding for erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/pkcs7.erl"; + }; + } // packageOverrides) + ) {}; + + pkcs7 = pkcs7_1_0_2; + + plist_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "plist"; + version = "0.0.4"; + src = fetchHex { + pkg = "plist"; + version = "0.0.4"; + sha256 = + "533836ee86188fa2a0aed92410534851aac3cb46ee0919c98553b1f38a63aa1a"; + }; + + meta = { + description = ''An Elixir library to parse files in Apple`s + property list formats''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ciaran/plist"; + }; + } // packageOverrides) + ) {}; + + plist = plist_0_0_4; + + plug_0_11_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ + name = "plug"; + version = "0.11.3"; + src = fetchHex { + pkg = "plug"; + version = "0.11.3"; + sha256 = + "82834fa130af2520b9dad4a271f4fe5c25a456cf2334aae35ef84989efec65e3"; + }; + beamDeps = [ cowboy_1_0_4 ]; + + meta = { + description = ''A specification and conveniences for composable + modules between web applications''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/elixir-lang/plug"; + }; + } // packageOverrides) + ) {}; + + plug_0_12_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ + name = "plug"; + version = "0.12.2"; + src = fetchHex { + pkg = "plug"; + version = "0.12.2"; + sha256 = + "b26e8c636fc5b83e0b69767fb3cb2c693703b7f8c1eed11091e57f6e7caebc2d"; + }; + beamDeps = [ cowboy_1_0_4 ]; + + meta = { + description = ''A specification and conveniences for composable + modules between web applications''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/elixir-lang/plug"; + }; + } // packageOverrides) + ) {}; + + plug_0_13_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ + name = "plug"; + version = "0.13.1"; + src = fetchHex { + pkg = "plug"; + version = "0.13.1"; + sha256 = + "50b7ef7c753e703b04ed79bc254ed0fbe07db3ed90894598d377c41e15f4490b"; + }; + beamDeps = [ cowboy_1_0_4 ]; + + meta = { + description = ''A specification and conveniences for composable + modules between web applications''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/elixir-lang/plug"; + }; + } // packageOverrides) + ) {}; + + plug_0_14_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ + name = "plug"; + version = "0.14.0"; + src = fetchHex { + pkg = "plug"; + version = "0.14.0"; + sha256 = + "bacee77168bce635d959d8c41e0723936fba41170edf11665deaf30ee668303d"; + }; + beamDeps = [ cowboy_1_0_4 ]; + + meta = { + description = ''A specification and conveniences for composable + modules between web applications''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/elixir-lang/plug"; + }; + } // packageOverrides) + ) {}; + + plug_0_8_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ + name = "plug"; + version = "0.8.4"; + src = fetchHex { + pkg = "plug"; + version = "0.8.4"; + sha256 = + "22c18f351cb30df9ca0b33bedd545bdbbc7eee60f1321cfcfe703228355ff2ec"; + }; + beamDeps = [ cowboy_1_0_4 ]; + + meta = { + description = ''A specification and conveniences for composable + modules between web applications''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/elixir-lang/plug"; + }; + } // packageOverrides) + ) {}; + + plug_0_9_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ + name = "plug"; + version = "0.9.0"; + src = fetchHex { + pkg = "plug"; + version = "0.9.0"; + sha256 = + "2715df7f9e2650d1725576f5a683317d8dcaf656f524c14b384d7a54d74a09d1"; + }; + beamDeps = [ cowboy_1_0_4 ]; + + meta = { + description = ''A specification and conveniences for composable + modules between web applications''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/elixir-lang/plug"; + }; + } // packageOverrides) + ) {}; + + plug_1_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ + name = "plug"; + version = "1.0.3"; + src = fetchHex { + pkg = "plug"; + version = "1.0.3"; + sha256 = + "31d1cc267cf48e3db8ce00b7a7bb6ced41c04d8f3593a61318f9a7f721997f6e"; + }; + beamDeps = [ cowboy_1_0_4 ]; + + meta = { + description = ''A specification and conveniences for composable + modules between web applications''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/elixir-lang/plug"; + }; + } // packageOverrides) + ) {}; + + plug_1_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ + name = "plug"; + version = "1.1.3"; + src = fetchHex { + pkg = "plug"; + version = "1.1.3"; + sha256 = + "3063801910afe580891477f7e03c5c7a51592fa790a04f12815a127e4e0e336f"; + }; + beamDeps = [ cowboy_1_0_4 ]; + + meta = { + description = ''A specification and conveniences for composable + modules between web applications''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/elixir-lang/plug"; + }; + } // packageOverrides) + ) {}; + + plug = plug_1_1_3; + + plug_accept_language_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "plug_accept_language"; + version = "0.1.0"; + src = fetchHex { + pkg = "plug_accept_language"; + version = "0.1.0"; + sha256 = + "5535c842805ba980f3bf5fa5cde202fd3375c049e3681e206de1976c5765765a"; + }; + + meta = { + description = ''parse the accept-language header''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/plug_accept_language"; + }; + } // packageOverrides) + ) {}; + + plug_accept_language = plug_accept_language_0_1_0; + + plug_assign_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_0_3 }: + buildMix ({ + name = "plug_assign"; + version = "1.0.0"; + src = fetchHex { + pkg = "plug_assign"; + version = "1.0.0"; + sha256 = + "293a2885e8d23fce64b9f81019882e14512d57cf82b863f9be860157e5f79708"; + }; + beamDeps = [ plug_1_0_3 ]; + + meta = { + description = ''A simple plug to allow setting variables in a + connection.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nshafer/plug_assign"; + }; + } // packageOverrides) + ) {}; + + plug_assign = plug_assign_1_0_0; + + plug_cloudflare_1_3_0 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3, cidr_1_0_0 + }: + buildMix ({ + name = "plug_cloudflare"; + version = "1.3.0"; + src = fetchHex { + pkg = "plug_cloudflare"; + version = "1.3.0"; + sha256 = + "641df2e40267446172c43b2f52dd9a1cbcd1f24dccd101bda29732a13335ab21"; + }; + beamDeps = [ plug_1_1_3 cidr_1_0_0 ]; + + meta = { + description = ''Convert CloudFlare`s CF-Connecting-IP header to + Plug.Conn`s remote_ip field.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/c-rack/plug_cloudflare"; + }; + } // packageOverrides) + ) {}; + + plug_cloudflare = plug_cloudflare_1_3_0; + + plug_forwarded_peer_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "plug_forwarded_peer"; + version = "0.0.2"; + src = fetchHex { + pkg = "plug_forwarded_peer"; + version = "0.0.2"; + sha256 = + "c2466e0f0ef75a0d925a957fa50dfcded2c4788fe67857a675411e7184ae5ec3"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + longDescription = ''Very simple plug which reads + `X-Forwarded-For` or `Forwarded` header + according to rfc7239 and fill `conn.remote_ip` + with the root client ip.''; + license = stdenv.lib.licenses.mit; + homepage = "http://github.com/awetzel/plug_forwarded_peer"; + }; + } // packageOverrides) + ) {}; + + plug_forwarded_peer = plug_forwarded_peer_0_0_2; + + plug_fprof_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "plug_fprof"; + version = "0.0.1"; + src = fetchHex { + pkg = "plug_fprof"; + version = "0.0.1"; + sha256 = + "4c5e6171ab7ebb29b6d473f8c5fd758a11ade5847d31add676c944a302ab006c"; + }; + + meta = { + description = ''A Plug that adds fprof tracing to requests, to + allow for easy profiling.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/obmarg/plug_fprof"; + }; + } // packageOverrides) + ) {}; + + plug_fprof = plug_fprof_0_0_1; + + plug_geoip2_0_4_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + geolix_0_9_0 + }: + buildMix ({ + name = "plug_geoip2"; + version = "0.4.2"; + src = fetchHex { + pkg = "plug_geoip2"; + version = "0.4.2"; + sha256 = + "2a6443040e07e677b0ff7749d2cdf7797a97254466f6740aee11544a18f4993a"; + }; + beamDeps = [ plug_1_1_3 geolix_0_9_0 ]; + + meta = { + longDescription = ''Adds geo location to a Plug connection based + upon the client IP address by using MaxMind`s + GeoIP2 database.''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + plug_geoip2 = plug_geoip2_0_4_2; + + plug_heartbeat_0_2_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "plug_heartbeat"; + version = "0.2.0"; + src = fetchHex { + pkg = "plug_heartbeat"; + version = "0.2.0"; + sha256 = + "23cb357dad510695b6bb339fdbf5d3fc8581546124f7389d63c9cf723e4ad40f"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + description = ''A tiny plug for responding to heartbeat requests + ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/whatyouhide/plug_heartbeat"; + }; + } // packageOverrides) + ) {}; + + plug_heartbeat = plug_heartbeat_0_2_0; + + plug_media_type_router_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "plug_media_type_router"; + version = "0.0.2"; + src = fetchHex { + pkg = "plug_media_type_router"; + version = "0.0.2"; + sha256 = + "e5f72ee4fd1a43321532e3165b3609a1184ba2d576279a1a63e17afba084f12b"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + longDescription = ''An Elixir Plug for routing requests to other + Plugs based on the request`s Media Type''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cazrin/plug_media_type_router"; + }; + } // packageOverrides) + ) {}; + + plug_media_type_router = plug_media_type_router_0_0_2; + + plug_pagecache_0_2_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "plug_pagecache"; + version = "0.2.0"; + src = fetchHex { + pkg = "plug_pagecache"; + version = "0.2.0"; + sha256 = + "8f33202de45d772dd1f416a10d43f8e2daabf937d459e010fa9c850834e1877f"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + description = ''Plug for full page response caching''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/mneudert/plug_pagecache"; + }; + } // packageOverrides) + ) {}; + + plug_pagecache = plug_pagecache_0_2_0; + + plug_rails_cookie_session_store_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "plug_rails_cookie_session_store"; + version = "0.1.0"; + src = fetchHex { + pkg = "plug_rails_cookie_session_store"; + version = "0.1.0"; + sha256 = + "e08041d2ad4884826d8296a5560609df04a936ceca492d094f06458699ac69da"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + description = ''Rails compatible Plug session store''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/cconstantin/plug_rails_cookie_session_store"; + }; + } // packageOverrides) + ) {}; + + plug_rails_cookie_session_store = + plug_rails_cookie_session_store_0_1_0; + + plug_redirect_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "plug_redirect"; + version = "0.1.2"; + src = fetchHex { + pkg = "plug_redirect"; + version = "0.1.2"; + sha256 = + "f5fb2653ed39cf843bcc3cb13ba2bf547b1f66ef7c24f963551acd0b8e1c4705"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''A plug builder for redirecting requests.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lpil/plug-redirect"; + }; + } // packageOverrides) + ) {}; + + plug_redirect = plug_redirect_0_1_2; + + plug_redirect_https_0_0_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "plug_redirect_https"; + version = "0.0.6"; + src = fetchHex { + pkg = "plug_redirect_https"; + version = "0.0.6"; + sha256 = + "73f1b3172183005f0fb59a43c50a94a708c06ffcc35a7387967d87e001369068"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''Plug to redirect http requests to https requests + behind a reverse proxy''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stocks29/plug_redirect_https.git"; + }; + } // packageOverrides) + ) {}; + + plug_redirect_https = plug_redirect_https_0_0_6; + + plug_require_header_0_8_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3 + }: + buildMix ({ + name = "plug_require_header"; + version = "0.8.0"; + src = fetchHex { + pkg = "plug_require_header"; + version = "0.8.0"; + sha256 = + "b721158316f6d2efd4b24bd05a8a1c06caa699ee25249185c8c4f03f9204b283"; + }; + beamDeps = [ poison_1_5_2 plug_1_1_3 ]; + + meta = { + description = ''An Elixir Plug for requiring and extracting a + given header.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/DevL/plug_require_header"; + }; + } // packageOverrides) + ) {}; + + plug_require_header = plug_require_header_0_8_0; + + plug_response_header_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "plug_response_header"; + version = "0.2.1"; + src = fetchHex { + pkg = "plug_response_header"; + version = "0.2.1"; + sha256 = + "82fd11fc70d925ed5a608ac13a9f604a80e24827f6603999d6a0f3f123862048"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''This plug allows manipulation of HTTP response + headers''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/c-rack/plug_response_header"; + }; + } // packageOverrides) + ) {}; + + plug_response_header = plug_response_header_0_2_1; + + plug_ribbon_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "plug_ribbon"; + version = "0.2.1"; + src = fetchHex { + pkg = "plug_ribbon"; + version = "0.2.1"; + sha256 = + "34fcbffb6fc3adde6bb167506934ab19787d2fff82b6bf93918e0000159bfe9d"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''Injects a ribbon to your web application + depending on the environment''; + license = stdenv.lib.licenses.mit; + homepage = "https://git.io/plug_ribbon"; + }; + } // packageOverrides) + ) {}; + + plug_ribbon = plug_ribbon_0_2_1; + + plug_runtime_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "plug_runtime"; + version = "1.0.0"; + src = fetchHex { + pkg = "plug_runtime"; + version = "1.0.0"; + sha256 = + "58e213a40fe339771ab93520da56c2108488cfd9e99c7e92def367567ce225a7"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + longDescription = ''A simple Plug to measure the runtime of a + request. Results will be in the X-Runtime + header.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/mje113/plug_runtime"; + }; + } // packageOverrides) + ) {}; + + plug_runtime = plug_runtime_1_0_0; + + plug_session_memcached_0_3_3 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + ex_doc_0_11_4, + earmark_0_2_1, + cowboy_1_0_4 + }: + buildMix ({ + name = "plug_session_memcached"; + version = "0.3.3"; + src = fetchHex { + pkg = "plug_session_memcached"; + version = "0.3.3"; + sha256 = + "f9cd5de250dbab0180166c873a50d297036d72f7cbac1a076972444c41f0b4c3"; + }; + beamDeps = [ plug_1_1_3 ex_doc_0_11_4 earmark_0_2_1 cowboy_1_0_4 + ]; + + meta = { + description = ''A memcached session store for use with + Plug.Session''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/gutschilla/plug-session-memcached"; + }; + } // packageOverrides) + ) {}; + + plug_session_memcached = plug_session_memcached_0_3_3; + + plug_session_redis_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + redo_2_0_1, + poolboy_1_5_1 + }: + buildMix ({ + name = "plug_session_redis"; + version = "0.1.0"; + src = fetchHex { + pkg = "plug_session_redis"; + version = "0.1.0"; + sha256 = + "8a101a1e36cb9212153191e44963f052b7478b0bfaff5a85e331afe0ae56dbeb"; + }; + beamDeps = [ redo_2_0_1 poolboy_1_5_1 ]; + + meta = { + description = ''The Redis Plug.Session adapter for the Phoenix + framework.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/aposto/plug_session_redis"; + }; + } // packageOverrides) + ) {}; + + plug_session_redis = plug_session_redis_0_1_0; + + plug_statsd_0_4_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + ex_statsd_0_5_3 + }: + buildMix ({ + name = "plug_statsd"; + version = "0.4.0"; + src = fetchHex { + pkg = "plug_statsd"; + version = "0.4.0"; + sha256 = + "c618161e5ad93c727be6ce776e7f53542950d97a602691aee2acef2d57dbdea9"; + }; + beamDeps = [ plug_1_1_3 ex_statsd_0_5_3 ]; + + meta = { + description = ''A (Phoenix) plug for sending request counts and + response times to statsd''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jeffweiss/plug_statsd"; + }; + } // packageOverrides) + ) {}; + + plug_statsd = plug_statsd_0_4_0; + + plug_test_helpers_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_0_8_4, + cowboy_1_0_4 + }: + buildMix ({ + name = "plug_test_helpers"; + version = "0.1.0"; + src = fetchHex { + pkg = "plug_test_helpers"; + version = "0.1.0"; + sha256 = + "f542d679a33d42147612164ade572fa973344b4550ffcbbb0ef540492c9e97fe"; + }; + beamDeps = [ plug_0_8_4 cowboy_1_0_4 ]; + + meta = { + description = ''Helpers to test your Plugs with ExUnit''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/xavier/plug_test_helpers"; + }; + } // packageOverrides) + ) {}; + + plug_test_helpers = plug_test_helpers_0_1_0; + + plug_utm_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "plug_utm"; + version = "0.0.2"; + src = fetchHex { + pkg = "plug_utm"; + version = "0.0.2"; + sha256 = + "d473d6b360f5a9189cee2a0f95c06ffb1cb9495a9bb8c729a631c2fa33ed5fc9"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + description = ''UTM tracking parameters to cookies''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/honeypotio/plug_utm"; + }; + } // packageOverrides) + ) {}; + + plug_utm = plug_utm_0_0_2; + + plug_wait1_0_1_4 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_3_1, + plug_0_13_1, + cowboy_1_0_4 + }: + buildMix ({ + name = "plug_wait1"; + version = "0.1.4"; + src = fetchHex { + pkg = "plug_wait1"; + version = "0.1.4"; + sha256 = + "4ef36a750c07484e6c6513421e56ad42fa023cb424cbb4cf11a2e686a4fa4be7"; + }; + beamDeps = [ poison_1_3_1 plug_0_13_1 cowboy_1_0_4 ]; + + meta = { + description = ''Plug adapter for the wait1 protocol''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/wait1/plug_wait1"; + }; + } // packageOverrides) + ) {}; + + plug_wait1 = plug_wait1_0_1_4; + + plug_x_forwarded_for_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "plug_x_forwarded_for"; + version = "0.1.0"; + src = fetchHex { + pkg = "plug_x_forwarded_for"; + version = "0.1.0"; + sha256 = + "7a12dff0f850855ae85d70ed0e71aff5ec55dad6c52fc46d6ba21119e6183b33"; + }; + + meta = { + description = ''x-forwarded-for plug middleware''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/plug_x_forwarded_for"; + }; + } // packageOverrides) + ) {}; + + plug_x_forwarded_for = plug_x_forwarded_for_0_1_0; + + plugin_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "plugin"; + version = "0.1.0"; + src = fetchHex { + pkg = "plugin"; + version = "0.1.0"; + sha256 = + "f596a2e9e14081884a841d1805e024d435c6a27e5e38b9c64214017659560fad"; + }; + + meta = { + longDescription = ''Like Plug, only without web-specific logic + and without a typed Conn-datastructure''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ruby2elixir/plugin"; + }; + } // packageOverrides) + ) {}; + + plugin = plugin_0_1_0; + + plugs_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "plugs"; + version = "0.1.0"; + src = fetchHex { + pkg = "plugs"; + version = "0.1.0"; + sha256 = + "8d6cafd3ea0d373795774c9de2a0503433d65d9c2c0d58bd23ba0d9ba3547297"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + description = ''A collection of Plug middleware for web + applications''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sugar-framework/plugs"; + }; + } // packageOverrides) + ) {}; + + plugs = plugs_0_1_0; + + plumber_girl_0_9_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "plumber_girl"; + version = "0.9.6"; + src = fetchHex { + pkg = "plumber_girl"; + version = "0.9.6"; + sha256 = + "2a9faf9980cae59e11a6f9cf151a634cd809de220293bbbaba849f216c247a45"; + }; + + meta = { + description = ''PlumberGirl takes care of your Elixir piping + issues!''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ruby2elixir/plumber_girl"; + }; + } // packageOverrides) + ) {}; + + plumber_girl = plumber_girl_0_9_6; + + png_0_1_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "png"; + version = "0.1.1"; + src = fetchHex { + pkg = "png"; + version = "0.1.1"; + sha256 = + "f8d4a17c118dcc16bb18d0fda6e26947001f9312bc6c061d2236b424fc3dd9ea"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + longDescription = ''A pure Erlang library for creating PNG + images. It can currently create 8 and 16 bit + RGB, RGB with alpha, indexed, grayscale and + grayscale with alpha images.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yuce/png"; + }; + } // packageOverrides) + ) {}; + + png = png_0_1_1; + + poison_1_3_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "poison"; + version = "1.3.1"; + src = fetchHex { + pkg = "poison"; + version = "1.3.1"; + sha256 = + "fbd78dd3e5abbadc17ddd89905002f6d20a03046f7555a6098d28a9f14feaf58"; + }; + + meta = { + description = ''An incredibly fast, pure Elixir JSON library''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/devinus/poison"; + }; + } // packageOverrides) + ) {}; + + poison_1_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "poison"; + version = "1.4.0"; + src = fetchHex { + pkg = "poison"; + version = "1.4.0"; + sha256 = + "b2715aaeb9f549f4e30739d43993e3c1b1053a4ed69d50c660621bdd1eb96606"; + }; + + meta = { + description = ''An incredibly fast, pure Elixir JSON library''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/devinus/poison"; + }; + } // packageOverrides) + ) {}; + + poison_1_5_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "poison"; + version = "1.5.0"; + src = fetchHex { + pkg = "poison"; + version = "1.5.0"; + sha256 = + "a31ffdaf77494ff12d6c2c9cb03235d4373596d2faf62ee5b99c1ae479618400"; + }; + + meta = { + description = ''An incredibly fast, pure Elixir JSON library''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/devinus/poison"; + }; + } // packageOverrides) + ) {}; + + poison_1_5_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "poison"; + version = "1.5.2"; + src = fetchHex { + pkg = "poison"; + version = "1.5.2"; + sha256 = + "4afc59dcadf71be7edc8b934b39f554ec7b31e2b1b1a4767383a663f86958ce3"; + }; + + meta = { + description = ''An incredibly fast, pure Elixir JSON library''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/devinus/poison"; + }; + } // packageOverrides) + ) {}; + + poison_2_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "poison"; + version = "2.0.1"; + src = fetchHex { + pkg = "poison"; + version = "2.0.1"; + sha256 = + "7f34906a0839f3b49b9b7647461c5144787611f599e8d743214280761699df2b"; + }; + + meta = { + description = ''An incredibly fast, pure Elixir JSON library''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/devinus/poison"; + }; + } // packageOverrides) + ) {}; + + poison_2_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "poison"; + version = "2.1.0"; + src = fetchHex { + pkg = "poison"; + version = "2.1.0"; + sha256 = + "002caaf939b97c84533ef0f621d3ed414ed703fcd03c91ec0dd62043df102c63"; + }; + + meta = { + description = ''An incredibly fast, pure Elixir JSON library''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/devinus/poison"; + }; + } // packageOverrides) + ) {}; + + poison = poison_2_1_0; + + poker_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "poker"; + version = "0.0.2"; + src = fetchHex { + pkg = "poker"; + version = "0.0.2"; + sha256 = + "9599ef62b0a2e1b15ff2697cb1603dd7be00911d8a613e1d01cfdf8c8b5d63b3"; + }; + + meta = { + description = ''An Elixir library to work with Poker hands.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/wojtekmach/poker_elixir"; + }; + } // packageOverrides) + ) {}; + + poker = poker_0_0_2; + + poly1305_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, chacha20_0_3_2 }: + buildMix ({ + name = "poly1305"; + version = "0.4.0"; + src = fetchHex { + pkg = "poly1305"; + version = "0.4.0"; + sha256 = + "a31cd3dcc1244033b0981adfe9b2d0766115152ea42ba1c62a8dc93c87f094b7"; + }; + beamDeps = [ chacha20_0_3_2 ]; + + meta = { + description = ''Poly1305 message authentication''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/poly1305_ex"; + }; + } // packageOverrides) + ) {}; + + poly1305 = poly1305_0_4_0; + + polyglot_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "polyglot"; + version = "0.0.1"; + src = fetchHex { + pkg = "polyglot"; + version = "0.0.1"; + sha256 = + "83aaf990f322ea5c314b469932e87db7175374b0e0b28d078defba60dca0fb78"; + }; + + meta = { + longDescription = ''Polyglot is a localization library for Elixir + that provides reusable formatting rules and + translations for a large number of languages.''; + license = with stdenv.lib.licenses; [ mit free ]; + homepage = "https://github.com/padde/polyglot"; + }; + } // packageOverrides) + ) {}; + + polyglot = polyglot_0_0_1; + + polyline_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, vector_0_1_0 }: + buildMix ({ + name = "polyline"; + version = "0.1.0"; + src = fetchHex { + pkg = "polyline"; + version = "0.1.0"; + sha256 = + "6df2ebd1a5f55d6f680924200175bc5473beadd013acec72d201fcec18d31afd"; + }; + beamDeps = [ vector_0_1_0 ]; + + meta = { + description = ''Encoding and decoding of Polylines''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pkinney/polyline_ex"; + }; + } // packageOverrides) + ) {}; + + polyline = polyline_0_1_0; + + polyvox_id3_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "polyvox_id3"; + version = "0.2.1"; + src = fetchHex { + pkg = "polyvox_id3"; + version = "0.2.1"; + sha256 = + "2bb3e3b9edde6630160857563c992f7e9ea56d11d263172c95161b4275f6b48c"; + }; + + meta = { + description = ''A podcast-centric ID3 library for parsing and + writing ID3 tags.''; + license = stdenv.lib.licenses.gpl3; + homepage = "https://github.com/polyvox/polyvox_id3"; + }; + } // packageOverrides) + ) {}; + + polyvox_id3 = polyvox_id3_0_2_1; + + pool_ring_0_1_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pool_ring"; + version = "0.1.5"; + src = fetchHex { + pkg = "pool_ring"; + version = "0.1.5"; + sha256 = + "a5d965379d8cb05e772e606951ba1b33c45b58a0809ba9f44eff453ea43068ce"; + }; + + meta = { + description = ''create a pool based on a hash ring''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/pool_ring"; + }; + } // packageOverrides) + ) {}; + + pool_ring = pool_ring_0_1_5; + + poolboy_1_4_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "poolboy"; + version = "1.4.2"; + src = fetchHex { + pkg = "poolboy"; + version = "1.4.2"; + sha256 = + "6133b67251080f32ffed4f71913cd2998fd6f02fa076677aadf7278b62853938"; + }; + + meta = { + description = ''A hunky Erlang worker pool factory''; + license = with stdenv.lib.licenses; [ unlicense asl20 ]; + homepage = "https://github.com/devinus/poolboy"; + }; + } // packageOverrides) + ) {}; + + poolboy_1_5_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "poolboy"; + version = "1.5.1"; + src = fetchHex { + pkg = "poolboy"; + version = "1.5.1"; + sha256 = + "8f7168911120e13419e086e78d20e4d1a6776f1eee2411ac9f790af10813389f"; + }; + + meta = { + description = ''A hunky Erlang worker pool factory''; + license = with stdenv.lib.licenses; [ unlicense asl20 ]; + homepage = "https://github.com/devinus/poolboy"; + }; + } // packageOverrides) + ) {}; + + poolboy = poolboy_1_5_1; + + populator_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "populator"; + version = "0.4.0"; + src = fetchHex { + pkg = "populator"; + version = "0.4.0"; + sha256 = + "4f2b2720676db740139ebd69ca0c26b111721d7d049f185f0e5a50cfca18085d"; + }; + + meta = { + description = ''Supervisor population control library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rubencaro/populator"; + }; + } // packageOverrides) + ) {}; + + populator = populator_0_4_0; + + porcelain_2_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "porcelain"; + version = "2.0.1"; + src = fetchHex { + pkg = "porcelain"; + version = "2.0.1"; + sha256 = + "dbe57a57c3917654694ea6be7e756e26345a59d2974fe6ec861a71f469767ad9"; + }; + + meta = { + longDescription = ''Porcelain implements a saner approach to + launching and communicating with external OS + processes from Elixir. Built on top of Erlang`s + ports, it provides richer functionality and + simpler API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/alco/porcelain"; + }; + } // packageOverrides) + ) {}; + + porcelain = porcelain_2_0_1; + + porter_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "porter"; + version = "0.0.1"; + src = fetchHex { + pkg = "porter"; + version = "0.0.1"; + sha256 = + "81ef97a1d6eb495b6a919cdaae4268a49a3591903424d4ed00f67104d09e89dd"; + }; + + meta = { + longDescription = ''Porter provides an OTP application that runs + the specified system command using the Erlang + Port library and then streams the results back + to you.''; + + }; + } // packageOverrides) + ) {}; + + porter = porter_0_0_1; + + positive_13_3_7 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "positive"; + version = "13.3.7"; + src = fetchHex { + pkg = "positive"; + version = "13.3.7"; + sha256 = + "516964039cbae4e64226d9e50787f32134f3411bc0ae8cedf26488ba004616be"; + }; + + meta = { + description = ''Library: check if an integer is positive''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jlouis/positive"; + }; + } // packageOverrides) + ) {}; + + positive = positive_13_3_7; + + posterize_0_10_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + postgrex_0_11_1, + jsx_2_8_0 + }: + buildMix ({ + name = "posterize"; + version = "0.10.0"; + src = fetchHex { + pkg = "posterize"; + version = "0.10.0"; + sha256 = + "3569fd8f8097acb2a49fb23c446d3a8ff57879779866d71929eb356d076e7eb9"; + }; + beamDeps = [ postgrex_0_11_1 jsx_2_8_0 ]; + + meta = { + description = ''erlang wrapper for postgrex''; + license = with stdenv.lib.licenses; [ asl20 mit ]; + homepage = "https://github.com/talentdeficit/posterize"; + }; + } // packageOverrides) + ) {}; + + posterize = posterize_0_10_0; + + postgrex_0_11_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + decimal_1_1_1, + db_connection_0_2_4, + connection_1_0_2 + }: + buildMix ({ + name = "postgrex"; + version = "0.11.1"; + src = fetchHex { + pkg = "postgrex"; + version = "0.11.1"; + sha256 = + "f56d47038f4f642cee0f9c40eeea0ef9ba645b7fc77723b4764f282df95baeb8"; + }; + beamDeps = [ decimal_1_1_1 db_connection_0_2_4 connection_1_0_2 + ]; + + meta = { + description = ''PostgreSQL driver for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ericmj/postgrex"; + }; + } // packageOverrides) + ) {}; + + postgrex = postgrex_0_11_1; + + postgrex_0_8_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ + name = "postgrex"; + version = "0.8.4"; + src = fetchHex { + pkg = "postgrex"; + version = "0.8.4"; + sha256 = + "19c205c8de0e2e5817f2250100281c58e717cb11ff1bb410bf661ee78c24e79b"; + }; + beamDeps = [ decimal_1_1_1 ]; + + meta = { + description = ''PostgreSQL driver for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ericmj/postgrex"; + }; + } // packageOverrides) + ) {}; + + postgrex_0_9_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ + name = "postgrex"; + version = "0.9.1"; + src = fetchHex { + pkg = "postgrex"; + version = "0.9.1"; + sha256 = + "9c9a4ffca145479b343d7a51730557305425aab69e8d31cc32f348f85996fb5a"; + }; + beamDeps = [ decimal_1_1_1 ]; + + meta = { + description = ''PostgreSQL driver for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ericmj/postgrex"; + }; + } // packageOverrides) + ) {}; + + pot_0_9_4 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "pot"; + version = "0.9.4"; + src = fetchHex { + pkg = "pot"; + version = "0.9.4"; + sha256 = + "ba6814a8e2be50d64ee65612cf627aba4784555054c22ac5066e6543f349887c"; + }; + + meta = { + longDescription = ''POT is an Erlang library for generating + Google Authenticator compatible one time + passwords.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yuce/pot"; + }; + } // packageOverrides) + ) {}; + + pot = pot_0_9_4; + + power_assert_0_0_8 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "power_assert"; + version = "0.0.8"; + src = fetchHex { + pkg = "power_assert"; + version = "0.0.8"; + sha256 = + "b4e1d27ab8e05f01d458ba84c4caced1f9b0209b3178dfcf4334e857a8aa6cd0"; + }; + + meta = { + description = ''Power Assert in Elixir. Shows evaluation results + each expression.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ma2gedev/power_assert_ex"; + }; + } // packageOverrides) + ) {}; + + power_assert = power_assert_0_0_8; + + pqueue_1_5_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "pqueue"; + version = "1.5.1"; + src = fetchHex { + pkg = "pqueue"; + version = "1.5.1"; + sha256 = + "7ba01afe6b50ea4b239fa770f9e2c2db4871b3927ac44aea180d1fd52601b317"; + }; + + meta = { + description = ''Erlang Priority Queue Implementation''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/pqueue"; + }; + } // packageOverrides) + ) {}; + + pqueue = pqueue_1_5_1; + + pragmatic_0_1_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pragmatic"; + version = "0.1.6"; + src = fetchHex { + pkg = "pragmatic"; + version = "0.1.6"; + sha256 = + "e26b1b60d9657a61b6543646817a5d2dff73120bae33fa3de4c60bb356cf49b0"; + }; + + meta = { + longDescription = ''A small, simple library to deal with the + practical issues arising from using Elixir on + Windows''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/OnorioCatenacci/pragmatic"; + }; + } // packageOverrides) + ) {}; + + pragmatic = pragmatic_0_1_6; + + prefecture_jp_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "prefecture_jp"; + version = "0.0.2"; + src = fetchHex { + pkg = "prefecture_jp"; + version = "0.0.2"; + sha256 = + "ffc29fc76ee098b5f6c7c93db3736916cc23b0ace424dd8c0f946570aeb75c22"; + }; + + meta = { + description = ''PrefectureJp is a library for Japanese + prefecture.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ymmtmsys/prefecture_jp"; + }; + } // packageOverrides) + ) {}; + + prefecture_jp = prefecture_jp_0_0_2; + + prelude_0_0_1 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, etude_1_0_0_beta_0 + }: + buildMix ({ + name = "prelude"; + version = "0.0.1"; + src = fetchHex { + pkg = "prelude"; + version = "0.0.1"; + sha256 = + "805c5a43a043864b4793f4aeff574b88e9eaac18e49d93cb71cbd6270283bde9"; + }; + beamDeps = [ etude_1_0_0_beta_0 ]; + + meta = { + description = ''a preprocessor/compiler toolset for erlang and + elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/prelude"; + }; + } // packageOverrides) + ) {}; + + prelude = prelude_0_0_1; + + presentex_0_0_10 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "presentex"; + version = "0.0.10"; + src = fetchHex { + pkg = "presentex"; + version = "0.0.10"; + sha256 = + "86479a0b79146dadc3f224d2023d06d7f4f87fd455a3267bbd11759ebde1404c"; + }; + + meta = { + description = ''An Elixir -> HTML/JavaScript presentation + generation tool. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/Cobenian/Presentex"; + }; + } // packageOverrides) + ) {}; + + presentex = presentex_0_0_10; + + pretty_hex_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pretty_hex"; + version = "0.0.1"; + src = fetchHex { + pkg = "pretty_hex"; + version = "0.0.1"; + sha256 = + "ab91a38480049af4811ffdaf15dbee9370acb9b20cdc870281d2006a8fe928b4"; + }; + + meta = { + description = ''A binary hex dumping library in Elixir. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/polsab/pretty_hex"; + }; + } // packageOverrides) + ) {}; + + pretty_hex = pretty_hex_0_0_1; + + pricing_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + timex_1_0_2, + porcelain_2_0_1 + }: + buildMix ({ + name = "pricing"; + version = "0.0.1"; + src = fetchHex { + pkg = "pricing"; + version = "0.0.1"; + sha256 = + "82e0438611507f600bd799c986872588f88627fdcf7a15d4031d779c9d1cd4d7"; + }; + beamDeps = [ timex_1_0_2 porcelain_2_0_1 ]; + + meta = { + description = ''Pricing financial instruments in Elixir''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/arthurcolle/pricing"; + }; + } // packageOverrides) + ) {}; + + pricing = pricing_0_0_1; + + progress_bar_1_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "progress_bar"; + version = "1.4.0"; + src = fetchHex { + pkg = "progress_bar"; + version = "1.4.0"; + sha256 = + "c184bba509ec32f81ee03a596972b84e7e9d04de2ae076a408bd08a7a80e98fa"; + }; + + meta = { + description = ''Command-line progress bars and spinners.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/henrik/progress_bar"; + }; + } // packageOverrides) + ) {}; + + progress_bar = progress_bar_1_4_0; + + proper_case_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "proper_case"; + version = "0.1.1"; + src = fetchHex { + pkg = "proper_case"; + version = "0.1.1"; + sha256 = + "63c279ad8721fb91175f74a03584fda2baaea6f5d79d5e899dddfd934e924d8a"; + }; + + meta = { + longDescription = ''An Elixir library that converts keys in maps + between `snake_case` and `camel_case`. Useful as + a plug in Phoenix for converting incoming params + from JavaScript`s `camelCase` to Elixir`s + `snake_case`''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/johnnyji/proper_case"; + }; + } // packageOverrides) + ) {}; + + proper_case = proper_case_0_1_1; + + proplist_1_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "proplist"; + version = "1.1.0"; + src = fetchHex { + pkg = "proplist"; + version = "1.1.0"; + sha256 = + "6fc73362d15b4810f4979ddf72ec53c1efc020657a57b7cdd1f682bd38c08298"; + }; + + meta = { + description = ''Proplist provides the complete Keyword API, but + for Proplists.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/knrz/proplist"; + }; + } // packageOverrides) + ) {}; + + proplist = proplist_1_1_0; + + proto_def_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ + name = "proto_def"; + version = "0.0.1"; + src = fetchHex { + pkg = "proto_def"; + version = "0.0.1"; + sha256 = + "0b045cd0f4684c7b0fe8100e136e7b54c2be247423cad741d4d9405e6178a769"; + }; + beamDeps = [ poison_2_1_0 ]; + + meta = { + longDescription = ''ProtoDef compiler for Elixir. (mostly) + Compatible with + https://github.com/ProtoDef-io/ProtoDef.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ProtoDef-io/elixir-protodef"; + }; + } // packageOverrides) + ) {}; + + proto_def = proto_def_0_0_1; + + provider_asn1_0_2_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "provider_asn1"; + version = "0.2.1"; + src = fetchHex { + pkg = "provider_asn1"; + version = "0.2.1"; + sha256 = + "1fbf4a1a9711b6308423a213d45dbe409937cdfbad0816491d18aea5d3c44242"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''Compile ASN.1 with Rebar3''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/knusbaum/provider_asn1"; + }; + } // packageOverrides) + ) {}; + + provider_asn1 = provider_asn1_0_2_1; + + providers_1_4_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, getopt_0_8_2 }: + buildRebar3 ({ + name = "providers"; + version = "1.4.1"; + src = fetchHex { + pkg = "providers"; + version = "1.4.1"; + sha256 = + "dfd88305670a3d942c08a2d852eeb4c20ec40ee2ba589339a48083ac74f14e36"; + }; + + beamDeps = [ getopt_0_8_2 ]; + + meta = { + description = ''Providers provider.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsloughter/providers"; + }; + } // packageOverrides) + ) {}; + + providers_1_6_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, getopt_0_8_2 }: + buildRebar3 ({ + name = "providers"; + version = "1.6.0"; + src = fetchHex { + pkg = "providers"; + version = "1.6.0"; + sha256 = + "0f6876529a613d34224de8c61d3660388eb981142360f2699486d8536050ce2f"; + }; + + beamDeps = [ getopt_0_8_2 ]; + + meta = { + description = ''Providers provider.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsloughter/providers"; + }; + } // packageOverrides) + ) {}; + + providers = providers_1_6_0; + + pubsub_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "pubsub"; + version = "0.0.2"; + src = fetchHex { + pkg = "pubsub"; + version = "0.0.2"; + sha256 = + "2072bf67d5d4b6d41c81f0e89697d72ca323c5640e883b0d0cec7d43cf6c8ae8"; + }; + + meta = { + description = ''Publish-Subscribe utility''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/simonewebdesign/elixir_pubsub"; + }; + } // packageOverrides) + ) {}; + + pubsub = pubsub_0_0_2; + + qdate_0_4_2 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + erlware_commons_0_18_0, + erlang_localtime_1_0_0 + }: + buildRebar3 ({ + name = "qdate"; + version = "0.4.2"; + src = fetchHex { + pkg = "qdate"; + version = "0.4.2"; + sha256 = + "4cb9dcc4418e57e27aff12d0e7d6c6e373a18e130ad66155a3dfdccde848c052"; + }; + + beamDeps = [ erlware_commons_0_18_0 erlang_localtime_1_0_0 ]; + + meta = { + description = ''Simple Date and Timezone handling for Erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/choptastic/qdate"; + }; + } // packageOverrides) + ) {}; + + qdate = qdate_0_4_2; + + qlc_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "qlc"; + version = "1.0.0"; + src = fetchHex { + pkg = "qlc"; + version = "1.0.0"; + sha256 = + "80df25fc032ced6f8c0c21df4099434db09d6de87ee32237719c776974ad15cc"; + }; + + meta = { + description = ''QLC interface for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/k1complete/qlc"; + }; + } // packageOverrides) + ) {}; + + qlc = qlc_1_0_0; + + quantum_1_7_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, timex_2_1_3 }: + buildMix ({ + name = "quantum"; + version = "1.7.1"; + src = fetchHex { + pkg = "quantum"; + version = "1.7.1"; + sha256 = + "55a74be6a021816fe78d9a4a9450281e027302806313c9fa6e51694d44106c0a"; + }; + beamDeps = [ timex_2_1_3 ]; + + meta = { + description = ''Cron-like job scheduler for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/c-rack/quantum-elixir"; + }; + } // packageOverrides) + ) {}; + + quantum = quantum_1_7_1; + + quark_1_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "quark"; + version = "1.0.2"; + src = fetchHex { + pkg = "quark"; + version = "1.0.2"; + sha256 = + "c24950acc4d6f44aff612302871b2cff5f56d6b702285bc04e7b71179e5b13c7"; + }; + + meta = { + description = ''Common combinators for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/robot-overlord/quark"; + }; + } // packageOverrides) + ) {}; + + quark = quark_1_0_2; + + queuex_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "queuex"; + version = "0.2.0"; + src = fetchHex { + pkg = "queuex"; + version = "0.2.0"; + sha256 = + "e40b25befc34ecff962c92536e6a520967dd2d6031cb70a58be62269a6aec623"; + }; + + meta = { + description = ''Priority Queue''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/falood/queuex"; + }; + } // packageOverrides) + ) {}; + + queuex = queuex_0_2_0; + + quickrand_1_5_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "quickrand"; + version = "1.5.1"; + src = fetchHex { + pkg = "quickrand"; + version = "1.5.1"; + sha256 = + "0b3dcc6ddb23319c1f6a5ed143778864b8ad2f0ebd693a2d121cf5ae0c4db507"; + }; + + meta = { + longDescription = ''Quick Random Number Generation: Provides a + simple interface to call efficient random number + generation functions based on the context. + Proper random number seeding is enforced.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/quickrand"; + }; + } // packageOverrides) + ) {}; + + quickrand = quickrand_1_5_1; + + quintana_0_2_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, folsom_0_8_3 }: + buildRebar3 ({ + name = "quintana"; + version = "0.2.0"; + src = fetchHex { + pkg = "quintana"; + version = "0.2.0"; + sha256 = + "0646fe332ca3415ca6b0b273b4a5689ec902b9f9004ca62229ded00bd5f64cda"; + }; + + beamDeps = [ folsom_0_8_3 ]; + + meta = { + description = ''Wrapper around some Folsom functions''; + + }; + } // packageOverrides) + ) {}; + + quintana_0_2_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, folsom_0_8_3 }: + buildRebar3 ({ + name = "quintana"; + version = "0.2.1"; + src = fetchHex { + pkg = "quintana"; + version = "0.2.1"; + sha256 = + "d4683eb33c71f6cab3b17b896b4fa9180f17a0a8b086440bfe0c5675182f0194"; + }; + + beamDeps = [ folsom_0_8_3 ]; + + meta = { + description = ''Wrapper around some Folsom functions''; + + }; + } // packageOverrides) + ) {}; + + quintana = quintana_0_2_1; + + ra_0_3_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ra"; + version = "0.3.2"; + src = fetchHex { + pkg = "ra"; + version = "0.3.2"; + sha256 = + "696cc4fd2dc1a36c705af7e7a1551bd054ad245841fccbc5d9d210f375c2dcf4"; + }; + + meta = { + description = ''Ra is a framework for building command line + applications.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/NobbZ/ra"; + }; + } // packageOverrides) + ) {}; + + ra = ra_0_3_2; + + rabbitElixir_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exjsx_3_1_0 }: + buildMix ({ + name = "rabbitElixir"; + version = "1.0.1"; + src = fetchHex { + pkg = "rabbitElixir"; + version = "1.0.1"; + sha256 = + "bc0ddae7fa0b869a6688db2e5d909d375ff0692a959aa768eed586bcfd2d0a2f"; + }; + beamDeps = [ exjsx_3_1_0 ]; + + meta = { + description = ''Another Zawgyi <=> Unicode Converter ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Rabbit-Converter/Rabbit-Elixir"; + }; + } // packageOverrides) + ) {}; + + rabbitElixir = rabbitElixir_1_0_1; + + rabbit_common_3_5_6 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "rabbit_common"; + version = "3.5.6"; + src = fetchHex { + pkg = "rabbit_common"; + version = "3.5.6"; + sha256 = + "9335ab3ebc4e8e140d7bc9b1b0e7ee99c0aa87d0a746b704184121ba35c04f1c"; + }; + + meta = { + longDescription = ''Includes modules which are a runtime + dependency of the RabbitMQ/AMQP Erlang client + and are common to the RabbitMQ server.''; + license = stdenv.lib.licenses.mpl11; + homepage = "https://github.com/jbrisbin/rabbit_common"; + }; + } // packageOverrides) + ) {}; + + rabbit_common = rabbit_common_3_5_6; + + rails_4_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "rails"; + version = "4.2.0"; + src = fetchHex { + pkg = "rails"; + version = "4.2.0"; + sha256 = + "731692769aa106a20c87b12dca15336fd1d16a7f02e2615ad76f6ce83a2b0b46"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + longDescription = ''A plug to get your plug/phoenix applications + performance more in line with Rails.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/BlakeWilliams/rails"; + }; + } // packageOverrides) + ) {}; + + rails = rails_4_2_0; + + ranch_1_1_0 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "ranch"; + version = "1.1.0"; + src = fetchHex { + pkg = "ranch"; + version = "1.1.0"; + sha256 = + "98ade939e63e6567da5dec5bc5bd93cbdc53d53f8b1aa998adec60dc4057f048"; + }; + + meta = { + description = ''Socket acceptor pool for TCP protocols.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/ninenines/ranch"; + }; + } // packageOverrides) + ) {}; + + ranch_1_2_1 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "ranch"; + version = "1.2.1"; + src = fetchHex { + pkg = "ranch"; + version = "1.2.1"; + sha256 = + "f602d057615ce737945c239e9c8155d3f5300fc5b1255abf81f2a9d0d08e5b04"; + }; + + meta = { + description = ''Socket acceptor pool for TCP protocols.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/ninenines/ranch"; + }; + } // packageOverrides) + ) {}; + + ranch = ranch_1_2_1; + + random_string_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "random_string"; + version = "0.0.1"; + src = fetchHex { + pkg = "random_string"; + version = "0.0.1"; + sha256 = + "4a90483956764f6ad3d928e27d2e6a1e830bc53b28ded5464c715eb2ec6b8ed8"; + }; + + meta = { + description = ''Generates random string (or a stream of + characters) of desired character sets.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sylph01/random_string"; + }; + } // packageOverrides) + ) {}; + + random_string = random_string_0_0_1; + + range_extras_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "range_extras"; + version = "0.1.0"; + src = fetchHex { + pkg = "range_extras"; + version = "0.1.0"; + sha256 = + "edc50d31341e1370d009df8b51d7d0e355a966068520ff38e88b8b542953e15c"; + }; + + meta = { + description = ''Elixir range utilities: constant-time random + sampling and set operations.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/lnikkila/elixir-range-extras"; + }; + } // packageOverrides) + ) {}; + + range_extras = range_extras_0_1_0; + + rankmatcher_0_1_4 = callPackage + ( + { + buildRebar3, packageOverrides ? {}, fetchHex, libsnarlmatch_0_1_7 + }: + buildRebar3 ({ + name = "rankmatcher"; + version = "0.1.4"; + src = fetchHex { + pkg = "rankmatcher"; + version = "0.1.4"; + sha256 = + "ae02bd458ba5c4298809e056668206dac3675c15319780808cbdde48068185c6"; + }; + + beamDeps = [ libsnarlmatch_0_1_7 ]; + + meta = { + description = ''Library to rank and match lists''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/dalmatinerdb/mstore"; + }; + } // packageOverrides) + ) {}; + + rankmatcher = rankmatcher_0_1_4; + + rational_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, earmark_0_2_1 }: + buildMix ({ + name = "rational"; + version = "0.2.0"; + src = fetchHex { + pkg = "rational"; + version = "0.2.0"; + sha256 = + "640093486afd882e5283d4269d9ab624369239016fed67e3b8038845322107b7"; + }; + beamDeps = [ earmark_0_2_1 ]; + + meta = { + longDescription = ''Rational is a module for exact representation + and manipulation of rational fractions, that is, + those fractions that can be exactly represented + by a ratio of integers (e.g., 1/3 or + 4176/22687).''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/twist-vector/elixir-rational.git"; + }; + } // packageOverrides) + ) {}; + + rational = rational_0_2_0; + + ratx_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "ratx"; + version = "0.1.0"; + src = fetchHex { + pkg = "ratx"; + version = "0.1.0"; + sha256 = + "fbf933ff32fdc127200880f5b567820bf03504ade1bd697ffbc0535dbafc23d6"; + }; + + meta = { + description = ''Rate limiter and overload protection for erlang + and elixir applications. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/liveforeverx/ratx"; + }; + } // packageOverrides) + ) {}; + + ratx = ratx_0_1_0; + + readme_md_doc_0_1_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_11_4, + argument_parser_0_1_3 + }: + buildMix ({ + name = "readme_md_doc"; + version = "0.1.2"; + src = fetchHex { + pkg = "readme_md_doc"; + version = "0.1.2"; + sha256 = + "3353e8598991afbaa8d12344212fdd9c85413d1664b026a7ee1036573c6f536c"; + }; + beamDeps = [ ex_doc_0_11_4 argument_parser_0_1_3 ]; + + meta = { + description = ''README.md generation tool for small Elixir + project''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jisaacstone/readme_md_docgen"; + }; + } // packageOverrides) + ) {}; + + readme_md_doc = readme_md_doc_0_1_2; + + reap_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, jsex_2_0_0 }: + buildMix ({ + name = "reap"; + version = "0.1.3"; + src = fetchHex { + pkg = "reap"; + version = "0.1.3"; + sha256 = + "e260540500a29ac9945db512a550cd9b56ba4295b4aa3c1b408ad62720e7807b"; + }; + beamDeps = [ jsex_2_0_0 ]; + + meta = { + description = ''A library for working with the refheap API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Raynes/reap"; + }; + } // packageOverrides) + ) {}; + + reap = reap_0_1_3; + + reaxive_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "reaxive"; + version = "0.1.0"; + src = fetchHex { + pkg = "reaxive"; + version = "0.1.0"; + sha256 = + "d185c80da34499999000f6aaab3ab891cdff34cb3a2079835e8e6f5b4e813fa2"; + }; + + meta = { + longDescription = ''Reaxive is a library inspired by Reactive + Extensions and ELM to provide functional + reactive programming to Elixir. It allows for + active sequences of events and a set of + stream-reducer like transformations such as map + or filter. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/alfert/reaxive"; + }; + } // packageOverrides) + ) {}; + + reaxive = reaxive_0_1_0; + + rebar3_appup_plugin_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "rebar3_appup_plugin"; + version = "1.0.0"; + src = fetchHex { + pkg = "rebar3_appup_plugin"; + version = "1.0.0"; + sha256 = + "8211e7cf4f251cdd3c324864e6e090d89a9edb58d019f4cdb7e1084cc6a4b9d7"; + }; + + meta = { + description = ''A rebar3 plugin for handling .appup files''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lrascao/rebar3_appup_plugin"; + }; + } // packageOverrides) + ) {}; + + rebar3_appup_plugin = rebar3_appup_plugin_1_0_0; + + rebar3_asn1_compiler_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "rebar3_asn1_compiler"; + version = "1.0.0"; + src = fetchHex { + pkg = "rebar3_asn1_compiler"; + version = "1.0.0"; + sha256 = + "25ec1d5c97393195650ac8c7a06a267a886a1479950ee047c43b5228c07b30b9"; + }; + + meta = { + description = ''Compile ASN.1 modules with Rebar3''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pyykkis/rebar3_asn1_compiler"; + }; + } // packageOverrides) + ) {}; + + rebar3_asn1_compiler = rebar3_asn1_compiler_1_0_0; + + rebar3_cuttlefish_0_10_0 = callPackage + ( + { + buildRebar3, packageOverrides ? {}, fetchHex, cuttlefish_2_0_7 + }: + buildRebar3 ({ + name = "rebar3_cuttlefish"; + version = "0.10.0"; + src = fetchHex { + pkg = "rebar3_cuttlefish"; + version = "0.10.0"; + sha256 = + "e19a7393b09f2ed35e6ebbac392290d6ff1428e6d8573eac9ce49684b324b6e0"; + }; + + beamDeps = [ cuttlefish_2_0_7 ]; + + meta = { + description = ''A rebar plugin''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/tsloughter/rebar3_cuttlefish"; + }; + } // packageOverrides) + ) {}; + + rebar3_cuttlefish = rebar3_cuttlefish_0_10_0; + + rebar3_diameter_compiler_0_3_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "rebar3_diameter_compiler"; + version = "0.3.1"; + src = fetchHex { + pkg = "rebar3_diameter_compiler"; + version = "0.3.1"; + sha256 = + "c5965e3810ccf9ef9ba9185a81fe569ef6e9f3a9e546e99c5e900736b0c39274"; + }; + + meta = { + description = ''Compile diameter .dia files''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/carlosedp/rebar3_diameter_compiler"; + }; + } // packageOverrides) + ) {}; + + rebar3_diameter_compiler = rebar3_diameter_compiler_0_3_1; + + rebar3_elixirc_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "rebar3_elixirc"; + version = "0.1.0"; + src = fetchHex { + pkg = "rebar3_elixirc"; + version = "0.1.0"; + sha256 = + "1c6ae367737306beefa0891d60cabf0357b85fcf472a2808c3e2295882f6ead8"; + }; + + meta = { + description = ''A rebar plugin''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/tsloughter/rebar3_elixirc"; + }; + } // packageOverrides) + ) {}; + + rebar3_elixirc = rebar3_elixirc_0_1_0; + + rebar3_hex_1_19_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "rebar3_hex"; + version = "1.19.0"; + src = fetchHex { + pkg = "rebar3_hex"; + version = "1.19.0"; + sha256 = + "b7c291d742e25eeae5dc5bd97e5b0a8987dab17da65054f757311ad90b16b73e"; + }; + + meta = { + description = ''Hex.pm plugin for rebar3''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsloughter/rebar3_hex"; + }; + } // packageOverrides) + ) {}; + + rebar3_hex = rebar3_hex_1_19_0; + + rebar3_idl_compiler_0_3_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "rebar3_idl_compiler"; + version = "0.3.0"; + src = fetchHex { + pkg = "rebar3_idl_compiler"; + version = "0.3.0"; + sha256 = + "31ba95205c40b990cb3c49abb397abc47b4d5f9c402db83f9daebbc44e69789d"; + }; + + meta = { + description = ''Rebar3 IDL Compiler''; + + homepage = "https://github.com/sebastiw/rebar3_idl_compiler"; + }; + } // packageOverrides) + ) {}; + + rebar3_idl_compiler = rebar3_idl_compiler_0_3_0; + + rebar3_neotoma_plugin_0_2_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }: + buildRebar3 ({ + name = "rebar3_neotoma_plugin"; + version = "0.2.0"; + src = fetchHex { + pkg = "rebar3_neotoma_plugin"; + version = "0.2.0"; + sha256 = + "c0ebbdb08c017cac90c7d3310a9bd4a5088a46abd4e2fef9e9a9805a657396b8"; + }; + + beamDeps = [ neotoma_1_7_3 ]; + + meta = { + description = ''Neotoma rebar plugin''; + license = stdenv.lib.licenses.apsl20; + homepage = + "https://github.com/zamotivator/rebar3_neotoma_plugin"; + }; + } // packageOverrides) + ) {}; + + rebar3_neotoma_plugin = rebar3_neotoma_plugin_0_2_0; + + rebar3_vendor_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "rebar3_vendor"; + version = "0.1.0"; + src = fetchHex { + pkg = "rebar3_vendor"; + version = "0.1.0"; + sha256 = + "db0c9623e1c45eda4daa04752768d580682a827a314a548e5fd61ffcf950b301"; + }; + + meta = { + description = ''Rebar3 plugin for vendoring dependencies.''; + license = stdenv.lib.licenses.apsl20; + homepage = "http://github.com/tsloughter/rebar3_vendor"; + }; + } // packageOverrides) + ) {}; + + rebar3_vendor = rebar3_vendor_0_1_0; + + rebar_alias_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "rebar_alias"; + version = "0.1.0"; + src = fetchHex { + pkg = "rebar_alias"; + version = "0.1.0"; + sha256 = + "59fb42b39964af3a29ebe94c11247f618dd4d5e4e1a69cfaffabbed03ccff70f"; + }; + + meta = { + description = ''A rebar plugin''; + + }; + } // packageOverrides) + ) {}; + + rebar_alias = rebar_alias_0_1_0; + + rebar_erl_vsn_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "rebar_erl_vsn"; + version = "0.1.0"; + src = fetchHex { + pkg = "rebar_erl_vsn"; + version = "0.1.0"; + sha256 = + "7cf1e2e85a80785a4e4e1529a2c837dbd2d540214cf791214e56f931e5e9865d"; + }; + + meta = { + description = ''defines for erlang versions''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + rebar_erl_vsn = rebar_erl_vsn_0_1_0; + + rebind_0_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "rebind"; + version = "0.1.3"; + src = fetchHex { + pkg = "rebind"; + version = "0.1.3"; + sha256 = + "043322759e646ef255e91440d275573b70d9ac6bdf10988ec976ddcf1baf99c3"; + }; + + meta = { + description = ''rebind parse transform for erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/rebind"; + }; + } // packageOverrides) + ) {}; + + rebind = rebind_0_1_3; + + recon_2_2_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "recon"; + version = "2.2.1"; + src = fetchHex { + pkg = "recon"; + version = "2.2.1"; + sha256 = + "6c548ad0f4916495a78977674a251847869f85b5125b7c2a44da3178955adfd1"; + }; + + meta = { + description = ''Diagnostic tools for production use''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/ferd/recon/"; + }; + } // packageOverrides) + ) {}; + + recon = recon_2_2_1; + + red_0_0_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exredis_0_2_3 }: + buildMix ({ + name = "red"; + version = "0.0.5"; + src = fetchHex { + pkg = "red"; + version = "0.0.5"; + sha256 = + "191b394672817e1ef955cc9b99bd26c61daab9bbbbc089825e7957e92c0eba60"; + }; + beamDeps = [ exredis_0_2_3 ]; + + meta = { + longDescription = ''Red is an Elixir library that uses Redis to + persist relationships between objects, like a + graph.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/rodrigues/red"; + }; + } // packageOverrides) + ) {}; + + red = red_0_0_5; + + red_black_tree_1_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "red_black_tree"; + version = "1.2.0"; + src = fetchHex { + pkg = "red_black_tree"; + version = "1.2.0"; + sha256 = + "1e8e7b85d075e249f9384ba0fcd2aacbff3697a5cb3cb5c9838c86f762b79725"; + }; + + meta = { + description = ''Red-Black trees: an ordered key-value store with + O(log(N)) performance''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/SenecaSystems/red_black_tree"; + }; + } // packageOverrides) + ) {}; + + red_black_tree = red_black_tree_1_2_0; + + redis_pool_0_2_3 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + eredis_1_0_8 + }: + buildMix ({ + name = "redis_pool"; + version = "0.2.3"; + src = fetchHex { + pkg = "redis_pool"; + version = "0.2.3"; + sha256 = + "e30620f1376b516fb0ccbb40b0f1097e23a21c5676b1cd3fe9fe89fb9f655339"; + }; + beamDeps = [ poolboy_1_5_1 eredis_1_0_8 ]; + + meta = { + description = ''Redis pool for Elixir. Build on top of eredis and + poolboy.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/le0pard/redis_pool"; + }; + } // packageOverrides) + ) {}; + + redis_pool = redis_pool_0_2_3; + + redis_poolex_0_0_5 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + exredis_0_2_3 + }: + buildMix ({ + name = "redis_poolex"; + version = "0.0.5"; + src = fetchHex { + pkg = "redis_poolex"; + version = "0.0.5"; + sha256 = + "aec40aa6807c6629a20657af502073849263bc35385abbcbb13748aaf8c995b6"; + }; + beamDeps = [ poolboy_1_5_1 exredis_0_2_3 ]; + + meta = { + description = ''Redis connection pool using poolboy and exredis + libraries''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/oivoodoo/redis_poolex"; + }; + } // packageOverrides) + ) {}; + + redis_poolex = redis_poolex_0_0_5; + + redix_0_3_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }: + buildMix ({ + name = "redix"; + version = "0.3.6"; + src = fetchHex { + pkg = "redix"; + version = "0.3.6"; + sha256 = + "6c7e3d6bf904eeff99232d28832d3234e4309179dc11516829dd672c8a98a663"; + }; + beamDeps = [ connection_1_0_2 ]; + + meta = { + description = ''Superfast, pipelined, resilient Redis driver for + Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/whatyouhide/redix"; + }; + } // packageOverrides) + ) {}; + + redix = redix_0_3_6; + + redo_2_0_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "redo"; + version = "2.0.1"; + src = fetchHex { + pkg = "redo"; + version = "2.0.1"; + sha256 = + "f7b2be8c825ec34413c54d8f302cc935ce4ecac8421ae3914c5dadd816dcb1e6"; + }; + + meta = { + description = ''Pipelined Redis Erlang Driver''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/heroku/redo"; + }; + } // packageOverrides) + ) {}; + + redo = redo_2_0_1; + + ref_inspector_0_8_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }: + buildMix ({ + name = "ref_inspector"; + version = "0.8.0"; + src = fetchHex { + pkg = "ref_inspector"; + version = "0.8.0"; + sha256 = + "3bef725ae702cfd9724fb1adabf1210740a15d6861feab01d13ccb9007f9a634"; + }; + beamDeps = [ poolboy_1_5_1 ]; + + meta = { + description = ''Referer parser library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixytics/ref_inspector"; + }; + } // packageOverrides) + ) {}; + + ref_inspector = ref_inspector_0_8_0; + + regdom_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "regdom"; + version = "0.0.1"; + src = fetchHex { + pkg = "regdom"; + version = "0.0.1"; + sha256 = + "845cdc5c60e50bac9684fa762ecd42627a84eedf96c7f554fceb0d8f3bfc86bd"; + }; + + meta = { + description = ''elixir port of regdom-lib''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/adqio/regdom-lib"; + }; + } // packageOverrides) + ) {}; + + regdom = regdom_0_0_1; + + relflow_1_0_5 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "relflow"; + version = "1.0.5"; + src = fetchHex { + pkg = "relflow"; + version = "1.0.5"; + sha256 = + "7a991b7e5e390f1cdb16dd0cbb9327bd70ce785e6cebcb6ea25a6693fd836b18"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''Rebar3 release workflow plugin''; + license = stdenv.lib.licenses.apsl20; + }; + } // packageOverrides) + ) {}; + + relflow = relflow_1_0_5; + + relief_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "relief"; + version = "0.0.1"; + src = fetchHex { + pkg = "relief"; + version = "0.0.1"; + sha256 = + "81c51cdf1fbaa7654da74d4ac1831b0d79504affd7b1fbe9d6f16ce701288c50"; + }; + + meta = { + description = ''A collection of Elixir Stream oriented relief + mechanisms.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/voidlock/relief"; + }; + } // packageOverrides) + ) {}; + + relief = relief_0_0_1; + + relocker_0_0_8 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exredis_0_2_3 }: + buildMix ({ + name = "relocker"; + version = "0.0.8"; + src = fetchHex { + pkg = "relocker"; + version = "0.0.8"; + sha256 = + "e5678d5fe1795384c672a15a80bf91e3007683e5d22bc523eed634635e89bf4b"; + }; + beamDeps = [ exredis_0_2_3 ]; + + meta = { + description = ''A library for holding a lock in Redis.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/grandCru/relocker"; + }; + } // packageOverrides) + ) {}; + + relocker = relocker_0_0_8; + + reltool_util_1_5_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "reltool_util"; + version = "1.5.1"; + src = fetchHex { + pkg = "reltool_util"; + version = "1.5.1"; + sha256 = + "746e16871afdcf85d8a115389193c8d660d0df1d26d6ac700590e0ad252646b1"; + }; + + meta = { + description = ''Erlang reltool utility functionality + application''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/reltool_util"; + }; + } // packageOverrides) + ) {}; + + reltool_util = reltool_util_1_5_1; + + relx_3_18_0 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + providers_1_6_0, + getopt_0_8_2, + erlware_commons_0_19_0, + cf_0_2_1, + bbmustache_1_0_4 + }: + buildRebar3 ({ + name = "relx"; + version = "3.18.0"; + src = fetchHex { + pkg = "relx"; + version = "3.18.0"; + sha256 = + "e76e0446b8d1b113f2b7dcc713f032ccdf1dbda33d76edfeb19c2b6b686dcad7"; + }; + + beamDeps = [ + providers_1_6_0 + getopt_0_8_2 + erlware_commons_0_19_0 + cf_0_2_1 + bbmustache_1_0_4 + ]; + + meta = { + description = ''Release assembler for Erlang/OTP Releases''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/erlware/relx"; + }; + } // packageOverrides) + ) {}; + + relx = relx_3_18_0; + + relx_3_3_2 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + providers_1_4_1, + getopt_0_8_2, + erlware_commons_0_15_0, + bbmustache_1_0_3 + }: + buildRebar3 ({ + name = "relx"; + version = "3.3.2"; + src = fetchHex { + pkg = "relx"; + version = "3.3.2"; + sha256 = + "4c97df0ceb82890b3612b9c30e8d865e3d738fc69186bc94da0f75f619f7195a"; + }; + + beamDeps = [ + providers_1_4_1 + getopt_0_8_2 + erlware_commons_0_15_0 + bbmustache_1_0_3 + ]; + + meta = { + description = ''Release assembler for Erlang/OTP Releases''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/erlware/relx"; + }; + } // packageOverrides) + ) {}; + + relx_3_5_0 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + providers_1_4_1, + getopt_0_8_2, + erlware_commons_0_15_0, + bbmustache_1_0_3 + }: + buildRebar3 ({ + name = "relx"; + version = "3.5.0"; + src = fetchHex { + pkg = "relx"; + version = "3.5.0"; + sha256 = + "a8cbf529702024f56d03d43349a5aafac55a6aa1b2ecf7bd3e8cc61e72a858a1"; + }; + + beamDeps = [ + providers_1_4_1 + getopt_0_8_2 + erlware_commons_0_15_0 + bbmustache_1_0_3 + ]; + + meta = { + description = ''Release assembler for Erlang/OTP Releases''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/erlware/relx"; + }; + } // packageOverrides) + ) {}; + + remix_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "remix"; + version = "0.0.2"; + src = fetchHex { + pkg = "remix"; + version = "0.0.2"; + sha256 = + "5f5555646ed4fca83fab8620735150aa0bc408c5a17a70d28cfa7086bc6f497c"; + }; + + meta = { + description = ''Recompiles mix projects on any change to the lib + directory.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/AgilionApps/remix"; + }; + } // packageOverrides) + ) {}; + + remix = remix_0_0_2; + + remodel_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "remodel"; + version = "0.0.1"; + src = fetchHex { + pkg = "remodel"; + version = "0.0.1"; + sha256 = + "f88edf81e99f7474792e71f5ab61155d1a031484565badebb8a15b0fe15b5207"; + }; + + meta = { + longDescription = ''Remodel is an Elixir presenter package used + to transform data structures. This is especially + useful when a desired representation doesn`t + match the schema defined within the database. + ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/stavro/remodel"; + }; + } // packageOverrides) + ) {}; + + remodel = remodel_0_0_1; + + repoquery_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "repoquery"; + version = "0.0.2"; + src = fetchHex { + pkg = "repoquery"; + version = "0.0.2"; + sha256 = + "6b379793fae7cf8ff696feaeff9bf06d58ad66a9cbadfc8a769291c54814c922"; + }; + + meta = { + description = ''An Elixir interface for the `repoquery` cli + tool.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rentpath/repoquery"; + }; + } // packageOverrides) + ) {}; + + repoquery = repoquery_0_0_2; + + reprise_0_5_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "reprise"; + version = "0.5.0"; + src = fetchHex { + pkg = "reprise"; + version = "0.5.0"; + sha256 = + "9db9fe973d2ac318a079409a75a18a8c2b5b1554db05f3611e81f555103ed9ed"; + }; + + meta = { + longDescription = ''Reprise reloads your modules after they`ve + been recompiled. This is an intentionally + simplified reloader when compared to the other + ones, like exreloader or Mochiweb reloader. It + aims to do one thing well. Only the beam files + which were created under your mix project are + scanned for changes. Deps are also excluded from + checking and reloading. It doesn`t try to + compile changed sources -- this task is better + left to some shell tools like inotify.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/herenowcoder/reprise"; + }; + } // packageOverrides) + ) {}; + + reprise = reprise_0_5_0; + + resin_0_4_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "resin"; + version = "0.4.1"; + src = fetchHex { + pkg = "resin"; + version = "0.4.1"; + sha256 = + "c6bdfd13e91cbc289df91440e216b91aa590a7dafe59958b0197cedd8cfef792"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''Pour resin in your plug pipeline to add + (configurable) enterpriseyness!''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Frost/resin"; + }; + } // packageOverrides) + ) {}; + + resin = resin_0_4_1; + + rest_1_5_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "rest"; + version = "1.5.0"; + src = fetchHex { + pkg = "rest"; + version = "1.5.0"; + sha256 = + "d99f75ef949eae41e28f707f9e1b6ea5fa07cba57c5365b5466ed357e8f78b07"; + }; + + meta = { + description = ''REST erlang interface generator''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/synrc/rest"; + }; + } // packageOverrides) + ) {}; + + rest = rest_1_5_0; + + reup_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "reup"; + version = "0.1.0"; + src = fetchHex { + pkg = "reup"; + version = "0.1.0"; + sha256 = + "949a672190119f8b24160167e3685fdd5397474f98dc875ccfd31378ebd68506"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''dev watcher that auto compiles and reloads + modules''; + license = stdenv.lib.licenses.apsl20; + }; + } // packageOverrides) + ) {}; + + reup = reup_0_1_0; + + revision_plate_ex_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "revision_plate_ex"; + version = "0.1.0"; + src = fetchHex { + pkg = "revision_plate_ex"; + version = "0.1.0"; + sha256 = + "6c88a514ae5b36999fd52c01cc3ea746f8ba9c7900b47f4758a65c197b8aed71"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + longDescription = ''Plug application and middleware that serves + endpoint returns application`s REVISION''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KazuCocoa/revision_plate_ex"; + }; + } // packageOverrides) + ) {}; + + revision_plate_ex = revision_plate_ex_0_1_0; + + rfc3339_0_9_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "rfc3339"; + version = "0.9.0"; + src = fetchHex { + pkg = "rfc3339"; + version = "0.9.0"; + sha256 = + "182314de35c9f4180b22eb5f22916d8d7a799c1109a060c752970273a9332ad6"; + }; + + meta = { + description = ''an rfc3339 parser and formatter''; + license = with stdenv.lib.licenses; [ asl20 mit ]; + homepage = "https://github.com/talentdeficit/rfc3339"; + }; + } // packageOverrides) + ) {}; + + rfc3339 = rfc3339_0_9_0; + + riak_dt_2_1_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "riak_dt"; + version = "2.1.1"; + src = fetchHex { + pkg = "riak_dt"; + version = "2.1.1"; + sha256 = + "b5ab9e1d579ec3129cbea4b1977261aa2c5ad634321f87ace83bb32b99f65396"; + }; + + meta = { + description = ''riak CTDT datatypes''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/basho/riak_dt"; + }; + } // packageOverrides) + ) {}; + + riak_dt = riak_dt_2_1_1; + + riak_sysmon_2_1_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, lager_3_0_2 }: + buildRebar3 ({ + name = "riak_sysmon"; + version = "2.1.2"; + src = fetchHex { + pkg = "riak_sysmon"; + version = "2.1.2"; + sha256 = + "a467f7a24fbdeac5b23baf0269758236458fabf8b498e9c551e61c5238e6f97c"; + }; + + beamDeps = [ lager_3_0_2 ]; + + meta = { + description = ''Rate-limiting system_monitor event handler''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/basho/riak_sysmon"; + }; + } // packageOverrides) + ) {}; + + riak_sysmon = riak_sysmon_2_1_2; + + rollex_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, sfmt_0_12_7 }: + buildMix ({ + name = "rollex"; + version = "0.4.0"; + src = fetchHex { + pkg = "rollex"; + version = "0.4.0"; + sha256 = + "53410bbd7687ff751b51b9737965bff1ba9c3d0673af65752f4ae3be0de1b44c"; + }; + beamDeps = [ sfmt_0_12_7 ]; + + meta = { + description = ''Elixir library using a Pratt Parser algorithm to + calculate dice rolls.''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + rollex = rollex_0_4_0; + + roman_numerals_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "roman_numerals"; + version = "1.0.1"; + src = fetchHex { + pkg = "roman_numerals"; + version = "1.0.1"; + sha256 = + "5e9dcfcb645c1ca937ddc0170805028596fbf4936d0119131350d7de95b7c6a1"; + }; + + meta = { + description = ''Convert numbers to Roman numerals and back.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lpil/roman-numerals"; + }; + } // packageOverrides) + ) {}; + + roman_numerals = roman_numerals_1_0_1; + + romanex_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "romanex"; + version = "0.1.0"; + src = fetchHex { + pkg = "romanex"; + version = "0.1.0"; + sha256 = + "b1f769bbf638d14247c70be8b944cfa76a84a00ef690e9cba26032ae03e33a89"; + }; + + meta = { + description = ''Encode, Decode, and Validate Roman Numerals.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/itsgreggreg/romanex"; + }; + } // packageOverrides) + ) {}; + + romanex = romanex_0_1_0; + + romeo_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }: + buildMix ({ + name = "romeo"; + version = "0.4.0"; + src = fetchHex { + pkg = "romeo"; + version = "0.4.0"; + sha256 = + "38f1fe4ddeab5865de68dff196cf18b86d7ba3b8bb49c2753f1d04b145f248d4"; + }; + beamDeps = [ connection_1_0_2 ]; + + meta = { + description = ''An XMPP Client for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/scrogson/romeo"; + }; + } // packageOverrides) + ) {}; + + romeo = romeo_0_4_0; + + rop_0_5_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "rop"; + version = "0.5.3"; + src = fetchHex { + pkg = "rop"; + version = "0.5.3"; + sha256 = + "3b8c37802c530eecc7714c175fe36486bb45157519cc7498ac487f6590f396e8"; + }; + + meta = { + description = ''Some convenient macros to enable + railsway-oriented programming in Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ruby2elixir/rop"; + }; + } // packageOverrides) + ) {}; + + rop = rop_0_5_3; + + rotor_0_2_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "rotor"; + version = "0.2.2"; + src = fetchHex { + pkg = "rotor"; + version = "0.2.2"; + sha256 = + "82de479c2cb6d26299916209d2945d1b39cf820f38279485ea5d5a8c494cb281"; + }; + + meta = { + longDescription = ''Rotor is a build system for Elixir projects. + Use it to compile things, run commands or do + anything when files change. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/HashNuke/rotor"; + }; + } // packageOverrides) + ) {}; + + rotor = rotor_0_2_2; + + rquote_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "rquote"; + version = "0.0.1"; + src = fetchHex { + pkg = "rquote"; + version = "0.0.1"; + sha256 = + "54e1cba92716a4176d89e20d841dbc3a1227ef2fd9f7ddc5711a900877912354"; + }; + + meta = { + description = ''Library and CLI for generating random price + quotes ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stocks29/rquote"; + }; + } // packageOverrides) + ) {}; + + rquote = rquote_0_0_1; + + rsa_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "rsa"; + version = "0.0.1"; + src = fetchHex { + pkg = "rsa"; + version = "0.0.1"; + sha256 = + "6351a45a5a58285c41d611ec32b37ee486d7dacd119d7ef90ada844c44e95596"; + }; + + meta = { + description = ''Erlang public_key cryptography wrapper''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/trapped/elixir-rsa"; + }; + } // packageOverrides) + ) {}; + + rsa = rsa_0_0_1; + + rubix_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "rubix"; + version = "0.0.2"; + src = fetchHex { + pkg = "rubix"; + version = "0.0.2"; + sha256 = + "b9083f7c8981fc162bfda5c8aa9855f79298905eb8e3b4a4089134614b2a8199"; + }; + + meta = { + description = ''A very simple (and barely-functioning) Ruby + runner for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/YellowApple/Rubix"; + }; + } // packageOverrides) + ) {}; + + rubix = rubix_0_0_2; + + russian_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "russian"; + version = "0.1.0"; + src = fetchHex { + pkg = "russian"; + version = "0.1.0"; + sha256 = + "ebacf93bb9f653f749f787d65629ed2bd830dec295fb785f44738c120e9fde9a"; + }; + + meta = { + description = ''Transliterate a string with russian characters''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Kr00lIX/russian_elixir"; + }; + } // packageOverrides) + ) {}; + + russian = russian_0_1_0; + + safetybox_0_1_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + earmark_0_2_1, + cryptex_0_0_1 + }: + buildMix ({ + name = "safetybox"; + version = "0.1.2"; + src = fetchHex { + pkg = "safetybox"; + version = "0.1.2"; + sha256 = + "7785f6f8f53082af331a3dd44d9a1dd759d7c7981f3b6924482c81370b8cc706"; + }; + beamDeps = [ earmark_0_2_1 cryptex_0_0_1 ]; + + meta = { + description = ''A set of helper functions for security oriented + operations, like encrypt. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/aforward/safetybox"; + }; + } // packageOverrides) + ) {}; + + safetybox = safetybox_0_1_2; + + salsa20_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "salsa20"; + version = "0.3.0"; + src = fetchHex { + pkg = "salsa20"; + version = "0.3.0"; + sha256 = + "4b2c2fc873c5443443220966f8c87e73d3d99725cd99cb93f6d752ce3cf3c335"; + }; + + meta = { + description = ''Salsa20 symmetric stream cipher''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/salsa20_ex"; + }; + } // packageOverrides) + ) {}; + + salsa20 = salsa20_0_3_0; + + sap_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + control_0_0_4 + }: + buildMix ({ + name = "sap"; + version = "0.0.2"; + src = fetchHex { + pkg = "sap"; + version = "0.0.2"; + sha256 = + "63f2db3cbbb753eac51177783463fb364dd560745bf5e4e8ba10a237e557903c"; + }; + beamDeps = [ plug_1_1_3 control_0_0_4 ]; + + meta = { + longDescription = ''Sap is a toolkit for Plug applications to + accept and respond to HTTP requests by using a + decision tree built with combinators.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slogsdon/sap"; + }; + } // packageOverrides) + ) {}; + + sap = sap_0_0_2; + + sasl_ex_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "sasl_ex"; + version = "0.1.0"; + src = fetchHex { + pkg = "sasl_ex"; + version = "0.1.0"; + sha256 = + "ce7f244817f6264738d5432d9b734921b9fdfe4ca2351a890ed678eb6fbaad3e"; + }; + + meta = { + longDescription = ''A lib for decoding bytes in the format of the + SASL protocol into an Elixir struct.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/elbow-jason/sasl_ex"; + }; + } // packageOverrides) + ) {}; + + sasl_ex = sasl_ex_0_1_0; + + sbroker_0_7_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "sbroker"; + version = "0.7.0"; + src = fetchHex { + pkg = "sbroker"; + version = "0.7.0"; + sha256 = + "5bc0bfd79896fd5b92072a71fa4a1e120f4110f2cf9562a0b9dd2fcfe9e5cfd2"; + }; + + meta = { + description = ''Process broker for dispatching with backpressure + and load shedding''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fishcakez/sbroker"; + }; + } // packageOverrides) + ) {}; + + sbroker = sbroker_0_7_0; + + scaffold_0_0_5 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + gitex_0_1_0, + configparser_ex_0_2_1 + }: + buildMix ({ + name = "scaffold"; + version = "0.0.5"; + src = fetchHex { + pkg = "scaffold"; + version = "0.0.5"; + sha256 = + "fad499b712a576bc9d0f4842494baf9ec8d4c388f99c14f74654b1dbd158945c"; + }; + beamDeps = [ gitex_0_1_0 configparser_ex_0_2_1 ]; + + meta = { + description = ''A mix task for creating new projects based on + templates fetched from a Git-repo.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/gausby/scaffold"; + }; + } // packageOverrides) + ) {}; + + scaffold = scaffold_0_0_5; + + schedule_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "schedule"; + version = "0.1.0"; + src = fetchHex { + pkg = "schedule"; + version = "0.1.0"; + sha256 = + "0b9b9440fe5e6d4a0cad34a170d3ec3251e06c42610f1c4106d93949b845db73"; + }; + + meta = { + description = ''Basic operations with intervals for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/dvele55/schedule"; + }; + } // packageOverrides) + ) {}; + + schedule = schedule_0_1_0; + + schizo_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "schizo"; + version = "0.0.1"; + src = fetchHex { + pkg = "schizo"; + version = "0.0.1"; + sha256 = + "278d738fe6d3d1455dd24e0450a95f4191b8ce63b7059a1b74e7bad86c47746d"; + }; + + meta = { + description = ''Transform every other word in a sentence with + some transformers.''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/teerawat1992/Schizo"; + }; + } // packageOverrides) + ) {}; + + schizo = schizo_0_0_1; + + seat_json_0_0_18 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "seat_json"; + version = "0.0.18"; + src = fetchHex { + pkg = "seat_json"; + version = "0.0.18"; + sha256 = + "d0e7339fb24e156e53aa4cc733dda90d1c3bfa5f5fc38b7e293b690e7289c516"; + }; + + meta = { + description = ''Simple Elixir Api Testing lib''; + + }; + } // packageOverrides) + ) {}; + + seat_json = seat_json_0_0_18; + + secure_random_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "secure_random"; + version = "0.1.1"; + src = fetchHex { + pkg = "secure_random"; + version = "0.1.1"; + sha256 = + "55fa172d9f606bbf43a775f5b34b0866c8bbf242acf7e1ff1eafec2c07fdcc53"; + }; + + meta = { + description = ''A convienance library based on Ruy`s + SecureRandom''; + license = stdenv.lib.licenses.asl20; + homepage = + "https://github.com/patricksrobertson/secure_random.ex"; + }; + } // packageOverrides) + ) {}; + + secure_random_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "secure_random"; + version = "0.2.0"; + src = fetchHex { + pkg = "secure_random"; + version = "0.2.0"; + sha256 = + "d17b17f5b25e38359838ae61165d18724084796fcbdf3c18f09ee5876892c5a0"; + }; + + meta = { + description = ''A convienance library based on Ruy`s + SecureRandom''; + license = stdenv.lib.licenses.asl20; + homepage = + "https://github.com/patricksrobertson/secure_random.ex"; + }; + } // packageOverrides) + ) {}; + + secure_random = secure_random_0_2_0; + + segment_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_3_1, + httpotion_2_2_2 + }: + buildMix ({ + name = "segment"; + version = "0.1.0"; + src = fetchHex { + pkg = "segment"; + version = "0.1.0"; + sha256 = + "1747bf7a3f8d524d28890ce4499ef30a635f91c826d62e2b95711061faf02423"; + }; + beamDeps = [ poison_1_3_1 httpotion_2_2_2 ]; + + meta = { + description = ''analytics_elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stueccles/analytics-elixir"; + }; + } // packageOverrides) + ) {}; + + segment = segment_0_1_0; + + semver_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "semver"; + version = "0.1.2"; + src = fetchHex { + pkg = "semver"; + version = "0.1.2"; + sha256 = + "6e8150b94b1d5cbe3c31986a46cdc57c9af6f71f3747900280b2da7c0466a993"; + }; + + meta = { + description = ''Utilities for working with semver.org-compliant + version strings''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lee-dohm/semver"; + }; + } // packageOverrides) + ) {}; + + semver = semver_0_1_2; + + sentient_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ + name = "sentient"; + version = "0.0.2"; + src = fetchHex { + pkg = "sentient"; + version = "0.0.2"; + sha256 = + "fb752b01c2eb4a729cbe8b8301acca5bcb75a242f12819b6a56f3be3c877c3ec"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + description = ''Simple sentiment analysis based on the AFINN-111 + wordlist''; + + }; + } // packageOverrides) + ) {}; + + sentient = sentient_0_0_2; + + setup_1_7_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "setup"; + version = "1.7.0"; + src = fetchHex { + pkg = "setup"; + version = "1.7.0"; + sha256 = + "50d9cd7862d15812d2fd96a688bd70d6b7df88bbbf42cab9f010bb0fd5c91baa"; + }; + + meta = { + description = ''Generic setup application for Erlang-based + systems''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/uwiger/setup"; + }; + } // packageOverrides) + ) {}; + + setup = setup_1_7_0; + + sfmt_0_12_7 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "sfmt"; + version = "0.12.7"; + src = fetchHex { + pkg = "sfmt"; + version = "0.12.7"; + sha256 = + "4e295f5053b4a525c00b990cd88b38e492716e7e0c62abf0c626d9fea0ba800e"; + }; + + meta = { + description = ''SIMD-oriented Fast Mersenne Twister (SFMT) for + Erlang.''; + license = stdenv.lib.licenses.bsd2; + homepage = "https://github.com/jj1bdx/sfmt-erlang/"; + }; + } // packageOverrides) + ) {}; + + sfmt_0_13_0 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "sfmt"; + version = "0.13.0"; + src = fetchHex { + pkg = "sfmt"; + version = "0.13.0"; + sha256 = + "aaacd4824f2b3e439d360bcce6079863da1e7f564014602e9e7815f8740b6358"; + }; + + meta = { + description = ''SIMD-oriented Fast Mersenne Twister (SFMT) for + Erlang.''; + license = stdenv.lib.licenses.bsd2; + homepage = "https://github.com/jj1bdx/sfmt-erlang/"; + }; + } // packageOverrides) + ) {}; + + sfmt = sfmt_0_13_0; + + sfsobject_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "sfsobject"; + version = "0.0.3"; + src = fetchHex { + pkg = "sfsobject"; + version = "0.0.3"; + sha256 = + "fa30bf41d426d7dc899bd038ca44daf32c93e55452cfd0dc141eb6ded6d85f3c"; + }; + + meta = { + description = ''Encode/decode SFSObjects''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/splattael/sfsobject"; + }; + } // packageOverrides) + ) {}; + + sfsobject = sfsobject_0_0_3; + + sh_1_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "sh"; + version = "1.1.2"; + src = fetchHex { + pkg = "sh"; + version = "1.1.2"; + sha256 = + "78ec787a58d546ae915073978e9ad21a7b3e6187fb5b9c93922e6435542ae4c5"; + }; + + meta = { + description = ''Run programs as functions in Elixir''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/devinus/sh"; + }; + } // packageOverrides) + ) {}; + + sh = sh_1_1_2; + + shameless_plug_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "shameless_plug"; + version = "1.0.0"; + src = fetchHex { + pkg = "shameless_plug"; + version = "1.0.0"; + sha256 = + "65c8af34d1853e85c8412d6ca15fd39354668c09c124cbc8e35cffea59d3a617"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''A novelty Plug to remove the word \"shame\" from + the page body.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/henrik/shameless_plug"; + }; + } // packageOverrides) + ) {}; + + shameless_plug = shameless_plug_1_0_0; + + shape_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "shape"; + version = "0.0.2"; + src = fetchHex { + pkg = "shape"; + version = "0.0.2"; + sha256 = + "c2e990b68f3423110109bf7e6bbebe8c10307bb28778ebcf9f7d6e0b8dc854f2"; + }; + + meta = { + description = ''A data validation library for Elixir based on + Prismatoc Scheme''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/prio/shape"; + }; + } // packageOverrides) + ) {}; + + shape = shape_0_0_2; + + short_maps_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "short_maps"; + version = "0.1.1"; + src = fetchHex { + pkg = "short_maps"; + version = "0.1.1"; + sha256 = + "852170b9be988f51b7b8a920097238ab0847433c417a4bc3bea6cef3b013b2b8"; + }; + + meta = { + description = ''Implementation of a ~m sigil for ES6-like maps in + Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/whatyouhide/short_maps"; + }; + } // packageOverrides) + ) {}; + + short_maps = short_maps_0_1_1; + + shotgun_0_2_2 = callPackage + ( + { + buildErlangMk, packageOverrides ? {}, fetchHex, gun_1_0_0_pre_1 + }: + buildErlangMk ({ + name = "shotgun"; + version = "0.2.2"; + src = fetchHex { + pkg = "shotgun"; + version = "0.2.2"; + sha256 = + "d2993953cff0c82eb47744206ae171a141deeff84539fe2f58068e3909ae066c"; + }; + beamDeps = [ gun_1_0_0_pre_1 ]; + + meta = { + description = ''better than just a gun''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/inaka/shotgun"; + }; + } // packageOverrides) + ) {}; + + shotgun_0_2_3 = callPackage + ( + { + buildErlangMk, + packageOverrides ? {}, + fetchHex, + gun_1_0_0_pre_1, + cowlib_1_0_2 + }: + buildErlangMk ({ + name = "shotgun"; + version = "0.2.3"; + src = fetchHex { + pkg = "shotgun"; + version = "0.2.3"; + sha256 = + "7b40dcf0faebf698fea541db5f6338f555d0c9c828493e9953d1748d9e5280b5"; + }; + beamDeps = [ gun_1_0_0_pre_1 cowlib_1_0_2 ]; + + meta = { + description = ''better than just a gun''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/inaka/shotgun"; + }; + } // packageOverrides) + ) {}; + + shotgun = shotgun_0_2_3; + + shouldi_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "shouldi"; + version = "0.3.0"; + src = fetchHex { + pkg = "shouldi"; + version = "0.3.0"; + sha256 = + "1cc3706e7a7ce4e37f9893b3b49f1dc586f861ffd194f8170f118eaa324017d7"; + }; + + meta = { + description = ''Elixir testing libraries with support for nested + contexts''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/batate/shouldi"; + }; + } // packageOverrides) + ) {}; + + shouldi = shouldi_0_3_0; + + shove_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + poison_1_5_2 + }: + buildMix ({ + name = "shove"; + version = "0.0.1"; + src = fetchHex { + pkg = "shove"; + version = "0.0.1"; + sha256 = + "48c7db56f6df92c8cd50ff5cfc73ce12d843e257991af6c3d4762f8af50bd87f"; + }; + beamDeps = [ poolboy_1_5_1 poison_1_5_2 ]; + + meta = { + description = ''Push notifications for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bratsche/shove"; + }; + } // packageOverrides) + ) {}; + + shove = shove_0_0_1; + + shrivel_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "shrivel"; + version = "0.0.3"; + src = fetchHex { + pkg = "shrivel"; + version = "0.0.3"; + sha256 = + "c2a4874eed97044fe2bfa5e871f188a191b4042e72a6156cfd50c7c0d8296dbf"; + }; + + meta = { + description = ''URL shortener''; + + homepage = "https://github.com/Qeaql/shrivel"; + }; + } // packageOverrides) + ) {}; + + shrivel = shrivel_0_0_3; + + sidejob_2_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "sidejob"; + version = "2.0.0"; + src = fetchHex { + pkg = "sidejob"; + version = "2.0.0"; + sha256 = + "19fea24060a1d0d37e78480fbd79d6b95e07f445aad725f7124a23194641c743"; + }; + + meta = { + longDescription = ''sidejob is an Erlang library that implements + a parallel, capacity-limited request pool. In + sidejob, these pools are called resources. A + resource is managed by multiple gen_server like + processes which can be sent calls and casts + using sidejob:call or sidejob:cast respectively. + This library was originally written to support + process bounding in Riak using the + sidejob_supervisor behavior. In Riak, this is + used to limit the number of concurrent get/put + FSMs that can be active, failing client requests + with {error, overload} if the limit is ever hit. + The purpose being to provide a fail-safe + mechanism during extreme overload scenarios. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/basho/sidejob"; + }; + } // packageOverrides) + ) {}; + + sidejob = sidejob_2_0_0; + + sideshow_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "sideshow"; + version = "0.0.1"; + src = fetchHex { + pkg = "sideshow"; + version = "0.0.1"; + sha256 = + "b1816b137826a6c5da5d19b0d52f1f0a1263756e1598ece8cd31be95a74e1a85"; + }; + + meta = { + description = ''Background jobs OTP style''; + license = stdenv.lib.licenses.gpl3; + homepage = "https://github.com/pavlos/sideshow"; + }; + } // packageOverrides) + ) {}; + + sideshow = sideshow_0_0_1; + + sidetask_1_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, sidejob_2_0_0 }: + buildMix ({ + name = "sidetask"; + version = "1.1.0"; + src = fetchHex { + pkg = "sidetask"; + version = "1.1.0"; + sha256 = + "acf9f1620c003a13942cf607e360cfbfe57a3b5dcef1471653f4168891446d54"; + }; + beamDeps = [ sidejob_2_0_0 ]; + + meta = { + longDescription = ''SideTask is an alternative to Elixir`s + Task.Supervisor that uses Basho`s sidejob + library for better parallelism and to support + capacity limiting of Tasks. SideTask provides an + API similar to Task.Supervisor, with the + addition that all calls that start a new task + require a sidejob resource as argument and can + return `{:error, :overload}`. Convenience + functions for adding and deleting sidejob + resources are provided.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/MSch/sidetask"; + }; + } // packageOverrides) + ) {}; + + sidetask = sidetask_1_1_0; + + signaturex_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "signaturex"; + version = "1.0.1"; + src = fetchHex { + pkg = "signaturex"; + version = "1.0.1"; + sha256 = + "a8cb1b527026288dcb8d72a351e784c00cbd6e08964109595f08d85f41f022cc"; + }; + + meta = { + description = ''Simple key/secret based authentication for + APIs''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/signaturex"; + }; + } // packageOverrides) + ) {}; + + signaturex = signaturex_1_0_1; + + simetric_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "simetric"; + version = "0.1.0"; + src = fetchHex { + pkg = "simetric"; + version = "0.1.0"; + sha256 = + "5a69a4b65670a0af0dba7e775b56e6995f2e599771ea360e87e28fd5b7eab3a9"; + }; + + meta = { + longDescription = ''The library provides facilities to perform + approximate string matching and measurement of + string similarity/distance.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/lexmag/simetric"; + }; + } // packageOverrides) + ) {}; + + simetric = simetric_0_1_0; + + simple_agent_0_0_7 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "simple_agent"; + version = "0.0.7"; + src = fetchHex { + pkg = "simple_agent"; + version = "0.0.7"; + sha256 = + "23532eed173ab8e1a980095c5a1352e41d9f2a149005ed21b9d4f67859603ffe"; + }; + + meta = { + description = ''A simplification/abstraction layer for the Agent + module.''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/TheFirstAvenger/elixir-simple_agent.git"; + }; + } // packageOverrides) + ) {}; + + simple_agent = simple_agent_0_0_7; + + simple_bar_0_0_7 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "simple_bar"; + version = "0.0.7"; + src = fetchHex { + pkg = "simple_bar"; + version = "0.0.7"; + sha256 = + "68fca76dee6fb1073e613e3498121b6a50739a2786f35d826309c55f55735ae1"; + }; + + meta = { + description = ''The simplest cli progress bar''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jeffreybaird/simple_bar"; + }; + } // packageOverrides) + ) {}; + + simple_bar = simple_bar_0_0_7; + + simple_secrets_1_0_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + pkcs7_1_0_2, + msgpax_0_8_2 + }: + buildMix ({ + name = "simple_secrets"; + version = "1.0.0"; + src = fetchHex { + pkg = "simple_secrets"; + version = "1.0.0"; + sha256 = + "797c98d49250fb343ed9a98411db641a3e5ae3344433f0a46d22dfec98bce11f"; + }; + beamDeps = [ pkcs7_1_0_2 msgpax_0_8_2 ]; + + meta = { + description = ''A simple, opinionated library for encrypting + small packets of data securely.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/simple_secrets_ex"; + }; + } // packageOverrides) + ) {}; + + simple_secrets = simple_secrets_1_0_0; + + simplex_0_4_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + timex_1_0_2, + sweet_xml_0_6_1, + poison_1_5_2, + ibrowse_4_2_2, + httpotion_2_2_2 + }: + buildMix ({ + name = "simplex"; + version = "0.4.0"; + src = fetchHex { + pkg = "simplex"; + version = "0.4.0"; + sha256 = + "43dfdc62aa2c4919464615b5acc4f03b028b3b9875fa72c128563e7d794ba2a2"; + }; + beamDeps = [ + timex_1_0_2 + sweet_xml_0_6_1 + poison_1_5_2 + ibrowse_4_2_2 + httpotion_2_2_2 + ]; + + meta = { + description = ''An Elixir library for interacting with the Amazon + SimpleDB API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/adamkittelson/simplex"; + }; + } // packageOverrides) + ) {}; + + simplex = simplex_0_4_0; + + simpre_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "simpre"; + version = "0.1.0"; + src = fetchHex { + pkg = "simpre"; + version = "0.1.0"; + sha256 = + "db0a48789360d2a683ea3a8605c2fb0134eb9fb63f07c0069be78906cdf5fb94"; + }; + + meta = { + description = ''Simple Process Registry''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yuce/simpre.git"; + }; + } // packageOverrides) + ) {}; + + simpre = simpre_0_1_0; + + skills_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "skills"; + version = "0.0.1"; + src = fetchHex { + pkg = "skills"; + version = "0.0.1"; + sha256 = + "3845188cae5b6f43a8a9488a57831be8259ca83131ac0a1adfd24fbe846eb30f"; + }; + + meta = { + description = ''A skill-based ranking algorithms library for + Elixir. Includes Elo and TrueSkill.''; + license = stdenv.lib.licenses.mpl20; + homepage = "https://github.com/folz/skills.ex"; + }; + } // packageOverrides) + ) {}; + + skills = skills_0_0_1; + + slim_fast_0_10_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "slim_fast"; + version = "0.10.0"; + src = fetchHex { + pkg = "slim_fast"; + version = "0.10.0"; + sha256 = + "aae7eb1573c1ee98f5fa11098d758b80b35f4d67e6e5f81135ae4d66cb571c44"; + }; + + meta = { + description = ''An Elixir library for rendering slim + templates.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/doomspork/slim_fast"; + }; + } // packageOverrides) + ) {}; + + slim_fast = slim_fast_0_10_0; + + slime_0_12_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "slime"; + version = "0.12.2"; + src = fetchHex { + pkg = "slime"; + version = "0.12.2"; + sha256 = + "389ed56ef536f25e29a99979ff1a3402ce21a0d40fcc49be93e44dcde11b9633"; + }; + + meta = { + description = ''An Elixir library for rendering Slim-like + templates.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slime-lang/slime"; + }; + } // packageOverrides) + ) {}; + + slime = slime_0_12_2; + + slugerl_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "slugerl"; + version = "1.0.0"; + src = fetchHex { + pkg = "slugerl"; + version = "1.0.0"; + sha256 = + "5a06364270afb773b32a7a4e05cf9cb4ccf904faedb2825d7336f3065e4f791b"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''slugify''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/thraxil/slugerl"; + }; + } // packageOverrides) + ) {}; + + slugerl = slugerl_1_0_0; + + slugger_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "slugger"; + version = "0.1.0"; + src = fetchHex { + pkg = "slugger"; + version = "0.1.0"; + sha256 = + "c74ef1f09acd6952591d89ab6747b337aaec9624e57623ca3a7b9e2cf536a8a3"; + }; + + meta = { + longDescription = ''The library Slugger can generate slugs from + given strings that can be used in URLs or file + names.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/h4cc/slugger"; + }; + } // packageOverrides) + ) {}; + + slugger = slugger_0_1_0; + + smurf_0_1_3 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "smurf"; + version = "0.1.3"; + src = fetchHex { + pkg = "smurf"; + version = "0.1.3"; + sha256 = + "5ed8e18ec8eea0647e7e938ce15cc76e59497d0a259cea15124520a48f0d6be6"; + }; + + meta = { + description = ''SMF interfacing library for erlang''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/smurf"; + }; + } // packageOverrides) + ) {}; + + smurf = smurf_0_1_3; + + sorted_set_1_1_0 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, red_black_tree_1_2_0 + }: + buildMix ({ + name = "sorted_set"; + version = "1.1.0"; + src = fetchHex { + pkg = "sorted_set"; + version = "1.1.0"; + sha256 = + "2c2c119554e02d8c813fd9511a8417b20f8efd3c27fa4ab722ba733140fb9a46"; + }; + beamDeps = [ red_black_tree_1_2_0 ]; + + meta = { + description = ''SortedSet implementation for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/SenecaSystems/sorted_set"; + }; + } // packageOverrides) + ) {}; + + sorted_set = sorted_set_1_1_0; + + spaceapi_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ + name = "spaceapi"; + version = "0.1.2"; + src = fetchHex { + pkg = "spaceapi"; + version = "0.1.2"; + sha256 = + "2d9f7da251e3d6dfd33248173622166afb6ecb28dc6286191ab178d85117584d"; + }; + beamDeps = [ poison_2_1_0 ]; + + meta = { + description = ''A small Elixir package for parsing the Space + API''; + license = with stdenv.lib.licenses; [ mit gpl3 ]; + homepage = "https://github.com/geistesk/spaceapi"; + }; + } // packageOverrides) + ) {}; + + spaceapi = spaceapi_0_1_2; + + spacesaving_0_0_3 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + earmark_0_2_1, + dialyze_0_2_1 + }: + buildMix ({ + name = "spacesaving"; + version = "0.0.3"; + src = fetchHex { + pkg = "spacesaving"; + version = "0.0.3"; + sha256 = + "e13f6ceb1adaad447f12eab1cfc5668a2ab4784393c67b4c8cde815533cd43f8"; + }; + beamDeps = [ earmark_0_2_1 dialyze_0_2_1 ]; + + meta = { + description = ''stream count distinct element estimation using + the \"space saving\" algorithm.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rozap/spacesaving"; + }; + } // packageOverrides) + ) {}; + + spacesaving = spacesaving_0_0_3; + + sparkpost_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + httpotion_2_2_2 + }: + buildMix ({ + name = "sparkpost"; + version = "0.1.0"; + src = fetchHex { + pkg = "sparkpost"; + version = "0.1.0"; + sha256 = + "704fa320132235db00c4b40b6990e63ec3c2581d681d86c0765ef930c88a2694"; + }; + beamDeps = [ poison_1_5_2 httpotion_2_2_2 ]; + + meta = { + description = ''The official Elixir package for the SparkPost + API''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/SparkPost/elixir-sparkpost"; + }; + } // packageOverrides) + ) {}; + + sparkpost = sparkpost_0_1_0; + + spell_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_4_0, + msgpax_0_8_2 + }: + buildMix ({ + name = "spell"; + version = "0.1.0"; + src = fetchHex { + pkg = "spell"; + version = "0.1.0"; + sha256 = + "c768ada54d3cbda57d63344b0b9c91520362700dde4b939a825358f01f1dbfa9"; + }; + beamDeps = [ poison_1_4_0 msgpax_0_8_2 ]; + + meta = { + longDescription = ''Spell is an extensible Elixir WAMP client. + Spell supports the client subscriber, publisher, + callee, and caller roles.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/MyMedsAndMe/spell"; + }; + } // packageOverrides) + ) {}; + + spell = spell_0_1_0; + + spf_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "spf"; + version = "0.0.1"; + src = fetchHex { + pkg = "spf"; + version = "0.0.1"; + sha256 = + "64126066eaac871e08a1ece2721e0fccb36220b28a4c6b03f08f0d4d459909a3"; + }; + + meta = { + description = ''SPF implementation in Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hex-sh/spf"; + }; + } // packageOverrides) + ) {}; + + spf = spf_0_0_1; + + spherical_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "spherical"; + version = "0.0.1"; + src = fetchHex { + pkg = "spherical"; + version = "0.0.1"; + sha256 = + "eaa7f1a4d265a0a6d0b8e23b530882dda0e68e35780a5af50ac6a2d9d2ba2fac"; + }; + + meta = { + description = ''An spherical geometry library for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/arpunk/spherical"; + }; + } // packageOverrides) + ) {}; + + spherical = spherical_0_0_1; + + spout_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "spout"; + version = "0.0.1"; + src = fetchHex { + pkg = "spout"; + version = "0.0.1"; + sha256 = + "5389628219cfa6df18ba366cb668055e44e97eccfea38d385d0581c489f3926a"; + }; + + meta = { + longDescription = ''A TAP producer that integrates with existing + ExUnit tests via an ExUnit formatter''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Stratus3D/Spout"; + }; + } // packageOverrides) + ) {}; + + spout = spout_0_0_1; + + sshex_2_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "sshex"; + version = "2.1.0"; + src = fetchHex { + pkg = "sshex"; + version = "2.1.0"; + sha256 = + "303bd8fd007bf2d10ddfae83b74acafc747f24908c2590b098ba2e85c570c58b"; + }; + + meta = { + description = ''Simple SSH helpers for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rubencaro/sshex"; + }; + } // packageOverrides) + ) {}; + + sshex = sshex_2_1_0; + + stackd_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "stackd"; + version = "0.0.1"; + src = fetchHex { + pkg = "stackd"; + version = "0.0.1"; + sha256 = + "41749dc834f92af4954988b5e9155d45fcbf63224ecfcabce6f1fc80f3aff8f9"; + }; + + meta = { + description = ''Stackd''; + + }; + } // packageOverrides) + ) {}; + + stackd = stackd_0_0_1; + + stash_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "stash"; + version = "1.0.0"; + src = fetchHex { + pkg = "stash"; + version = "1.0.0"; + sha256 = + "ac68a470ed2a292b59c1dbf286a97e8b25ec72adaeeb3734c183dc54b659f7d6"; + }; + + meta = { + description = ''Simple ETS backed key/value store for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zackehh/stash"; + }; + } // packageOverrides) + ) {}; + + stash = stash_1_0_0; + + stathat_0_0_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "stathat"; + version = "0.0.3"; + src = fetchHex { + pkg = "stathat"; + version = "0.0.3"; + sha256 = + "2d3663d1bbbf13fbae688a89656dd53f747e69d23ec73bcfd8835c2ca9d09c35"; + }; + + meta = { + description = ''StatHat client library.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/travisjeffery/stathat"; + }; + } // packageOverrides) + ) {}; + + stathat = stathat_0_0_3; + + statix_0_7_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "statix"; + version = "0.7.0"; + src = fetchHex { + pkg = "statix"; + version = "0.7.0"; + sha256 = + "0439c5698eaef7c2de213d9bff5681eeccc1dec789931e9ae73b9d2b2968234b"; + }; + + meta = { + description = ''An Elixir client for StatsD compatible + servers.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/lexmag/statix"; + }; + } // packageOverrides) + ) {}; + + statix = statix_0_7_0; + + std_json_io_0_1_0 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + porcelain_2_0_1, + poolboy_1_5_1, + poison_1_5_2, + fs_0_9_2 + }: + buildMix ({ + name = "std_json_io"; + version = "0.1.0"; + src = fetchHex { + pkg = "std_json_io"; + version = "0.1.0"; + sha256 = + "14f1c18c31a0b0b3ffb1e654247925335059eec9c800d81dd6379166e7403d1e"; + }; + beamDeps = [ porcelain_2_0_1 poolboy_1_5_1 poison_1_5_2 fs_0_9_2 + ]; + + meta = { + description = ''Application for managing and communicating with + IO servers via JSON''; + + }; + } // packageOverrides) + ) {}; + + std_json_io = std_json_io_0_1_0; + + stemex_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "stemex"; + version = "0.1.1"; + src = fetchHex { + pkg = "stemex"; + version = "0.1.1"; + sha256 = + "219b8e81fedba5a9bb978b8f7eaf230e77f2702d58e409adcca998fde1788521"; + }; + + meta = { + longDescription = ''Stemex is a NIF wrapper above snowball + containing stemmers for : danish, dutch, + english, finnish, french, german, hungarian, + italian, kraaij_pohlmann, lovins, norwegian, + portuguese, romanian, russian, spanish, swedish, + turkish.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/stemex"; + }; + } // packageOverrides) + ) {}; + + stemex = stemex_0_1_1; + + stillir_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "stillir"; + version = "1.0.0"; + src = fetchHex { + pkg = "stillir"; + version = "1.0.0"; + sha256 = + "04afdee2e5123b6da11fcc28c38d581f74db0cbe1faa1c36ed4f364797b588c0"; + }; + + meta = { + description = ''Read Unix env vars into application config''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/heroku/stillir"; + }; + } // packageOverrides) + ) {}; + + stillir = stillir_1_0_0; + + stopwatch_0_0_7 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ + name = "stopwatch"; + version = "0.0.7"; + src = fetchHex { + pkg = "stopwatch"; + version = "0.0.7"; + sha256 = + "de20ad70ca3b0f70d0a2000858e80c0afd4163101e18d0428ee62a58e7c8360a"; + }; + beamDeps = [ timex_1_0_2 ]; + + meta = { + description = ''The stopwatch provides an easy api to measure + elapsed time and profile code.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/matteosister/stopwatch"; + }; + } // packageOverrides) + ) {}; + + stopwatch = stopwatch_0_0_7; + + stream_runner_1_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "stream_runner"; + version = "1.1.0"; + src = fetchHex { + pkg = "stream_runner"; + version = "1.1.0"; + sha256 = + "3c2da3658440ba57224cd484de4b0d8b128e5463413ac05285cdfa4b37e30798"; + }; + + meta = { + description = ''Run a Stream as a process''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fishcakez/stream_runner"; + }; + } // packageOverrides) + ) {}; + + stream_runner = stream_runner_1_1_0; + + stream_weaver_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "stream_weaver"; + version = "0.0.2"; + src = fetchHex { + pkg = "stream_weaver"; + version = "0.0.2"; + sha256 = + "6664a585d4afaac63e69f367e79bcc6af886dbebd1f8b66a099f6164973dc168"; + }; + + meta = { + description = ''Library for working with streams''; + + }; + } // packageOverrides) + ) {}; + + stream_weaver = stream_weaver_0_0_2; + + strftimerl_0_1_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "strftimerl"; + version = "0.1.1"; + src = fetchHex { + pkg = "strftimerl"; + version = "0.1.1"; + sha256 = + "c09c7cd6a421bcbc1020c1440a2e73e312b852adbb3034d11f3dffa27d7953b1"; + }; + + meta = { + description = ''strftime formatting in erlang''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/gmr/strftimerl"; + }; + } // packageOverrides) + ) {}; + + strftimerl = strftimerl_0_1_1; + + strict_comparison_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "strict_comparison"; + version = "0.0.1"; + src = fetchHex { + pkg = "strict_comparison"; + version = "0.0.1"; + sha256 = + "c033d7c5befc4971171a20c8fce96ae04fc0ebf0bae790b7ee0e7498f9d7997e"; + }; + + meta = { + description = ''Provides strict number comparison in both regular + code and guards.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/antipax/strict_comparison"; + }; + } // packageOverrides) + ) {}; + + strict_comparison = strict_comparison_0_0_1; + + struct_fields_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "struct_fields"; + version = "0.3.0"; + src = fetchHex { + pkg = "struct_fields"; + version = "0.3.0"; + sha256 = + "d0ec469ccb59d2207a94cb8e3d3ce9b8bf09f239695e33a0e2447e2a1ff2178b"; + }; + + meta = { + description = ''Tiny module to easily get a list of fields for + structs.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nTraum/struct_fields"; + }; + } // packageOverrides) + ) {}; + + struct_fields = struct_fields_0_3_0; + + supool_1_5_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "supool"; + version = "1.5.1"; + src = fetchHex { + pkg = "supool"; + version = "1.5.1"; + sha256 = + "c191d63ff19ae177bf4cfba02303ae4552d8b48ec4133e24053e037513dfae09"; + }; + + meta = { + description = ''Erlang Process Pool as a Supervisor''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/supool"; + }; + } // packageOverrides) + ) {}; + + supool = supool_1_5_1; + + sweet_xml_0_5_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "sweet_xml"; + version = "0.5.1"; + src = fetchHex { + pkg = "sweet_xml"; + version = "0.5.1"; + sha256 = + "3266dedc5e2e6c6b1c5b8a088504a58980632727803de22a5a276da847ea6947"; + }; + + meta = { + description = ''An sweet wrapper of :xmerl to help query xml + docs''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/sweet_xml"; + }; + } // packageOverrides) + ) {}; + + sweet_xml_0_6_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "sweet_xml"; + version = "0.6.1"; + src = fetchHex { + pkg = "sweet_xml"; + version = "0.6.1"; + sha256 = + "30059e5367a4728ca4b246682adc72618a0a8c997eca6f52a107b2fe3ab4f313"; + }; + + meta = { + description = ''An sweet wrapper of :xmerl to help query xml + docs''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/sweet_xml"; + }; + } // packageOverrides) + ) {}; + + sweet_xml = sweet_xml_0_6_1; + + switchboard_0_3_2 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + lager_3_0_2, + jsx_2_8_0, + gproc_0_5_0, + cowboy_1_0_4 + }: + buildRebar3 ({ + name = "switchboard"; + version = "0.3.2"; + src = fetchHex { + pkg = "switchboard"; + version = "0.3.2"; + sha256 = + "0b1debb284cd63e5220dc56462dafebd1418579bb40a5b8e51dfdf1f50bfbeb3"; + }; + + buildPlugins = [ rebar3_hex ]; + + beamDeps = [ lager_3_0_2 jsx_2_8_0 gproc_0_5_0 cowboy_1_0_4 ]; + + meta = { + description = ''Conduct monitoring and operations across email + accounts''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/thusfresh/switchboard"; + }; + } // packageOverrides) + ) {}; + + switchboard = switchboard_0_3_2; + + syn_1_2_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "syn"; + version = "1.2.1"; + src = fetchHex { + pkg = "syn"; + version = "1.2.1"; + sha256 = + "a21864a00c39f6753cde0269c979c5260dc9bf1991ca0d5c9635ebec499d6f61"; + }; + + meta = { + description = ''A global Process Registry and Process Group + manager.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ostinelli/syn"; + }; + } // packageOverrides) + ) {}; + + syn = syn_1_2_1; + + syn_osc_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, osc_0_1_1 }: + buildMix ({ + name = "syn_osc"; + version = "0.1.0"; + src = fetchHex { + pkg = "syn_osc"; + version = "0.1.0"; + sha256 = + "7cdb75d8e9a64f3e2baf77bce83d06e0da4361d34a82c3ddda68a6efb3d21df9"; + }; + beamDeps = [ osc_0_1_1 ]; + + meta = { + description = ''SynOSC encoder/decoder for elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/syn_osc_ex"; + }; + } // packageOverrides) + ) {}; + + syn_osc = syn_osc_0_1_0; + + synthex_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "synthex"; + version = "0.1.0"; + src = fetchHex { + pkg = "synthex"; + version = "0.1.0"; + sha256 = + "111932916800698a032b9cf7e883146613acc788d165066210e1e09b00e476bc"; + }; + + meta = { + description = ''A signal synthesis library''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/bitgamma/synthex"; + }; + } // packageOverrides) + ) {}; + + synthex = synthex_0_1_0; + + system_env_loader_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "system_env_loader"; + version = "0.1.0"; + src = fetchHex { + pkg = "system_env_loader"; + version = "0.1.0"; + sha256 = + "b271e8dcc857d7e36159554c343ed0af950e9dc8adf0f4cee399228142f68ec6"; + }; + + meta = { + longDescription = ''A little package to load (bashlike) files + with exported ENV variables into Elixir + runtime''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ruby2elixir/system_env_loader"; + }; + } // packageOverrides) + ) {}; + + system_env_loader = system_env_loader_0_1_0; + + table_0_0_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "table"; + version = "0.0.4"; + src = fetchHex { + pkg = "table"; + version = "0.0.4"; + sha256 = + "9962976cb40b4cd517a03c572ced492185e9642bb224e29942f9b7671e31c55a"; + }; + + meta = { + description = ''ascii tables for cli''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zweifisch/table"; + }; + } // packageOverrides) + ) {}; + + table = table_0_0_4; + + table_rex_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "table_rex"; + version = "0.4.0"; + src = fetchHex { + pkg = "table_rex"; + version = "0.4.0"; + sha256 = + "71776a56629b850c647d298577f153faa41d3a98cff41446dd799c6bf30fcf19"; + }; + + meta = { + description = ''Generate configurable text-based tables for + display (ASCII & more)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/djm/table_rex"; + }; + } // packageOverrides) + ) {}; + + table_rex_0_8_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "table_rex"; + version = "0.8.0"; + src = fetchHex { + pkg = "table_rex"; + version = "0.8.0"; + sha256 = + "8d026afe99ac07f1261eae09334edbf8ec7ce55b812c3a60440ed88db83aad82"; + }; + + meta = { + description = ''Generate configurable text-based tables for + display (ASCII & more)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/djm/table_rex"; + }; + } // packageOverrides) + ) {}; + + table_rex = table_rex_0_8_0; + + tabula_2_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "tabula"; + version = "2.0.1"; + src = fetchHex { + pkg = "tabula"; + version = "2.0.1"; + sha256 = + "ed66a6d83890eaece976daf1083aa4e0ed9d877e185a1a9ccf1f2c87ee61b49e"; + }; + + meta = { + description = ''Pretty printer for maps/structs collections''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/aerosol/Tabula"; + }; + } // packageOverrides) + ) {}; + + tabula = tabula_2_0_1; + + tachometer_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "tachometer"; + version = "0.1.0"; + src = fetchHex { + pkg = "tachometer"; + version = "0.1.0"; + sha256 = + "5b2624c593280fc7a4621b264688509ba76ca3450a70ae0cfff43183604f903c"; + }; + + meta = { + description = ''Scheduler instrumentation for BEAM in Elixir''; + license = stdenv.lib.licenses.gpl3; + homepage = "https://github.com/pavlos/tachometer"; + }; + } // packageOverrides) + ) {}; + + tachometer = tachometer_0_1_0; + + tail_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "tail"; + version = "1.0.1"; + src = fetchHex { + pkg = "tail"; + version = "1.0.1"; + sha256 = + "8cec5c708be02aab6094f9c6fdf5b6b0e68c0c3d4f2f9ae341e743d119e9c07f"; + }; + + meta = { + longDescription = ''A simple file tail functionality. Calls a + callback function whenever new lines are + detected on a file.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/TheFirstAvenger/elixir-tail.git"; + }; + } // packageOverrides) + ) {}; + + tail = tail_1_0_1; + + tane_0_3_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "tane"; + version = "0.3.1"; + src = fetchHex { + pkg = "tane"; + version = "0.3.1"; + sha256 = + "8154bcc365b7f21d7ab6ff6d122f6dc110dda05bbfcd7f331a7f514512913e0a"; + }; + + meta = { + description = ''Library for Seeding Databases''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Joe-noh/tane"; + }; + } // packageOverrides) + ) {}; + + tane = tane_0_3_1; + + tap_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "tap"; + version = "0.1.0"; + src = fetchHex { + pkg = "tap"; + version = "0.1.0"; + sha256 = + "6016e69aafb18d75cb82ec30c2e09660eccf5cbd439b6a6d81a68b0825f13172"; + }; + + meta = { + description = ''Elixir tracing''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/eproxus/tap"; + }; + } // packageOverrides) + ) {}; + + tap = tap_0_1_0; + + tau_0_0_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "tau"; + version = "0.0.6"; + src = fetchHex { + pkg = "tau"; + version = "0.0.6"; + sha256 = + "6469f53ae39221f045b6dbd8199eaa95ed5f6c1252b063bc6edd1f21ae2ad0e7"; + }; + + meta = { + description = ''The mathematical constant tau''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/FranklinChen/tau"; + }; + } // packageOverrides) + ) {}; + + tau = tau_0_0_6; + + tds_0_5_4 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ + name = "tds"; + version = "0.5.4"; + src = fetchHex { + pkg = "tds"; + version = "0.5.4"; + sha256 = + "110eb8d8a58d0d5fe629bfe75dacb56fa14bde441d2baffbfa2bb0c65ee66cba"; + }; + beamDeps = [ decimal_1_1_1 ]; + + meta = { + description = ''MSSQL / TDS Driver for Ecto.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/livehelpnow/tds"; + }; + } // packageOverrides) + ) {}; + + tds = tds_0_5_4; + + tea_crypto_1_0_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "tea_crypto"; + version = "1.0.0"; + src = fetchHex { + pkg = "tea_crypto"; + version = "1.0.0"; + sha256 = + "0e7e60d0afe79f0624faa8a358a3a00c912cfa548f3632383927abca4db29cc6"; + }; + + meta = { + description = ''A TEA implementation in Erlang. ''; + + homepage = "https://github.com/keichan34/tea_crypto"; + }; + } // packageOverrides) + ) {}; + + tea_crypto = tea_crypto_1_0_0; + + teacup_0_3_2 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex, simpre_0_1_0 }: + buildRebar3 ({ + name = "teacup"; + version = "0.3.2"; + src = fetchHex { + pkg = "teacup"; + version = "0.3.2"; + sha256 = + "53d616e19d858524e34cf113f0f418c5631db4ee01430f7b3d19afcf9beb68b1"; + }; + + beamDeps = [ simpre_0_1_0 ]; + + meta = { + description = ''Simple TCP client library for Erlang''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + teacup = teacup_0_3_2; + + teacup_nats_0_3_1 = callPackage + ( + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + teacup_0_3_2, + nats_msg_0_4_1, + jsx_2_8_0 + }: + buildRebar3 ({ + name = "teacup_nats"; + version = "0.3.1"; + src = fetchHex { + pkg = "teacup_nats"; + version = "0.3.1"; + sha256 = + "5ffd0732ca26931784c8c9fc713545ef02449a8ae9208e3c8b079623a36044c9"; + }; + + beamDeps = [ teacup_0_3_2 nats_msg_0_4_1 jsx_2_8_0 ]; + + meta = { + description = ''Teacup based NATS Client for Erlang''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/yuce/teacup_nats.git"; + }; + } // packageOverrides) + ) {}; + + teacup_nats = teacup_nats_0_3_1; + + teamcity_exunit_formatter_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "teamcity_exunit_formatter"; + version = "0.2.0"; + src = fetchHex { + pkg = "teamcity_exunit_formatter"; + version = "0.2.0"; + sha256 = + "894a7791c21537bef8438bfe8706b2612e7248f1e316af0ba8c0a0d95c19f0dc"; + }; + + meta = { + longDescription = ''A formatter for Elixirs ExUnit that formats + as TeamCity Service Messages. Will let you track + test results in TeamCitys UI''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lixhq/teamcity-exunit-formatter"; + }; + } // packageOverrides) + ) {}; + + teamcity_exunit_formatter = teamcity_exunit_formatter_0_2_0; + + telehashname_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "telehashname"; + version = "0.0.2"; + src = fetchHex { + pkg = "telehashname"; + version = "0.0.2"; + sha256 = + "301a92653dafa69f118fdb8b8ca42259ac2e82441175231e1d67afcd26409f71"; + }; + + meta = { + description = ''Telehash hashname implementation''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/telehashname_ex"; + }; + } // packageOverrides) + ) {}; + + telehashname = telehashname_0_0_2; + + telephonist_0_1_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + immortal_0_2_0, + ex_twiml_2_1_0 + }: + buildMix ({ + name = "telephonist"; + version = "0.1.2"; + src = fetchHex { + pkg = "telephonist"; + version = "0.1.2"; + sha256 = + "c89922cfc4137dace4fd6458a6ff32f624dd9775b2e90efffbd864cdaa537a3e"; + }; + beamDeps = [ immortal_0_2_0 ex_twiml_2_1_0 ]; + + meta = { + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/danielberkompas/telephonist"; + }; + } // packageOverrides) + ) {}; + + telephonist = telephonist_0_1_2; + + temp_0_4_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "temp"; + version = "0.4.0"; + src = fetchHex { + pkg = "temp"; + version = "0.4.0"; + sha256 = + "1a852035e1c8bb9b33d00d322161689553d412fea783617afbd22112d481ffff"; + }; + + meta = { + description = ''An Elixir module to easily create and use + temporary files and directories.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tuvistavie/elixir-temp"; + }; + } // packageOverrides) + ) {}; + + temp = temp_0_4_0; + + temporary_env_1_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "temporary_env"; + version = "1.0.1"; + src = fetchHex { + pkg = "temporary_env"; + version = "1.0.1"; + sha256 = + "64bd9bade983bbdbb0c59c35343faa4c86d5533a8fe596891be84d52a41bdfe0"; + }; + + meta = { + description = ''A tool for managing application env state within + tests.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lpil/temporary-env"; + }; + } // packageOverrides) + ) {}; + + temporary_env = temporary_env_1_0_1; + + term_table_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "term_table"; + version = "0.0.2"; + src = fetchHex { + pkg = "term_table"; + version = "0.0.2"; + sha256 = + "e0a39ef8fa4343ded18bf53b381c12ae557ca2982e24351788db457b38bd7924"; + }; + + meta = { + description = ''Pretty terminal table for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ske77/term_table"; + }; + } // packageOverrides) + ) {}; + + term_table = term_table_0_0_2; + + termcap_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "termcap"; + version = "0.1.0"; + src = fetchHex { + pkg = "termcap"; + version = "0.1.0"; + sha256 = + "8c5167d68759bd1cd020eeaf5fd94153430fd19fa5a5fdeeb0b3129f0aba2a21"; + }; + + meta = { + description = ''Pure erlang termcap library''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + termcap = termcap_0_1_0; + + tesla_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exjsx_3_1_0 }: + buildMix ({ + name = "tesla"; + version = "0.2.1"; + src = fetchHex { + pkg = "tesla"; + version = "0.2.1"; + sha256 = + "02193ace70596445a5924e33a7e89ee15378dde07197b59bb5fba9217d8afc10"; + }; + beamDeps = [ exjsx_3_1_0 ]; + + meta = { + description = ''HTTP client library, with support for middleware + and multiple adapters.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/monterail/tesla"; + }; + } // packageOverrides) + ) {}; + + tesla = tesla_0_2_1; + + test_times_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "test_times"; + version = "1.0.0"; + src = fetchHex { + pkg = "test_times"; + version = "1.0.0"; + sha256 = + "be468ea6002d247f743bd005c4ed71b5f86ae0e9b112ab52fea8c4f5db71cced"; + }; + + meta = { + description = ''Report individual test times in ascending + order''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/pinfieldharm/test_times"; + }; + } // packageOverrides) + ) {}; + + test_times = test_times_1_0_0; + + tfidf_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "tfidf"; + version = "0.1.2"; + src = fetchHex { + pkg = "tfidf"; + version = "0.1.2"; + sha256 = + "9dc3b778a31998671a3a3e91d5abcf1c7e9794e39d97d4eba4ce4150d80e2b36"; + }; + + meta = { + description = ''Elixir implementation of tf-idf (Term + frequency-inverse document frequency)''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/OCannings/tf-idf"; + }; + } // packageOverrides) + ) {}; + + tfidf = tfidf_0_1_2; + + the_fuzz_0_2_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "the_fuzz"; + version = "0.2.2"; + src = fetchHex { + pkg = "the_fuzz"; + version = "0.2.2"; + sha256 = + "fe851aee08b2e09b6e5cc5acb08c48691f7ac27f52d8400ad55bb045e1f350c5"; + }; + + meta = { + longDescription = ''String metrics and phonetic algorithms for + Elixir (e.g. Dice/Sorensen, Hamming, Jaccard, + Jaro, Jaro-Winkler, Levenshtein, Metaphone, + N-Gram, NYSIIS, Overlap, Ratcliff/Obershelp, + Refined NYSIIS, Refined Soundex, Soundex, + Tversky, Tanimoto, Weighted Levenshtein). Based + Heavily on StringMetrics for Scala written by + Rocky Madden.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/smashedtoatoms/the_fuzz"; + }; + } // packageOverrides) + ) {}; + + the_fuzz = the_fuzz_0_2_2; + + thermex_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "thermex"; + version = "0.0.2"; + src = fetchHex { + pkg = "thermex"; + version = "0.0.2"; + sha256 = + "10ac274c919012c31539ecd7c4b2b27ba413af46c4dad86029203dc84b956ec3"; + }; + + meta = { + description = ''An OTP application for watching temperature + sensors''; + + }; + } // packageOverrides) + ) {}; + + thermex = thermex_0_0_2; + + thrift_1_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "thrift"; + version = "1.2.0"; + src = fetchHex { + pkg = "thrift"; + version = "1.2.0"; + sha256 = + "c16a8192125b8067ff4e8d0391ae8d59e3428176ebda381b01db782dab8177e7"; + }; + + meta = { + longDescription = ''A collection of utilities for working with + Thrift in Elixir. Provides a copy of the Erlang + Thrift runtime.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/pinterest/elixir-thrift"; + }; + } // packageOverrides) + ) {}; + + thrift = thrift_1_2_0; + + time_distance_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ + name = "time_distance"; + version = "0.0.1"; + src = fetchHex { + pkg = "time_distance"; + version = "0.0.1"; + sha256 = + "41ebe658882f2defd2cd472960e5a31b18d7ea2a4520c06907f7f2093d030e58"; + }; + beamDeps = [ timex_1_0_2 ]; + + meta = { + longDescription = ''Show the difference between two specified + times, or between a specified time and now in + words (eg. 1 week ago)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/aussiegeek/time_distance"; + }; + } // packageOverrides) + ) {}; + + time_distance = time_distance_0_0_1; + + time_seer_0_0_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "time_seer"; + version = "0.0.6"; + src = fetchHex { + pkg = "time_seer"; + version = "0.0.6"; + sha256 = + "b5cfe4b5126deef913a91463c735c214efdde1cfb57e9303444d1a687fde53f5"; + }; + + meta = { + longDescription = ''TimeSeer is an Elixir library for parsing + dates and times and returning Erlang style date + and time tuples. Eg. \"15:12:07\" \"2:42pm\" + \"24/12/2014\" will become {15,12,7}, {14,42,0}, + and {2014,12,24} respectively.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lau/time_seer"; + }; + } // packageOverrides) + ) {}; + + time_seer = time_seer_0_0_6; + + timex_1_0_0_rc4 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + tzdata_0_1_201603, + combine_0_7_0 + }: + buildMix ({ + name = "timex"; + version = "1.0.0-rc4"; + src = fetchHex { + pkg = "timex"; + version = "1.0.0-rc4"; + sha256 = + "3da1356901fe205455404c83d2ea7804b63ed47e3a2cdb428545e568e05d6885"; + }; + beamDeps = [ tzdata_0_1_201603 combine_0_7_0 ]; + + meta = { + longDescription = ''A comprehensive date/time library for Elixir + Fully timezone-aware, using the Olson Timezone + database - Supports local-timezone lookups - + Supports POSIX-style timezones - Supports + lookups of any Olson tzdata timezones - Supports + arbitrary shifts across time and through + timezones, including ambiguous time periods, + non-existent time periods, and leaps. Provides + both Date and DateTime types, for use depending + on your needs, with an AmbiguousDateTime type + for handling those DateTime values which fall on + an ambigouos timezone period. Extendable via + Convertable and Comparable protocols, so you can + use Timex with your own types! Locale-aware, + currently only supports \"ru\" and \"en\", but + more will be added over time. Provides a broad + array of date/time helper functions - + shifting/adding/subtracting - diffing - + comparing/before?/after?/between? - conversions + - get day of week, week of year, ISO dates, and + names for each - get the beginning or ending of + a given week - get the beginning or ending of a + year, quarter, week, or month - get days in a + given month - normalization Provides a broad + array of time-specific helpers - convert to and + from units: weeks, days, hours, seconds, ms, and + microseconds - measure execution time - + diff/compare - to/from 12/24 hour clock times - + add/subtract Safe date/time string formatting + and parsing - Informative parser errors - + Supports strftime, as well as an easier to read + formatter, i.e. `{ISO:Basic}`, `{YYYY}` - + Supports many formats out of the box: ISO8601 + basic and extended, RFC822, RFC1123, RFC3339, + ANSIC, UNIX - Relative time formatter (i.e. \"2 + years from now\") Extendable - Protocols for + core modules like the parser tokenizer - Easy to + wrap to add extra functionality Can be used with + Phoenix and Ecto when used with timex_ecto + package''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/timex"; + }; + } // packageOverrides) + ) {}; + + timex_1_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + tzdata_0_1_201603, + combine_0_7_0 + }: + buildMix ({ + name = "timex"; + version = "1.0.2"; + src = fetchHex { + pkg = "timex"; + version = "1.0.2"; + sha256 = + "cbc359d21b5e2e694ab437e614bb4198af5be1031da4969dfd7ddf1b56064c88"; + }; + beamDeps = [ tzdata_0_1_201603 combine_0_7_0 ]; + + meta = { + longDescription = ''A comprehensive date/time library for Elixir + Fully timezone-aware, using the Olson Timezone + database - Supports local-timezone lookups - + Supports POSIX-style timezones - Supports + lookups of any Olson tzdata timezones - Supports + arbitrary shifts across time and through + timezones, including ambiguous time periods, + non-existent time periods, and leaps. Provides + both Date and DateTime types, for use depending + on your needs, with an AmbiguousDateTime type + for handling those DateTime values which fall on + an ambigouos timezone period. Extendable via + Convertable and Comparable protocols, so you can + use Timex with your own types! Locale-aware, + currently only supports \"ru\" and \"en\", but + more will be added over time. Provides a broad + array of date/time helper functions - + shifting/adding/subtracting - diffing - + comparing/before?/after?/between? - conversions + - get day of week, week of year, ISO dates, and + names for each - get the beginning or ending of + a given week - get the beginning or ending of a + year, quarter, week, or month - get days in a + given month - normalization Provides a broad + array of time-specific helpers - convert to and + from units: weeks, days, hours, seconds, ms, and + microseconds - measure execution time - + diff/compare - to/from 12/24 hour clock times - + add/subtract Safe date/time string formatting + and parsing - Informative parser errors - + Supports strftime, as well as an easier to read + formatter, i.e. `{ISO:Basic}`, `{YYYY}` - + Supports many formats out of the box: ISO8601 + basic and extended, RFC822, RFC1123, RFC3339, + ANSIC, UNIX - Relative time formatter (i.e. \"2 + years from now\") Extendable - Protocols for + core modules like the parser tokenizer - Easy to + wrap to add extra functionality Can be used with + Phoenix and Ecto when used with timex_ecto + package''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/timex"; + }; + } // packageOverrides) + ) {}; + + timex_2_1_3 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + tzdata_0_1_201603, + gettext_0_10_0, + combine_0_7_0 + }: + buildMix ({ + name = "timex"; + version = "2.1.3"; + src = fetchHex { + pkg = "timex"; + version = "2.1.3"; + sha256 = + "d39de4fc4ca4ceb08841f4ea362a5d3e6c07d6300b77d18581b0c034a8c8ac60"; + }; + beamDeps = [ tzdata_0_1_201603 gettext_0_10_0 combine_0_7_0 ]; + + meta = { + longDescription = ''A comprehensive date/time library for Elixir + Fully timezone-aware, using the Olson Timezone + database - Supports local-timezone lookups - + Supports POSIX-style timezones - Supports + lookups of any Olson tzdata timezones - Supports + arbitrary shifts across time and through + timezones, including ambiguous time periods, + non-existent time periods, and leaps. Provides + both Date and DateTime types, for use depending + on your needs, with an AmbiguousDateTime type + for handling those DateTime values which fall on + an ambigouos timezone period. Extendable via + Convertable and Comparable protocols, so you can + use Timex with your own types! Locale-aware, + currently only supports \"ru\" and \"en\", but + more will be added over time. Provides a broad + array of date/time helper functions - + shifting/adding/subtracting - diffing - + comparing/before?/after?/between? - conversions + - get day of week, week of year, ISO dates, and + names for each - get the beginning or ending of + a given week - get the beginning or ending of a + year, quarter, week, or month - get days in a + given month - normalization Provides a broad + array of time-specific helpers - convert to and + from units: weeks, days, hours, seconds, ms, and + microseconds - measure execution time - + diff/compare - to/from 12/24 hour clock times - + add/subtract Safe date/time string formatting + and parsing - Informative parser errors - + Supports strftime, as well as an easier to read + formatter, i.e. `{ISO:Basic}`, `{YYYY}` - + Supports many formats out of the box: ISO8601 + basic and extended, RFC822, RFC1123, RFC3339, + ANSIC, UNIX - Relative time formatter (i.e. \"2 + years from now\") Extendable - Protocols for + core modules like the parser tokenizer - Easy to + wrap to add extra functionality Can be used with + Phoenix and Ecto when used with timex_ecto + package''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/timex"; + }; + } // packageOverrides) + ) {}; + + timex = timex_2_1_3; + + timex_interval_0_6_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_0_rc4 }: + buildMix ({ + name = "timex_interval"; + version = "0.6.0"; + src = fetchHex { + pkg = "timex_interval"; + version = "0.6.0"; + sha256 = + "c2d932e892cb15dacabafdc456040208c285c6d00087f688282d6693a6bbb04e"; + }; + beamDeps = [ timex_1_0_0_rc4 ]; + + meta = { + description = ''A date/time interval library for Elixir projects, + based on Timex.''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/atabary/timex-interval"; + }; + } // packageOverrides) + ) {}; + + timex_interval = timex_interval_0_6_0; + + tinymt_0_3_1 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "tinymt"; + version = "0.3.1"; + src = fetchHex { + pkg = "tinymt"; + version = "0.3.1"; + sha256 = + "9de8fcedf254661bc4aa550aac317e28be35d4a5d91adf3fa3689dfad6cc1e5a"; + }; + + meta = { + description = ''Tiny Mersenne Twister (TinyMT) for Erlang''; + license = stdenv.lib.licenses.bsd2; + homepage = "https://github.com/jj1bdx/tinymt-erlang/"; + }; + } // packageOverrides) + ) {}; + + tinymt = tinymt_0_3_1; + + tirexs_0_8_0_beta5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exjsx_3_2_0 }: + buildMix ({ + name = "tirexs"; + version = "0.8.0-beta5"; + src = fetchHex { + pkg = "tirexs"; + version = "0.8.0-beta5"; + sha256 = + "5aec67541a1361aca21e6849c78755727596a6e93e2ad90d53add537892d399c"; + }; + beamDeps = [ exjsx_3_2_0 ]; + + meta = { + description = ''An Elixir flavored DSL for building JSON based + queries to Elasticsearch engine''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/Zatvobor/tirexs"; + }; + } // packageOverrides) + ) {}; + + tirexs = tirexs_0_8_0_beta5; + + tlv_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "tlv"; + version = "0.1.0"; + src = fetchHex { + pkg = "tlv"; + version = "0.1.0"; + sha256 = + "bc040b662594ad6c83f1d931ee2e74f8d00697afa215087297f64546a0c500e9"; + }; + + meta = { + description = ''Encodes/Decodes BER-TLVs structures''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitgamma/elixir_tlv"; + }; + } // packageOverrides) + ) {}; + + tlv = tlv_0_1_0; + + todo_1_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "todo"; + version = "1.2.0"; + src = fetchHex { + pkg = "todo"; + version = "1.2.0"; + sha256 = + "92b0da31ee335a4caff5bb91950688fc3195c2eb78cc70be80e3b616f2be88bc"; + }; + + meta = { + description = ''A small TODO comments utility.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/niahoo/elixir-todo"; + }; + } // packageOverrides) + ) {}; + + todo = todo_1_2_0; + + toniq_1_0_5 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + uuid_1_1_3, + exredis_0_2_3 + }: + buildMix ({ + name = "toniq"; + version = "1.0.5"; + src = fetchHex { + pkg = "toniq"; + version = "1.0.5"; + sha256 = + "aa67c43131393872d82d53b9a8bf4a3d5b97c52a6588d53aaa61c29828e0664a"; + }; + beamDeps = [ uuid_1_1_3 exredis_0_2_3 ]; + + meta = { + longDescription = ''Simple and reliable background job processing + library for Elixir. Has persistence, retries, + concurrency limiting, error handling and is + heroku friendly.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/joakimk/toniq"; + }; + } // packageOverrides) + ) {}; + + toniq = toniq_1_0_5; + + towel_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "towel"; + version = "0.2.1"; + src = fetchHex { + pkg = "towel"; + version = "0.2.1"; + sha256 = + "e7b7c5e7e6d8df9e781e130d1defccc9a27f888f7b95c132d8ccd1d6957d3b7a"; + }; + + meta = { + description = ''A delightfully simple monad library that`s + written for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/knrz/towel"; + }; + } // packageOverrides) + ) {}; + + towel = towel_0_2_1; + + tqdm_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "tqdm"; + version = "0.0.1"; + src = fetchHex { + pkg = "tqdm"; + version = "0.0.1"; + sha256 = + "70636f54515581abefb88020a5393b87a64186b7fa4a59a50e52854f999319bc"; + }; + + meta = { + longDescription = ''Add a progress bar to your enumerables + (Lists, Maps, Streams, Ranges, etc.) in a + second.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/antipax/tqdm_elixir"; + }; + } // packageOverrides) + ) {}; + + tqdm = tqdm_0_0_1; + + trackline_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + timex_1_0_2, + exml_0_1_0, + exmerl_0_1_1, + erlsom_1_2_1, + apex_0_3_7 + }: + buildMix ({ + name = "trackline"; + version = "0.0.1"; + src = fetchHex { + pkg = "trackline"; + version = "0.0.1"; + sha256 = + "42ee5d56b2ec0c55715e7f03a9aacd6d7ce8543519e9ec696335348eb1a24f7c"; + }; + beamDeps = [ + timex_1_0_2 + exml_0_1_0 + exmerl_0_1_1 + erlsom_1_2_1 + apex_0_3_7 + ]; + + meta = { + description = ''A GPX parser for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/andrewhao/trackline"; + }; + } // packageOverrides) + ) {}; + + trackline = trackline_0_0_1; + + tradie_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "tradie"; + version = "0.0.1"; + src = fetchHex { + pkg = "tradie"; + version = "0.0.1"; + sha256 = + "d317c61c9bd9ab46184df8036057855e676d8598905c6708b9a9e26af3b7fd04"; + }; + + meta = { + longDescription = ''Execute multiple tasks in parallel, allowing + retry for each task, and a global timeout. Based + loosely on + http://theerlangelist.com/article/beyond_taskasync.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/madlep/tradie"; + }; + } // packageOverrides) + ) {}; + + tradie = tradie_0_0_1; + + trailing_format_plug_0_0_4 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ + name = "trailing_format_plug"; + version = "0.0.4"; + src = fetchHex { + pkg = "trailing_format_plug"; + version = "0.0.4"; + sha256 = + "16e2485b7069c8e025460d183d4711d9c5bbf46ae532dde859cc6623d12bfc71"; + }; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; + + meta = { + longDescription = ''An elixir plug to support legacy APIs that + use a rails-like trailing format: + http://api.dev/resources.format''; + license = stdenv.lib.licenses.asl20; + homepage = "http://github.com/mschae/trailing_format_plug"; + }; + } // packageOverrides) + ) {}; + + trailing_format_plug = trailing_format_plug_0_0_4; + + transducer_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "transducer"; + version = "0.1.0"; + src = fetchHex { + pkg = "transducer"; + version = "0.1.0"; + sha256 = + "89533238e42bace715485c5113bb5c39beecb333c00f4624ae85d5c0f6e96db4"; + }; + + meta = { + longDescription = ''Composable algorithmic transformations. + Transducers let you combine reduction operations + like `map`, `filter`, `take_while`, `take`, and + so on into a single reducing function. As with + Stream, but in contrast to Enum, all operations + are performed for each item before the next item + in the enumerable is processed. One difference + with the Stream module is that the transducers` + reducing functions don`t have to produce an + enumerable, while Stream module transformations + always do.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/garyposter/elixir-transducer"; + }; + } // packageOverrides) + ) {}; + + transducer = transducer_0_1_0; + + trie_1_5_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "trie"; + version = "1.5.0"; + src = fetchHex { + pkg = "trie"; + version = "1.5.0"; + sha256 = + "613981536e33f58d92e44bd31801376f71deee0e57c63372fe8ab5fbbc37f7dc"; + }; + + meta = { + description = ''Erlang Trie Implementation''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/trie"; + }; + } // packageOverrides) + ) {}; + + trie_1_5_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "trie"; + version = "1.5.1"; + src = fetchHex { + pkg = "trie"; + version = "1.5.1"; + sha256 = + "4b845dccfca8962b90584e98d270e2ff43e2e181bb046c4aae0e0f457679f98d"; + }; + + meta = { + description = ''Erlang Trie Implementation''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/trie"; + }; + } // packageOverrides) + ) {}; + + trie = trie_1_5_1; + + trot_0_5_3 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_heartbeat_0_2_0, + plug_0_14_0, + cowboy_1_0_4, + calliope_0_3_0 + }: + buildMix ({ + name = "trot"; + version = "0.5.3"; + src = fetchHex { + pkg = "trot"; + version = "0.5.3"; + sha256 = + "982a4ff3a0fffe1e9cc752313fd4c45487fdd484dde7265728da4579c29354e1"; + }; + beamDeps = [ + poison_1_5_2 + plug_heartbeat_0_2_0 + plug_0_14_0 + cowboy_1_0_4 + calliope_0_3_0 + ]; + + meta = { + description = ''A web micro-framework based on Plug and + Cowboy.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/hexedpackets/trot"; + }; + } // packageOverrides) + ) {}; + + trot = trot_0_5_3; + + tsuru_1_4_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "tsuru"; + version = "1.4.0"; + src = fetchHex { + pkg = "tsuru"; + version = "1.4.0"; + sha256 = + "7825d3b530b46a8c4ff93b3c83a31d0f2ce042ddc741a89d3776edfd9f2828f7"; + }; + + meta = { + description = ''A collection of useful tools for Erlang + applications''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + tsuru = tsuru_1_4_0; + + type_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "type"; + version = "0.0.2"; + src = fetchHex { + pkg = "type"; + version = "0.0.2"; + sha256 = + "1553ec18df7781cc1144477e075ac3c907aa7900db308d9d43cf7cfbeeb7a8ac"; + }; + + meta = { + description = ''A module for checking the type of an argument''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jeffreybaird/type"; + }; + } // packageOverrides) + ) {}; + + type = type_0_0_2; + + tzdata_0_1_201603 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "tzdata"; + version = "0.1.201603"; + src = fetchHex { + pkg = "tzdata"; + version = "0.1.201603"; + sha256 = + "77598cedfb09cfdfb8f431c51131eb84229c46b2c5a7eebdf5904b2b8f003225"; + }; + + meta = { + description = ''Tzdata is a parser and library for the tz + database.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lau/tzdata"; + }; + } // packageOverrides) + ) {}; + + ua_inspector_0_11_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }: + buildMix ({ + name = "ua_inspector"; + version = "0.11.0"; + src = fetchHex { + pkg = "ua_inspector"; + version = "0.11.0"; + sha256 = + "ddc05b1293962317caab370610131e950a697a62ac7d041c885e5540dba1cf72"; + }; + beamDeps = [ poolboy_1_5_1 ]; + + meta = { + description = ''User agent parser library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixytics/ua_inspector"; + }; + } // packageOverrides) + ) {}; + + ua_inspector = ua_inspector_0_11_0; + + uber_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "uber"; + version = "0.1.0"; + src = fetchHex { + pkg = "uber"; + version = "0.1.0"; + sha256 = + "bf3dde22ad6207577ea1093649394d968ef94725fdc56d5ea6afd22d12886d9a"; + }; + + meta = { + description = ''Utilities for working with the UBER hypermedia + format''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/gamache/uber.ex"; + }; + } // packageOverrides) + ) {}; + + uber = uber_0_1_0; + + udpflux_0_0_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "udpflux"; + version = "0.0.2"; + src = fetchHex { + pkg = "udpflux"; + version = "0.0.2"; + sha256 = + "0a6d0003b818364bad9ed8bc55b8789b8fc129d055799cd517a551445fe0649e"; + }; + + meta = { + description = ''An opinionated UDP-only InfluxDB client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/timbuchwaldt/udpflux"; + }; + } // packageOverrides) + ) {}; + + udpflux = udpflux_0_0_2; + + ueberauth_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "ueberauth"; + version = "0.2.0"; + src = fetchHex { + pkg = "ueberauth"; + version = "0.2.0"; + sha256 = + "d6ee9cfe96be0e2b4005cb482b8e29c20ae0d6f7332ea9f686397c4ab20bf4de"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''An Elixir Authentication System for Plug-based + Web Applications''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ueberauth/ueberauth"; + }; + } // packageOverrides) + ) {}; + + ueberauth = ueberauth_0_2_0; + + ueberauth_identity_0_2_3 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + ueberauth_0_2_0, + plug_1_1_3 + }: + buildMix ({ + name = "ueberauth_identity"; + version = "0.2.3"; + src = fetchHex { + pkg = "ueberauth_identity"; + version = "0.2.3"; + sha256 = + "ebbb4d7fe6c94053486a32794ab2a561f004f01fd1099c7e0a69901dc32c51ca"; + }; + beamDeps = [ ueberauth_0_2_0 plug_1_1_3 ]; + + meta = { + description = ''An Ueberauth strategy for basic + username/password''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ueberauth/ueberauth_identity"; + }; + } // packageOverrides) + ) {}; + + ueberauth_identity = ueberauth_identity_0_2_3; + + ui_0_1_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "ui"; + version = "0.1.1"; + src = fetchHex { + pkg = "ui"; + version = "0.1.1"; + sha256 = + "492da59ca39055c0dfc794a2ebd564adb9ed635402c7b46659981f32aa9d94c1"; + }; + + buildPlugins = [ rebar3_hex ]; + + + meta = { + description = ''An OTP application''; + + }; + } // packageOverrides) + ) {}; + + ui = ui_0_1_1; + + uk_postcode_0_3_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "uk_postcode"; + version = "0.3.0"; + src = fetchHex { + pkg = "uk_postcode"; + version = "0.3.0"; + sha256 = + "a03250f6896bef8851f243856d36952e7776a8d2fa654aa4d3336d841cbb59f8"; + }; + + meta = { + longDescription = ''UK postcode parsing and validation library. + Validate full postcodes or parts of a postcode, + and can extract parts of a full postcode. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KushalP/uk_postcode"; + }; + } // packageOverrides) + ) {}; + + uk_postcode = uk_postcode_0_3_0; + + ulitos_0_3_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "ulitos"; + version = "0.3.0"; + src = fetchHex { + pkg = "ulitos"; + version = "0.3.0"; + sha256 = + "385f5fdc4cb2ea9f2ae3abcdec3f8dcbb120095f9d50acfd4ee58ecef18429d3"; + }; + + meta = { + description = ''Erlang common utils''; + + homepage = "https://github.com/palkan/ulitos"; + }; + } // packageOverrides) + ) {}; + + ulitos = ulitos_0_3_0; + + unit_fun_0_5_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "unit_fun"; + version = "0.5.1"; + src = fetchHex { + pkg = "unit_fun"; + version = "0.5.1"; + sha256 = + "adc90b1e6363234d2507b6f1af08186831fb556ee8c8cb62d13fb03b8c3cc93c"; + }; + + meta = { + description = ''Library for adding units/dimensions to numeric + types.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/meadsteve/unit_fun"; + }; + } // packageOverrides) + ) {}; + + unit_fun = unit_fun_0_5_1; + + units_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "units"; + version = "1.0.0"; + src = fetchHex { + pkg = "units"; + version = "1.0.0"; + sha256 = + "edac76cb036b993ef35781701fc561b4a6c95e4d7c89dba0d6f96ae3077b8ffe"; + }; + + meta = { + description = ''Common unit conversions for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/solatis/units"; + }; + } // packageOverrides) + ) {}; + + units = units_1_0_0; + + uri_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "uri"; + version = "0.1.0"; + src = fetchHex { + pkg = "uri"; + version = "0.1.0"; + sha256 = + "3833c3b5745fc0822df86c3a3591219048026fea8a535223b440d26029218996"; + }; + + meta = { + description = ''URI Parsing/Encoding Library''; + + }; + } // packageOverrides) + ) {}; + + uri = uri_0_1_0; + + urilib_0_1_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "urilib"; + version = "0.1.1"; + src = fetchHex { + pkg = "urilib"; + version = "0.1.1"; + sha256 = + "6000180e6977263e5996921f243e0c152aad29c87d202f8a650acb412c5aa758"; + }; + + meta = { + description = ''A RFC-3986 URI Library for parsing and building + URIs''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/gmr/urilib"; + }; + } // packageOverrides) + ) {}; + + urilib = urilib_0_1_1; + + uuid_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "uuid"; + version = "1.0.0"; + src = fetchHex { + pkg = "uuid"; + version = "1.0.0"; + sha256 = + "ff0a92c21c23935a944a5c5608c1c5af8d629ff5e11593001434d21efcb343b4"; + }; + + meta = { + description = ''UUID generator and utilities for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/zyro/elixir-uuid"; + }; + } // packageOverrides) + ) {}; + + uuid_1_1_3 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "uuid"; + version = "1.1.3"; + src = fetchHex { + pkg = "uuid"; + version = "1.1.3"; + sha256 = + "dab67ed70fc162595e63b84c38904fb2ea1779909b46a5f61753ba7ddbe9877b"; + }; + + meta = { + description = ''UUID generator and utilities for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/zyro/elixir-uuid"; + }; + } // packageOverrides) + ) {}; + + uuid = uuid_1_1_3; + + vagrant_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "vagrant"; + version = "0.0.1"; + src = fetchHex { + pkg = "vagrant"; + version = "0.0.1"; + sha256 = + "805a78a9ee586546d0716ddc9afc3417630c48faab4606cf54c863b10a05ce52"; + }; + + meta = { + description = ''Vagrant CLI Wrapper''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/mobileoverlord/vagrant"; + }; + } // packageOverrides) + ) {}; + + vagrant = vagrant_0_0_1; + + varpool_1_5_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "varpool"; + version = "1.5.1"; + src = fetchHex { + pkg = "varpool"; + version = "1.5.1"; + sha256 = + "ff6059bdcd0efad606e8c54ee623cfeaef59778c18e343dd772e84d99d188e26"; + }; + + meta = { + description = ''Erlang Process Pools as a Local Variable''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/varpool"; + }; + } // packageOverrides) + ) {}; + + varpool = varpool_1_5_1; + + vector_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "vector"; + version = "0.1.0"; + src = fetchHex { + pkg = "vector"; + version = "0.1.0"; + sha256 = + "2399175b7daa136a15ddbaeeb007de0b903fd21979aec1afa2ead92d37033870"; + }; + + meta = { + longDescription = ''Library of common vector functions for use in + geometric or graphical calculations.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pkinney/vector_ex"; + }; + } // packageOverrides) + ) {}; + + vector_0_2_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "vector"; + version = "0.2.1"; + src = fetchHex { + pkg = "vector"; + version = "0.2.1"; + sha256 = + "20c7d2b83aae6da37c53e7d3139096b4dcfbd289a57b38a07dfb570a1c6e38fb"; + }; + + meta = { + longDescription = ''Library of common vector functions for use in + geometric or graphical calculations.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pkinney/vector_ex"; + }; + } // packageOverrides) + ) {}; + + vector = vector_0_2_1; + + verify_origin_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "verify_origin"; + version = "0.1.0"; + src = fetchHex { + pkg = "verify_origin"; + version = "0.1.0"; + sha256 = + "90834033676cb0ca632f208f489f6eb92ae94323fe7243efba577e1deb031167"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''A library for using Origin header checking to + prevent CSRF''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/danmcclain/verify_origin"; + }; + } // packageOverrides) + ) {}; + + verify_origin = verify_origin_0_1_0; + + verk_0_9_11 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + watcher_1_0_0, + timex_1_0_2, + redix_0_3_6, + poolboy_1_5_1, + poison_1_5_2 + }: + buildMix ({ + name = "verk"; + version = "0.9.11"; + src = fetchHex { + pkg = "verk"; + version = "0.9.11"; + sha256 = + "79183e0e79a106f0712bd291ac1c81124a497d4e1aef0f9db6672ec5b6190b49"; + }; + beamDeps = [ + watcher_1_0_0 + timex_1_0_2 + redix_0_3_6 + poolboy_1_5_1 + poison_1_5_2 + ]; + + meta = { + description = ''Verk is a job processing system backed by + Redis.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/verk"; + }; + } // packageOverrides) + ) {}; + + verk = verk_0_9_11; + + vex_0_5_5 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "vex"; + version = "0.5.5"; + src = fetchHex { + pkg = "vex"; + version = "0.5.5"; + sha256 = + "fade5440a742304214d1cb53d5ce6bd39dafb6e2ae87e5ce36041a7aa4c365f9"; + }; + + meta = { + description = ''An extensible data validation library for + Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/CargoSense/vex"; + }; + } // packageOverrides) + ) {}; + + vex = vex_0_5_5; + + voorhees_0_1_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + ex_doc_0_11_4 + }: + buildMix ({ + name = "voorhees"; + version = "0.1.1"; + src = fetchHex { + pkg = "voorhees"; + version = "0.1.1"; + sha256 = + "0cacff8371280ede205633691a60604f1c3d771508f9b7ffa83d523526326112"; + }; + beamDeps = [ poison_2_1_0 ex_doc_0_11_4 ]; + + meta = { + description = ''A library for validating JSON responses''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/danmcclain/voorhees"; + }; + } // packageOverrides) + ) {}; + + voorhees = voorhees_0_1_1; + + voxpop_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "voxpop"; + version = "0.0.1"; + src = fetchHex { + pkg = "voxpop"; + version = "0.0.1"; + sha256 = + "85a410b1df2de5852ce491c653d29781b1db2845f8d2e51d9809f7ebbe90a6c9"; + }; + + meta = { + description = ''Voxpop generates text from declarative + grammars.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zovafit/voxpop"; + }; + } // packageOverrides) + ) {}; + + voxpop = voxpop_0_0_1; + + watcher_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "watcher"; + version = "1.0.0"; + src = fetchHex { + pkg = "watcher"; + version = "1.0.0"; + sha256 = + "53620951438e857d24f1ef324f94f42b90e8d6069dd6553ec4e6331370418b2b"; + }; + + meta = { + description = ''Watcher for GenEvent''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/watcher"; + }; + } // packageOverrides) + ) {}; + + watcher = watcher_1_0_0; + + web_socket_0_0_1 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_4_0, + plug_0_12_2, + cowboy_1_0_4 + }: + buildMix ({ + name = "web_socket"; + version = "0.0.1"; + src = fetchHex { + pkg = "web_socket"; + version = "0.0.1"; + sha256 = + "b0afdac11840d17b2a2af5cc1939416fac13f64209083e06e6873002ae44ce12"; + }; + beamDeps = [ poison_1_4_0 plug_0_12_2 cowboy_1_0_4 ]; + + meta = { + description = ''Modular web framework ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slogsdon/plug-web-socket"; + }; + } // packageOverrides) + ) {}; + + web_socket = web_socket_0_0_1; + + webassembly_0_6_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "webassembly"; + version = "0.6.1"; + src = fetchHex { + pkg = "webassembly"; + version = "0.6.1"; + sha256 = + "687cc567c6c58e154ca5f5bd45986c6fda530c42702ab7c6007f6cb663db4137"; + }; + + meta = { + longDescription = ''WebAssembly is a web DSL for Elixir. You + create html structure straight using do blocks. + Means, you can intermix html-building blocks + with full Elixir syntax. DSL output is an + iolist, which you can flatten to string, but + better use is to just feed it to the socket (via + Plug & Cowboy). WebAssembly aims to have 100% + test coverage.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/herenowcoder/webassembly"; + }; + } // packageOverrides) + ) {}; + + webassembly = webassembly_0_6_1; + + websocket_client_1_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "websocket_client"; + version = "1.1.0"; + src = fetchHex { + pkg = "websocket_client"; + version = "1.1.0"; + sha256 = + "21c3d0df073634f2ca349af5b54a61755d637d6390c34d8d57c064f68ca92acd"; + }; + + meta = { + description = ''Erlang websocket client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sanmiguel/websocket_client"; + }; + } // packageOverrides) + ) {}; + + websocket_client = websocket_client_1_1_0; + + wechat_check_signature_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "wechat_check_signature"; + version = "0.0.1"; + src = fetchHex { + pkg = "wechat_check_signature"; + version = "0.0.1"; + sha256 = + "5c5bb053c15082e12ad6da485fc4f711efa9198107368a42456aeafcf870caec"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''An Elixir Plug for checking wechat signature.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/octocandy/wechat_check_signature"; + }; + } // packageOverrides) + ) {}; + + wechat_check_signature = wechat_check_signature_0_0_1; + + wechatex_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ + name = "wechatex"; + version = "0.0.1"; + src = fetchHex { + pkg = "wechatex"; + version = "0.0.1"; + sha256 = + "211971a79d38326dbf5e603ee00165708eb17670f2a84e54df929191c6fef81c"; + }; + beamDeps = [ plug_1_1_3 ]; + + meta = { + description = ''Wechat plugins for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/octocandy/wechatex"; + }; + } // packageOverrides) + ) {}; + + wechatex = wechatex_0_0_1; + + white_bread_2_5_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "white_bread"; + version = "2.5.0"; + src = fetchHex { + pkg = "white_bread"; + version = "2.5.0"; + sha256 = + "0256755080fadfbd45285ace5279147a6f8af3df2ae89eed70b5072471f21360"; + }; + + meta = { + longDescription = ''Story BDD tool based on cucumber. Parses + Gherkin formatted feature files and executes + them as tests.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/meadsteve/white-bread"; + }; + } // packageOverrides) + ) {}; + + white_bread = white_bread_2_5_0; + + witchcraft_0_4_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + quark_1_0_2, + algae_0_10_0 + }: + buildMix ({ + name = "witchcraft"; + version = "0.4.2"; + src = fetchHex { + pkg = "witchcraft"; + version = "0.4.2"; + sha256 = + "cdd6379d5a8b0baab3b79b0c9b87473d8292e0d9a80fa2e21fac61d31218609f"; + }; + beamDeps = [ quark_1_0_2 algae_0_10_0 ]; + + meta = { + description = ''Common algebraic structures and functions''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/robot-overlord/witchcraft"; + }; + } // packageOverrides) + ) {}; + + witchcraft = witchcraft_0_4_2; + + wizard_0_1_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "wizard"; + version = "0.1.0"; + src = fetchHex { + pkg = "wizard"; + version = "0.1.0"; + sha256 = + "cc22faf9e76f50592906b816027fef4ee1942a59005cf8c831c7f76e48b9193e"; + }; + + meta = { + description = ''Wizard is a math and statistics library for + Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/raywan/wizard"; + }; + } // packageOverrides) + ) {}; + + wizard = wizard_0_1_0; + + work_queue_0_0_3 = callPackage + ( + { + buildMix, packageOverrides ? {}, fetchHex, pipe_while_ok_0_0_2 + }: + buildMix ({ + name = "work_queue"; + version = "0.0.3"; + src = fetchHex { + pkg = "work_queue"; + version = "0.0.3"; + sha256 = + "31b000cf454ee0a8f90408ea10c33ee6cdd062256a7dd3aac7fe67c48fcbb424"; + }; + beamDeps = [ pipe_while_ok_0_0_2 ]; + + meta = { + description = ''A simple implement of the Hungry Consumer model + of concurrent servers. ''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/pragdave/work_queue"; + }; + } // packageOverrides) + ) {}; + + work_queue = work_queue_0_0_3; + + worker_pool_1_0_4 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "worker_pool"; + version = "1.0.4"; + src = fetchHex { + pkg = "worker_pool"; + version = "1.0.4"; + sha256 = + "7854a3b94e9624728db3a0475d00e7d0728adf3bf2ee3802bbf8ca10356d6f64"; + }; + + meta = { + description = ''Erlang Worker Pool''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/inaka/worker_pool"; + }; + } // packageOverrides) + ) {}; + + worker_pool = worker_pool_1_0_4; + + workex_0_10_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }: + buildMix ({ + name = "workex"; + version = "0.10.0"; + src = fetchHex { + pkg = "workex"; + version = "0.10.0"; + sha256 = + "9bb48e3ff0294021ecc78d86d4a7521dbe46e129ae9e51a46c9f2a67a63e9cbd"; + }; + beamDeps = [ exactor_2_2_0 ]; + + meta = { + description = ''A behaviour for simple flow control and + backpressure.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sasa1977/workex"; + }; + } // packageOverrides) + ) {}; + + workex = workex_0_10_0; + + workshop_0_5_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "workshop"; + version = "0.5.1"; + src = fetchHex { + pkg = "workshop"; + version = "0.5.1"; + sha256 = + "f6eaab9360764e83cca6892d939357e505fe163412b22acca7ea4fe307c8bed2"; + }; + + meta = { + longDescription = ''Mix tasks for creating and running + interactive workshops for teaching people how to + program in Elixir, and other things.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/gausby/workshop"; + }; + } // packageOverrides) + ) {}; + + workshop = workshop_0_5_1; + + world_json_0_1_6 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex, poison_1_3_1 }: + buildMix ({ + name = "world_json"; + version = "0.1.6"; + src = fetchHex { + pkg = "world_json"; + version = "0.1.6"; + sha256 = + "f91493355bc522e6ee58eed6d21fca41c32f246052c1324cb5f08b2eb1eb5e83"; + }; + beamDeps = [ poison_1_3_1 ]; + + meta = { + description = ''topojson country and state/province collections + for elixir/erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/world_json_ex"; + }; + } // packageOverrides) + ) {}; + + world_json = world_json_0_1_6; + + xlsx_parser_0_0_4 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + timex_1_0_2, + sweet_xml_0_5_1, + simple_agent_0_0_7 + }: + buildMix ({ + name = "xlsx_parser"; + version = "0.0.4"; + src = fetchHex { + pkg = "xlsx_parser"; + version = "0.0.4"; + sha256 = + "53d86e1142483421d5c1fe769f69980560a6809ca37a13c3dcd4c49fee46a831"; + }; + beamDeps = [ timex_1_0_2 sweet_xml_0_5_1 simple_agent_0_0_7 ]; + + meta = { + longDescription = ''Simple parsing of xlsx spreadsheet data. Data + can be retrieved or written to csv.''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/TheFirstAvenger/elixir-xlsx_parser.git"; + }; + } // packageOverrides) + ) {}; + + xlsx_parser = xlsx_parser_0_0_4; + + xlsxir_0_0_2 = callPackage + ( + { + buildMix, + packageOverrides ? {}, + fetchHex, + sweet_xml_0_6_1, + ex_doc_0_11_4, + earmark_0_2_1 + }: + buildMix ({ + name = "xlsxir"; + version = "0.0.2"; + src = fetchHex { + pkg = "xlsxir"; + version = "0.0.2"; + sha256 = + "7019d6c58f87543fcccc463cec5132d7a2343f5ef2ffdbb77095b694646e6ab0"; + }; + beamDeps = [ sweet_xml_0_6_1 ex_doc_0_11_4 earmark_0_2_1 ]; + + meta = { + longDescription = ''Parses Microsoft Excel worksheets (currently + only .xlsx format) and returns the data in + either a list or a map.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kennellroxco/xlsxir"; + }; + } // packageOverrides) + ) {}; + + xlsxir = xlsxir_0_0_2; + + xml_builder_0_0_8 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "xml_builder"; + version = "0.0.8"; + src = fetchHex { + pkg = "xml_builder"; + version = "0.0.8"; + sha256 = + "51922bc50e0ef79c757d1016eda2a486f8688cd7307c4519102ea1fea4c5a3cd"; + }; + + meta = { + description = ''XML builder for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/joshnuss/xml_builder"; + }; + } // packageOverrides) + ) {}; + + xml_builder = xml_builder_0_0_8; + + xmlrpc_0_9_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "xmlrpc"; + version = "0.9.1"; + src = fetchHex { + pkg = "xmlrpc"; + version = "0.9.1"; + sha256 = + "b2f6941248fa2e55e89dcb69304f58a7cc4203ce68b986260836933be8fac879"; + }; + + meta = { + longDescription = ''XML-RPC encoder/decder for Elixir. Supports + all valid datatypes. Input (ie untrusted) is + parsed with erlsom against an xml-schema for + security.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ewildgoose/elixir-xml_rpc"; + }; + } // packageOverrides) + ) {}; + + xmlrpc = xmlrpc_0_9_1; + + xref_runner_0_2_5 = callPackage + ( + { + buildErlangMk, packageOverrides ? {}, fetchHex, getopt_0_8_2 + }: + buildErlangMk ({ + name = "xref_runner"; + version = "0.2.5"; + src = fetchHex { + pkg = "xref_runner"; + version = "0.2.5"; + sha256 = + "12ca46c02789b0b2755284dedeb73aac0d9a3120c28c992040feb86766ee2c9a"; + }; + beamDeps = [ getopt_0_8_2 ]; + + meta = { + description = ''Xref Runner''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/inaka/xref_runner"; + }; + } // packageOverrides) + ) {}; + + xref_runner = xref_runner_0_2_5; + + xxhash_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "xxhash"; + version = "0.2.0"; + src = fetchHex { + pkg = "xxhash"; + version = "0.2.0"; + sha256 = + "ed57fd84e2c4fc440c28fa6a59d2c2ec0d3957b58dfd05cf06da8824ee6494d8"; + }; + + meta = { + description = ''Native Elixir xxHash port.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/ttvd/elixir-xxhash"; + }; + } // packageOverrides) + ) {}; + + xxhash = xxhash_0_2_0; + + yaml_elixir_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "yaml_elixir"; + version = "1.0.0"; + src = fetchHex { + pkg = "yaml_elixir"; + version = "1.0.0"; + sha256 = + "8d318d459561678bbe42bdcc7282ebe9dd7538f34045812054edf226634bf4a7"; + }; + + meta = { + description = ''Yaml parser for Elixir based on native Erlang + implementation.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KamilLelonek/yaml-elixir"; + }; + } // packageOverrides) + ) {}; + + yaml_elixir = yaml_elixir_1_0_0; + + yes_msg_0_1_0 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "yes_msg"; + version = "0.1.0"; + src = fetchHex { + pkg = "yes_msg"; + version = "0.1.0"; + sha256 = + "45e0a13d87cf84fa50001b27f898b470c610207947e4ddb1b1160804b4e62e0e"; + }; + + meta = { + description = ''Yet another simple message (YES) parser for + Erlang.''; + license = stdenv.lib.licenses.mit; + }; + } // packageOverrides) + ) {}; + + yes_msg = yes_msg_0_1_0; + + yubico_0_1_4 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "yubico"; + version = "0.1.4"; + src = fetchHex { + pkg = "yubico"; + version = "0.1.4"; + sha256 = + "0609f63f3b6141e56014b5247526448a41bf9f61431800891b8c219310f425ad"; + }; + + meta = { + description = ''Client implementing the Yubico Validation + Protocol Version 2.0.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/project-fifo/erlang-yubico"; + }; + } // packageOverrides) + ) {}; + + yubico = yubico_0_1_4; + + yuri_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "yuri"; + version = "1.0.0"; + src = fetchHex { + pkg = "yuri"; + version = "1.0.0"; + sha256 = + "4a4c851f7ea20141201a9b69eaefb300b420e6c94a1513519aaef39f63d939c5"; + }; + + meta = { + description = ''Simple struct for representing URIs.''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/kemonomachi/yuri"; + }; + } // packageOverrides) + ) {}; + + yuri = yuri_1_0_0; + + yyid_0_1_2 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "yyid"; + version = "0.1.2"; + src = fetchHex { + pkg = "yyid"; + version = "0.1.2"; + sha256 = + "37fb0acf8e7f30e66fbba18326b357aeaeb19b671b59d4beb8c8bd943370eeab"; + }; + + meta = { + longDescription = ''Generates random tokens that look like type 4 + UUIDs: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/janlelis/yyid.ex"; + }; + } // packageOverrides) + ) {}; + + yyid = yyid_0_1_2; + + zarex_0_2_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "zarex"; + version = "0.2.0"; + src = fetchHex { + pkg = "zarex"; + version = "0.2.0"; + sha256 = + "2e7d632116b1ec750ab2bd86e4936cc6f84a467c98a9507b4b3cf828f1edc1e1"; + }; + + meta = { + description = ''Filename sanitization for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ricn/zarex"; + }; + } // packageOverrides) + ) {}; + + zarex = zarex_0_2_0; + + zbase32_1_0_0 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "zbase32"; + version = "1.0.0"; + src = fetchHex { + pkg = "zbase32"; + version = "1.0.0"; + sha256 = + "bea25493cb512cf0d0ee4e1140c4dc276a27cc299c9b304117ec7b7e4af557b6"; + }; + + meta = { + longDescription = ''Efficient implementation of z-base-32, Phil + Zimmermann`s human-oriented base-32 encoding. + z-base-32 is a Base32 encoding designed to be + easier for human use and more compact. It + includes 1, 8 and 9 but excludes l, v and 2. It + also permutes the alphabet so that the easier + characters are the ones that occur more + frequently. It compactly encodes bitstrings + whose length in bits is not a multiple of 8, and + omits trailing padding characters. z-base-32 was + used in Mnet open source project, and is + currently used in Phil Zimmermann`s ZRTP + protocol, and in the Tahoe-LAFS open source + project.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pspdfkit-labs/zbase32"; + }; + } // packageOverrides) + ) {}; + + zbase32 = zbase32_1_0_0; + + zigzag_0_0_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "zigzag"; + version = "0.0.1"; + src = fetchHex { + pkg = "zigzag"; + version = "0.0.1"; + sha256 = + "27a151e219cf0dcabda9977aad3fbae7b8c366c88a88846e830bc4364f31ed95"; + }; + + meta = { + description = ''Zigzag is a fast and flexible parallel processing + library for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/utkarshkukreti/zigzag.ex"; + }; + } // packageOverrides) + ) {}; + + zigzag = zigzag_0_0_1; + + zipper_0_2_0 = callPackage + ( + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ + name = "zipper"; + version = "0.2.0"; + src = fetchHex { + pkg = "zipper"; + version = "0.2.0"; + sha256 = + "8f5a9271cebd535ff9bf9fd6829a36b3031d16c71b2ae6712e171f117520c023"; + }; + + meta = { + description = ''Generic Zipper Implementation for Erlang''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/inaka/zipper"; + }; + } // packageOverrides) + ) {}; + + zipper = zipper_0_2_0; + + zipper_tree_0_1_1 = callPackage + ( + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ + name = "zipper_tree"; + version = "0.1.1"; + src = fetchHex { + pkg = "zipper_tree"; + version = "0.1.1"; + sha256 = + "df6e81d6be9c9ac582bcde541e263d1379485f5cbb5b7cd1b55cd031fe7741ea"; + }; + + meta = { + description = ''Methods for travelsal and modification of Trees + using a zipper. ''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/Dkendal/zipper_tree"; + }; + } // packageOverrides) + ) {}; + + zipper_tree = zipper_tree_0_1_1; + + zlist_1_0_1 = callPackage + ( + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ + name = "zlist"; + version = "1.0.1"; + src = fetchHex { + pkg = "zlist"; + version = "1.0.1"; + sha256 = + "d63b2ef3328f9b4b3ad827663db3d3b878311d08973c2abc202a66ad55c8a78c"; + }; + + meta = { + description = ''Erlang lazy list library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/egobrain/zlist"; + }; + } // packageOverrides) + ) {}; + + zlist = zlist_1_0_1; + + }; +in stdenv.lib.fix' (stdenv.lib.extends overrides packages) \ No newline at end of file diff --git a/pkgs/development/beam-modules/hex-registry-snapshot.nix b/pkgs/development/beam-modules/hex-registry-snapshot.nix new file mode 100644 index 00000000000..3c2690c0103 --- /dev/null +++ b/pkgs/development/beam-modules/hex-registry-snapshot.nix @@ -0,0 +1,23 @@ +{stdenv, writeText, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "hex-registry"; + rev = "59b836d"; + version = "0.0.0+build.${rev}"; + + src = fetchFromGitHub { + owner = "erlang-nix"; + repo = "hex-pm-registry-snapshots"; + inherit rev; + sha256 = "1l8m6ckn5ivhfiv3k4dymi6b7wg511fwymnpxd6ymfd39dq0n5b0"; + }; + + installPhase = '' + mkdir -p "$out/var/hex" + zcat "registry.ets.gz" > "$out/var/hex/registry.ets" + ''; + + setupHook = writeText "setupHook.sh" '' + export HEX_REGISTRY_SNAPSHOT="$1/var/hex/registry.ets" + ''; +} diff --git a/pkgs/development/beam-modules/hex/default.nix b/pkgs/development/beam-modules/hex/default.nix new file mode 100644 index 00000000000..2cb06b07e59 --- /dev/null +++ b/pkgs/development/beam-modules/hex/default.nix @@ -0,0 +1,58 @@ +{stdenv, fetchFromGitHub, writeText, elixir }: + +let + shell = drv: stdenv.mkDerivation { + name = "interactive-shell-${drv.name}"; + buildInputs = [ drv ]; + }; + + pkg = self: stdenv.mkDerivation rec { + name = "hex"; + version = "v0.11.3"; + + src = fetchFromGitHub { + owner = "hexpm"; + repo = "hex"; + rev = "f5e200ad95f030f0a7ab88a86545dd0dde1ee521"; + sha256 = "0n4cgmnbmglarydls9pmxznbzp49pv85ncbd4f2lp1fm7qr08xfw"; + }; + + setupHook = writeText "setupHook.sh" '' + addToSearchPath ERL_LIBS "$1/lib/erlang/lib/" + ''; + + dontStrip = true; + + buildInputs = [ elixir ]; + + buildPhase = '' + runHook preBuild + export HEX_OFFLINE=1 + export HEX_HOME=./ + export MIX_ENV=prod + mix compile + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + + mkdir -p $out/lib/erlang/lib + cp -r ./_build/prod/lib/hex $out/lib/erlang/lib/ + + runHook postInstall + ''; + + meta = { + description = "Package manager for the Erlang VM https://hex.pm"; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hexpm/hex"; + maintainers = with stdenv.lib.maintainers; [ ericbmerritt ]; + }; + + passthru = { + env = shell self; + }; + +}; +in stdenv.lib.fix pkg diff --git a/pkgs/development/beam-modules/mix-bootstrap b/pkgs/development/beam-modules/mix-bootstrap new file mode 100755 index 00000000000..c4a1b364daa --- /dev/null +++ b/pkgs/development/beam-modules/mix-bootstrap @@ -0,0 +1,112 @@ +#!/usr/bin/env escript +%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*- +%%! -smp enable +%%% --------------------------------------------------------------------------- +%%% @doc +%%% The purpose of this command is to prepare a rebar3 project so that +%%% rebar3 understands that the dependencies are all already +%%% installed. If you want a hygienic build on nix then you must run +%%% this command before running rebar3. I suggest that you add a +%%% `Makefile` to your project and have the bootstrap command be a +%%% dependency of the build commands. See the nix documentation for +%%% more information. +%%% +%%% This command designed to have as few dependencies as possible so +%%% that it can be a dependency of root level packages like rebar3. To +%%% that end it does many things in a fairly simplistic way. That is +%%% by design. +%%% +%%% ### Assumptions +%%% +%%% This command makes the following assumptions: +%%% +%%% * It is run in a nix-shell or nix-build environment +%%% * that all dependencies have been added to the ERL_LIBS +%%% Environment Variable + +-record(data, {version + , erl_libs + , root + , name + , registry_snapshot}). +-define(LOCAL_HEX_REGISTRY, "registry.ets"). + +main(Args) -> + {ok, RequiredData} = gather_required_data_from_the_environment(Args), + ok = bootstrap_libs(RequiredData). + +%% @doc +%% This takes an app name in the standard OTP - format +%% and returns just the app name. Why? because rebar is doesn't +%% respect OTP conventions in some cases. +-spec fixup_app_name(file:name()) -> string(). +fixup_app_name(Path) -> + BaseName = filename:basename(Path), + case string:tokens(BaseName, "-") of + [Name, _Version] -> Name; + Name -> Name + end. + + +-spec gather_required_data_from_the_environment([string()]) -> {ok, #data{}}. +gather_required_data_from_the_environment(_) -> + {ok, #data{ version = guard_env("version") + , erl_libs = os:getenv("ERL_LIBS", []) + , root = code:root_dir() + , name = guard_env("name") + , registry_snapshot = guard_env("HEX_REGISTRY_SNAPSHOT")}}. + +-spec guard_env(string()) -> string(). +guard_env(Name) -> + case os:getenv(Name) of + false -> + stderr("Expected Environment variable ~s! Are you sure you are " + "running in a Nix environment? Either a nix-build, " + "nix-shell, etc?~n", [Name]), + erlang:halt(1); + Variable -> + Variable + end. + +-spec bootstrap_libs(#data{}) -> ok. +bootstrap_libs(#data{erl_libs = ErlLibs}) -> + io:format("Bootstrapping dependent libraries~n"), + Target = "_build/prod/lib/", + Paths = string:tokens(ErlLibs, ":"), + CopiableFiles = + lists:foldl(fun(Path, Acc) -> + gather_directory_contents(Path) ++ Acc + end, [], Paths), + lists:foreach(fun (Path) -> + ok = link_app(Path, Target) + end, CopiableFiles). + +-spec gather_directory_contents(string()) -> [{string(), string()}]. +gather_directory_contents(Path) -> + {ok, Names} = file:list_dir(Path), + lists:map(fun(AppName) -> + {filename:join(Path, AppName), fixup_app_name(AppName)} + end, Names). + +%% @doc +%% Makes a symlink from the directory pointed at by Path to a +%% directory of the same name in Target. So if we had a Path of +%% {`foo/bar/baz/bash`, `baz`} and a Target of `faz/foo/foos`, the symlink +%% would be `faz/foo/foos/baz`. +-spec link_app({string(), string()}, string()) -> ok. +link_app({Path, TargetFile}, TargetDir) -> + Target = filename:join(TargetDir, TargetFile), + ok = make_symlink(Path, Target). + +-spec make_symlink(string(), string()) -> ok. +make_symlink(Path, TargetFile) -> + file:delete(TargetFile), + ok = filelib:ensure_dir(TargetFile), + io:format("Making symlink from ~s to ~s~n", [Path, TargetFile]), + ok = file:make_symlink(Path, TargetFile). + +%% @doc +%% Write the result of the format string out to stderr. +-spec stderr(string(), [term()]) -> ok. +stderr(FormatStr, Args) -> + io:put_chars(standard_error, io_lib:format(FormatStr, Args)). diff --git a/pkgs/development/beam-modules/pgsql/default.nix b/pkgs/development/beam-modules/pgsql/default.nix new file mode 100644 index 00000000000..6fc1587a38e --- /dev/null +++ b/pkgs/development/beam-modules/pgsql/default.nix @@ -0,0 +1,34 @@ +{stdenv, fetchFromGitHub, buildRebar3 }: + +let + shell = drv: stdenv.mkDerivation { + name = "interactive-shell-${drv.name}"; + buildInputs = [ drv ]; + }; + + pkg = self: buildRebar3 rec { + name = "pgsql"; + version = "25+beta.2"; + + src = fetchFromGitHub { + owner = "semiocast"; + repo = "pgsql"; + rev = "14f632bc89e464d82ce3ef12a67ed8c2adb5b60c"; + sha256 = "17dcahiwlw61zhy8aq9rn46lwb35fb9q3372s4wmz01czm8c348w"; + }; + + dontStrip = true; + + meta = { + description = "Erlang PostgreSQL Driver"; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/semiocast/pgsql"; + maintainers = with stdenv.lib.maintainers; [ ericbmerritt ]; + }; + + passthru = { + env = shell self; + }; + +}; +in stdenv.lib.fix pkg diff --git a/pkgs/development/erlang-modules/webdriver/default.nix b/pkgs/development/beam-modules/webdriver/default.nix similarity index 100% rename from pkgs/development/erlang-modules/webdriver/default.nix rename to pkgs/development/beam-modules/webdriver/default.nix diff --git a/pkgs/development/compilers/chez/default.nix b/pkgs/development/compilers/chez/default.nix new file mode 100644 index 00000000000..d9e7cc50730 --- /dev/null +++ b/pkgs/development/compilers/chez/default.nix @@ -0,0 +1,59 @@ +{ stdenv, fetchgit, coreutils, ncurses, libX11 }: + +stdenv.mkDerivation rec { + name = "chez-scheme-${version}"; + version = "9.4-${dver}"; + dver = "20160501"; + + src = fetchgit { + url = "https://github.com/cisco/chezscheme.git"; + rev = "8343b7172532a00d2d19914206fcf83c93798c80"; + sha256 = "1jq55sdk468lckccfnqh0iv868bhw6yb9ba9bakqg2pfydb8r4qf"; + fetchSubmodules = true; + }; + + enableParallelBuilding = true; + buildInputs = [ ncurses libX11 ]; + + /* Chez uses a strange default search path, which completely + ** ignores the installation prefix for some reason, and instead + ** defaults to {/usr,/usr/local,$HOME}/lib for finding the .boot + ** file. + ** + ** Also, we patch out a very annoying 'feature' in ./configure, too, + ** which tries to use 'git' to update submodules. + ** + ** Finally, we have to also fix a few occurrences to tools with + ** absolute paths in some helper scripts, otherwise the build will + ** fail on NixOS or in any chroot build. + */ + patchPhase = '' + substituteInPlace ./c/scheme.c \ + --replace "/usr/lib/csv" "$out/lib/csv" + + substituteInPlace ./configure \ + --replace "git submodule init && git submodule update || exit 1" "" + + substituteInPlace ./workarea \ + --replace "/bin/ln" "${coreutils}/bin/ln" + + substituteInPlace ./makefiles/installsh \ + --replace "/usr/bin/true" "${coreutils}/bin/true" + ''; + + /* Don't use configureFlags, since that just implicitly appends + ** everything onto a --prefix flag, which ./configure gets very angry + ** about. + */ + configurePhase = '' + ./configure --threads --installprefix=$out --installman=$out/share/man + ''; + + meta = { + description = "A powerful and incredibly fast R6RS Scheme compiler"; + homepage = "http://www.scheme.com"; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.linux; + maintainers = with stdenv.lib.maintainers; [ thoughtpolice ]; + }; +} diff --git a/pkgs/development/compilers/cudatoolkit/default.nix b/pkgs/development/compilers/cudatoolkit/default.nix index f13826ddb8c..c13118977a1 100644 --- a/pkgs/development/compilers/cudatoolkit/default.nix +++ b/pkgs/development/compilers/cudatoolkit/default.nix @@ -32,7 +32,7 @@ let gtk2 glib fontconfig freetype unixODBC alsaLib ]; - rpath = "${stdenv.lib.makeLibraryPath runtimeDependencies}:${stdenv.cc.cc}/lib64"; + rpath = "${stdenv.lib.makeLibraryPath runtimeDependencies}:${stdenv.cc.cc.lib}/lib64"; unpackPhase = '' sh $src --keep --noexec diff --git a/pkgs/development/compilers/ecl/default.nix b/pkgs/development/compilers/ecl/default.nix index 1b8b8d862cf..73c4755e9cd 100644 --- a/pkgs/development/compilers/ecl/default.nix +++ b/pkgs/development/compilers/ecl/default.nix @@ -1,6 +1,6 @@ {stdenv, fetchurl , libtool, autoconf, automake -, gmp, mpfr, libffi +, gmp, mpfr, libffi, makeWrapper , noUnicode ? false, }: let @@ -14,7 +14,7 @@ let sha256="16ab8qs3awvdxy8xs8jy82v8r04x4wr70l9l2j45vgag18d2nj1d"; }; buildInputs = [ - libtool autoconf automake + libtool autoconf automake makeWrapper ]; propagatedBuildInputs = [ libffi gmp mpfr @@ -42,6 +42,9 @@ stdenv.mkDerivation { postInstall = '' sed -e 's/@[-a-zA-Z_]*@//g' -i $out/bin/ecl-config + wrapProgram "$out/bin/ecl" \ + --prefix NIX_LDFLAGS ' ' "-L${gmp.lib or gmp.out or gmp}/lib" \ + --prefix NIX_LDFLAGS ' ' "-L${libffi.lib or libffi.out or libffi}/lib" ''; meta = { diff --git a/pkgs/development/compilers/eql/default.nix b/pkgs/development/compilers/eql/default.nix index def60aa295f..de531e901d9 100644 --- a/pkgs/development/compilers/eql/default.nix +++ b/pkgs/development/compilers/eql/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { buildInputs = [ ecl qt4 xorgserver xkbcomp xkeyboard_config ]; - NIX_CFLAGS_COMPILE = "-fPIC"; + NIX_CFLAGS_COMPILE = [ "-fPIC" ]; postPatch = '' sed -re 's@[(]in-home "gui/.command-history"[)]@(concatenate '"'"'string (ext:getenv "HOME") "/.eql-gui-command-history")@' -i gui/gui.lisp diff --git a/pkgs/development/compilers/fpc/lazarus.nix b/pkgs/development/compilers/fpc/lazarus.nix index 0db5f03a1ab..1f2be91b13a 100644 --- a/pkgs/development/compilers/fpc/lazarus.nix +++ b/pkgs/development/compilers/fpc/lazarus.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation { ]; preBuild = '' export makeFlags="$makeFlags LAZARUS_INSTALL_DIR=$out/share/lazarus/ INSTALL_PREFIX=$out/" - export NIX_LDFLAGS="$NIX_LDFLAGS -L${stdenv.cc.cc}/lib -lXi -lX11 -lglib-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -lc -lXext -lpango-1.0 -latk-1.0 -lgdk_pixbuf-2.0 -lcairo -lgcc_s" + export NIX_LDFLAGS="$NIX_LDFLAGS -L${stdenv.cc.cc.lib}/lib -lXi -lX11 -lglib-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -lc -lXext -lpango-1.0 -latk-1.0 -lgdk_pixbuf-2.0 -lcairo -lgcc_s" export LCL_PLATFORM=gtk2 mkdir -p $out/share "$out/lazarus" tar xf ${fpc.src} --strip-components=1 -C $out/share -m diff --git a/pkgs/development/compilers/gcc/builder.sh b/pkgs/development/compilers/gcc/builder.sh index 3190c5f5739..5b206a63daa 100644 --- a/pkgs/development/compilers/gcc/builder.sh +++ b/pkgs/development/compilers/gcc/builder.sh @@ -210,10 +210,14 @@ preInstall() { postInstall() { + mkdir -p "$lib" # some configs don't have anything to put into $lib + # Move runtime libraries to $lib. moveToOutput "lib/lib*.so*" "$lib" moveToOutput "lib/lib*.la" "$lib" - ln -s lib "$lib/lib64" # for *.la + if [ -d "$lib/lib" ]; then + ln -s lib "$lib/lib64" # for *.la + fi moveToOutput "share/gcc-*/python" "$lib" for i in "$lib"/lib/*.{la,py}; do diff --git a/pkgs/development/compilers/ghc/8.0.1.nix b/pkgs/development/compilers/ghc/8.0.1.nix index 404e7e5cc28..656dedc922d 100644 --- a/pkgs/development/compilers/ghc/8.0.1.nix +++ b/pkgs/development/compilers/ghc/8.0.1.nix @@ -7,12 +7,12 @@ let in stdenv.mkDerivation rec { - version = "8.0.0.20160411"; + version = "8.0.0.20160421"; name = "ghc-${version}"; src = fetchurl { - url = "https://downloads.haskell.org/~ghc/8.0.1-rc3/${name}-src.tar.xz"; - sha256 = "0cgk0li3pwag65xcrjci8l840aphklymjfmsrq0qpdi8bpsmi97d"; + url = "https://downloads.haskell.org/~ghc/8.0.1-rc4/${name}-src.tar.xz"; + sha256 = "183p1ilk8rlndi1vmg2vmlx00s18q3j31kin85qpbvicsxb8j1j1"; }; patches = [ diff --git a/pkgs/development/compilers/ghcjs/default.nix b/pkgs/development/compilers/ghcjs/default.nix index 929d59a9a9b..fb8d789f533 100644 --- a/pkgs/development/compilers/ghcjs/default.nix +++ b/pkgs/development/compilers/ghcjs/default.nix @@ -40,8 +40,8 @@ , ghcjsBootSrc ? fetchgit { url = git://github.com/ghcjs/ghcjs-boot.git; - rev = "758e79e420403e0f6625eda19b10c46564f7cbb5"; - sha256 = "0gq1mc86cb2z875a7sdj44yy8g95rwxzkl3z1q8gg33k05s3b58r"; + rev = "8c549931da27ba9e607f77195208ec156c840c8a"; + sha256 = "0yg9bnabja39qysh9pg1335qbvbc0r2mdw6cky94p7kavacndfdv"; fetchSubmodules = true; } , ghcjsBoot ? import ./ghcjs-boot.nix { diff --git a/pkgs/development/compilers/go/1.6.nix b/pkgs/development/compilers/go/1.6.nix index 7572dfddd30..3462cbe47b6 100644 --- a/pkgs/development/compilers/go/1.6.nix +++ b/pkgs/development/compilers/go/1.6.nix @@ -15,11 +15,11 @@ in stdenv.mkDerivation rec { name = "go-${version}"; - version = "1.6"; + version = "1.6.2"; src = fetchurl { url = "https://github.com/golang/go/archive/go${version}.tar.gz"; - sha256 = "04g7w34qamgy9gqpy75xm03s8xbbslv1735iv1a06z8sphpkgs7m"; + sha256 = "17sfhg3xfnakk666wlsbhxp4vbn19hlywf5cn1zfcd4zqkcyx30h"; }; # perl is used for testing go vet @@ -98,12 +98,6 @@ stdenv.mkDerivation rec { patches = [ ./remove-tools-1.5.patch - # Fix bug when using musl (see https://github.com/golang/go/issues/14476) - # Should be fixed by go 1.6.1 - (fetchpatch { - url = "https://github.com/golang/go/commit/1439158120742e5f41825de90a76b680da64bf76.patch"; - sha256 = "0yixpbx056ns5wgd3f4absgiyc2ymmqk8mkhhz5ja90dvilzxcwd"; - }) ] # -ldflags=-s is required to compile on Darwin, see # https://github.com/golang/go/issues/11994 diff --git a/pkgs/development/compilers/julia/default.nix b/pkgs/development/compilers/julia/default.nix index 9886dc4d52a..9e90ecfbe21 100644 --- a/pkgs/development/compilers/julia/default.nix +++ b/pkgs/development/compilers/julia/default.nix @@ -159,7 +159,7 @@ stdenv.mkDerivation rec { description = "High-level performance-oriented dynamical language for technical computing"; homepage = "http://julialang.org/"; license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [ raskin ttuegel ]; + maintainers = with stdenv.lib.maintainers; [ raskin ]; platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; }; } diff --git a/pkgs/development/compilers/julia/git.nix b/pkgs/development/compilers/julia/git.nix index 2fbe50fbc9f..b6d917865d8 100644 --- a/pkgs/development/compilers/julia/git.nix +++ b/pkgs/development/compilers/julia/git.nix @@ -42,7 +42,7 @@ let virtualenvVersion = "1.11.6"; virtualenv = fetchurl { - url = "https://pypi.python.org/packages/source/v/virtualenv/virtualenv-${virtualenvVersion}.tar.gz"; + url = "mirror://pypi/v/virtualenv/virtualenv-${virtualenvVersion}.tar.gz"; sha256 = "1xq4prmg25n9cz5zcvbqx68lmc3kl39by582vd8pzs9f3qalqyiy"; }; in diff --git a/pkgs/development/compilers/llvm/3.6/clang/default.nix b/pkgs/development/compilers/llvm/3.6/clang/default.nix index 2827e073903..ff0f34391af 100644 --- a/pkgs/development/compilers/llvm/3.6/clang/default.nix +++ b/pkgs/development/compilers/llvm/3.6/clang/default.nix @@ -2,54 +2,56 @@ let gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc; -in stdenv.mkDerivation { - name = "clang-${version}"; + self = stdenv.mkDerivation { + name = "clang-${version}"; - unpackPhase = '' - unpackFile ${fetch "cfe" "1wwr8s6lzr324hv4s1k6na4j5zv6n9kdhi14s4kb9b13d93814df"} - mv cfe-${version}.src clang - sourceRoot=$PWD/clang - unpackFile ${clang-tools-extra_src} - mv clang-tools-extra-* $sourceRoot/tools/extra - ''; + unpackPhase = '' + unpackFile ${fetch "cfe" "1wwr8s6lzr324hv4s1k6na4j5zv6n9kdhi14s4kb9b13d93814df"} + mv cfe-${version}.src clang + sourceRoot=$PWD/clang + unpackFile ${clang-tools-extra_src} + mv clang-tools-extra-* $sourceRoot/tools/extra + ''; - buildInputs = [ cmake libedit libxml2 llvm ]; + buildInputs = [ cmake libedit libxml2 llvm ]; - cmakeFlags = [ - "-DCMAKE_BUILD_TYPE=Release" - "-DCMAKE_CXX_FLAGS=-std=c++11" - ] ++ - # Maybe with compiler-rt this won't be needed? - (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ - (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); + cmakeFlags = [ + "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_CXX_FLAGS=-std=c++11" + ] ++ + # Maybe with compiler-rt this won't be needed? + (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ + (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); - patches = [ ./purity.patch ./cmake-exports.patch ]; + patches = [ ./purity.patch ./cmake-exports.patch ]; - postPatch = '' - sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp - sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp - ''; + postPatch = '' + sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp + sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp + ''; - # Clang expects to find LLVMgold in its own prefix - # Clang expects to find sanitizer libraries in its own prefix - postInstall = '' - ln -sv ${llvm}/lib/LLVMgold.so $out/lib - ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ - ln -sv $out/bin/clang $out/bin/cpp - ''; + # Clang expects to find LLVMgold in its own prefix + # Clang expects to find sanitizer libraries in its own prefix + postInstall = '' + ln -sv ${llvm}/lib/LLVMgold.so $out/lib + ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ + ln -sv $out/bin/clang $out/bin/cpp + ''; - enableParallelBuilding = true; + enableParallelBuilding = true; - passthru = { - isClang = true; - } // stdenv.lib.optionalAttrs stdenv.isLinux { - inherit gcc; + passthru = { + lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both + isClang = true; + } // stdenv.lib.optionalAttrs stdenv.isLinux { + inherit gcc; + }; + + meta = { + description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; + }; }; - - meta = { - description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; - homepage = http://llvm.org/; - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.all; - }; -} +in self diff --git a/pkgs/development/compilers/llvm/3.7/clang/default.nix b/pkgs/development/compilers/llvm/3.7/clang/default.nix index e6369b1167e..aa71bb68553 100644 --- a/pkgs/development/compilers/llvm/3.7/clang/default.nix +++ b/pkgs/development/compilers/llvm/3.7/clang/default.nix @@ -2,54 +2,56 @@ let gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc; -in stdenv.mkDerivation { - name = "clang-${version}"; + self = stdenv.mkDerivation { + name = "clang-${version}"; - unpackPhase = '' - unpackFile ${fetch "cfe" "0x065d0w9b51xvdjxwfzjxng0gzpbx45fgiaxpap45ragi61dqjn"} - mv cfe-${version}.src clang - sourceRoot=$PWD/clang - unpackFile ${clang-tools-extra_src} - mv clang-tools-extra-* $sourceRoot/tools/extra - ''; + unpackPhase = '' + unpackFile ${fetch "cfe" "0x065d0w9b51xvdjxwfzjxng0gzpbx45fgiaxpap45ragi61dqjn"} + mv cfe-${version}.src clang + sourceRoot=$PWD/clang + unpackFile ${clang-tools-extra_src} + mv clang-tools-extra-* $sourceRoot/tools/extra + ''; - buildInputs = [ cmake libedit libxml2 llvm ]; + buildInputs = [ cmake libedit libxml2 llvm ]; - cmakeFlags = [ - "-DCMAKE_BUILD_TYPE=Release" - "-DCMAKE_CXX_FLAGS=-std=c++11" - ] ++ - # Maybe with compiler-rt this won't be needed? - (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ - (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); + cmakeFlags = [ + "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_CXX_FLAGS=-std=c++11" + ] ++ + # Maybe with compiler-rt this won't be needed? + (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ + (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); - patches = [ ./purity.patch ]; + patches = [ ./purity.patch ]; - postPatch = '' - sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp - sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp - ''; + postPatch = '' + sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp + sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp + ''; - # Clang expects to find LLVMgold in its own prefix - # Clang expects to find sanitizer libraries in its own prefix - postInstall = '' - ln -sv ${llvm}/lib/LLVMgold.so $out/lib - ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ - ln -sv $out/bin/clang $out/bin/cpp - ''; + # Clang expects to find LLVMgold in its own prefix + # Clang expects to find sanitizer libraries in its own prefix + postInstall = '' + ln -sv ${llvm}/lib/LLVMgold.so $out/lib + ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ + ln -sv $out/bin/clang $out/bin/cpp + ''; - enableParallelBuilding = true; + enableParallelBuilding = true; - passthru = { - isClang = true; - } // stdenv.lib.optionalAttrs stdenv.isLinux { - inherit gcc; + passthru = { + lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both + isClang = true; + } // stdenv.lib.optionalAttrs stdenv.isLinux { + inherit gcc; + }; + + meta = { + description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; + }; }; - - meta = { - description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; - homepage = http://llvm.org/; - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.all; - }; -} +in self diff --git a/pkgs/development/compilers/llvm/3.8/clang/default.nix b/pkgs/development/compilers/llvm/3.8/clang/default.nix index 047f87c92a9..71420d4cdcc 100644 --- a/pkgs/development/compilers/llvm/3.8/clang/default.nix +++ b/pkgs/development/compilers/llvm/3.8/clang/default.nix @@ -2,54 +2,56 @@ let gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc; -in stdenv.mkDerivation { - name = "clang-${version}"; + self = stdenv.mkDerivation { + name = "clang-${version}"; - unpackPhase = '' - unpackFile ${fetch "cfe" "1ybcac8hlr9vl3wg8s4v6cp0c0qgqnwprsv85lihbkq3vqv94504"} - mv cfe-${version}.src clang - sourceRoot=$PWD/clang - unpackFile ${clang-tools-extra_src} - mv clang-tools-extra-* $sourceRoot/tools/extra - ''; + unpackPhase = '' + unpackFile ${fetch "cfe" "1ybcac8hlr9vl3wg8s4v6cp0c0qgqnwprsv85lihbkq3vqv94504"} + mv cfe-${version}.src clang + sourceRoot=$PWD/clang + unpackFile ${clang-tools-extra_src} + mv clang-tools-extra-* $sourceRoot/tools/extra + ''; - buildInputs = [ cmake libedit libxml2 llvm python ]; + buildInputs = [ cmake libedit libxml2 llvm python ]; - cmakeFlags = [ - "-DCMAKE_BUILD_TYPE=Release" - "-DCMAKE_CXX_FLAGS=-std=c++11" - ] ++ - # Maybe with compiler-rt this won't be needed? - (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ - (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); + cmakeFlags = [ + "-DCMAKE_BUILD_TYPE=Release" + "-DCMAKE_CXX_FLAGS=-std=c++11" + ] ++ + # Maybe with compiler-rt this won't be needed? + (stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++ + (stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include"); - patches = [ ./purity.patch ]; + patches = [ ./purity.patch ]; - postPatch = '' - sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp - sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp - ''; + postPatch = '' + sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp + sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp + ''; - # Clang expects to find LLVMgold in its own prefix - # Clang expects to find sanitizer libraries in its own prefix - postInstall = '' - ln -sv ${llvm}/lib/LLVMgold.so $out/lib - ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ - ln -sv $out/bin/clang $out/bin/cpp - ''; + # Clang expects to find LLVMgold in its own prefix + # Clang expects to find sanitizer libraries in its own prefix + postInstall = '' + ln -sv ${llvm}/lib/LLVMgold.so $out/lib + ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/ + ln -sv $out/bin/clang $out/bin/cpp + ''; - enableParallelBuilding = true; + enableParallelBuilding = true; - passthru = { - isClang = true; - } // stdenv.lib.optionalAttrs stdenv.isLinux { - inherit gcc; + passthru = { + lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both + isClang = true; + } // stdenv.lib.optionalAttrs stdenv.isLinux { + inherit gcc; + }; + + meta = { + description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; + homepage = http://llvm.org/; + license = stdenv.lib.licenses.bsd3; + platforms = stdenv.lib.platforms.all; + }; }; - - meta = { - description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler"; - homepage = http://llvm.org/; - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.all; - }; -} +in self diff --git a/pkgs/development/compilers/mono/default.nix b/pkgs/development/compilers/mono/default.nix index 709f0f55788..54e76c731a1 100644 --- a/pkgs/development/compilers/mono/default.nix +++ b/pkgs/development/compilers/mono/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { # In fact I think this line does not help at all to what I # wanted to achieve: have mono to find libgdiplus automatically - configureFlags = "--x-includes=${libX11}/include --x-libraries=${libX11}/lib --with-libgdiplus=${libgdiplus}/lib/libgdiplus.so ${llvmOpts}"; + configureFlags = "--x-includes=${libX11.dev}/include --x-libraries=${libX11.out}/lib --with-libgdiplus=${libgdiplus}/lib/libgdiplus.so ${llvmOpts}"; # Attempt to fix this error when running "mcs --version": # The file /nix/store/xxx-mono-2.4.2.1/lib/mscorlib.dll is an invalid CIL image @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { # http://www.mono-project.com/Config_DllMap postBuild = '' find . -name 'config' -type f | while read i; do - sed -i "s@libX11.so.6@${libX11}/lib/libX11.so.6@g" $i + sed -i "s@libX11.so.6@${libX11.out}/lib/libX11.so.6@g" $i sed -i "s@/.*libgdiplus.so@${libgdiplus}/lib/libgdiplus.so@g" $i done ''; diff --git a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix index 5ac7c417ba2..fe5b3b71258 100644 --- a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix +++ b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix @@ -11,6 +11,7 @@ { swingSupport ? true , stdenv , requireFile +, makeWrapper , unzip , file , xorg ? null @@ -83,6 +84,8 @@ let result = stdenv.mkDerivation rec { nativeBuildInputs = [ file ] ++ stdenv.lib.optional installjce unzip; + buildInputs = [ makeWrapper ]; + # See: https://github.com/NixOS/patchelf/issues/10 dontStrip = 1; @@ -119,12 +122,6 @@ let result = stdenv.mkDerivation rec { done fi - # construct the rpath - rpath= - for i in $libraries; do - rpath=$rpath''${rpath:+:}$i/lib:$i/lib64 - done - if test -z "$installjdk"; then jrePath=$out else @@ -165,6 +162,10 @@ let result = stdenv.mkDerivation rec { cat <> $out/nix-support/setup-hook if [ -z "\$JAVA_HOME" ]; then export JAVA_HOME=$out; fi EOF + + # Oracle Java Mission Control needs to know where libgtk-x11 and related is + wrapProgram "$out/bin/jmc" \ + --suffix-each LD_LIBRARY_PATH ':' "${rpath}" \ ''; inherit installjdk pluginSupport; @@ -176,6 +177,8 @@ let result = stdenv.mkDerivation rec { [stdenv.cc.libc glib libxml2 libav_0_8 ffmpeg libxslt mesa_noglu xorg.libXxf86vm alsaLib fontconfig freetype gnome.pango gnome.gtk cairo gdk_pixbuf atk] ++ (if swingSupport then [xorg.libX11 xorg.libXext xorg.libXtst xorg.libXi xorg.libXp xorg.libXt xorg.libXrender stdenv.cc.cc] else []); + rpath = stdenv.lib.strings.makeLibraryPath libraries; + passthru.mozillaPlugin = if installjdk then "/jre/lib/${architecture}/plugins" else "/lib/${architecture}/plugins"; passthru.jre = result; # FIXME: use multiple outputs or return actual JRE package diff --git a/pkgs/development/compilers/oraclejdk/jdk8-linux.nix b/pkgs/development/compilers/oraclejdk/jdk8-linux.nix index 554e3fc9838..0a9792f2b4a 100644 --- a/pkgs/development/compilers/oraclejdk/jdk8-linux.nix +++ b/pkgs/development/compilers/oraclejdk/jdk8-linux.nix @@ -1,9 +1,9 @@ import ./jdk-linux-base.nix { productVersion = "8"; - patchVersion = "77"; + patchVersion = "91"; downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html; - sha256_i686 = "14hyniai5l9qpg0pbnxa4rhyhk90qgihszfkn8h3vziqhmvrp27j"; - sha256_x86_64 = "0hyzvvj4bf0r4jda8fv3k06d9bf37nji37qbq067mcjp5abc0zd4"; + sha256_i686 = "0lndni81vfpz2l6zb8zsshaavk0483q5jc8yzj4fdjv6wnshbkay"; + sha256_x86_64 = "0lkm3fz1vdi69f34sysavvh3abx603j1frc9hxvr08pwvmm536vg"; jceName = "jce_policy-8.zip"; jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html; sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk"; diff --git a/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix b/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix index 554e3fc9838..d6d783b8a30 100644 --- a/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix +++ b/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix @@ -1,9 +1,9 @@ import ./jdk-linux-base.nix { productVersion = "8"; - patchVersion = "77"; + patchVersion = "92"; downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html; - sha256_i686 = "14hyniai5l9qpg0pbnxa4rhyhk90qgihszfkn8h3vziqhmvrp27j"; - sha256_x86_64 = "0hyzvvj4bf0r4jda8fv3k06d9bf37nji37qbq067mcjp5abc0zd4"; + sha256_i686 = "095j2hh2xas05jajy4qdj9hxq3k460x4m12rcaxkaxw754imj0vj"; + sha256_x86_64 = "11wrqd3qbkhimbw9n4g9i0635pjhhnijwxyid7lvjv26kdgg58vr"; jceName = "jce_policy-8.zip"; jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html; sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk"; diff --git a/pkgs/development/compilers/ponyc/default.nix b/pkgs/development/compilers/ponyc/default.nix index 07614609519..ef355e64e1e 100644 --- a/pkgs/development/compilers/ponyc/default.nix +++ b/pkgs/development/compilers/ponyc/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { patchPhase = '' sed 's|/usr/lib/x86_64-linux-gnu/|${glibc.out}/lib/|g' -i src/libponyc/codegen/genexe.c - sed 's|/lib/x86_64-linux-gnu/|${stdenv.cc.cc}/lib/|g' -i src/libponyc/codegen/genexe.c + sed 's|/lib/x86_64-linux-gnu/|${stdenv.cc.cc.lib}/lib/|g' -i src/libponyc/codegen/genexe.c ''; preBuild = '' diff --git a/pkgs/development/compilers/rustc/default.nix b/pkgs/development/compilers/rustc/default.nix index e7d44039682..38d6cb0b6e7 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.6.0"; + shortVersion = "1.8.0"; isRelease = true; forceBundledLLVM = false; configureFlags = [ "--release-channel=stable" ]; - srcSha = "1dvpiswl0apknizsz9bcrjnc4c43ys191a1b9gm3569xdlmxr36w"; + srcSha = "1s03aymmhhrndq29sv9cs8s4p1sg8qvq8ds6lyp6s4ny8nyvdpzy"; /* Rust is bootstrapped from an earlier built version. We need to fetch these earlier versions, which vary per platform. @@ -15,12 +15,12 @@ callPackage ./generic.nix { for the tagged release and not a snapshot in the current HEAD. */ - snapshotHashLinux686 = "e2553bf399cd134a08ef3511a0a6ab0d7a667216"; - snapshotHashLinux64 = "7df8ba9dec63ec77b857066109d4b6250f3d222f"; - snapshotHashDarwin686 = "29750870c82a0347f8b8b735a4e2e0da26f5098d"; - snapshotHashDarwin64 = "c9f2c588238b4c6998190c3abeb33fd6164099a2"; - snapshotDate = "2015-08-11"; - snapshotRev = "1af31d4"; + snapshotHashLinux686 = "5f194aa7628c0703f0fd48adc4ec7f3cc64b98c7"; + snapshotHashLinux64 = "d29b7607d13d64078b6324aec82926fb493f59ba"; + snapshotHashDarwin686 = "4c8e42dd649e247f3576bf9dfa273327b4907f9c"; + snapshotHashDarwin64 = "411a41363f922d1d93fa62ff2fedf5c35e9cccb2"; + snapshotDate = "2016-02-17"; + snapshotRev = "4d3eebf"; patches = [ ./patches/remove-uneeded-git.patch ] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; diff --git a/pkgs/development/compilers/rustc/generic.nix b/pkgs/development/compilers/rustc/generic.nix index 734e43f502b..976c1b932b5 100644 --- a/pkgs/development/compilers/rustc/generic.nix +++ b/pkgs/development/compilers/rustc/generic.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, fetchgit, fetchzip, file, python2, tzdata, procps -, llvmPackages_37, jemalloc, ncurses, darwin, binutils +, llvm, jemalloc, ncurses, darwin, binutils , shortVersion, isRelease , forceBundledLLVM ? false @@ -12,8 +12,6 @@ , patches } @ args: -assert !stdenv.isFreeBSD; - /* Rust's build process has a few quirks : - The Rust compiler is written is Rust, so it requires a bootstrap @@ -39,7 +37,7 @@ let version = if isRelease then procps = if stdenv.isDarwin then darwin.ps else args.procps; - llvmShared = llvmPackages_37.llvm.override { enableSharedLibraries = true; }; + llvmShared = llvm.override { enableSharedLibraries = true; }; platform = if stdenv.system == "i686-linux" then "linux-i386" @@ -64,9 +62,9 @@ let version = if isRelease then meta = with stdenv.lib; { homepage = http://www.rust-lang.org/; description = "A safe, concurrent, practical language"; - maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington ]; + maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington retrry ]; license = [ licenses.mit licenses.asl20 ]; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; }; snapshotHash = if stdenv.system == "i686-linux" @@ -166,7 +164,8 @@ with stdenv.lib; stdenv.mkDerivation { buildInputs = [ ncurses ] ++ optional (!forceBundledLLVM) llvmShared; - enableParallelBuilding = false; # missing files during linking, occasionally + # https://github.com/rust-lang/rust/issues/30181 + # enableParallelBuilding = false; # missing files during linking, occasionally outputs = [ "out" "doc" ]; setOutputFlags = false; diff --git a/pkgs/development/compilers/visual-c++/builder.sh b/pkgs/development/compilers/visual-c++/builder.sh deleted file mode 100644 index 5469f3760ca..00000000000 --- a/pkgs/development/compilers/visual-c++/builder.sh +++ /dev/null @@ -1,26 +0,0 @@ -source $stdenv/setup - -mkdir -p $out - -cabextract $src - -mkdir tmp -cd tmp -cabextract ../vcsetup1.cab -rm ../vc* # reduce temporary disk usage a bit - -while read target; do - read source - echo "$source -> $target" - mkdir -p $out/$(dirname $target) - cp -p "$source" $out/"$target" -done < $filemap - -# Make DLLs and executables executable. -find $out \( -iname "*.dll" -o -iname "*.exe" -o -iname "*.config" \) -print0 | xargs -0 chmod +x - -cat > $out/setup < m1 - # $ find -type f /path/to/visual-c++ -print0 | xargs -0 md5sum > m2 - # $ nixpkgs/maintainers/scripts/map-files.pl m1 m2 > filemap - filemap = ./filemap; - - buildInputs = [cabextract]; -} diff --git a/pkgs/development/compilers/visual-c++/filemap b/pkgs/development/compilers/visual-c++/filemap deleted file mode 100644 index 9f17745e737..00000000000 --- a/pkgs/development/compilers/visual-c++/filemap +++ /dev/null @@ -1,622 +0,0 @@ -./Common7/IDE/msobj80.dll -./FL_msobj71_dll_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/mspdb80.dll -./FL_mspdb71_dll_2_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/mspdbcore.dll -./FL_mspdbcore_dll_92167_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/mspdbsrv.exe -./FL_mspdbsrv_exe_92168_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/PEVerify.exe -./FL_PEVerify_exe_142183_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/PEVerify.exe.config -./FL_PEVerify_exe_config_142184________.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/PublicAssemblies/CppCodeProvider.dll -./FL_CppCodeProvider_dll_72654_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/PublicAssemblies/Microsoft.VisualC.VSCodeProvider.dll -./FL_Microsoft_VisualC_VSCodeProvider_dll_72653_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/PublicAssemblies/Microsoft.VisualStudio.VCCodeModel.dll -./Microsoft_VisualStudio_VCCodeModel_dll_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/PublicAssemblies/Microsoft.VisualStudio.VCCodeModel.xml -./FL_Microsoft_VisualStudio_VCCodeModel_xml_141601_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/PublicAssemblies/Microsoft.VisualStudio.VCProject.dll -./Microsoft_VisualStudio_VCProject_dll_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/PublicAssemblies/Microsoft.VisualStudio.VCProject.xml -./FL_Microsoft_VisualStudio_VCProject_xml_141602_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/PublicAssemblies/Microsoft.VisualStudio.VCProjectEngine.dll -./FL_Microsoft_VisualStudio_VCProjectEngine__72652_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/IDE/PublicAssemblies/Microsoft.VisualStudio.VCProjectEngine.xml -./FL_Microsoft_VisualStudio_VCProjectEngine__141603_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/Tools/errlook.exe -./FL_errlook_exe_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/Tools/errlook.hlp -./FL_errlook_hlp_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/Tools/makehm.exe -./FL_makehm_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./Common7/Tools/vcvars.txt -./FL_vcvars32_bat_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/AxImp.exe -./FL_AxImp_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/gacutil.exe -./FL_gacutil_exe_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/gacutil.exe.config -./FL_PEVerify_exe_config_142184________.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/lc.exe -./FL_lc_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/PEVerify.exe -./FL_PEVerify_exe_142183_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/PEVerify.exe.config -./FL_PEVerify_exe_config_142184________.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/ResGen.exe -./FL_ResGen_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/sgen.exe -./FL_sgen_exe_94980_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/signtool.exe -./FL_signtool_exe_102951_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/sn.exe -./FL_sn_exe_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/TlbExp.exe -./FL_TlbExp_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/TlbImp.exe -./TlbImp_exe_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/TlbRef.dll -./FL_TlbRef_dll_91955_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/wsdl.exe -./FL_wsdl_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/wsdl.exe.config -./FL_PEVerify_exe_config_142184________.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Bin/xsd.exe -./FL_xsd_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./SDK/v2.0/Lib/mscoree.lib -./mscoree_lib_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/1033/atlprovui.dll -./FL_atlprovui_dll_122786_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/1033/bscmakeui.dll -./FL_bscmakeui_dll_103043_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/1033/clui.dll -./FL_clui_dll_95594_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/1033/cvtresui.dll -./FL_cvtresui_dll_103020_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/1033/linkui.dll -./FL_linkui_dll_102968_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/1033/nmakeui.dll -./FL_nmakeui_dll_103025_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/atlprov.dll -./FL_atlprov_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/bscmake.exe -./FL_bscmake_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/c1.dll -./FL_c1_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/c1xx.dll -./FL_c1xx_dll_67102_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/c2.dll -./FL_c2_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/cl.exe -./FL_cl_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/cl.exe.config -./FL_xdcmake_exe_config_76491_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/cvtres.exe -./cvtres_exe_4_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/dumpbin.exe -./FL_dumpbin_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/editbin.exe -./FL_editbin_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/lib.exe -./FL_lib_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/link.exe -./FL_link_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/link.exe.config -./FL_xdcmake_exe_config_76491_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/nmake.exe -./FL_nmake_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/rc.exe -./rc_exe_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/rcdll.dll -./FL_rcdll_dll_66416_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/undname.exe -./FL_undname_exe_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/VCExpCmdPromptShortcut.txt -./FL_blank_txt_120872________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/vcvars32.bat -./vcvars32_bat_1________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/xdcmake.exe -./FL_xdcmake_exe_76490_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/bin/xdcmake.exe.config -./FL_xdcmake_exe_config_76491_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/delayhlp.cpp -./FL_delayhlp_cpp________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/intrin.h -./FL_intrin_h_106236_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/memory.h -./FL_memory_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/time.h -./FL_time_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/algorithm -./FL_algrithm________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/assert.h -./FL_assert_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/bitset -./FL_bitset________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cassert -./FL_cassert________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cctype -./FL_cctype________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cerrno -./FL_cerrno________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cfloat -./FL_cfloat________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/ciso646 -./FL_ciso646________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/climits -./FL_climits________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/clocale -./FL_clocale________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cmath -./FL_cmath________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/CodeAnalysis/sourceannotations.h -./FL_sourceannotations_h_126529________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/comdef.h -./FL_comdef_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/comdefsp.h -./FL_comdefsp_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/comip.h -./FL_comip_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/complex -./FL_complex________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/comutil.h -./FL_comutil_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/conio.h -./FL_conio_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/crtassem.h -./FL_crtassem_h_115581_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/crtdbg.h -./FL_crtdbg_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/crtdefs.h -./FL_crtdefs_h_92449_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/crtwrn.h -./FL_crtwrn_h_110314_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/csetjmp -./FL_csetjmp________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/csignal -./FL_csignal________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cstdarg -./FL_cstdarg________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cstddef -./FL_cstddef________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cstdio -./FL_cstdio________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cstdlib -./FL_cstdlib________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cstring -./FL_cstring________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/ctime -./FL_ctime________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/ctype.h -./FL_ctype_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cwchar -./FL_cwchar________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/cwctype -./FL_cwctype________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/dbgautoattach.h -./dbgautoattach_h_2________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/minmax.h -./FL_minmax_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/mm3dnow.h -./FL_mm3dnow_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/mmintrin.h -./FL_mmintrin_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/msclr/all.h -./FL_all_h_120615________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/msclr/appdomain.h -./FL_appdomain_h_120616________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/msclr/auto_gcroot.h -./FL_auto_gcroot_h_120617________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/msclr/auto_handle.h -./FL_auto_handle_h_120618________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/msclr/com/ptr.h -./FL_ptr_h_120621________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/msclr/event.h -./FL_event_h_122275________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/msclr/gcroot.h -./FL_gcroot_h_134688________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/msclr/lock.h -./FL_lock_h_120619________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/msclr/safebool.h -./FL_safebool_h_120620________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/new -./FL_new________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/new.h -./FL_new_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/numeric -./FL_numeric________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/ostream -./FL_ostream________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/penwin.h -./FL_penwin_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/process.h -./FL_process_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/queue -./FL_queue________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/rtcapi.h -./rtcapi_h_1________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/sal.h -./FL_sal_h_122276_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/search.h -./FL_search_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/set -./FL_set________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/setjmp.h -./FL_setjmp_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/setjmpex.h -./FL_setjmpex_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/share.h -./FL_share_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/signal.h -./FL_signal_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/sstream -./FL_sstream________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/stack -./FL_stack________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/stdarg.h -./FL_stdarg_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/stddef.h -./FL_stddef_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/stdexcept -./FL_stdxcept________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/stdexcpt.h -./FL_stdexcpt_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/stdio.h -./FL_stdio_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/stdlib.h -./FL_stdlib_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/streambuf -./FL_streambf________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/string -./FL_string________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/string.h -./FL_string_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/strstream -./FL_strstrem________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/swprintf.inl -./FL_swprintf_inl_114606_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/sys/locking.h -./locking_h_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/sys/stat.h -./stat_h_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/sys/stat.inl -./FL_stat_inl_73772_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/sys/timeb.h -./timeb_h_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/sys/timeb.inl -./FL_timeb_inl_73773_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/sys/types.h -./types_h_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/sys/utime.h -./utime_h_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/sys/utime.inl -./FL_utime_inl_73774_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/sys/wstat.inl -./FL_wstat_inl_73775_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/tchar.h -./FL_tchar_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/delayimp.h -./FL_delayimp_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/deque -./FL_deque________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/direct.h -./FL_direct_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/dos.h -./FL_dos_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/dvec.h -./FL_dvec_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/eh.h -./FL_eh_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/emmintrin.h -./FL_emmintrin_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/errno.h -./FL_errno_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/exception -./FL_xception________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/excpt.h -./FL_excpt_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/fcntl.h -./FL_fcntl_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/float.h -./FL_float_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/fpieee.h -./FL_fpieee_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/fstream -./FL_fstream________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/functional -./FL_fctional________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/fvec.h -./FL_fvec_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/gcroot.h -./FL_gcroot_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/hash_map -./FL_hash_map________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/hash_set -./FL_hash_set________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/time.inl -./FL_time_inl_73769_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/typeinfo -./FL_typeinfo________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/typeinfo.h -./FL_typeinfo_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/use_ansi.h -./FL_use_ansi_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/utility -./FL_utility________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/vadefs.h -./FL_vadefs_h_76352_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/valarray -./FL_valarray________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/varargs.h -./FL_varargs_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/vcclr.h -./FL_vcclr_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/vector -./FL_vector________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/wchar.h -./FL_wchar_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/wctype.h -./FL_wctype_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/wtime.inl -./FL_wtime_inl_73771_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xcomplex -./FL_xcomplex________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xdebug -./FL_xdebug________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xhash -./FL_xhash________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xiosbase -./FL_xiosbase________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xlocale -./FL_xlocale________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xlocinfo -./FL_xlocinfo________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xlocinfo.h -./FL_xlocinfo_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xlocmes -./FL_xlocmes________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xlocmon -./FL_xlocmon________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xlocnum -./FL_xlocnum________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xloctime -./FL_xloctime________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xmath.h -./FL_xmath_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xmemory -./FL_xmemory________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xmmintrin.h -./FL_xmmintrin_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xstddef -./FL_xstddef________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xstring -./FL_xstring________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xtree -./FL_xtree________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/xutility -./FL_xutility________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/ymath.h -./FL_ymath_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/yvals.h -./FL_yvals_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/_vcclrit.h -./FL__vcclrit_h_103662_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/invkprxy.h -./FL_invkprxy_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/io.h -./FL_io_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/iomanip -./FL_iomanip________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/ios -./FL_ios________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/iosfwd -./FL_iosfwd________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/iostream -./FL_iostream________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/iso646.h -./FL_iso646_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/istream -./FL_istream________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/iterator -./FL_iterator________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/ivec.h -./FL_ivec_h________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/limits -./FL_limits________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/limits.h -./FL_limits_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/list -./FL_list________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/listing.inc -./listing_inc_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/locale -./FL_locale________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/locale.h -./FL_locale_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/malloc.h -./FL_malloc_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/map -./FL_map________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/math.h -./FL_math_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/mbctype.h -./FL_mbctype_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/mbstring.h -./FL_mbstring_h_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/include/memory -./FL_memory________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/msvcprtd.lib -./FL_msvcprtd_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/binmode.obj -./FL_binmode_obj_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/chkstk.obj -./chkstk_obj_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/commode.obj -./FL_commode_obj_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/comsupp.lib -./FL_comsupp_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/comsuppd.lib -./comsuppd_lib_1_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/comsuppw.lib -./FL_comsuppw_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/comsuppwd.lib -./FL_comsuppwd_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/delayimp.lib -./FL_delayimp_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/fp10.obj -./FL_fp10_obj_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/invalidcontinue.obj -./FL_invalidcontinue_obj_117316_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/kernel32.lib -./FL_kernel32_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/libcmt.lib -./FL_libcmt_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/libcmt.pdb -./FL_libcmt_pdb_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/libcmtd.lib -./FL_libcmtd_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/libcmtd.pdb -./FL_libcmtd_pdb_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/libcpmt.lib -./FL_libcpmt_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/libcpmt.pdb -./FL_libcpmt_pdb_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/libcpmtd.lib -./FL_libcpmtd_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/libcpmtd.pdb -./FL_libcpmtd_pdb_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/libsmanifest.res -./FL_libsmanifest_res_111130________.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/loosefpmath.obj -./FL_loosefpmath_obj_106228_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/msvcmrt.lib -./FL_msvcmrt_lib_92271_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/msvcmrtd.lib -./FL_msvcmrtd_lib_92272_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/msvcprt.lib -./FL_msvcprt_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/msvcrt.lib -./FL_msvcrt_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/msvcrtd.lib -./FL_msvcrtd_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/msvcurt.lib -./FL_msvcurt_lib_102954_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/msvcurtd.lib -./FL_msvcurtd_lib_102955_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/newmode.obj -./FL_newmode_obj_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/noarg.obj -./FL_noarg_obj_126544_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/nochkclr.obj -./FL_nochkclr_obj_110315_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/noenv.obj -./FL_noenv_obj_126545_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/nothrownew.obj -./FL_nothrownew_obj_97867_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/oldnames.lib -./FL_oldnames_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/opends60.lib -./FL_opends60_lib_127616_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/pbinmode.obj -./FL_pbinmode_obj_125244_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/pcommode.obj -./FL_pcommode_obj_125245_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/pinvalidcontinue.obj -./FL_pinvalidcontinue_obj_125246_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/pnewmode.obj -./FL_pnewmode_obj_125247_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/pnoarg.obj -./FL_pnoarg_obj_125248_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/pnoenv.obj -./FL_pnoenv_obj_125249_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/pnothrownew.obj -./FL_pnothrownew_obj_125250_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/psetargv.obj -./FL_psetargv_obj_125251_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/pthreadlocale.obj -./FL_pthreadlocale_obj_125252_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/ptrustm.lib -./FL_ptrustm_lib_136980_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/ptrustmd.lib -./FL_ptrustmd_lib_136981_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/ptrustu.lib -./FL_ptrustu_lib_136982_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/ptrustud.lib -./FL_ptrustud_lib_136983_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/pwsetargv.obj -./FL_pwsetargv_obj_125253_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/RunTmChk.lib -./FL_RunTmChk_lib_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/setargv.obj -./FL_setargv_obj_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/smalheap.obj -./FL_smalheap_obj_126541_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/threadlocale.obj -./FL_threadlocale_obj_126542_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/lib/wsetargv.obj -./FL_wsetargv_obj_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/vcpackages/1033/vcbuildui.dll -./FL_vcbuildui_dll_113019_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/vcpackages/1033/VCProjectUI.dll -./FL_prjbldui_dll_ENU_X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/vcpackages/vcbuild.exe -./FL_vsbuild_exe_75031_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/vcpackages/VCProjectEngine.dll.config -./FL_VCProjectEngine_dll_config_93244_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/vcpackages/VCProjectEngine.Dll.Express.Config -./FL_VCProjectEngine_Dll_Express_Config_109708_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/ATLDynamic.vsprops -./FL_ATLDynamic_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/ATLNoCRT.vsprops -./FL_ATLNoCRT_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/ATLStatic.vsprops -./FL_ATLStatic_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/ATLWithCRT.vsprops -./FL_ATLWithCRT_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/BuildBsc.vsprops -./FL_BuildBsc_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/CoreWin.vsprops -./FL_CoreWin_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/corewin_express.vsprops -./FL_corewin_express_vsprops_104010_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/ManagedExtensions.vsprops -./FL_ManagedExtensions_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/ManagedExtensionsOldSyntax.vsprops -./FL_ManagedExtensionsOldSyntax_vsprops_103909_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/ManagedExtensionsPure.vsprops -./FL_ManagedExtensionsPure_vsprops_103907_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/ManagedExtensionsSafe.vsprops -./FL_ManagedExtensionsSafe_vsprops_103908_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/MfcDynamic.vsprops -./FL_MfcDynamic_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/MfcStatic.vsprops -./FL_MfcStatic_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/MultiByteCharSupport.vsprops -./FL_MultiByteCharSupport_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/pgoinstrument.vsprops -./FL_pgoinstrument_vsprops_92166_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/pgooptimize.vsprops -./FL_pgooptimize_vsprops_92165_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/pgoupdate.vsprops -./FL_pgoupdate_vsprops_92935_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/StaticAnalysis.vsprops -./FL_StaticAnalysis_vsprops_122128_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/UnicodeSupport.vsprops -./FL_UnicodeSupport_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/UpgradeFromVC60.vsprops -./FL_UpgradeFromVC60_vsprops_123105_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/UpgradeFromVC70.vsprops -./FL_UpgradeFromVC70_vsprops_123106_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/UpgradeFromVC71.vsprops -./FL_UpgradeFromVC71_vsprops_123107_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/VCMergeModules.xml -./FL_VCMergeModules_xml_120801_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/WholeProgOptimize.vsprops -./FL_WholeProgOptimize_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/VCProjectDefaults/WinDLL.vsprops -./FL_WinDLL_vcstyle_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 -./VC/vcvarsall.bat -./FL_vcvarsall_bat_103803________.3643236F_FC70_11D3_A536_0090278A1BB8 diff --git a/pkgs/development/compilers/visual-c++/test/builder.sh b/pkgs/development/compilers/visual-c++/test/builder.sh deleted file mode 100644 index c11ffc574a8..00000000000 --- a/pkgs/development/compilers/visual-c++/test/builder.sh +++ /dev/null @@ -1,6 +0,0 @@ -source $stdenv/setup -source $visualcpp/setup -source $windowssdk/setup - -mkdir -p $out/bin -cl "$(cygpath -w $src)" /Fe"$(cygpath -w $out/bin/hello.exe)" user32.lib diff --git a/pkgs/development/compilers/visual-c++/test/default.nix b/pkgs/development/compilers/visual-c++/test/default.nix deleted file mode 100644 index 9bb7d663d0e..00000000000 --- a/pkgs/development/compilers/visual-c++/test/default.nix +++ /dev/null @@ -1,10 +0,0 @@ -{stdenv, fetchurl, visualcpp, windowssdk}: - -assert stdenv.system == "i686-cygwin"; - -stdenv.mkDerivation { - name = "win32-hello"; - builder = ./builder.sh; - src = ./hello.c; - inherit visualcpp windowssdk; -} diff --git a/pkgs/development/compilers/visual-c++/test/hello.c b/pkgs/development/compilers/visual-c++/test/hello.c deleted file mode 100644 index 7c96d6441a9..00000000000 --- a/pkgs/development/compilers/visual-c++/test/hello.c +++ /dev/null @@ -1,7 +0,0 @@ -#include -int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInstance, LPSTR lpCmdLine, - int nCmdShow) -{ - MessageBox(NULL, "Hello World!", "Nix", MB_OK); - return 0; -} diff --git a/pkgs/development/erlang-modules/default.nix b/pkgs/development/erlang-modules/default.nix deleted file mode 100644 index f3adf18df0c..00000000000 --- a/pkgs/development/erlang-modules/default.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ stdenv, pkgs }: #? import {} }: - -let - self = rec { - hex = import ./hex-packages.nix { stdenv = stdenv; callPackage = self.callPackage; }; - callPackage = pkgs.lib.callPackageWith (pkgs // self // hex); - - buildRebar3 = callPackage ./build-rebar3.nix {}; - buildHex = callPackage ./build-hex.nix {}; - - ## Non hex packages - webdriver = callPackage ./webdriver {}; - }; -in self // self.hex diff --git a/pkgs/development/erlang-modules/hex-packages.nix b/pkgs/development/erlang-modules/hex-packages.nix deleted file mode 100644 index 0d1127b6c79..00000000000 --- a/pkgs/development/erlang-modules/hex-packages.nix +++ /dev/null @@ -1,3027 +0,0 @@ -/* hex-packages.nix is an auto-generated file -- DO NOT EDIT! */ - -/* Unbuildable packages: - - * active_0_9_0 - * amqp_client_3_5_6 - * aws_http_0_2_4 - * barrel_jiffy_0_14_4 - * barrel_jiffy_0_14_5 - * cache_tab_1_0_1 - * certifi_0_1_1 - * cet_0_2_1 - * cloudi_core_1_4_0_rc_4 - * cloudi_core_1_5_1 - * cloudi_service_api_requests_1_5_1 - * cloudi_service_db_1_5_1 - * cloudi_service_db_cassandra_1_3_3 - * cloudi_service_db_cassandra_cql_1_5_1 - * cloudi_service_db_couchdb_1_5_1 - * cloudi_service_db_elasticsearch_1_3_3 - * cloudi_service_db_http_elli_1_5_1 - * cloudi_service_db_memcached_1_5_1 - * cloudi_service_db_mysql_1_5_1 - * cloudi_service_db_pgsql_1_5_1 - * cloudi_service_db_riak_1_3_3 - * cloudi_service_db_tokyotyrant_1_5_0 - * cloudi_service_filesystem_1_5_1 - * cloudi_service_http_client_1_5_1 - * cloudi_service_http_cowboy_1_5_1 - * cloudi_service_http_rest_1_5_1 - * cloudi_service_map_reduce_1_5_1 - * cloudi_service_monitoring_1_5_1 - * cloudi_service_queue_1_5_1 - * cloudi_service_quorum_1_5_1 - * cloudi_service_router_1_5_1 - * cloudi_service_tcp_1_5_1 - * cloudi_service_timers_1_5_1 - * cloudi_service_udp_1_5_1 - * cloudi_service_validate_1_5_1 - * cloudi_service_zeromq_1_5_1 - * cmark_0_6_2 - * comeonin_2_0_1 - * conferl_0_0_1 - * couchbeam_1_2_1 - * cowboy_1_0_4 - * cpg_1_4_0 - * cpg_1_5_1 - * craterl_0_2_3 - * cucumberl_0_0_6 - * db_0_9_0 - * ddb_client_0_1_17 - * denrei_0_2_3 - * dproto_0_1_12 - * dqe_0_1_22 - * ekstat_0_2_2 - * elibphonenumber_0_1_1 - * elli_1_0_4 - * enotify_0_1_0 - * ensq_0_1_6 - * eplugin_0_1_4 - * epubnub_0_1_0 - * eredis_cluster_0_5_4 - * erlang_lua_0_1_0 - * erlastic_search_1_1_1 - * erlaudio_0_2_3 - * erlcloud_0_12_0 - * erltrace_0_1_4 - * escalus_2_6_4 - * ex_bitcask_0_1_0 - * ezmq_0_2_0 - * fast_tls_1_0_0 - * fast_xml_1_1_2 - * fast_yaml_1_0_1 - * fifo_utils_0_1_18 - * folsom_ddb_0_1_20 - * fqc_0_1_7 - * gpb_3_18_10 - * gpb_3_18_8 - * hackney_1_1_0 - * hackney_1_3_1 - * hackney_1_3_2 - * hackney_1_4_4 - * hackney_1_4_8 - * hash_ring_ex_1_1_2 - * jc_1_0_4 - * jose_1_4_2 - * jsx_2_7_2 - * jsxn_0_2_1 - * katipo_0_2_4 - * kvs_2_1_0 - * lager_2_1_1 - * lager_watchdog_0_1_10 - * lasp_0_0_3 - * libleofs_0_1_2 - * locker_1_0_8 - * mad_0_9_0 - * mcrypt_0_1_0 - * mdns_client_0_1_7 - * mdns_client_lib_0_1_33 - * mimerl_1_0_0 - * mmath_0_1_15 - * mmath_0_1_16 - * msgpack_0_4_0 - * mstore_0_1_9 - * n2o_2_3_0 - * nacl_0_3_0 - * neotoma_1_7_3 - * nodefinder_1_4_0 - * nodefinder_1_5_1 - * observer_cli_1_0_3 - * p1_stringprep_1_0_0 - * p1_utils_1_0_0 - * p1_utils_1_0_1 - * p1_utils_1_0_2 - * p1_utils_1_0_3 - * p1_xml_1_1_1 - * parse_trans_2_9_0 - * picosat_0_1_0 - * png_0_1_1 - * pooler_1_4_0 - * protobuffs_0_8_2 - * rankmatcher_0_1_2 - * rebar3_abnfc_plugin_0_1_0 - * rebar3_auto_0_3_0 - * rebar3_eqc_0_0_8 - * rebar3_exunit_0_1_1 - * rebar3_live_0_1_3 - * rebar3_neotoma_plugin_0_2_0 - * rebar3_proper_0_5_0 - * rebar3_proper_plugin_0_1_0 - * rebar3_protobuffs_0_2_0 - * rebar3_run_0_2_0 - * rebar3_yang_plugin_0_2_1 - * rebar_protobuffs_0_1_0 - * relflow_1_0_4 - * reup_0_1_0 - * riak_pb_2_1_0 - * riakc_2_1_1 - * service_1_5_1 - * sfmt_0_12_8 - * siphash_2_1_1 - * snappy_1_1_1 - * stun_1_0_0 - * syslog_1_0_2 - * ucol_nif_1_1_5 - * ui_0_1_1 - * uuid_erl_1_4_0 - * uuid_erl_1_5_1 - * xref_runner_0_2_5 - * yomel_0_5_0 - -*/ -{ stdenv, callPackage }: - -let - self = rec { - backoff_1_1_3 = callPackage - ( - { buildHex }: - buildHex { - name = "backoff"; - version = "1.1.3"; - sha256 = - "30cead738d20e4c8d36cd37857dd5e23aeba57cb868bf64766d47d371422bdff"; - - meta = { - description = "Exponential backoffs library"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ferd/backoff"; - }; - } - ) {}; - - backoff = backoff_1_1_3; - - barrel_ibrowse_4_2_0 = callPackage - ( - { buildHex }: - buildHex { - name = "barrel_ibrowse"; - version = "4.2.0"; - sha256 = - "58bd9e45932c10fd3d0ceb5c4e47952c3243ea300b388192761ac20be197b2ca"; - - meta = { - description = "Erlang HTTP client application"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/barrel-db/ibrowse"; - }; - } - ) {}; - - barrel_ibrowse = barrel_ibrowse_4_2_0; - - barrel_oauth_1_6_0 = callPackage - ( - { buildHex }: - buildHex { - name = "barrel_oauth"; - version = "1.6.0"; - sha256 = - "b2a800b771d45f32a9a55d416054b3bdfab3a925b62e8000f2c08b719390d4dd"; - - meta = { - description = "An Erlang OAuth 1.0 implementation"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/barrel-db/erlang-oauth"; - }; - } - ) {}; - - barrel_oauth = barrel_oauth_1_6_0; - - base16_1_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "base16"; - version = "1.0.0"; - sha256 = - "02afd0827e61a7b07093873e063575ca3a2b07520567c7f8cec7c5d42f052d76"; - - meta = { - description = "Base16 encoding and decoding"; - license = with stdenv.lib.licenses; [ bsd3 free ]; - homepage = "https://github.com/goj/base16"; - }; - } - ) {}; - - base16 = base16_1_0_0; - - base64url_0_0_1 = callPackage - ( - { buildHex }: - buildHex { - name = "base64url"; - version = "0.0.1"; - sha256 = - "fab09b20e3f5db886725544cbcf875b8e73ec93363954eb8a1a9ed834aa8c1f9"; - - meta = { - description = "URL safe base64-compatible codec"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dvv/base64url"; - }; - } - ) {}; - - base64url = base64url_0_0_1; - - bbmustache_1_0_4 = callPackage - ( - { buildHex }: - buildHex { - name = "bbmustache"; - version = "1.0.4"; - sha256 = - "03b0d47db66e86df993896dce7578d7e4aae5f84636809b45fa8a3e34ee59b12"; - - meta = { - description = - "Binary pattern match Based Mustache template engine for Erlang/OTP"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/soranoba/bbmustache"; - }; - } - ) {}; - - bbmustache_1_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "bbmustache"; - version = "1.1.0"; - sha256 = - "aa22469836bb8a9928ad741bdd2038d49116228bfbe0c2d6c792e1bdd4b256d9"; - - meta = { - description = - "Binary pattern match Based Mustache template engine for Erlang/OTP"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/soranoba/bbmustache"; - }; - } - ) {}; - - bbmustache = bbmustache_1_1_0; - - bear_0_8_3 = callPackage - ( - { buildHex }: - buildHex { - name = "bear"; - version = "0.8.3"; - sha256 = - "0a04ce4702e00e0a43c0fcdd63e38c9c7d64dceb32b27ffed261709e7c3861ad"; - - meta = { - description = "Statistics functions for Erlang"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/puzza007/bear"; - }; - } - ) {}; - - bear = bear_0_8_3; - - bstr_0_3_0 = callPackage - ( - { buildHex }: - buildHex { - name = "bstr"; - version = "0.3.0"; - sha256 = - "0fb4e05619663d48dabcd21023915741277ba392f2a5710dde7ab6034760284d"; - - meta = { - description = "Erlang library that uses binaries as strings"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/jcomellas/bstr"; - }; - } - ) {}; - - bstr = bstr_0_3_0; - - certifi_0_3_0 = callPackage - ( - { buildHex }: - buildHex { - name = "certifi"; - version = "0.3.0"; - sha256 = - "42ae85fe91c038a634a5fb8d0c77f4fc581914c508f087c7138e9366a1517f6a"; - - meta = { - description = "An OTP library"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/certifi/erlang-certifi"; - }; - } - ) {}; - - certifi = certifi_0_3_0; - - cf_0_1_2 = callPackage - ( - { buildHex }: - buildHex { - name = "cf"; - version = "0.1.2"; - sha256 = - "c86f56bca74dd3616057b28574d920973fe665ecb064aa458dc6a2447f3f4924"; - - meta = { - description = "Terminal colour helper"; - license = stdenv.lib.licenses.mit; - }; - } - ) {}; - - cf_0_2_1 = callPackage - ( - { buildHex }: - buildHex { - name = "cf"; - version = "0.2.1"; - sha256 = - "baee9aa7ec2dfa3cb4486b67211177caa293f876780f0b313b45718edef6a0a5"; - - meta = { - description = "Terminal colour helper"; - license = stdenv.lib.licenses.mit; - }; - } - ) {}; - - cf = cf_0_2_1; - - cowlib_1_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "cowlib"; - version = "1.0.0"; - sha256 = - "4dacd60356177ec8cf93dbff399de17435b613f3318202614d3d5acbccee1474"; - - meta = { - description = "Support library for manipulating Web protocols"; - license = stdenv.lib.licenses.isc; - homepage = "https://github.com/ninenines/cowlib"; - }; - } - ) {}; - - cowlib_1_0_2 = callPackage - ( - { buildHex }: - buildHex { - name = "cowlib"; - version = "1.0.2"; - sha256 = - "db622da03aa039e6366ab953e31186cc8190d32905e33788a1acb22744e6abd2"; - - meta = { - description = "Support library for manipulating Web protocols"; - license = stdenv.lib.licenses.isc; - homepage = "https://github.com/ninenines/cowlib"; - }; - } - ) {}; - - cowlib_1_3_0 = callPackage - ( - { buildHex }: - buildHex { - name = "cowlib"; - version = "1.3.0"; - sha256 = - "2b1ac020ec92e7a59cb7322779870c2d3adc7c904ecb3b9fa406f04dc9816b73"; - - meta = { - description = "Support library for manipulating Web protocols"; - license = stdenv.lib.licenses.isc; - homepage = "https://github.com/ninenines/cowlib"; - }; - } - ) {}; - - cowlib = cowlib_1_3_0; - - crc_0_3_0 = callPackage - ( - { buildHex }: - buildHex { - name = "crc"; - version = "0.3.0"; - sha256 = - "23d7cb6a18cca461f46f5a0f341c74fd0a680cdae62460687f1a24f0a7faabd4"; - - meta = { - description = - "A library used to calculate CRC checksums for binary data"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/TattdCodeMonkey/crc"; - }; - } - ) {}; - - crc = crc_0_3_0; - - crypto_rsassa_pss_1_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "crypto_rsassa_pss"; - version = "1.0.0"; - sha256 = - "d8f48874dbef940a8954126249499714e702d8ae0a8f23230a6c2f4a92833313"; - - meta = { - description = - "RSASSA-PSS Public Key Cryptographic Signature Algorithm for Erlang"; - license = stdenv.lib.licenses.free; - homepage = - "https://github.com/potatosalad/erlang-crypto_rsassa_pss"; - }; - } - ) {}; - - crypto_rsassa_pss = crypto_rsassa_pss_1_0_0; - - cth_readable_1_2_0 = callPackage - ( - { buildHex, cf_0_2_1 }: - buildHex { - name = "cth_readable"; - version = "1.2.0"; - sha256 = - "41dee2a37e0f266c590b3ea9542ca664e84ebc781a3949115eba658afc08026d"; - - erlangDeps = [ cf_0_2_1 ]; - - meta = { - description = "Common Test hooks for more readable logs"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/ferd/cth_readable"; - }; - } - ) {}; - - cth_readable = cth_readable_1_2_0; - - detergent_0_3_0 = callPackage - ( - { buildHex }: - buildHex { - name = "detergent"; - version = "0.3.0"; - sha256 = - "510cfb5d35b4b344762f074b73c8696b4bdde654ea046b3365cf92760ae33362"; - - meta = { - description = "An emulsifying Erlang SOAP library"; - license = with stdenv.lib.licenses; [ unlicense bsd3 ]; - homepage = "https://github.com/devinus/detergent"; - }; - } - ) {}; - - detergent = detergent_0_3_0; - - dflow_0_1_5 = callPackage - ( - { buildHex }: - buildHex { - name = "dflow"; - version = "0.1.5"; - sha256 = - "f08e73f22d4c620ef5f358a0b40f8fe3b91219ca3922fbdbe7e42f1cb58f737e"; - - meta = { - description = "Pipelined flow processing engine"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dalmatinerdb/dflow"; - }; - } - ) {}; - - dflow = dflow_0_1_5; - - discount_0_7_0 = callPackage - ( - { buildHex }: - buildHex { - name = "discount"; - version = "0.7.0"; - sha256 = - "a37b7890620f93aa2fae06eee364cd906991588bc8897e659f51634179519c97"; - - meta = { - description = "Elixir NIF for discount, a Markdown parser"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/asaaki/discount.ex"; - }; - } - ) {}; - - discount = discount_0_7_0; - - dynamic_compile_1_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "dynamic_compile"; - version = "1.0.0"; - sha256 = - "eb73d8e9a6334914f79c15ee8214acad9659c42222d49beda3e8b6f6789a980a"; - - meta = { - description = - "compile and load erlang modules from string input"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/okeuday/dynamic_compile"; - }; - } - ) {}; - - dynamic_compile = dynamic_compile_1_0_0; - - econfig_0_7_1 = callPackage - ( - { buildHex }: - buildHex { - name = "econfig"; - version = "0.7.1"; - sha256 = - "b11d68e3d288b5cb4bd34e668e03176c4ea42790c09f1f449cdbd46a649ea7f3"; - - meta = { - description = "simple Erlang config handler using INI files"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/benoitc/econfig"; - }; - } - ) {}; - - econfig = econfig_0_7_1; - - edown_0_7_0 = callPackage - ( - { buildHex }: - buildHex { - name = "edown"; - version = "0.7.0"; - sha256 = - "6d7365a7854cd724e8d1fd005f5faa4444eae6a87eb6df9b789b6e7f6f09110a"; - - meta = { - description = "Markdown generated from Edoc"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/uwiger/edown"; - }; - } - ) {}; - - edown = edown_0_7_0; - - elixir_ale_0_4_1 = callPackage - ( - { buildHex }: - buildHex { - name = "elixir_ale"; - version = "0.4.1"; - sha256 = - "2ee5c6989a8005a0ab8f1aea0b4f89b5feae75be78a70bade6627c3624c59c46"; - - meta = { - description = - "Elixir access to hardware I/O interfaces such as GPIO, I2C, and SPI."; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/fhunleth/elixir_ale"; - }; - } - ) {}; - - elixir_ale = elixir_ale_0_4_1; - - eper_0_94_0 = callPackage - ( - { buildHex }: - buildHex { - name = "eper"; - version = "0.94.0"; - sha256 = - "8d853792fa61a7fd068fe9c113a8a44bc839e11ad70cb8d5d2884566e3bede39"; - - meta = { - longDescription = ''Erlang Performance and Debugging Tools sherk - - a profiler, similar to Linux oprofile or MacOs - shark gperf - a graphical performance monitor; - shows CPU, memory and network usage dtop - - similar to unix top redbug- similar to the OTP - dbg application, but safer, better etc.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/massemanet/eper"; - }; - } - ) {}; - - eper = eper_0_94_0; - - epgsql_3_1_1 = callPackage - ( - { buildHex }: - buildHex { - name = "epgsql"; - version = "3.1.1"; - sha256 = - "4b3f478ad090aed7200b2a8c9f2d5ef45c3aaa167be896b5237bba4b40f461d8"; - - meta = { - description = "PostgreSQL Client"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/epgsql/epgsql"; - }; - } - ) {}; - - epgsql = epgsql_3_1_1; - - episcina_1_1_0 = callPackage - ( - { buildHex, gproc_0_3_1 }: - buildHex { - name = "episcina"; - version = "1.1.0"; - sha256 = - "16238717bfbc8cb226342f6b098bb1fafb48c7547265a10ad3e6e83899abc46f"; - - erlangDeps = [ gproc_0_3_1 ]; - - meta = { - description = "Erlang Connection Pool"; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - episcina = episcina_1_1_0; - - eql_0_1_2 = callPackage - ( - { buildHex }: - buildHex { - name = "eql"; - version = "0.1.2"; - sha256 = - "3b1a85c491d44262802058c0de97a2c90678d5d45851b88a076b1a45a8d6d4b3"; - - meta = { - description = "Erlang with SQL"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/artemeff/eql"; - }; - } - ) {}; - - eql = eql_0_1_2; - - eredis_1_0_8 = callPackage - ( - { buildHex }: - buildHex { - name = "eredis"; - version = "1.0.8"; - sha256 = - "f303533e72129b264a2d8217c4ddc977c7527ff4b8a6a55f92f62b7fcc099334"; - - meta = { - description = "Erlang Redis client"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/wooga/eredis"; - }; - } - ) {}; - - eredis = eredis_1_0_8; - - erlang_term_1_4_0 = callPackage - ( - { buildHex }: - buildHex { - name = "erlang_term"; - version = "1.4.0"; - sha256 = - "1a4d491dbd13b7a714815af10fc658948a5a440de23755a32b741ca07d8ba592"; - - meta = { - description = "Provide the in-memory size of Erlang terms"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/erlang_term"; - }; - } - ) {}; - - erlang_term_1_5_1 = callPackage - ( - { buildHex }: - buildHex { - name = "erlang_term"; - version = "1.5.1"; - sha256 = - "88bae81a80306e82fd3fc43e2d8228049e666f3cfe4627687832cd7edb878e06"; - - meta = { - description = "Provide the in-memory size of Erlang terms"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/erlang_term"; - }; - } - ) {}; - - erlang_term = erlang_term_1_5_1; - - erlang_version_0_2_0 = callPackage - ( - { buildHex }: - buildHex { - name = "erlang_version"; - version = "0.2.0"; - sha256 = - "74daddba65a247ec57913e5de8f243af42bbbc3d6a0c411a1252da81c09ae661"; - - meta = { - description = "Retrieve Erlang/OTP version like `18.1'"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/sapporo-beam/erlang_version"; - }; - } - ) {}; - - erlang_version = erlang_version_0_2_0; - - erlcloud_0_11_0 = callPackage - ( - { buildHex, jsx_2_6_2, lhttpc_1_3_0, meck_0_8_3 }: - buildHex { - name = "erlcloud"; - version = "0.11.0"; - sha256 = - "ca9876dab57ed8fb5fb75ab6ce11e59a346387d357d7a038a2e18d1d31a30716"; - - erlangDeps = [ jsx_2_6_2 lhttpc_1_3_0 meck_0_8_3 ]; - - meta = { - description = "Cloud Computing library for erlang"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/gleber/erlcloud"; - }; - } - ) {}; - - erldn_1_0_2 = callPackage - ( - { buildHex }: - buildHex { - name = "erldn"; - version = "1.0.2"; - sha256 = - "51a721f1aac9c5fcc6abb0fa156a97ac8e033ee7cbee1624345ec6e47dfe0aa0"; - - meta = { - description = "An edn parser for the Erlang platform. -"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/marianoguerra/erldn"; - }; - } - ) {}; - - erldn = erldn_1_0_2; - - erlexec_1_0_1 = callPackage - ( - { buildHex }: - buildHex { - name = "erlexec"; - version = "1.0.1"; - sha256 = - "eb1e11f16288db4ea35af08503eabf1250d5540c1e8bd35ba04312f5f703e14f"; - compilePorts = true; - - meta = { - description = "OS Process Manager"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/saleyn/erlexec"; - }; - } - ) {}; - - erlexec = erlexec_1_0_1; - - erlsh_0_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "erlsh"; - version = "0.1.0"; - sha256 = - "94ef1492dd59fef211f01ffd40c47b6e51c0f59e2a3d0739366e4890961332d9"; - compilePorts = true; - - meta = { - longDescription = ''Family of functions and ports involving - interacting with the system shell, paths and - external programs.''; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - erlsh = erlsh_0_1_0; - - erlsom_1_2_1 = callPackage - ( - { buildHex }: - buildHex { - name = "erlsom"; - version = "1.2.1"; - sha256 = - "e8f4d1d83583df7d1db8346aa30b82a6599b93fcc4b2d9165007e02ed40e7cae"; - - meta = { - description = "erlsom XSD parser"; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - erlsom = erlsom_1_2_1; - - erlware_commons_0_18_0 = callPackage - ( - { buildHex, cf_0_2_1 }: - buildHex { - name = "erlware_commons"; - version = "0.18.0"; - sha256 = - "e71dda7cd5dcf34c9d07255d49c67e1d229dd230c101fdb996820bcdb5b03c49"; - - erlangDeps = [ cf_0_2_1 ]; - - meta = { - description = "Additional standard library for Erlang"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/erlware/erlware_commons"; - }; - } - ) {}; - - erlware_commons = erlware_commons_0_18_0; - - erlzk_0_6_1 = callPackage - ( - { buildHex }: - buildHex { - name = "erlzk"; - version = "0.6.1"; - sha256 = - "6bba045ad0b7beb566825b463ada2464929655ce01e291022c1efed81a674759"; - - meta = { - description = "A Pure Erlang ZooKeeper Client (no C dependency)"; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/huaban/erlzk"; - }; - } - ) {}; - - erlzk = erlzk_0_6_1; - - esel_0_1_2 = callPackage - ( - { buildHex }: - buildHex { - name = "esel"; - version = "0.1.2"; - sha256 = - "874d1775c86d27d9e88486a37351ffc09f826ef062c8ea211e65d08e103f946c"; - - meta = { - description = "An wrapper around openssl"; - license = stdenv.lib.licenses.mit; - }; - } - ) {}; - - esel = esel_0_1_2; - - esqlite_0_2_1 = callPackage - ( - { buildHex }: - buildHex { - name = "esqlite"; - version = "0.2.1"; - sha256 = - "79f2d1d05e6e29e50228af794dac8900ce47dd60bc11fbf1279f924f83752689"; - compilePorts = true; - - meta = { - description = "A Sqlite3 NIF"; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/mmzeeman/esqlite"; - }; - } - ) {}; - - esqlite = esqlite_0_2_1; - - eunit_formatters_0_3_1 = callPackage - ( - { buildHex }: - buildHex { - name = "eunit_formatters"; - version = "0.3.1"; - sha256 = - "64a40741429b7aff149c605d5a6135a48046af394a7282074e6003b3b56ae931"; - - meta = { - description = "Better output for eunit suites"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/seancribbs/eunit_formatters"; - }; - } - ) {}; - - eunit_formatters = eunit_formatters_0_3_1; - - exec_1_0_1 = callPackage - ( - { buildHex }: - buildHex { - name = "exec"; - version = "1.0.1"; - sha256 = - "87c7ef2dea2bb503bb0eec8cb34776172999aecc6e12d90f7629796a7a3ccb1f"; - compilePorts = true; - - meta = { - description = "OS Process Manager"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/saleyn/erlexec"; - }; - } - ) {}; - - exec = exec_1_0_1; - - exmerl_0_1_1 = callPackage - ( - { buildHex }: - buildHex { - name = "exmerl"; - version = "0.1.1"; - sha256 = - "4bb5d6c1863c5e381b460416c9b517a211db9abd9abf0f32c99b07e128b842aa"; - - meta = { - description = - "An Elixir wrapper for parsing XML through the xmerl_* suite of modules -"; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/pwoolcoc/exmerl"; - }; - } - ) {}; - - exmerl = exmerl_0_1_1; - - feeder_2_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "feeder"; - version = "2.0.0"; - sha256 = - "9780c5f032d3480cf7d9fd71d3f0c5f73211e0d3a8d9cdabcb1327b3a4ff758e"; - - meta = { - description = "Stream parse RSS and Atom formatted XML feeds. -"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/michaelnisi/feeder"; - }; - } - ) {}; - - feeder = feeder_2_0_0; - - fn_1_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "fn"; - version = "1.0.0"; - sha256 = - "1433b353c8739bb28ac0d6826c9f6a05033f158e8c8195faf01a863668b3bbc7"; - - meta = { - description = "More functional Erlang"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/artemeff/fn"; - }; - } - ) {}; - - fn = fn_1_0_0; - - folsom_0_8_3 = callPackage - ( - { buildHex, bear_0_8_3 }: - buildHex { - name = "folsom"; - version = "0.8.3"; - sha256 = - "afaa1ea4cd2a10a32242ac5d76fa7b17e98d202883859136b791d9a383b26820"; - - erlangDeps = [ bear_0_8_3 ]; - - meta = { - description = "Erlang based metrics system"; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - folsom = folsom_0_8_3; - - folsomite_1_2_8 = callPackage - ( - { buildHex, folsom_0_8_3 }: - buildHex { - name = "folsomite"; - version = "1.2.8"; - sha256 = - "9ce64603cdffb8ad55e950142146b3fe05533020906a81aa9c2f524635d813dc"; - - erlangDeps = [ folsom_0_8_3 ]; - - meta = { - description = "Blow up your Graphite server with Folsom metrics"; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - folsomite = folsomite_1_2_8; - - fqc_0_1_5 = callPackage - ( - { buildHex }: - buildHex { - name = "fqc"; - version = "0.1.5"; - sha256 = - "47536dec351a12e1cbe0bc3b52bfff3b0690b0aec660472b5cf49f812eb9aa4f"; - - meta = { - description = "FiFo EQC helper"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/project-fifo/fqc"; - }; - } - ) {}; - - fs_0_9_2 = callPackage - ( - { buildHex }: - buildHex { - name = "fs"; - version = "0.9.2"; - sha256 = - "9a00246e8af58cdf465ae7c48fd6fd7ba2e43300413dfcc25447ecd3bf76f0c1"; - compilePorts = true; - - meta = { - description = "Erlang FileSystem Listener"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/synrc/fs"; - }; - } - ) {}; - - fs = fs_0_9_2; - - fuse_2_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "fuse"; - version = "2.0.0"; - sha256 = - "e2c55c0629ce418974165a65b342e54527333303d7e9c1f0493679144c9698cb"; - - meta = { - description = "A Circuit breaker implementation for Erlang"; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - fuse = fuse_2_0_0; - - gen_listener_tcp_0_3_2 = callPackage - ( - { buildHex }: - buildHex { - name = "gen_listener_tcp"; - version = "0.3.2"; - sha256 = - "b3c3fbc525ba2b32d947b06811d38470d5b0abe2ca81b623192a71539ed22336"; - - meta = { - description = "Generic TCP Server"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/travelping/gen_listener_tcp"; - }; - } - ) {}; - - gen_listener_tcp = gen_listener_tcp_0_3_2; - - gen_smtp_0_9_0 = callPackage - ( - { buildHex }: - buildHex { - name = "gen_smtp"; - version = "0.9.0"; - sha256 = - "5a05f23a7cbe0c6242d290b445c6bbc0c287e3d0e09d3fcdc6bcd2c8973b6688"; - - meta = { - longDescription = ''A generic Erlang SMTP server framework that - can be extended via callback modules in the OTP - style. ''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/Vagabond/gen_smtp"; - }; - } - ) {}; - - gen_smtp = gen_smtp_0_9_0; - - getopt_0_8_2 = callPackage - ( - { buildHex }: - buildHex { - name = "getopt"; - version = "0.8.2"; - sha256 = - "736e6db3679fbbad46373efb96b69509f8e420281635e9d92989af9f0a0483f7"; - - meta = { - description = "Command-line options parser for Erlang"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/jcomellas/getopt"; - }; - } - ) {}; - - getopt = getopt_0_8_2; - - goldrush_0_1_7 = callPackage - ( - { buildHex }: - buildHex { - name = "goldrush"; - version = "0.1.7"; - sha256 = - "a94a74cd363ce5f4970ed8242c551ec62b71939db1bbfd2e030142cab25a4ffe"; - - meta = { - description = - "Small, Fast event processing and monitoring for Erlang/OTP applications. -"; - license = stdenv.lib.licenses.isc; - homepage = "https://github.com/DeadZen/goldrush"; - }; - } - ) {}; - - goldrush = goldrush_0_1_7; - - gproc_0_3_1 = callPackage - ( - { buildHex }: - buildHex { - name = "gproc"; - version = "0.3.1"; - sha256 = - "3c449925a5cbf57cc40d13c6c282bc1080b5ed3bad97e1acdbe969fd63a65fce"; - - meta = { - longDescription = ''Gproc is a process dictionary for Erlang, - which provides a number of useful features - beyond what the built-in dictionary has: * Use - any term as a process alias * Register a process - under several aliases * Non-unique properties - can be registered simultaneously by many - processes * QLC and match specification - interface for efficient queries on the - dictionary * Await registration, let's you wait - until a process registers itself * Atomically - give away registered names and properties to - another process * Counters, and aggregated - counters, which automatically maintain the total - of all counters with a given name * Global - registry, with all the above functions applied - to a network of nodes''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/uwiger/gproc"; - }; - } - ) {}; - - gproc_0_5_0 = callPackage - ( - { buildHex }: - buildHex { - name = "gproc"; - version = "0.5.0"; - sha256 = - "5bc0fa4e999a6665b92ce57a7f12d7e9d1c26bfc39b0f657994be05cd3818b18"; - - meta = { - longDescription = ''Gproc is a process dictionary for Erlang, - which provides a number of useful features - beyond what the built-in dictionary has: * Use - any term as a process alias * Register a process - under several aliases * Non-unique properties - can be registered simultaneously by many - processes * QLC and match specification - interface for efficient queries on the - dictionary * Await registration, let's you wait - until a process registers itself * Atomically - give away registered names and properties to - another process * Counters, and aggregated - counters, which automatically maintain the total - of all counters with a given name * Global - registry, with all the above functions applied - to a network of nodes''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/uwiger/gproc"; - }; - } - ) {}; - - gproc = gproc_0_5_0; - - gurka_0_1_7 = callPackage - ( - { buildHex }: - buildHex { - name = "gurka"; - version = "0.1.7"; - sha256 = - "b46c96446f46a53411a3b45d126ec19e724178818206ca1d2dd16abff28df6b5"; - - meta = { - description = "Erlang implementation of Cucumber"; - license = stdenv.lib.licenses.mit; - }; - } - ) {}; - - gurka = gurka_0_1_7; - - hamcrest_0_1_1 = callPackage - ( - { buildHex }: - buildHex { - name = "hamcrest"; - version = "0.1.1"; - sha256 = - "5207b83e8d3168b9cbbeb3b4c4d83817a38a05f55478510e9c4db83ef83fa0ca"; - - meta = { - description = "Erlang port of Hamcrest"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/hyperthunk/hamcrest-erlang"; - }; - } - ) {}; - - hamcrest = hamcrest_0_1_1; - - hlc_2_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "hlc"; - version = "2.0.0"; - sha256 = - "460ac04654e920e068d1fd17aec1f78b1879cc42ac7f3def7497f0d1cc5056ad"; - - meta = { - description = "hybrid logical clock"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/barrel-db/hlc"; - }; - } - ) {}; - - hlc = hlc_2_0_0; - - hooks_1_1_1 = callPackage - ( - { buildHex }: - buildHex { - name = "hooks"; - version = "1.1.1"; - sha256 = - "6834ad3a2a624a5ffd49e9cb146ff49ded423b67f31905b122d24128c72c5c85"; - - meta = { - description = "generic plugin & hook system"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/barrel-db/hooks"; - }; - } - ) {}; - - hooks = hooks_1_1_1; - - http_signature_1_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "http_signature"; - version = "1.1.0"; - sha256 = - "3e6036d9c29289ed0e35dd6f41821dec9061ce20aad3c4d35dcbae8c84eb3baa"; - - meta = { - description = - "Erlang and Elixir implementations of Joyent's HTTP Signature Scheme."; - license = stdenv.lib.licenses.free; - homepage = - "https://github.com/potatosalad/erlang-http_signature"; - }; - } - ) {}; - - http_signature = http_signature_1_1_0; - - ibrowse_4_2_2 = callPackage - ( - { buildHex }: - buildHex { - name = "ibrowse"; - version = "4.2.2"; - sha256 = - "b800cb7442bcc852c6832821e9d0a7098ff626e1415bddaeff4596640b31c0ae"; - - meta = { - description = "Erlang HTTP client application"; - license = with stdenv.lib.licenses; [ free bsd3 ]; - homepage = "https://github.com/cmullaparthi/ibrowse"; - }; - } - ) {}; - - ibrowse = ibrowse_4_2_2; - - idna_1_0_2 = callPackage - ( - { buildHex }: - buildHex { - name = "idna"; - version = "1.0.2"; - sha256 = - "a5d645e307aa4f67efe31682f720b7eaf431ab148b3d6fb66cbaf6314499610f"; - - meta = { - description = "A pure Erlang IDNA implementation"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/benoitc/erlang-idna"; - }; - } - ) {}; - - idna_1_0_3 = callPackage - ( - { buildHex }: - buildHex { - name = "idna"; - version = "1.0.3"; - sha256 = - "357d489a51112db4f216034406834f9172b3c0ff5a12f83fb28b25ca271541d1"; - - meta = { - description = "A pure Erlang IDNA implementation"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/benoitc/erlang-idna"; - }; - } - ) {}; - - idna = idna_1_0_3; - - inaka_aleppo_0_9_6 = callPackage - ( - { buildHex }: - buildHex { - name = "inaka_aleppo"; - version = "0.9.6"; - sha256 = - "774171dc84a300f63a15fe732773edf535d7414286890e961e754f1f794dbc85"; - - meta = { - description = "Aleppo: ALternative Erlang Pre-ProcessOr"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/inaka/aleppo"; - }; - } - ) {}; - - inaka_aleppo = inaka_aleppo_0_9_6; - - inaka_mixer_0_1_5 = callPackage - ( - { buildHex }: - buildHex { - name = "inaka_mixer"; - version = "0.1.5"; - sha256 = - "37af35b1c17a94a0cb643cba23cba2ca68d6fe51c3ad8337629d4c3c017cc912"; - - meta = { - description = "Mix in public functions from external modules"; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/inaka/mixer"; - }; - } - ) {}; - - inaka_mixer = inaka_mixer_0_1_5; - - jiffy_0_14_7 = callPackage - ( - { buildHex }: - buildHex { - name = "jiffy"; - version = "0.14.7"; - sha256 = - "2b3b0f7976dae9c8266036e0d7e0398b64ac5207e3beee4c57896e44b2c17e97"; - compilePorts = true; - - meta = { - description = "JSON Decoder/Encoder"; - license = with stdenv.lib.licenses; [ mit bsd3 ]; - homepage = "https://github.com/davisp/jiffy"; - }; - } - ) {}; - - jiffy = jiffy_0_14_7; - - jsone_1_2_0 = callPackage - ( - { buildHex }: - buildHex { - name = "jsone"; - version = "1.2.0"; - sha256 = - "a60e74284d3a923cde65c00a39dd4542fd7da7c22e8385c0378ad419c54b2e08"; - - meta = { - description = "Erlang JSON Library"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/sile/jsone"; - }; - } - ) {}; - - jsone = jsone_1_2_0; - - jsx_1_4_5 = callPackage - ( - { buildHex }: - buildHex { - name = "jsx"; - version = "1.4.5"; - sha256 = - "ff5115611c5dd789cebe3addc07d18b86340f701c52ad063caba6fe8da3a489b"; - - meta = { - longDescription = ''an erlang application for consuming, - producing and manipulating json. inspired by - yajl''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/talentdeficit/jsx"; - }; - } - ) {}; - - jsx_2_2_0 = callPackage - ( - { buildHex }: - buildHex { - name = "jsx"; - version = "2.2.0"; - sha256 = - "d0bbc1ef47fd2fed84e28faed66918cf9eceed03b7ded48a23076e716fdbc84f"; - - meta = { - longDescription = ''an erlang application for consuming, - producing and manipulating json. inspired by - yajl''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/talentdeficit/jsx"; - }; - } - ) {}; - - jsx_2_6_2 = callPackage - ( - { buildHex }: - buildHex { - name = "jsx"; - version = "2.6.2"; - sha256 = - "6bfccb6461cc3c7d5cc63f3e69ffeb2f1f8de50eca5980065311c056a69a907f"; - - meta = { - longDescription = ''an erlang application for consuming, - producing and manipulating json. inspired by - yajl''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/talentdeficit/jsx"; - }; - } - ) {}; - - jsx_2_7_1 = callPackage - ( - { buildHex }: - buildHex { - name = "jsx"; - version = "2.7.1"; - sha256 = - "52d0e8bda0c8624bc59c3119236eb49bb66289702ea3d59ad76fd2a56cdf9089"; - - meta = { - longDescription = ''an erlang application for consuming, - producing and manipulating json. inspired by - yajl''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/talentdeficit/jsx"; - }; - } - ) {}; - - jsx_2_8_0 = callPackage - ( - { buildHex }: - buildHex { - name = "jsx"; - version = "2.8.0"; - sha256 = - "a8ba15d5bac2c48b2be1224a0542ad794538d79e2cc16841a4e24ca75f0f8378"; - - meta = { - longDescription = ''an erlang application for consuming, - producing and manipulating json. inspired by - yajl''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/talentdeficit/jsx"; - }; - } - ) {}; - - jsx = jsx_2_8_0; - - jsxd_0_1_10 = callPackage - ( - { buildHex }: - buildHex { - name = "jsxd"; - version = "0.1.10"; - sha256 = - "f71a8238f08a1dee130e8959ff5343524891fa6531392667a5b911cead5f5082"; - - meta = { - description = - "jsx data structire traversing and modification library."; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/Licenser/jsxd"; - }; - } - ) {}; - - jsxd = jsxd_0_1_10; - - jwalk_1_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "jwalk"; - version = "1.1.0"; - sha256 = - "10c150910ba3539583887cb2b5c3f70d602138471e6f6b5c22498aa18ed654e1"; - - meta = { - longDescription = ''Helper module for working with Erlang - proplist, map, EEP-18 and mochijson-style - representations of JSON''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jr0senblum/jwalk"; - }; - } - ) {}; - - jwalk = jwalk_1_1_0; - - jwt_0_1_1 = callPackage - ( - { buildHex, base64url_0_0_1, jsx_2_8_0 }: - buildHex { - name = "jwt"; - version = "0.1.1"; - sha256 = - "abcff4a2a42af2b7b7bdf55eeb2b73ce2e3bef760750004e74bc5835d64d2188"; - - erlangDeps = [ base64url_0_0_1 jsx_2_8_0 ]; - - meta = { - description = "Erlang JWT library"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/artemeff/jwt"; - }; - } - ) {}; - - jwt = jwt_0_1_1; - - key2value_1_4_0 = callPackage - ( - { buildHex }: - buildHex { - name = "key2value"; - version = "1.4.0"; - sha256 = - "ad63453fcf54ab853581b78c6d2df56be41ea691ba4bc05920264c19f35a0ded"; - - meta = { - description = "Erlang 2-way Map"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/key2value"; - }; - } - ) {}; - - key2value_1_5_1 = callPackage - ( - { buildHex }: - buildHex { - name = "key2value"; - version = "1.5.1"; - sha256 = - "2a40464b9f8ef62e8828d869ac8d2bf9135b4956d29ba4eb044e8522b2d35ffa"; - - meta = { - description = "Erlang 2-way Map"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/key2value"; - }; - } - ) {}; - - key2value = key2value_1_5_1; - - keys1value_1_5_1 = callPackage - ( - { buildHex }: - buildHex { - name = "keys1value"; - version = "1.5.1"; - sha256 = - "2385132be0903c170fe21e54a0c3e746a604777b66ee458bb6e5f25650d3354f"; - - meta = { - description = "Erlang Set Associative Map For Key Lists"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/keys1value"; - }; - } - ) {}; - - keys1value = keys1value_1_5_1; - - lager_3_0_1 = callPackage - ( - { buildHex, goldrush_0_1_7 }: - buildHex { - name = "lager"; - version = "3.0.1"; - sha256 = - "d32c9233105b72dc5c1f6a8fe9a33cc205ecccc359c4449950060cee5a329e35"; - - erlangDeps = [ goldrush_0_1_7 ]; - - meta = { - description = "Erlang logging framework"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/basho/lager"; - }; - } - ) {}; - - lager_3_0_2 = callPackage - ( - { buildHex, goldrush_0_1_7 }: - buildHex { - name = "lager"; - version = "3.0.2"; - sha256 = - "527f3b233e01b6cb68780c14ef675ed08ec02247dc029cacecbb56c78dfca100"; - - erlangDeps = [ goldrush_0_1_7 ]; - - meta = { - description = "Erlang logging framework"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/basho/lager"; - }; - } - ) {}; - - lager = lager_3_0_2; - - lasse_1_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "lasse"; - version = "1.1.0"; - sha256 = - "53e70ea9031f7583331a9f9bdbb29da933e591e5c4cce521b4bf85c68e7f3385"; - - meta = { - description = "Lasse: Server-Sent Event handler for Cowboy"; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/inaka/lasse"; - }; - } - ) {}; - - lasse = lasse_1_1_0; - - lhttpc_1_3_0 = callPackage - ( - { buildHex }: - buildHex { - name = "lhttpc"; - version = "1.3.0"; - sha256 = - "ddd2bd4b85159bc987c954b14877168e6a3c3e516105702189776e97c50296a4"; - - meta = { - description = "Lightweight HTTP/1.1 client"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/talko/lhttpc"; - }; - } - ) {}; - - lhttpc = lhttpc_1_3_0; - - libsnarlmatch_0_1_5 = callPackage - ( - { buildHex, fqc_0_1_5 }: - buildHex { - name = "libsnarlmatch"; - version = "0.1.5"; - sha256 = - "11410122ca7a0685c4a7df1795d7f5a1e7bf9c5f17096414402fd9d1f0e1ac04"; - - erlangDeps = [ fqc_0_1_5 ]; - - meta = { - description = "permission matcher library"; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/libsnarlmatch"; - }; - } - ) {}; - - libsnarlmatch_0_1_7 = callPackage - ( - { buildHex }: - buildHex { - name = "libsnarlmatch"; - version = "0.1.7"; - sha256 = - "72e9bcf7968e75774393778146ac6596116f1c60136dd607ad249183684ee380"; - - meta = { - description = "permission matcher library"; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/libsnarlmatch"; - }; - } - ) {}; - - libsnarlmatch = libsnarlmatch_0_1_7; - - lru_1_3_1 = callPackage - ( - { buildHex }: - buildHex { - name = "lru"; - version = "1.3.1"; - sha256 = - "cd6ac15c383d58cd2933df9cb918617b24b12b6e5fb24d94c4c8f200fd93f619"; - - meta = { - description = "implements a fixed-size LRU cache"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/barrel-db/erlang-lru"; - }; - } - ) {}; - - lru = lru_1_3_1; - - lz4_0_2_2 = callPackage - ( - { buildHex }: - buildHex { - name = "lz4"; - version = "0.2.2"; - sha256 = - "a59522221e7cdfe3792bf8b3bb21cfe7ac657790e5826201fa2c5d0bc7484a2d"; - compilePorts = true; - - meta = { - description = "LZ4 bindings for Erlang"; - license = stdenv.lib.licenses.isc; - homepage = "https://github.com/szktty/erlang-lz4.git"; - }; - } - ) {}; - - lz4 = lz4_0_2_2; - - mdns_server_0_2_0 = callPackage - ( - { buildHex }: - buildHex { - name = "mdns_server"; - version = "0.2.0"; - sha256 = - "bc9465880e15e57033960ab6820258b87134bef69032210c67e53e3718e289d0"; - - meta = { - description = "mDNS service discovery server"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Licenser/erlang-mdns-server"; - }; - } - ) {}; - - mdns_server = mdns_server_0_2_0; - - mdns_server_lib_0_2_3 = callPackage - ( - { buildHex, lager_3_0_2, mdns_server_0_2_0, ranch_1_1_0 }: - buildHex { - name = "mdns_server_lib"; - version = "0.2.3"; - sha256 = - "078775ccea5d768095716ca6bd82f657601203352495d9726f4cc080c8c07695"; - - erlangDeps = [ lager_3_0_2 mdns_server_0_2_0 ranch_1_1_0 ]; - - meta = { - description = - "server side for mdns client server implementation"; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/Licenser/mdns_server_lib"; - }; - } - ) {}; - - mdns_server_lib = mdns_server_lib_0_2_3; - - meck_0_8_3 = callPackage - ( - { buildHex }: - buildHex { - name = "meck"; - version = "0.8.3"; - sha256 = - "53bd3873d0193d6b2b4a165cfc4b9ffc3934355c3ba19e88239ef6a027cc02b6"; - - meta = { - description = "A mocking framework for Erlang"; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/eproxus/meck"; - }; - } - ) {}; - - meck_0_8_4 = callPackage - ( - { buildHex }: - buildHex { - name = "meck"; - version = "0.8.4"; - sha256 = - "2cdfbd0edd8f62b3d2061efc03c0e490282dd2ea6de44e15d2006e83f4f8eead"; - - meta = { - description = "A mocking framework for Erlang"; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/eproxus/meck"; - }; - } - ) {}; - - meck = meck_0_8_4; - - metrics_0_2_1 = callPackage - ( - { buildHex }: - buildHex { - name = "metrics"; - version = "0.2.1"; - sha256 = - "1cccc3534fa5a7861a3dcc0414afba00a616937e82c95d6172a523a5d2e97c03"; - - meta = { - description = - "A generic interface to different metrics systems in Erlang."; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/benoitc/erlang-metrics"; - }; - } - ) {}; - - metrics = metrics_0_2_1; - - mimerl_1_0_2 = callPackage - ( - { buildHex }: - buildHex { - name = "mimerl"; - version = "1.0.2"; - sha256 = - "7a4c8e1115a2732a67d7624e28cf6c9f30c66711a9e92928e745c255887ba465"; - - meta = { - description = "Library to handle mimetypes"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/benoitc/mimerl"; - }; - } - ) {}; - - mimerl_1_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "mimerl"; - version = "1.1.0"; - sha256 = - "def0f1922a5dcdeeee6e4f41139b364e7f0f40239774b528a0986b12bcb42ddc"; - - meta = { - description = "Library to handle mimetypes"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/benoitc/mimerl"; - }; - } - ) {}; - - mimerl = mimerl_1_1_0; - - mochiweb_2_12_2 = callPackage - ( - { buildHex }: - buildHex { - name = "mochiweb"; - version = "2.12.2"; - sha256 = - "d3e681d4054b74a96cf2efcd09e94157ab83a5f55ddc4ce69f90b8144673bd7a"; - - meta = { - description = - "MochiWeb is an Erlang library for building lightweight HTTP servers. -"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mochi/mochiweb"; - }; - } - ) {}; - - mochiweb = mochiweb_2_12_2; - - mtx_1_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "mtx"; - version = "1.0.0"; - sha256 = - "3bdcb209fe3cdfc5a6b5b95f619ecd123b7ee1d9203ace2178c8ff73be5bb90f"; - - meta = { - description = "Metrics Client"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/synrc/mtx"; - }; - } - ) {}; - - mtx = mtx_1_0_0; - - pc_1_2_0 = callPackage - ( - { buildHex }: - buildHex { - name = "pc"; - version = "1.2.0"; - sha256 = - "ef0f59d26a25af0a5247ef1a06d28d8300f8624647b02dc521ac79a7eceb8883"; - - meta = { - description = "a rebar3 port compiler for native code"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/blt/port_compiler"; - }; - } - ) {}; - - pc = pc_1_2_0; - - poolboy_1_5_1 = callPackage - ( - { buildHex }: - buildHex { - name = "poolboy"; - version = "1.5.1"; - sha256 = - "8f7168911120e13419e086e78d20e4d1a6776f1eee2411ac9f790af10813389f"; - - meta = { - description = "A hunky Erlang worker pool factory"; - license = with stdenv.lib.licenses; [ unlicense asl20 ]; - homepage = "https://github.com/devinus/poolboy"; - }; - } - ) {}; - - poolboy = poolboy_1_5_1; - - pooler_1_5_0 = callPackage - ( - { buildHex }: - buildHex { - name = "pooler"; - version = "1.5.0"; - sha256 = - "f493b4b947967fa4250dd1f96e86a5440ecab51da114d2c256cced58ad991908"; - - meta = { - description = "An OTP Process Pool Application"; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/seth/pooler"; - }; - } - ) {}; - - pooler = pooler_1_5_0; - - pot_0_9_3 = callPackage - ( - { buildHex }: - buildHex { - name = "pot"; - version = "0.9.3"; - sha256 = - "752d2605c15605cd455cb3514b1ce329309eb61dfa88397dce49772dac9ad581"; - - meta = { - description = "One Time Passwords for Erlang"; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - pot = pot_0_9_3; - - pqueue_1_5_1 = callPackage - ( - { buildHex }: - buildHex { - name = "pqueue"; - version = "1.5.1"; - sha256 = - "7ba01afe6b50ea4b239fa770f9e2c2db4871b3927ac44aea180d1fd52601b317"; - - meta = { - description = "Erlang Priority Queue Implementation"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/pqueue"; - }; - } - ) {}; - - pqueue = pqueue_1_5_1; - - proper_1_1_1_beta = callPackage - ( - { buildHex }: - buildHex { - name = "proper"; - version = "1.1.1-beta"; - sha256 = - "bde5c0fef0f8d804a7c06aab4f293d19f42149e5880b3412b75efa608e86d342"; - - meta = { - description = - "QuickCheck-inspired property-based testing tool for Erlang."; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/manopapad/proper"; - }; - } - ) {}; - - proper = proper_1_1_1_beta; - - providers_1_6_0 = callPackage - ( - { buildHex, getopt_0_8_2 }: - buildHex { - name = "providers"; - version = "1.6.0"; - sha256 = - "0f6876529a613d34224de8c61d3660388eb981142360f2699486d8536050ce2f"; - - erlangDeps = [ getopt_0_8_2 ]; - - meta = { - description = "Providers provider"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tsloughter/providers"; - }; - } - ) {}; - - providers = providers_1_6_0; - - quickrand_1_5_1 = callPackage - ( - { buildHex }: - buildHex { - name = "quickrand"; - version = "1.5.1"; - sha256 = - "0b3dcc6ddb23319c1f6a5ed143778864b8ad2f0ebd693a2d121cf5ae0c4db507"; - - meta = { - longDescription = ''Quick Random Number Generation: Provides a - simple interface to call efficient random number - generation functions based on the context. - Proper random number seeding is enforced.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/quickrand"; - }; - } - ) {}; - - quickrand = quickrand_1_5_1; - - quintana_0_2_0 = callPackage - ( - { buildHex, folsom_0_8_3 }: - buildHex { - name = "quintana"; - version = "0.2.0"; - sha256 = - "0646fe332ca3415ca6b0b273b4a5689ec902b9f9004ca62229ded00bd5f64cda"; - - erlangDeps = [ folsom_0_8_3 ]; - - meta = { - description = "Wrapper around some Folsom functions"; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - quintana_0_2_1 = callPackage - ( - { buildHex, folsom_0_8_3 }: - buildHex { - name = "quintana"; - version = "0.2.1"; - sha256 = - "d4683eb33c71f6cab3b17b896b4fa9180f17a0a8b086440bfe0c5675182f0194"; - - erlangDeps = [ folsom_0_8_3 ]; - - meta = { - description = "Wrapper around some Folsom functions"; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - quintana = quintana_0_2_1; - - rabbit_common_3_5_6 = callPackage - ( - { buildHex }: - buildHex { - name = "rabbit_common"; - version = "3.5.6"; - sha256 = - "9335ab3ebc4e8e140d7bc9b1b0e7ee99c0aa87d0a746b704184121ba35c04f1c"; - - meta = { - longDescription = ''Includes modules which are a runtime - dependency of the RabbitMQ/AMQP Erlang client - and are common to the RabbitMQ server.''; - license = stdenv.lib.licenses.mpl11; - homepage = "https://github.com/jbrisbin/rabbit_common"; - }; - } - ) {}; - - rabbit_common = rabbit_common_3_5_6; - - ranch_1_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "ranch"; - version = "1.1.0"; - sha256 = - "98ade939e63e6567da5dec5bc5bd93cbdc53d53f8b1aa998adec60dc4057f048"; - - meta = { - description = "Socket acceptor pool for TCP protocols"; - license = stdenv.lib.licenses.isc; - homepage = "https://github.com/ninenines/ranch"; - }; - } - ) {}; - - ranch_1_2_0 = callPackage - ( - { buildHex }: - buildHex { - name = "ranch"; - version = "1.2.0"; - sha256 = - "82bbb48cdad151000f7ad600d7a29afd972df409fde600bbc9b1ed4fdc08c399"; - - meta = { - description = "Socket acceptor pool for TCP protocols"; - license = stdenv.lib.licenses.isc; - homepage = "https://github.com/ninenines/ranch"; - }; - } - ) {}; - - ranch = ranch_1_2_0; - - ratx_0_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "ratx"; - version = "0.1.0"; - sha256 = - "fbf933ff32fdc127200880f5b567820bf03504ade1bd697ffbc0535dbafc23d6"; - - meta = { - description = - "Rate limiter and overload protection for erlang and elixir applications. -"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/liveforeverx/ratx"; - }; - } - ) {}; - - ratx = ratx_0_1_0; - - rebar3_asn1_compiler_1_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "rebar3_asn1_compiler"; - version = "1.0.0"; - sha256 = - "25ec1d5c97393195650ac8c7a06a267a886a1479950ee047c43b5228c07b30b9"; - - meta = { - description = "Compile ASN.1 modules with Rebar3"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/pyykkis/rebar3_asn1_compiler"; - }; - } - ) {}; - - rebar3_asn1_compiler = rebar3_asn1_compiler_1_0_0; - - rebar3_diameter_compiler_0_3_1 = callPackage - ( - { buildHex }: - buildHex { - name = "rebar3_diameter_compiler"; - version = "0.3.1"; - sha256 = - "c5965e3810ccf9ef9ba9185a81fe569ef6e9f3a9e546e99c5e900736b0c39274"; - - meta = { - description = "Compile diameter .dia files"; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/carlosedp/rebar3_diameter_compiler"; - }; - } - ) {}; - - rebar3_diameter_compiler = rebar3_diameter_compiler_0_3_1; - - rebar3_hex_1_14_0 = callPackage - ( - { buildHex }: - buildHex { - name = "rebar3_hex"; - version = "1.14.0"; - sha256 = - "e655ba352835654d41b8077695415792a0de01f3200aa1ce0c8458f785ec2311"; - - meta = { - description = "Hex.pm plugin for rebar3"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tsloughter/rebar3_hex"; - }; - } - ) {}; - - rebar3_hex = rebar3_hex_1_14_0; - - rebar3_idl_compiler_0_3_0 = callPackage - ( - { buildHex }: - buildHex { - name = "rebar3_idl_compiler"; - version = "0.3.0"; - sha256 = - "31ba95205c40b990cb3c49abb397abc47b4d5f9c402db83f9daebbc44e69789d"; - - meta = { - description = "Rebar3 IDL Compiler"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/sebastiw/rebar3_idl_compiler"; - }; - } - ) {}; - - rebar3_idl_compiler = rebar3_idl_compiler_0_3_0; - - rebar_alias_0_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "rebar_alias"; - version = "0.1.0"; - sha256 = - "59fb42b39964af3a29ebe94c11247f618dd4d5e4e1a69cfaffabbed03ccff70f"; - - meta = { - description = "A rebar plugin"; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - rebar_alias = rebar_alias_0_1_0; - - rebar_erl_vsn_0_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "rebar_erl_vsn"; - version = "0.1.0"; - sha256 = - "7cf1e2e85a80785a4e4e1529a2c837dbd2d540214cf791214e56f931e5e9865d"; - - meta = { - description = "defines for erlang versions"; - license = stdenv.lib.licenses.mit; - }; - } - ) {}; - - rebar_erl_vsn = rebar_erl_vsn_0_1_0; - - recon_2_2_1 = callPackage - ( - { buildHex }: - buildHex { - name = "recon"; - version = "2.2.1"; - sha256 = - "6c548ad0f4916495a78977674a251847869f85b5125b7c2a44da3178955adfd1"; - - meta = { - longDescription = ''Recon wants to be a set of tools usable in - production to diagnose Erlang problems or - inspect production environment safely.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/ferd/recon"; - }; - } - ) {}; - - recon = recon_2_2_1; - - redo_2_0_1 = callPackage - ( - { buildHex }: - buildHex { - name = "redo"; - version = "2.0.1"; - sha256 = - "f7b2be8c825ec34413c54d8f302cc935ce4ecac8421ae3914c5dadd816dcb1e6"; - - meta = { - description = "Pipelined Redis Erlang Driver"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/heroku/redo"; - }; - } - ) {}; - - redo = redo_2_0_1; - - reltool_util_1_4_0 = callPackage - ( - { buildHex }: - buildHex { - name = "reltool_util"; - version = "1.4.0"; - sha256 = - "a625874976fffe8ab56d4b5b7d5fd37620a2692462bbe24ae003ab13052ef0d3"; - - meta = { - description = "Erlang reltool utility functionality application"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/reltool_util"; - }; - } - ) {}; - - reltool_util_1_5_1 = callPackage - ( - { buildHex }: - buildHex { - name = "reltool_util"; - version = "1.5.1"; - sha256 = - "746e16871afdcf85d8a115389193c8d660d0df1d26d6ac700590e0ad252646b1"; - - meta = { - description = "Erlang reltool utility functionality application"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/reltool_util"; - }; - } - ) {}; - - reltool_util = reltool_util_1_5_1; - - relx_3_13_0 = callPackage - ( - { - buildHex, - bbmustache_1_0_4, - cf_0_2_1, - erlware_commons_0_18_0, - getopt_0_8_2, - providers_1_6_0 - }: - buildHex { - name = "relx"; - version = "3.13.0"; - sha256 = - "1ccadc6c9c6883807be0a6250411d2c299c532928e0a6d07db812400a2303ec1"; - - erlangDeps = [ - bbmustache_1_0_4 - cf_0_2_1 - erlware_commons_0_18_0 - getopt_0_8_2 - providers_1_6_0 - ]; - - meta = { - description = "Release assembler for Erlang/OTP Releases"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/erlware/relx"; - }; - } - ) {}; - - relx = relx_3_13_0; - - savory_0_0_2 = callPackage - ( - { buildHex }: - buildHex { - name = "savory"; - version = "0.0.2"; - sha256 = - "a45ef32a6f45092e1328bc1eb47bda3c8f992afe863aaa73c455f31b0c8591b9"; - - meta = { - longDescription = ''An Elixir implementation of Freza's salt_nif - which interfaces with libsodium, a wrapper for - the cryptographic primitive libary NaCl. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/electricFeel/savory"; - }; - } - ) {}; - - savory = savory_0_0_2; - - sbroker_0_7_0 = callPackage - ( - { buildHex }: - buildHex { - name = "sbroker"; - version = "0.7.0"; - sha256 = - "5bc0bfd79896fd5b92072a71fa4a1e120f4110f2cf9562a0b9dd2fcfe9e5cfd2"; - - meta = { - description = - "Process broker for dispatching with backpressure and load shedding"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/fishcakez/sbroker"; - }; - } - ) {}; - - sbroker = sbroker_0_7_0; - - serial_0_1_2 = callPackage - ( - { buildHex }: - buildHex { - name = "serial"; - version = "0.1.2"; - sha256 = - "c0aed287f565b7ce1e1091a6a3dd08fd99bf0884c81b53ecf978c502ef652231"; - - meta = { - description = "Serial communication through Elixir ports"; - license = stdenv.lib.licenses.isc; - homepage = "https://github.com/bitgamma/elixir_serial"; - }; - } - ) {}; - - serial = serial_0_1_2; - - sidejob_2_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "sidejob"; - version = "2.0.0"; - sha256 = - "19fea24060a1d0d37e78480fbd79d6b95e07f445aad725f7124a23194641c743"; - - meta = { - longDescription = ''sidejob is an Erlang library that implements - a parallel, capacity-limited request pool. In - sidejob, these pools are called resources. A - resource is managed by multiple gen_server like - processes which can be sent calls and casts - using sidejob:call or sidejob:cast respectively. - This library was originally written to support - process bounding in Riak using the - sidejob_supervisor behavior. In Riak, this is - used to limit the number of concurrent get/put - FSMs that can be active, failing client requests - with {error, overload} if the limit is ever hit. - The purpose being to provide a fail-safe - mechanism during extreme overload scenarios. ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/basho/sidejob"; - }; - } - ) {}; - - sidejob = sidejob_2_0_0; - - slp_0_0_2 = callPackage - ( - { buildHex }: - buildHex { - name = "slp"; - version = "0.0.2"; - sha256 = - "27e5f7330c7ce631f16e3ec5781b31cbb2247d2bcdeab1e979a66dcc4397bd77"; - - meta = { - longDescription = ''An Elixir application for using the Service - Location Protocol. SLP is a commonly used - service discovery protocol.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/stuart/elixir_slp"; - }; - } - ) {}; - - slp = slp_0_0_2; - - smurf_0_1_3 = callPackage - ( - { buildHex }: - buildHex { - name = "smurf"; - version = "0.1.3"; - sha256 = - "5ed8e18ec8eea0647e7e938ce15cc76e59497d0a259cea15124520a48f0d6be6"; - - meta = { - description = "SMF interfacing library for erlang"; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/smurf"; - }; - } - ) {}; - - smurf = smurf_0_1_3; - - ssl_verify_hostname_1_0_5 = callPackage - ( - { buildHex }: - buildHex { - name = "ssl_verify_hostname"; - version = "1.0.5"; - sha256 = - "f2cb11e6144e10ab39d1e14bf9fb2437b690979c70bf5428e9dc4bfaf1dfeabf"; - - meta = { - description = "Hostname verification library for Erlang"; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/deadtrickster/ssl_verify_hostname.erl"; - }; - } - ) {}; - - ssl_verify_hostname_1_0_6 = callPackage - ( - { buildHex }: - buildHex { - name = "ssl_verify_hostname"; - version = "1.0.6"; - sha256 = - "72b2fc8a8e23d77eed4441137fefa491bbf4a6dc52e9c0045f3f8e92e66243b5"; - - meta = { - description = "Hostname verification library for Erlang"; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/deadtrickster/ssl_verify_hostname.erl"; - }; - } - ) {}; - - ssl_verify_hostname = ssl_verify_hostname_1_0_6; - - strftimerl_0_1_1 = callPackage - ( - { buildHex }: - buildHex { - name = "strftimerl"; - version = "0.1.1"; - sha256 = - "c09c7cd6a421bcbc1020c1440a2e73e312b852adbb3034d11f3dffa27d7953b1"; - - meta = { - description = "strftime formatting in erlang"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/gmr/strftimerl"; - }; - } - ) {}; - - strftimerl = strftimerl_0_1_1; - - supool_1_5_1 = callPackage - ( - { buildHex }: - buildHex { - name = "supool"; - version = "1.5.1"; - sha256 = - "c191d63ff19ae177bf4cfba02303ae4552d8b48ec4133e24053e037513dfae09"; - - meta = { - description = "Erlang Process Pool as a Supervisor"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/supool"; - }; - } - ) {}; - - supool = supool_1_5_1; - - tea_crypto_1_0_0 = callPackage - ( - { buildHex }: - buildHex { - name = "tea_crypto"; - version = "1.0.0"; - sha256 = - "0e7e60d0afe79f0624faa8a358a3a00c912cfa548f3632383927abca4db29cc6"; - - meta = { - description = "A TEA implementation in Erlang. -"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/keichan34/tea_crypto"; - }; - } - ) {}; - - tea_crypto = tea_crypto_1_0_0; - - termcap_0_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "termcap"; - version = "0.1.0"; - sha256 = - "8c5167d68759bd1cd020eeaf5fd94153430fd19fa5a5fdeeb0b3129f0aba2a21"; - - meta = { - description = "Pure erlang termcap library"; - license = stdenv.lib.licenses.mit; - }; - } - ) {}; - - termcap = termcap_0_1_0; - - tinymt_0_3_1 = callPackage - ( - { buildHex }: - buildHex { - name = "tinymt"; - version = "0.3.1"; - sha256 = - "9de8fcedf254661bc4aa550aac317e28be35d4a5d91adf3fa3689dfad6cc1e5a"; - - meta = { - description = "Tiny Mersenne Twister (TinyMT) for Erlang"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/jj1bdx/tinymt-erlang/"; - }; - } - ) {}; - - tinymt = tinymt_0_3_1; - - trie_1_5_0 = callPackage - ( - { buildHex }: - buildHex { - name = "trie"; - version = "1.5.0"; - sha256 = - "613981536e33f58d92e44bd31801376f71deee0e57c63372fe8ab5fbbc37f7dc"; - - meta = { - description = "Erlang Trie Implementation"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/trie"; - }; - } - ) {}; - - trie_1_5_1 = callPackage - ( - { buildHex }: - buildHex { - name = "trie"; - version = "1.5.1"; - sha256 = - "4b845dccfca8962b90584e98d270e2ff43e2e181bb046c4aae0e0f457679f98d"; - - meta = { - description = "Erlang Trie Implementation"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/trie"; - }; - } - ) {}; - - trie = trie_1_5_1; - - tsuru_1_0_2 = callPackage - ( - { buildHex }: - buildHex { - name = "tsuru"; - version = "1.0.2"; - sha256 = - "b586ad8d47799a086e4225494f5e3cf4e306ca255a173a4b48fe51d542cefb6b"; - - meta = { - description = - "A collection of useful tools for Erlang applications"; - license = stdenv.lib.licenses.mit; - }; - } - ) {}; - - tsuru = tsuru_1_0_2; - - uri_0_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "uri"; - version = "0.1.0"; - sha256 = - "3833c3b5745fc0822df86c3a3591219048026fea8a535223b440d26029218996"; - - meta = { - description = "URI Parsing/Encoding Library"; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - uri = uri_0_1_0; - - varpool_1_5_1 = callPackage - ( - { buildHex }: - buildHex { - name = "varpool"; - version = "1.5.1"; - sha256 = - "ff6059bdcd0efad606e8c54ee623cfeaef59778c18e343dd772e84d99d188e26"; - - meta = { - description = "Erlang Process Pools as a Local Variable"; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/varpool"; - }; - } - ) {}; - - varpool = varpool_1_5_1; - - weber_0_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "weber"; - version = "0.1.0"; - sha256 = - "742c45b3c99e207dd0aeccb818edd2ace4af10699c96fbcee0ce2f692dc5fe12"; - - meta = { - description = "weber - is Elixir MVC web framework"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/elixir-web/weber"; - }; - } - ) {}; - - weber = weber_0_1_0; - - websocket_client_1_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "websocket_client"; - version = "1.1.0"; - sha256 = - "21c3d0df073634f2ca349af5b54a61755d637d6390c34d8d57c064f68ca92acd"; - - meta = { - description = "Erlang websocket client"; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/sanmiguel/websocket_client"; - }; - } - ) {}; - - websocket_client = websocket_client_1_1_0; - - worker_pool_1_0_4 = callPackage - ( - { buildHex }: - buildHex { - name = "worker_pool"; - version = "1.0.4"; - sha256 = - "7854a3b94e9624728db3a0475d00e7d0728adf3bf2ee3802bbf8ca10356d6f64"; - - meta = { - description = "Erlang Worker Pool"; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/inaka/worker_pool"; - }; - } - ) {}; - - worker_pool = worker_pool_1_0_4; - - wpa_supplicant_0_1_0 = callPackage - ( - { buildHex }: - buildHex { - name = "wpa_supplicant"; - version = "0.1.0"; - sha256 = - "8a73ca51203401755d42ba636918106540aa3723006dab344dc8a7ec8fa2f3d5"; - - meta = { - longDescription = ''Elixir interface to the wpa_supplicant - daemon. The wpa_supplicant provides application - support for scanning for access points, managing - Wi-Fi connections, and handling all of the - security and other parameters associated with - Wi-Fi. ''; - license = with stdenv.lib.licenses; [ asl20 free ]; - homepage = "https://github.com/fhunleth/wpa_supplicant.ex"; - }; - } - ) {}; - - wpa_supplicant = wpa_supplicant_0_1_0; - - zipper_0_1_5 = callPackage - ( - { buildHex }: - buildHex { - name = "zipper"; - version = "0.1.5"; - sha256 = - "7df5552f41169a8feb1a2e81e2753ec4e4debb7d48cdf1edc77037205782d547"; - - meta = { - description = "Generic Zipper Implementation for Erlang"; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/inaka/zipper"; - }; - } - ) {}; - - zipper = zipper_0_1_5; - - }; -in self \ No newline at end of file diff --git a/pkgs/development/guile-modules/guile-lib/default.nix b/pkgs/development/guile-modules/guile-lib/default.nix index 7cce27c387e..de456b4983a 100644 --- a/pkgs/development/guile-modules/guile-lib/default.nix +++ b/pkgs/development/guile-modules/guile-lib/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { preCheck = # Make `libgcc_s.so' visible for `pthread_cancel'. - '' export LD_LIBRARY_PATH="$(dirname $(echo ${stdenv.cc.cc}/lib*/libgcc_s.so)):$LD_LIBRARY_PATH" + '' export LD_LIBRARY_PATH="$(dirname $(echo ${stdenv.cc.cc.lib}/lib*/libgcc_s.so)):$LD_LIBRARY_PATH" ''; meta = { diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 1cbda56844b..7874d007763 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1020,4 +1020,12 @@ self: super: { c2hs_0_27_1 = if pkgs.stdenv.isDarwin then dontCheck super.c2hs_0_27_1 else super.c2hs_0_27_1; + + # tinc is a new build driver a la Stack that's not yet available from Hackage. + tinc = self.callPackage ../tools/haskell/tinc {}; + + # Avoid transient build failures because the QuickCheck testsuite cannot + # generate enough conclusive test cases. + split = dontCheck super.split; + } 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 77735182d0e..d5259ef2d13 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -77,4 +77,10 @@ self: super: { # Needs void on pre 7.10.x compilers. conduit = addBuildDepend super.conduit self.void; + # Needs tagged on pre 7.6.x compilers. + reflection = addBuildDepend super.reflection self.tagged; + + # Needs nats on pre 7.6.x compilers. + semigroups = addBuildDepend super.semigroups self.nats; + } 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 d354ea1305d..db0aa51492f 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -78,4 +78,10 @@ self: super: { # Needs void on pre 7.10.x compilers. conduit = addBuildDepend super.conduit self.void; + # Needs tagged on pre 7.6.x compilers. + reflection = addBuildDepend super.reflection self.tagged; + + # Needs nats on pre 7.6.x compilers. + semigroups = addBuildDepend super.semigroups self.nats; + } 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 0103eb3c598..e2bb4f00d78 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -89,4 +89,10 @@ self: super: { # Needs void on pre 7.10.x compilers. conduit = addBuildDepend super.conduit self.void; + # Needs tagged on pre 7.6.x compilers. + reflection = addBuildDepend super.reflection self.tagged; + + # Needs nats on pre 7.6.x compilers. + semigroups = addBuildDepend super.semigroups self.nats; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index 5550016b9b5..555223b7594 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -49,9 +49,6 @@ self: super: { # Deviate from Stackage here to fix lots of builds. transformers-compat = self.transformers-compat_0_5_1_4; - # https://github.com/sol/doctest/issues/125 - doctest = self.doctest_0_11_0; - # No modules defined for this compiler. fail = dontHaddock super.fail; diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 2eb897d799c..e6be3acaf53 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -123,6 +123,9 @@ dont-distribute-packages: Win32-services-wrapper: [ i686-linux, x86_64-linux, x86_64-darwin ] XInput: [ i686-linux, x86_64-linux, x86_64-darwin ] + # Depens on shine, which is a ghcjs project. + shine-varying: [ i686-linux, x86_64-linux, x86_64-darwin ] + # The build succeeds, but takes insanely long (> 2 hours). sharc-timbre: [ i686-linux, x86_64-linux, x86_64-darwin ] diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 0255bb3f2f8..5d5e07c3a48 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1217,6 +1219,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1365,6 +1368,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1395,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1621,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1805,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2215,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2465,6 +2473,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2537,6 +2546,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4324,6 +4334,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4405,6 +4416,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4747,6 +4759,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4888,6 +4901,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5076,6 +5093,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5637,6 +5655,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5768,6 +5787,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6153,6 +6173,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6375,6 +6396,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6596,6 +6618,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6622,6 +6645,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6829,12 +6853,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7461,6 +7487,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7536,6 +7563,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7624,6 +7652,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7890,6 +7920,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8008,7 +8039,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8477,6 +8510,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8624,6 +8658,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9251,6 +9286,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 7a6b8d9c397..994ca185089 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1217,6 +1219,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1365,6 +1368,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1395,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1621,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1805,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2215,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2465,6 +2473,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2537,6 +2546,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4324,6 +4334,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4405,6 +4416,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4747,6 +4759,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4888,6 +4901,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5076,6 +5093,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5637,6 +5655,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5768,6 +5787,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6153,6 +6173,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6375,6 +6396,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6596,6 +6618,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6622,6 +6645,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6829,12 +6853,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7461,6 +7487,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7536,6 +7563,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7624,6 +7652,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7890,6 +7920,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8008,7 +8039,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8477,6 +8510,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8624,6 +8658,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9251,6 +9286,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 564778ac7d1..13288cf6eef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1217,6 +1219,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1365,6 +1368,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1395,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1621,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1805,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2215,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2465,6 +2473,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2537,6 +2546,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4324,6 +4334,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4405,6 +4416,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4747,6 +4759,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4888,6 +4901,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5076,6 +5093,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5637,6 +5655,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5768,6 +5787,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6153,6 +6173,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6375,6 +6396,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6596,6 +6618,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6622,6 +6645,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6829,12 +6853,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7461,6 +7487,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7536,6 +7563,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7624,6 +7652,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7890,6 +7920,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8008,7 +8039,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8477,6 +8510,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8624,6 +8658,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9251,6 +9286,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index c99f5b114ee..a2a328b65c0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1217,6 +1219,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1365,6 +1368,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1395,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1621,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1805,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2215,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2465,6 +2473,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2537,6 +2546,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4324,6 +4334,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4405,6 +4416,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4747,6 +4759,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4888,6 +4901,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5076,6 +5093,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5637,6 +5655,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5768,6 +5787,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6153,6 +6173,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6375,6 +6396,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6596,6 +6618,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6622,6 +6645,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6829,12 +6853,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7461,6 +7487,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7536,6 +7563,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7624,6 +7652,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7890,6 +7920,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8008,7 +8039,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8477,6 +8510,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8624,6 +8658,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9251,6 +9286,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 8519ea145d0..8947dce5d90 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1217,6 +1219,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1365,6 +1368,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1395,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1621,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1805,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2215,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2465,6 +2473,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2537,6 +2546,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4321,6 +4331,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4402,6 +4413,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4744,6 +4756,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4885,6 +4898,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5073,6 +5090,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5634,6 +5652,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5765,6 +5784,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6150,6 +6170,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6372,6 +6393,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6593,6 +6615,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6619,6 +6642,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6826,12 +6850,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7457,6 +7483,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7532,6 +7559,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7620,6 +7648,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7886,6 +7916,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8004,7 +8035,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8473,6 +8506,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8620,6 +8654,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9247,6 +9282,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index aa8bcf7c0f1..74c95cb7400 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1185,10 +1185,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1217,6 +1219,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1365,6 +1368,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1391,6 +1395,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1616,6 +1621,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1799,6 +1805,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2215,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2465,6 +2473,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2537,6 +2546,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4321,6 +4331,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4402,6 +4413,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4744,6 +4756,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4885,6 +4898,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5073,6 +5090,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5634,6 +5652,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5765,6 +5784,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6150,6 +6170,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6372,6 +6393,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6593,6 +6615,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6619,6 +6642,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6826,12 +6850,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7457,6 +7483,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7532,6 +7559,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7620,6 +7648,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7886,6 +7916,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8004,7 +8035,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8473,6 +8506,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8620,6 +8654,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9247,6 +9282,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 70f9e6ec9a8..1e44d58aefd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1184,10 +1184,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1216,6 +1218,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1364,6 +1367,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1390,6 +1394,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1615,6 +1620,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1798,6 +1804,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2214,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2464,6 +2472,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2536,6 +2545,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4319,6 +4329,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4400,6 +4411,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4742,6 +4754,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4883,6 +4896,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5071,6 +5088,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5632,6 +5650,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5763,6 +5782,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6148,6 +6168,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6370,6 +6391,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6591,6 +6613,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6617,6 +6640,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6824,12 +6848,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7454,6 +7480,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7529,6 +7556,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7617,6 +7645,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7883,6 +7913,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8001,7 +8032,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8470,6 +8503,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8617,6 +8651,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9242,6 +9277,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 663960a8d01..f5075c4afc2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1184,10 +1184,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1216,6 +1218,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1364,6 +1367,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1390,6 +1394,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1615,6 +1620,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1798,6 +1804,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_4_0_2"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2214,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2464,6 +2472,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2536,6 +2545,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4319,6 +4329,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4400,6 +4411,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4742,6 +4754,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4883,6 +4896,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5071,6 +5088,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5632,6 +5650,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5763,6 +5782,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6148,6 +6168,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6370,6 +6391,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6591,6 +6613,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6617,6 +6640,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6824,12 +6848,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7454,6 +7480,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7529,6 +7556,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7617,6 +7645,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7883,6 +7913,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -8001,7 +8032,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8470,6 +8503,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8617,6 +8651,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9242,6 +9277,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 11a254ac8e4..b1e9391c5f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -1181,10 +1181,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1213,6 +1215,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1361,6 +1364,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1387,6 +1391,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1612,6 +1617,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1794,6 +1800,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2201,6 +2208,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2457,6 +2465,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2529,6 +2538,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4311,6 +4321,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4392,6 +4403,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4733,6 +4745,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4874,6 +4887,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5062,6 +5079,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5623,6 +5641,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5754,6 +5773,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -6139,6 +6159,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6361,6 +6382,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6582,6 +6604,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6608,6 +6631,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6815,12 +6839,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7444,6 +7470,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7519,6 +7546,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7607,6 +7635,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7872,6 +7902,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7990,7 +8021,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8459,6 +8492,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8606,6 +8640,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9230,6 +9265,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index b320d53dee1..4f833f432c8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -1181,10 +1181,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1213,6 +1215,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1361,6 +1364,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1387,6 +1391,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1612,6 +1617,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1794,6 +1800,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2200,6 +2207,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2455,6 +2463,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2527,6 +2536,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4307,6 +4317,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4388,6 +4399,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4727,6 +4739,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4868,6 +4881,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5056,6 +5073,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5617,6 +5635,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5748,6 +5767,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6132,6 +6152,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6354,6 +6375,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6575,6 +6597,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6601,6 +6624,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6808,12 +6832,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7437,6 +7463,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7512,6 +7539,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7599,6 +7627,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7864,6 +7894,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7981,7 +8012,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8447,6 +8480,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8594,6 +8628,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9217,6 +9252,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 90a8e2daf9b..988c7e3714a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1212,6 +1214,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1360,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2204,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2451,6 +2459,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2523,6 +2532,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4296,6 +4306,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4377,6 +4388,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4716,6 +4728,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4857,6 +4870,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5040,6 +5057,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5600,6 +5618,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5731,6 +5750,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6114,6 +6134,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6335,6 +6356,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6555,6 +6577,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6581,6 +6604,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6788,12 +6812,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7416,6 +7442,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7490,6 +7517,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7576,6 +7604,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7841,6 +7871,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7958,7 +7989,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8420,6 +8453,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8567,6 +8601,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9187,6 +9222,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index e4b68356bb8..0fe6da3b536 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1212,6 +1214,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1360,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2204,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2451,6 +2459,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2523,6 +2532,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4295,6 +4305,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4376,6 +4387,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4715,6 +4727,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4856,6 +4869,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5037,6 +5054,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5596,6 +5614,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5727,6 +5746,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6110,6 +6130,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6331,6 +6352,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6551,6 +6573,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6577,6 +6600,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6784,12 +6808,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7412,6 +7438,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7486,6 +7513,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7572,6 +7600,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7837,6 +7867,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7954,7 +7985,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8416,6 +8449,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8563,6 +8597,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9183,6 +9218,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 0d516ef3b00..6523554f052 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1212,6 +1214,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1360,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2204,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2451,6 +2459,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2523,6 +2532,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4294,6 +4304,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4375,6 +4386,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4714,6 +4726,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4855,6 +4868,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5036,6 +5053,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5595,6 +5613,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5726,6 +5745,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6109,6 +6129,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6330,6 +6351,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6550,6 +6572,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6576,6 +6599,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6783,12 +6807,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7411,6 +7437,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7485,6 +7512,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7571,6 +7599,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7836,6 +7866,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7953,7 +7984,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8415,6 +8448,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8562,6 +8596,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9182,6 +9217,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 23f248767de..9b192de0166 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1212,6 +1214,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1360,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2204,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2451,6 +2459,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2523,6 +2532,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4293,6 +4303,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4374,6 +4385,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4713,6 +4725,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4854,6 +4867,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5035,6 +5052,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5594,6 +5612,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5725,6 +5744,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6108,6 +6128,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6329,6 +6350,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6549,6 +6571,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6575,6 +6598,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6782,12 +6806,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7410,6 +7436,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7484,6 +7511,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7570,6 +7598,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7835,6 +7865,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7952,7 +7983,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8413,6 +8446,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8560,6 +8594,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9180,6 +9215,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 546298ae581..a2021991e50 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -1179,10 +1179,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1211,6 +1213,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1359,6 +1362,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1385,6 +1389,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1609,6 +1614,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1791,6 +1797,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2195,6 +2202,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2448,6 +2456,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2520,6 +2529,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4290,6 +4300,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4371,6 +4382,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4710,6 +4722,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4851,6 +4864,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5032,6 +5049,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5591,6 +5609,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5722,6 +5741,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6104,6 +6124,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6325,6 +6346,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6545,6 +6567,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6571,6 +6594,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6778,12 +6802,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7405,6 +7431,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7479,6 +7506,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7565,6 +7593,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7830,6 +7860,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7947,7 +7978,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8408,6 +8441,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8555,6 +8589,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9175,6 +9210,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 83357e85a48..b5fdfd2a4aa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -1178,10 +1178,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1210,6 +1212,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1358,6 +1361,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1384,6 +1388,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1608,6 +1613,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1790,6 +1796,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2193,6 +2200,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2445,6 +2453,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2517,6 +2526,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4286,6 +4296,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4367,6 +4378,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4706,6 +4718,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4847,6 +4860,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5028,6 +5045,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5587,6 +5605,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5718,6 +5737,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6098,6 +6118,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6319,6 +6340,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6539,6 +6561,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6565,6 +6588,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6772,12 +6796,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7398,6 +7424,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7472,6 +7499,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7558,6 +7586,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7823,6 +7853,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7939,7 +7970,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8399,6 +8432,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8546,6 +8580,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9165,6 +9200,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 805787d79cc..2ce53895ab7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -1181,10 +1181,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1213,6 +1215,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1361,6 +1364,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1387,6 +1391,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1612,6 +1617,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1794,6 +1800,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2199,6 +2206,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2453,6 +2461,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2525,6 +2534,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4304,6 +4314,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4385,6 +4396,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4724,6 +4736,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4865,6 +4878,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5053,6 +5070,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5614,6 +5632,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5745,6 +5764,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6129,6 +6149,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6351,6 +6372,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6571,6 +6593,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6597,6 +6620,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6804,12 +6828,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7432,6 +7458,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7506,6 +7533,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7593,6 +7621,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7858,6 +7888,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7975,7 +8006,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8441,6 +8474,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8588,6 +8622,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9211,6 +9246,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 51c417a9f81..5092c1f02a7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1212,6 +1214,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1360,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2198,6 +2205,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2452,6 +2460,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2524,6 +2533,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4301,6 +4311,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4382,6 +4393,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4721,6 +4733,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4862,6 +4875,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5050,6 +5067,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5611,6 +5629,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5742,6 +5761,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6125,6 +6145,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6347,6 +6368,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6567,6 +6589,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6593,6 +6616,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6800,12 +6824,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7428,6 +7454,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7502,6 +7529,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7589,6 +7617,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7854,6 +7884,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7971,7 +8002,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8436,6 +8469,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8583,6 +8617,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9206,6 +9241,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 81f9a63bb68..de2508852e7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1212,6 +1214,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1360,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2204,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2451,6 +2459,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2523,6 +2532,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4300,6 +4310,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4381,6 +4392,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4720,6 +4732,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4861,6 +4874,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5049,6 +5066,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5610,6 +5628,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5741,6 +5760,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6124,6 +6144,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6346,6 +6367,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6566,6 +6588,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6592,6 +6615,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6799,12 +6823,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7427,6 +7453,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7501,6 +7528,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7588,6 +7616,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7853,6 +7883,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7970,7 +8001,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8434,6 +8467,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8581,6 +8615,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9203,6 +9238,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 5b1f3e1dcf3..72af4fc6c77 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1212,6 +1214,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1360,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2204,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2451,6 +2459,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2523,6 +2532,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4300,6 +4310,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4381,6 +4392,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4720,6 +4732,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4861,6 +4874,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5044,6 +5061,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5605,6 +5623,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5736,6 +5755,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6119,6 +6139,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6341,6 +6362,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6561,6 +6583,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6587,6 +6610,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6794,12 +6818,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7422,6 +7448,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7496,6 +7523,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7583,6 +7611,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7848,6 +7878,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7965,7 +7996,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8429,6 +8462,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8576,6 +8610,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9198,6 +9233,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index ac4010b02ce..b7b754a984f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1212,6 +1214,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1360,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2204,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2451,6 +2459,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2523,6 +2532,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4297,6 +4307,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4378,6 +4389,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4717,6 +4729,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4858,6 +4871,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5041,6 +5058,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5601,6 +5619,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5732,6 +5751,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6115,6 +6135,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6337,6 +6358,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6557,6 +6579,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6583,6 +6606,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6790,12 +6814,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7418,6 +7444,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7492,6 +7519,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7579,6 +7607,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7844,6 +7874,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7961,7 +7992,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8424,6 +8457,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8571,6 +8605,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9193,6 +9228,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 88c8976fcde..6cb77fd1f9b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -1180,10 +1180,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1212,6 +1214,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1360,6 +1363,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1386,6 +1390,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1611,6 +1616,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1793,6 +1799,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2197,6 +2204,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2451,6 +2459,7 @@ self: super: { "csv-conduit" = doDistribute super."csv-conduit_0_6_3"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2523,6 +2532,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4296,6 +4306,7 @@ self: super: { "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; "here" = doDistribute super."here_1_2_6"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4377,6 +4388,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = dontDistribute super."hindent"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4716,6 +4728,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = dontDistribute super."hspec-smallcheck"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4857,6 +4870,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5040,6 +5057,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5600,6 +5618,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5731,6 +5750,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6114,6 +6134,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6336,6 +6357,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6556,6 +6578,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6582,6 +6605,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6789,12 +6813,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "presburger" = dontDistribute super."presburger"; @@ -7417,6 +7443,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7491,6 +7518,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7578,6 +7606,8 @@ self: super: { "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7843,6 +7873,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7960,7 +7991,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8423,6 +8456,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_3_3_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8570,6 +8604,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9192,6 +9227,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 71aaba0f7c7..fa5928d6b72 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -1172,10 +1172,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1204,6 +1206,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1352,6 +1355,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1377,6 +1381,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1600,6 +1605,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1759,6 +1765,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1780,6 +1787,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2182,6 +2190,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2432,6 +2441,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2504,6 +2514,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4269,6 +4280,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4349,6 +4361,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4686,6 +4699,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4766,6 +4780,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4827,6 +4842,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5003,6 +5022,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5555,6 +5575,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5685,6 +5706,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6059,6 +6081,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6277,6 +6300,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6496,6 +6520,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6522,6 +6547,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6728,12 +6754,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7354,6 +7382,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7427,6 +7456,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7512,6 +7542,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7774,6 +7806,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7890,7 +7923,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8348,6 +8383,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8494,6 +8530,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9107,6 +9144,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index b99a3578e26..8ff45e0c7df 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -1172,10 +1172,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1204,6 +1206,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1352,6 +1355,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1377,6 +1381,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1600,6 +1605,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1759,6 +1765,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1780,6 +1787,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2181,6 +2189,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2431,6 +2440,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2503,6 +2513,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4268,6 +4279,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4348,6 +4360,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4685,6 +4698,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4765,6 +4779,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4826,6 +4841,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -5002,6 +5021,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5554,6 +5574,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5684,6 +5705,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6058,6 +6080,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6276,6 +6299,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6495,6 +6519,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6521,6 +6546,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6727,12 +6753,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7353,6 +7381,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7426,6 +7455,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7511,6 +7541,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7773,6 +7805,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7889,7 +7922,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8347,6 +8382,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8493,6 +8529,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9105,6 +9142,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 168ea034922..3b13848d98a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1199,6 +1201,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1347,6 +1350,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1372,6 +1376,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1592,6 +1597,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1750,6 +1756,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1771,6 +1778,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2170,6 +2178,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2419,6 +2428,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2491,6 +2501,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4249,6 +4260,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4329,6 +4341,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4665,6 +4678,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4745,6 +4759,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4805,6 +4820,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4980,6 +4999,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5529,6 +5549,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5659,6 +5680,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6033,6 +6055,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6251,6 +6274,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6469,6 +6493,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_5"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6495,6 +6520,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6700,12 +6726,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7323,6 +7351,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7396,6 +7425,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7481,6 +7511,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7742,6 +7774,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7853,7 +7886,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8307,6 +8342,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8453,6 +8489,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9063,6 +9100,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 0458c7f6fa5..14570e607c8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1596,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1755,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1777,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2169,6 +2177,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2418,6 +2427,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2490,6 +2500,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4246,6 +4257,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4326,6 +4338,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4662,6 +4675,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4742,6 +4756,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4802,6 +4817,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4977,6 +4996,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5525,6 +5545,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5655,6 +5676,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6028,6 +6050,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6246,6 +6269,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6463,6 +6487,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6489,6 +6514,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6694,12 +6720,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7316,6 +7344,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7389,6 +7418,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7474,6 +7504,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7735,6 +7767,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7845,7 +7878,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8298,6 +8333,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8444,6 +8480,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9054,6 +9091,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index baf1df1a41c..706e342f6b2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1596,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1755,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1777,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2169,6 +2177,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2418,6 +2427,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2490,6 +2500,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4246,6 +4257,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4326,6 +4338,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4662,6 +4675,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4742,6 +4756,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4802,6 +4817,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4977,6 +4996,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5525,6 +5545,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5655,6 +5676,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6028,6 +6050,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6246,6 +6269,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6463,6 +6487,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6489,6 +6514,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6694,12 +6720,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7316,6 +7344,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7388,6 +7417,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7473,6 +7503,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7734,6 +7766,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7844,7 +7877,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8297,6 +8332,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8443,6 +8479,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9053,6 +9090,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 539dce09b7e..7cad852e803 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1596,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1755,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1777,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2169,6 +2177,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2418,6 +2427,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2490,6 +2500,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4245,6 +4256,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4325,6 +4337,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4661,6 +4674,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4741,6 +4755,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4801,6 +4816,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4975,6 +4994,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5523,6 +5543,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5653,6 +5674,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6026,6 +6048,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6244,6 +6267,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6461,6 +6485,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6487,6 +6512,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6692,12 +6718,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7314,6 +7342,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7386,6 +7415,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7471,6 +7501,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7732,6 +7764,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7842,7 +7875,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8295,6 +8330,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8441,6 +8477,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9051,6 +9088,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index bc153d27d4d..951fd6c2f8d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1596,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1755,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1777,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2169,6 +2177,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2418,6 +2427,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2490,6 +2500,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4244,6 +4255,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4324,6 +4336,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4660,6 +4673,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4739,6 +4753,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4799,6 +4814,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4973,6 +4992,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5521,6 +5541,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5651,6 +5672,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6024,6 +6046,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6242,6 +6265,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6459,6 +6483,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6485,6 +6510,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6690,12 +6716,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7312,6 +7340,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7384,6 +7413,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7469,6 +7499,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7729,6 +7761,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7839,7 +7872,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8292,6 +8327,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8438,6 +8474,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9017,6 +9054,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9046,6 +9084,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 25f1ebb4746..8adbc6fec84 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1596,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1755,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1777,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2169,6 +2177,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2418,6 +2427,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2490,6 +2500,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4243,6 +4254,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4323,6 +4335,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4659,6 +4672,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4738,6 +4752,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4798,6 +4813,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4972,6 +4991,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5520,6 +5540,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5650,6 +5671,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6022,6 +6044,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6240,6 +6263,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6457,6 +6481,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6483,6 +6508,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6688,12 +6714,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7310,6 +7338,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7382,6 +7411,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7467,6 +7497,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7727,6 +7759,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7836,7 +7869,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8289,6 +8324,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8435,6 +8471,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9014,6 +9051,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9043,6 +9081,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 28ce1c139ed..3e319aa5ed4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1591,6 +1596,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1749,6 +1755,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1770,6 +1777,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2168,6 +2176,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2416,6 +2425,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2488,6 +2498,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4239,6 +4250,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4319,6 +4331,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4655,6 +4668,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4734,6 +4748,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4794,6 +4809,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4968,6 +4987,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5515,6 +5535,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5645,6 +5666,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6017,6 +6039,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6235,6 +6258,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6452,6 +6476,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6478,6 +6503,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6683,12 +6709,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7305,6 +7333,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7377,6 +7406,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7462,6 +7492,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7722,6 +7754,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7831,7 +7864,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8284,6 +8319,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8430,6 +8466,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9009,6 +9046,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9038,6 +9076,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 6285c0d2fc9..0a58df94535 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1768,6 +1775,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2166,6 +2174,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2414,6 +2423,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2486,6 +2496,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4235,6 +4246,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4315,6 +4327,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4651,6 +4664,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4730,6 +4744,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4790,6 +4805,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4964,6 +4983,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5511,6 +5531,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5641,6 +5662,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6013,6 +6035,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6230,6 +6253,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6447,6 +6471,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6473,6 +6498,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6678,12 +6704,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7300,6 +7328,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7372,6 +7401,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7457,6 +7487,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7717,6 +7749,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7826,7 +7859,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8279,6 +8314,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8425,6 +8461,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9004,6 +9041,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9033,6 +9071,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 485cb290ded..e7a9357da6a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1768,6 +1775,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2165,6 +2173,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2413,6 +2422,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2485,6 +2495,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4233,6 +4244,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4313,6 +4325,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4649,6 +4662,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4728,6 +4742,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4788,6 +4803,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4962,6 +4981,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5509,6 +5529,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5639,6 +5660,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6011,6 +6033,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6227,6 +6250,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6444,6 +6468,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6470,6 +6495,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6675,12 +6701,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7297,6 +7325,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7369,6 +7398,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7454,6 +7484,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7714,6 +7746,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7823,7 +7856,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8275,6 +8310,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8421,6 +8457,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -8999,6 +9036,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9028,6 +9066,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index f8db93c6968..de4b6c8fbb8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1768,6 +1775,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2165,6 +2173,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2413,6 +2422,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2485,6 +2495,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4232,6 +4243,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4312,6 +4324,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4648,6 +4661,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4727,6 +4741,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4787,6 +4802,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4961,6 +4980,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5508,6 +5528,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5638,6 +5659,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6009,6 +6031,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6225,6 +6248,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6442,6 +6466,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6468,6 +6493,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6673,12 +6699,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7295,6 +7323,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7367,6 +7396,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7452,6 +7482,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7711,6 +7743,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7820,7 +7853,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8272,6 +8307,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8418,6 +8454,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -8995,6 +9032,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9024,6 +9062,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index e3c531543f4..b1785347434 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -1171,10 +1171,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1203,6 +1205,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1351,6 +1354,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1376,6 +1380,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1599,6 +1604,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1758,6 +1764,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1779,6 +1786,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2178,6 +2186,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2428,6 +2437,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2500,6 +2510,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4265,6 +4276,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4345,6 +4357,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4682,6 +4695,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4762,6 +4776,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4823,6 +4838,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4999,6 +5018,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5551,6 +5571,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5681,6 +5702,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6055,6 +6077,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6273,6 +6296,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6492,6 +6516,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6518,6 +6543,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6724,12 +6750,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7350,6 +7378,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7423,6 +7452,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7508,6 +7538,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7770,6 +7802,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7886,7 +7919,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8344,6 +8379,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8490,6 +8526,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9101,6 +9138,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 4e691183c72..13fd59373ee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1768,6 +1775,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2165,6 +2173,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2412,6 +2421,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2484,6 +2494,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4231,6 +4242,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4311,6 +4323,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4647,6 +4660,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4726,6 +4740,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4786,6 +4801,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4960,6 +4979,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5507,6 +5527,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5637,6 +5658,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6008,6 +6030,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6224,6 +6247,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6441,6 +6465,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6467,6 +6492,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6671,12 +6697,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7293,6 +7321,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7365,6 +7394,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7450,6 +7480,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7708,6 +7740,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7817,7 +7850,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8269,6 +8304,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8415,6 +8451,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -8992,6 +9029,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9021,6 +9059,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 78b6bc0f7fb..9718fd66f08 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1768,6 +1775,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2165,6 +2173,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2412,6 +2421,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2484,6 +2494,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4231,6 +4242,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4311,6 +4323,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4647,6 +4660,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4726,6 +4740,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4786,6 +4801,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4960,6 +4979,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5507,6 +5527,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5637,6 +5658,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6008,6 +6030,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6224,6 +6247,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6441,6 +6465,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6467,6 +6492,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6670,12 +6696,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7292,6 +7320,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7364,6 +7393,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7449,6 +7479,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7707,6 +7739,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7816,7 +7849,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8268,6 +8303,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8414,6 +8450,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -8990,6 +9027,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9019,6 +9057,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index dce3be779b8..c9c1be69df4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1198,6 +1200,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1346,6 +1349,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1371,6 +1375,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1590,6 +1595,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1748,6 +1754,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1768,6 +1775,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2165,6 +2173,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2412,6 +2421,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2484,6 +2494,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4231,6 +4242,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4311,6 +4323,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4646,6 +4659,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4725,6 +4739,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4785,6 +4800,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4959,6 +4978,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5506,6 +5526,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5636,6 +5657,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6007,6 +6029,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6223,6 +6246,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6440,6 +6464,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6466,6 +6491,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6669,12 +6695,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7291,6 +7319,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7363,6 +7392,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7448,6 +7478,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7706,6 +7738,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7815,7 +7848,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8267,6 +8302,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8413,6 +8449,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -8989,6 +9026,7 @@ self: super: { "yesod-auth-basic" = dontDistribute super."yesod-auth-basic"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -9018,6 +9056,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 8d75abce905..5548314dff3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -1171,10 +1171,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1203,6 +1205,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1351,6 +1354,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1376,6 +1380,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1599,6 +1604,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1758,6 +1764,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1779,6 +1786,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2178,6 +2186,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2428,6 +2437,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2500,6 +2510,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4264,6 +4275,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4344,6 +4356,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4681,6 +4694,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4761,6 +4775,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4822,6 +4837,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4997,6 +5016,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5549,6 +5569,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5679,6 +5700,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6053,6 +6075,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6271,6 +6294,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6490,6 +6514,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6516,6 +6541,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6722,12 +6748,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7348,6 +7376,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7421,6 +7450,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7506,6 +7536,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7768,6 +7800,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7884,7 +7917,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8342,6 +8377,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8488,6 +8524,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9099,6 +9136,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index df9e812a624..9becf92e39a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -1171,10 +1171,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1203,6 +1205,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1351,6 +1354,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1376,6 +1380,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1599,6 +1604,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1757,6 +1763,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1778,6 +1785,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2177,6 +2185,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2427,6 +2436,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2499,6 +2509,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4263,6 +4274,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4343,6 +4355,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4680,6 +4693,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4760,6 +4774,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4821,6 +4836,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4996,6 +5015,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5548,6 +5568,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5678,6 +5699,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6052,6 +6074,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6270,6 +6293,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6488,6 +6512,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6514,6 +6539,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6720,12 +6746,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7345,6 +7373,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7418,6 +7447,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7503,6 +7533,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7765,6 +7797,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7881,7 +7914,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8339,6 +8374,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8485,6 +8521,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9096,6 +9133,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 4be1a01459d..c770cc19433 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -1171,10 +1171,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1203,6 +1205,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1351,6 +1354,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1376,6 +1380,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1599,6 +1604,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1757,6 +1763,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1778,6 +1785,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2177,6 +2185,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2426,6 +2435,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2498,6 +2508,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4262,6 +4273,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4342,6 +4354,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4679,6 +4692,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4759,6 +4773,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4820,6 +4835,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4995,6 +5014,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5547,6 +5567,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5677,6 +5698,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6051,6 +6073,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6269,6 +6292,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6487,6 +6511,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6513,6 +6538,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6719,12 +6745,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7344,6 +7372,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7417,6 +7446,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7502,6 +7532,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7764,6 +7796,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7880,7 +7913,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8338,6 +8373,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8484,6 +8520,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9095,6 +9132,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 05fb1073481..b18878eda98 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -1169,10 +1169,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1201,6 +1203,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1349,6 +1352,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1374,6 +1378,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1596,6 +1601,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1754,6 +1760,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1775,6 +1782,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2174,6 +2182,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2423,6 +2432,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2495,6 +2505,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4257,6 +4268,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4337,6 +4349,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4674,6 +4687,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4754,6 +4768,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4815,6 +4830,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4990,6 +5009,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5542,6 +5562,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5672,6 +5693,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6045,6 +6067,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6263,6 +6286,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6481,6 +6505,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6507,6 +6532,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6713,12 +6739,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7338,6 +7366,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7411,6 +7440,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7496,6 +7526,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7758,6 +7790,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7874,7 +7907,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8330,6 +8365,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8476,6 +8512,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9087,6 +9124,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 0efc62933c2..a310f5c2279 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -1168,10 +1168,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1200,6 +1202,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1348,6 +1351,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1373,6 +1377,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1595,6 +1600,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1753,6 +1759,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1774,6 +1781,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2173,6 +2181,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2422,6 +2431,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2494,6 +2504,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4256,6 +4267,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4336,6 +4348,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4673,6 +4686,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4753,6 +4767,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4814,6 +4829,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4989,6 +5008,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5541,6 +5561,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5671,6 +5692,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6045,6 +6067,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6263,6 +6286,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6481,6 +6505,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6507,6 +6532,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6713,12 +6739,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7338,6 +7366,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7411,6 +7440,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7496,6 +7526,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7758,6 +7790,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7874,7 +7907,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8330,6 +8365,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8476,6 +8512,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9087,6 +9124,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 58baca11287..6f38b78b48a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1199,6 +1201,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1347,6 +1350,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1372,6 +1376,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1594,6 +1599,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1752,6 +1758,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1773,6 +1780,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2172,6 +2180,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2421,6 +2430,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2493,6 +2503,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4254,6 +4265,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4334,6 +4346,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4671,6 +4684,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4751,6 +4765,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4812,6 +4827,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4987,6 +5006,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5539,6 +5559,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5669,6 +5690,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -6043,6 +6065,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6261,6 +6284,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6479,6 +6503,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6505,6 +6530,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6711,12 +6737,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7335,6 +7363,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7408,6 +7437,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7493,6 +7523,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7754,6 +7786,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7868,7 +7901,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8324,6 +8359,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8470,6 +8506,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9081,6 +9118,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 525aa9a24b3..e082c07865a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -1167,10 +1167,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1199,6 +1201,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1347,6 +1350,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = dontDistribute super."apiary"; @@ -1372,6 +1376,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1592,6 +1597,7 @@ self: super: { "benchpress" = dontDistribute super."benchpress"; "bencode" = dontDistribute super."bencode"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1750,6 +1756,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_0_2"; @@ -1771,6 +1778,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_5_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2170,6 +2178,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2419,6 +2428,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2491,6 +2501,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -4250,6 +4261,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4330,6 +4342,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_4_2"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4666,6 +4679,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = dontDistribute super."hspec-snap"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4746,6 +4760,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4806,6 +4821,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4981,6 +5000,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -5532,6 +5552,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5662,6 +5683,7 @@ self: super: { "mangopay" = dontDistribute super."mangopay"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -6036,6 +6058,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = dontDistribute super."nationstates"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6254,6 +6277,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6472,6 +6496,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_5"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6498,6 +6523,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6704,12 +6730,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = doDistribute super."present_2_2"; @@ -7328,6 +7356,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7401,6 +7430,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7486,6 +7516,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7747,6 +7779,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7859,7 +7892,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8313,6 +8348,7 @@ self: super: { "transformers-compat" = doDistribute super."transformers-compat_0_4_0_3"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-lift" = dontDistribute super."transformers-lift"; "transformers-runnable" = dontDistribute super."transformers-runnable"; @@ -8459,6 +8495,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus-model" = dontDistribute super."udbus-model"; @@ -9069,6 +9106,7 @@ self: super: { "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 2f630612612..dc44bbbcf45 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -1146,10 +1146,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-qq" = doDistribute super."aeson-qq_0_8_0"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; @@ -1176,6 +1178,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1322,6 +1325,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; @@ -1337,6 +1341,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1550,6 +1555,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1703,6 +1709,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1722,6 +1729,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2110,6 +2118,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2354,6 +2363,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2426,6 +2436,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2717,6 +2728,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4140,6 +4152,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4217,6 +4230,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4549,6 +4563,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4686,6 +4701,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4852,6 +4871,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4879,6 +4899,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5374,6 +5395,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5501,6 +5523,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5859,6 +5882,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_0"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6070,6 +6094,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6111,6 +6136,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6281,6 +6307,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6306,6 +6333,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6502,12 +6530,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7123,6 +7153,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7193,6 +7224,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7243,6 +7275,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_0"; @@ -7273,6 +7306,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_3_3"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7531,6 +7566,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7633,7 +7669,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8074,6 +8112,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8216,6 +8255,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8780,6 +8820,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8805,6 +8846,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 71f470495eb..564fca0b8df 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -1146,10 +1146,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1175,6 +1177,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1321,6 +1324,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; @@ -1336,6 +1340,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1549,6 +1554,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1702,6 +1708,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1721,6 +1728,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2109,6 +2117,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2353,6 +2362,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2425,6 +2435,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2716,6 +2727,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4138,6 +4150,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4215,6 +4228,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4547,6 +4561,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4684,6 +4699,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4850,6 +4869,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4877,6 +4897,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5372,6 +5393,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5498,6 +5520,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5855,6 +5878,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_0"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6066,6 +6090,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6107,6 +6132,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6277,6 +6303,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6302,6 +6329,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6497,12 +6525,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7117,6 +7147,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7187,6 +7218,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7237,6 +7269,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_0"; @@ -7267,6 +7300,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_3_3"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7525,6 +7560,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7627,7 +7663,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8068,6 +8106,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8210,6 +8249,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8773,6 +8813,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8798,6 +8839,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 780ff76271a..80084167d43 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -1143,10 +1143,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1172,6 +1174,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1316,6 +1319,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1331,6 +1335,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1542,6 +1547,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1694,6 +1700,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1711,6 +1718,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2099,6 +2107,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2342,6 +2351,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2414,6 +2424,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2700,6 +2711,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4114,6 +4126,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4190,6 +4203,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4520,6 +4534,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4657,6 +4672,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4821,6 +4840,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4848,6 +4868,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5338,6 +5359,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5464,6 +5486,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5819,6 +5842,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6027,6 +6051,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6068,6 +6093,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6237,6 +6263,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6262,6 +6289,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6454,12 +6482,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7070,6 +7100,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7140,6 +7171,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7190,6 +7222,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7220,6 +7253,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7475,6 +7510,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7576,7 +7612,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8013,6 +8051,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8154,6 +8193,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8708,6 +8748,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8733,6 +8774,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 219ce8c5bca..a7a66f37824 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -1143,10 +1143,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1172,6 +1174,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1316,6 +1319,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1331,6 +1335,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1542,6 +1547,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1694,6 +1700,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1711,6 +1718,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2098,6 +2106,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2341,6 +2350,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2413,6 +2423,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2699,6 +2710,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4112,6 +4124,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4188,6 +4201,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4518,6 +4532,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4655,6 +4670,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4819,6 +4838,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4846,6 +4866,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5336,6 +5357,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5462,6 +5484,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5817,6 +5840,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6025,6 +6049,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6066,6 +6091,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6235,6 +6261,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6259,6 +6286,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6451,12 +6479,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7067,6 +7097,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7137,6 +7168,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7187,6 +7219,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7217,6 +7250,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7472,6 +7507,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7573,7 +7609,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8010,6 +8048,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8151,6 +8190,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8705,6 +8745,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8730,6 +8771,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index ae199402bb8..928bc177e6a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -1143,10 +1143,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1172,6 +1174,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1316,6 +1319,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1331,6 +1335,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1542,6 +1547,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1694,6 +1700,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1711,6 +1718,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2097,6 +2105,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2340,6 +2349,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2412,6 +2422,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2698,6 +2709,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4110,6 +4122,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4186,6 +4199,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4516,6 +4530,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4653,6 +4668,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4817,6 +4836,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4844,6 +4864,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5334,6 +5355,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5460,6 +5482,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5815,6 +5838,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6023,6 +6047,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6064,6 +6089,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6232,6 +6258,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6256,6 +6283,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6448,12 +6476,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7064,6 +7094,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7134,6 +7165,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7184,6 +7216,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7214,6 +7247,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7469,6 +7504,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7570,7 +7606,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8005,6 +8043,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8146,6 +8185,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8700,6 +8740,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8725,6 +8766,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 4650f41cec9..45442c782c0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -1143,10 +1143,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1172,6 +1174,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1316,6 +1319,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1331,6 +1335,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1542,6 +1547,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1694,6 +1700,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1711,6 +1718,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2097,6 +2105,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2340,6 +2349,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2412,6 +2422,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2698,6 +2709,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4110,6 +4122,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4185,6 +4198,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4515,6 +4529,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4652,6 +4667,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4816,6 +4835,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4843,6 +4863,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5332,6 +5353,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5458,6 +5480,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5813,6 +5836,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6021,6 +6045,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6062,6 +6087,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6229,6 +6255,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6253,6 +6280,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6445,12 +6473,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7061,6 +7091,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7131,6 +7162,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7181,6 +7213,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7211,6 +7244,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7466,6 +7501,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7567,7 +7603,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8002,6 +8040,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8143,6 +8182,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8696,6 +8736,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8721,6 +8762,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index bc556968a5e..3a2e3d30d4e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -1141,10 +1141,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1170,6 +1172,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1314,6 +1317,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1329,6 +1333,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1540,6 +1545,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1692,6 +1698,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1709,6 +1716,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2094,6 +2102,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2336,6 +2345,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2408,6 +2418,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2692,6 +2703,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4104,6 +4116,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4179,6 +4192,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_5"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4509,6 +4523,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4645,6 +4660,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4809,6 +4828,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4836,6 +4856,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5325,6 +5346,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5451,6 +5473,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5806,6 +5829,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6014,6 +6038,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6055,6 +6080,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6222,6 +6248,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6246,6 +6273,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6438,12 +6466,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7054,6 +7084,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7124,6 +7155,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7174,6 +7206,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7204,6 +7237,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7459,6 +7494,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7560,7 +7596,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7995,6 +8033,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8136,6 +8175,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8688,6 +8728,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8713,6 +8754,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 1ac8a09b7bc..49d22021c49 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -1141,10 +1141,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1170,6 +1172,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1314,6 +1317,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1329,6 +1333,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1540,6 +1545,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1692,6 +1698,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1709,6 +1716,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2094,6 +2102,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2336,6 +2345,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2408,6 +2418,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2692,6 +2703,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4103,6 +4115,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4178,6 +4191,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_5"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4507,6 +4521,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4642,6 +4657,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4806,6 +4825,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4833,6 +4853,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5322,6 +5343,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5448,6 +5470,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5803,6 +5826,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6011,6 +6035,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6052,6 +6077,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6219,6 +6245,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6243,6 +6270,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6435,12 +6463,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7051,6 +7081,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7121,6 +7152,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7170,6 +7202,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7200,6 +7233,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7455,6 +7490,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7556,7 +7592,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7991,6 +8029,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8132,6 +8171,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8684,6 +8724,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8709,6 +8750,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 3cea49933c4..c296a9132a1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -1140,10 +1140,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1169,6 +1171,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1313,6 +1316,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1328,6 +1332,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1539,6 +1544,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1691,6 +1697,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1708,6 +1715,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2093,6 +2101,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2335,6 +2344,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2407,6 +2417,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2691,6 +2702,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4100,6 +4112,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4175,6 +4188,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_5"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4504,6 +4518,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4639,6 +4654,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4803,6 +4822,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4830,6 +4850,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5318,6 +5339,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5444,6 +5466,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5798,6 +5821,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6006,6 +6030,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6047,6 +6072,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6214,6 +6240,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6238,6 +6265,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6429,12 +6457,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7044,6 +7074,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7114,6 +7145,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7163,6 +7195,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7193,6 +7226,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7448,6 +7483,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7549,7 +7585,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7981,6 +8019,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8122,6 +8161,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8674,6 +8714,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8699,6 +8740,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index fa7a46da9d7..501a11cc54c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -1140,10 +1140,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1169,6 +1171,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1313,6 +1316,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1328,6 +1332,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1538,6 +1543,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1690,6 +1696,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1707,6 +1714,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2092,6 +2100,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2334,6 +2343,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2406,6 +2416,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2690,6 +2701,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4098,6 +4110,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4173,6 +4186,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_5"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4502,6 +4516,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4637,6 +4652,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4800,6 +4819,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4827,6 +4847,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5315,6 +5336,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5440,6 +5462,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5793,6 +5816,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6001,6 +6025,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6042,6 +6067,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6209,6 +6235,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6233,6 +6260,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6424,12 +6452,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7039,6 +7069,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7109,6 +7140,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7158,6 +7190,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7188,6 +7221,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_4_1"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7443,6 +7478,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7544,7 +7580,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7976,6 +8014,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8117,6 +8156,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8669,6 +8709,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8694,6 +8735,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 90a553ae7f6..8eed33d20a2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -1140,10 +1140,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1169,6 +1171,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1313,6 +1316,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1328,6 +1332,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1538,6 +1543,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1690,6 +1696,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1707,6 +1714,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2091,6 +2099,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2333,6 +2342,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2405,6 +2415,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2689,6 +2700,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4093,6 +4105,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4168,6 +4181,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_5"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4497,6 +4511,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4631,6 +4646,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4794,6 +4813,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4821,6 +4841,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5309,6 +5330,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5434,6 +5456,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5787,6 +5810,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -5995,6 +6019,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6036,6 +6061,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6202,6 +6228,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_3"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6226,6 +6253,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6417,12 +6445,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7032,6 +7062,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7102,6 +7133,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7151,6 +7183,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7180,6 +7213,8 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7435,6 +7470,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7536,7 +7572,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7968,6 +8006,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8109,6 +8148,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8661,6 +8701,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8686,6 +8727,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index b188b36981f..a41538e4805 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1139,10 +1140,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1168,6 +1171,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1312,6 +1316,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1327,6 +1332,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1535,6 +1541,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1687,6 +1694,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1704,6 +1712,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2086,6 +2095,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2327,6 +2337,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2399,6 +2410,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2683,6 +2695,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4087,6 +4100,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4162,6 +4176,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_5"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4489,6 +4504,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4623,6 +4639,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4786,6 +4806,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4813,6 +4834,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5299,6 +5321,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5424,6 +5447,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5777,6 +5801,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -5984,6 +6009,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6025,6 +6051,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6191,6 +6218,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6215,6 +6243,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6406,12 +6435,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7021,6 +7052,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7091,6 +7123,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7140,6 +7173,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7169,6 +7203,8 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7423,6 +7459,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7524,7 +7561,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7956,6 +7995,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8097,6 +8137,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8648,6 +8689,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8673,6 +8715,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 2cc19194784..53be954857c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1174,6 +1176,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1319,6 +1322,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_3"; @@ -1334,6 +1338,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1547,6 +1552,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1700,6 +1706,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1719,6 +1726,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2107,6 +2115,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2351,6 +2360,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2423,6 +2433,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2713,6 +2724,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4134,6 +4146,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4211,6 +4224,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4543,6 +4557,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4680,6 +4695,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4846,6 +4865,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4873,6 +4893,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5366,6 +5387,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5492,6 +5514,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5849,6 +5872,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_0"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6060,6 +6084,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6101,6 +6126,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6271,6 +6297,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6296,6 +6323,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6491,12 +6519,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7110,6 +7140,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7180,6 +7211,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7230,6 +7262,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_0"; @@ -7260,6 +7293,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_3_3"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7517,6 +7552,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7619,7 +7655,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8060,6 +8098,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8202,6 +8241,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8765,6 +8805,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8790,6 +8831,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 1e73dfd5753..58bef4e1657 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1138,10 +1139,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1167,6 +1170,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1311,6 +1315,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1326,6 +1331,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1534,6 +1540,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1686,6 +1693,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1703,6 +1711,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2085,6 +2094,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2326,6 +2336,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2398,6 +2409,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2682,6 +2694,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4086,6 +4099,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4161,6 +4175,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_5"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4488,6 +4503,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4622,6 +4638,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4785,6 +4805,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4812,6 +4833,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5298,6 +5320,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5423,6 +5446,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5776,6 +5800,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -5983,6 +6008,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6024,6 +6050,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6190,6 +6217,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6214,6 +6242,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6405,12 +6434,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7019,6 +7050,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7089,6 +7121,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_5"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7138,6 +7171,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7167,6 +7201,8 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7421,6 +7457,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7521,7 +7558,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7953,6 +7992,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8094,6 +8134,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8644,6 +8685,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8669,6 +8711,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index b6e3b1ef503..ac0f58b31bd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1138,10 +1139,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1167,6 +1170,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1311,6 +1315,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1326,6 +1331,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1534,6 +1540,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1686,6 +1693,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1703,6 +1711,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2085,6 +2094,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2325,6 +2335,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2397,6 +2408,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2681,6 +2693,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4083,6 +4096,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4158,6 +4172,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_5"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4485,6 +4500,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4619,6 +4635,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4780,6 +4800,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4807,6 +4828,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5293,6 +5315,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5418,6 +5441,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5770,6 +5794,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -5977,6 +6002,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6018,6 +6044,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6183,6 +6210,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6207,6 +6235,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6397,12 +6426,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7009,6 +7040,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7079,6 +7111,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7125,6 +7158,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7154,6 +7188,8 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7407,6 +7443,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7507,7 +7544,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7939,6 +7978,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8080,6 +8120,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8626,6 +8667,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8651,6 +8693,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 1c35577c40b..438cbbc5a19 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1138,10 +1139,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1167,6 +1170,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1311,6 +1315,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1326,6 +1331,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1534,6 +1540,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1686,6 +1693,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1703,6 +1711,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2085,6 +2094,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2325,6 +2335,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2397,6 +2408,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2681,6 +2693,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4080,6 +4093,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4155,6 +4169,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_5"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4482,6 +4497,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4616,6 +4632,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4775,6 +4795,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4801,6 +4822,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5287,6 +5309,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5412,6 +5435,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5764,6 +5788,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -5971,6 +5996,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6012,6 +6038,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6177,6 +6204,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6201,6 +6229,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6391,12 +6420,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7003,6 +7034,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7073,6 +7105,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7119,6 +7152,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -7148,6 +7182,8 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7401,6 +7437,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7501,7 +7538,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7933,6 +7972,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8074,6 +8114,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8620,6 +8661,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8645,6 +8687,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index cc729839b38..0b13ec7c6b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1174,6 +1176,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1319,6 +1322,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1334,6 +1338,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1547,6 +1552,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1700,6 +1706,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1719,6 +1726,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2107,6 +2115,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2351,6 +2360,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2423,6 +2433,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2713,6 +2724,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4133,6 +4145,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4210,6 +4223,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4541,6 +4555,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4678,6 +4693,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4844,6 +4863,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4871,6 +4891,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5364,6 +5385,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5490,6 +5512,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5847,6 +5870,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_1"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6058,6 +6082,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6099,6 +6124,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6269,6 +6295,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6294,6 +6321,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6489,12 +6517,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7107,6 +7137,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7177,6 +7208,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7227,6 +7259,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_0"; @@ -7257,6 +7290,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_3_3"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7513,6 +7548,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7615,7 +7651,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8056,6 +8094,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8198,6 +8237,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8760,6 +8800,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8785,6 +8826,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 01a9caafa27..70650c9956a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1174,6 +1176,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1319,6 +1322,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1334,6 +1338,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1547,6 +1552,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1700,6 +1706,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1719,6 +1726,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2107,6 +2115,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2351,6 +2360,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2423,6 +2433,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2713,6 +2724,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4133,6 +4145,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4210,6 +4223,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4541,6 +4555,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4678,6 +4693,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4844,6 +4863,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4871,6 +4891,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5364,6 +5385,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5490,6 +5512,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5847,6 +5870,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_2"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6058,6 +6082,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6099,6 +6124,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6269,6 +6295,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6294,6 +6321,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6489,12 +6517,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7107,6 +7137,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7177,6 +7208,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7227,6 +7259,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; @@ -7257,6 +7290,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_3_3"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7513,6 +7548,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7614,7 +7650,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8055,6 +8093,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8197,6 +8236,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8758,6 +8798,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8783,6 +8824,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index d427bfbcde7..4f178b4b1cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1174,6 +1176,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1318,6 +1321,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1333,6 +1337,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1546,6 +1551,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1699,6 +1705,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1718,6 +1725,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2106,6 +2114,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2350,6 +2359,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2422,6 +2432,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2712,6 +2723,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4131,6 +4143,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4207,6 +4220,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4537,6 +4551,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4674,6 +4689,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4838,6 +4857,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4865,6 +4885,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5358,6 +5379,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5484,6 +5506,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5840,6 +5863,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6051,6 +6075,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6092,6 +6117,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6261,6 +6287,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6286,6 +6313,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6480,12 +6508,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7098,6 +7128,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7168,6 +7199,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7218,6 +7250,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; @@ -7248,6 +7281,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_3_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7504,6 +7539,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7605,7 +7641,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8043,6 +8081,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8185,6 +8224,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8745,6 +8785,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8770,6 +8811,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 00eeb284498..cf8d12a6493 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1174,6 +1176,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1318,6 +1321,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1333,6 +1337,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1546,6 +1551,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1699,6 +1705,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1718,6 +1725,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2106,6 +2114,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2350,6 +2359,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2422,6 +2432,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2712,6 +2723,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4128,6 +4140,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4204,6 +4217,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4534,6 +4548,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4671,6 +4686,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4835,6 +4854,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4862,6 +4882,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5352,6 +5373,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5478,6 +5500,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_4"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5834,6 +5857,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6045,6 +6069,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6086,6 +6111,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6255,6 +6281,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6280,6 +6307,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6474,12 +6502,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7092,6 +7122,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7162,6 +7193,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_2"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7212,6 +7244,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; @@ -7242,6 +7275,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_3_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7498,6 +7533,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7599,7 +7635,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8037,6 +8075,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8178,6 +8217,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8737,6 +8777,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8762,6 +8803,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index fe0bb9ea923..3cf88fb2e61 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1174,6 +1176,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1318,6 +1321,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1333,6 +1337,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1544,6 +1549,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1697,6 +1703,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html" = doDistribute super."blaze-html_0_8_1_0"; @@ -1716,6 +1723,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2104,6 +2112,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2347,6 +2356,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2419,6 +2429,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2709,6 +2720,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4124,6 +4136,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4200,6 +4213,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4530,6 +4544,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4667,6 +4682,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4831,6 +4850,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4858,6 +4878,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5348,6 +5369,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5474,6 +5496,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5830,6 +5853,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6041,6 +6065,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6082,6 +6107,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6251,6 +6277,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6276,6 +6303,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6469,12 +6497,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7086,6 +7116,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7156,6 +7187,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7206,6 +7238,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; @@ -7236,6 +7269,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7491,6 +7526,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7592,7 +7628,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8030,6 +8068,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8171,6 +8210,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8728,6 +8768,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8753,6 +8794,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 164e06229bf..104697b1a4b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -1145,10 +1145,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1174,6 +1176,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1318,6 +1321,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1333,6 +1337,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1544,6 +1549,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1697,6 +1703,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1714,6 +1721,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2102,6 +2110,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2345,6 +2354,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2417,6 +2427,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2703,6 +2714,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4118,6 +4130,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4194,6 +4207,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4524,6 +4538,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4661,6 +4676,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4825,6 +4844,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4852,6 +4872,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5342,6 +5363,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5468,6 +5490,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5823,6 +5846,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6034,6 +6058,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6075,6 +6100,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6244,6 +6270,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6269,6 +6296,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6461,12 +6489,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7078,6 +7108,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7148,6 +7179,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7198,6 +7230,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; @@ -7228,6 +7261,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7483,6 +7518,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7584,7 +7620,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8021,6 +8059,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8162,6 +8201,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8719,6 +8759,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8744,6 +8785,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 9d6b3a0a81f..be7b35aabf7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -1143,10 +1143,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1172,6 +1174,7 @@ self: super: { "airship" = dontDistribute super."airship"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1316,6 +1319,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1331,6 +1335,7 @@ self: super: { "applicative-fail" = dontDistribute super."applicative-fail"; "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = dontDistribute super."apply-refact"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1542,6 +1547,7 @@ self: super: { "benchmark-function" = dontDistribute super."benchmark-function"; "benchpress" = dontDistribute super."benchpress"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1694,6 +1700,7 @@ self: super: { "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1711,6 +1718,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2099,6 +2107,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2342,6 +2351,7 @@ self: super: { "css-syntax" = dontDistribute super."css-syntax"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2414,6 +2424,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2700,6 +2711,7 @@ self: super: { "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; "docopt" = dontDistribute super."docopt"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -4114,6 +4126,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4190,6 +4203,7 @@ self: super: { "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; "hindent" = doDistribute super."hindent_4_5_4"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4520,6 +4534,7 @@ self: super: { "hspec-server" = dontDistribute super."hspec-server"; "hspec-setup" = dontDistribute super."hspec-setup"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; @@ -4657,6 +4672,10 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; @@ -4821,6 +4840,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4848,6 +4868,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5338,6 +5359,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5464,6 +5486,7 @@ self: super: { "mangopay" = doDistribute super."mangopay_1_11_5"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5819,6 +5842,7 @@ self: super: { "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "native" = dontDistribute super."native"; "nats" = doDistribute super."nats_1"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; @@ -6029,6 +6053,7 @@ self: super: { "open-browser" = dontDistribute super."open-browser"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -6070,6 +6095,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6239,6 +6265,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6264,6 +6291,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgp-wordlist" = dontDistribute super."pgp-wordlist"; @@ -6456,12 +6484,14 @@ self: super: { "prefix-units" = doDistribute super."prefix-units_0_1_0_2"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -7073,6 +7103,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -7143,6 +7174,7 @@ self: super: { "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -7193,6 +7225,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_3"; @@ -7223,6 +7256,8 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; @@ -7478,6 +7513,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7579,7 +7615,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -8016,6 +8054,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -8157,6 +8196,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8714,6 +8754,7 @@ self: super: { "yesod-auth" = doDistribute super."yesod-auth_1_4_7"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8739,6 +8780,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 36b97d7d686..5613b9d9119 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1114,10 +1115,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1143,6 +1146,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_1_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1286,6 +1290,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1301,6 +1306,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1342,6 +1348,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1502,6 +1509,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1648,6 +1656,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1665,6 +1674,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2038,6 +2048,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2073,6 +2084,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2270,6 +2282,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2340,6 +2353,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2614,6 +2628,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3984,6 +3999,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4055,6 +4071,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4368,6 +4386,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4438,6 +4457,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4491,6 +4511,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4647,6 +4671,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4672,6 +4697,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5148,6 +5174,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5270,6 +5297,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5610,6 +5638,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5806,6 +5835,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5847,6 +5877,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -6005,6 +6036,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6028,6 +6060,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -6208,12 +6241,14 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6796,6 +6831,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6865,6 +6901,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6908,6 +6945,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6938,11 +6976,14 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -7031,6 +7072,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_1"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7180,6 +7222,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7278,7 +7321,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7692,6 +7737,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7828,6 +7874,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8336,6 +8383,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8361,6 +8409,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 8825b25d688..dad52f109ee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1113,10 +1114,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1142,6 +1145,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_2_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1284,6 +1288,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1299,6 +1304,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1340,6 +1346,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1500,6 +1507,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1646,6 +1654,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1663,6 +1672,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2036,6 +2046,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2071,6 +2082,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2268,6 +2280,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2338,6 +2351,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2612,6 +2626,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3977,6 +3992,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4048,6 +4064,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4361,6 +4379,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4431,6 +4450,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4484,6 +4504,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4636,6 +4660,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4660,6 +4685,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5133,6 +5159,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5255,6 +5282,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5595,6 +5623,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5791,6 +5820,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5832,6 +5862,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -5937,6 +5968,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5989,6 +6021,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -6012,6 +6045,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -6191,12 +6225,14 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-extras" = doDistribute super."prelude-extras_0_4_0_2"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6779,6 +6815,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6848,6 +6885,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6891,6 +6929,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6921,11 +6960,14 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -7014,6 +7056,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_1"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7163,6 +7206,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7261,7 +7305,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7675,6 +7721,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7811,6 +7858,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8083,6 +8131,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8318,6 +8367,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8343,6 +8393,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index a1f662912d2..53c71284163 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1112,10 +1113,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1141,6 +1144,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1283,6 +1287,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1298,6 +1303,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1339,6 +1345,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1499,6 +1506,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1645,6 +1653,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1662,6 +1671,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2031,6 +2041,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2066,6 +2077,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2262,6 +2274,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2332,6 +2345,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2605,6 +2619,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3958,6 +3973,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -4029,6 +4045,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4340,6 +4358,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4410,6 +4429,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4463,6 +4483,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4613,6 +4637,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4636,6 +4661,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5108,6 +5134,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5230,6 +5257,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5567,6 +5595,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5763,6 +5792,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5804,6 +5834,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0"; "optparse-declarative" = dontDistribute super."optparse-declarative"; @@ -5909,6 +5940,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5961,6 +5993,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5984,6 +6017,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -6161,11 +6195,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6744,6 +6780,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6812,6 +6849,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6855,6 +6893,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6885,11 +6924,14 @@ self: super: { "shellmate" = dontDistribute super."shellmate"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6974,6 +7016,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_1"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7121,6 +7164,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7219,7 +7263,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7633,6 +7679,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7769,6 +7816,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -8039,6 +8087,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8274,6 +8323,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8299,6 +8349,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index adb715748e7..17e11586d38 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1100,10 +1101,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_0_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1129,6 +1132,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1271,6 +1275,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1286,6 +1291,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1327,6 +1333,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1486,6 +1493,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1626,6 +1634,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1643,6 +1652,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2006,6 +2016,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2041,6 +2052,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2232,6 +2244,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2301,6 +2314,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2568,6 +2582,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3904,6 +3919,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3975,6 +3991,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4286,6 +4304,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4356,6 +4375,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4407,6 +4427,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4556,6 +4580,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4579,6 +4604,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5047,6 +5073,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5169,6 +5196,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5503,6 +5531,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5697,6 +5726,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5738,6 +5768,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5841,6 +5872,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5893,6 +5925,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5915,6 +5948,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -6088,11 +6122,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6662,6 +6698,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6729,6 +6766,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6772,6 +6810,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6801,11 +6840,14 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6889,6 +6931,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7036,6 +7079,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7131,7 +7175,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7537,6 +7583,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7671,6 +7718,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7941,6 +7989,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8174,6 +8223,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8199,6 +8249,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 15ca4c2b748..bfb3b731998 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1099,10 +1100,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1128,6 +1131,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1269,6 +1273,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1284,6 +1289,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1325,6 +1331,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1484,6 +1491,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1624,6 +1632,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1640,6 +1649,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2001,6 +2011,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2036,6 +2047,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2227,6 +2239,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2295,6 +2308,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2562,6 +2576,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3898,6 +3913,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3969,6 +3985,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4280,6 +4298,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4350,6 +4369,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4401,6 +4421,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4549,6 +4573,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4572,6 +4597,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5040,6 +5066,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5162,6 +5189,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5495,6 +5523,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5689,6 +5718,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5730,6 +5760,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5833,6 +5864,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5885,6 +5917,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5907,6 +5940,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -6080,11 +6114,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6653,6 +6689,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6719,6 +6756,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6762,6 +6800,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6791,11 +6830,14 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6879,6 +6921,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7026,6 +7069,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7121,7 +7165,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7526,6 +7572,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7660,6 +7707,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7929,6 +7977,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8162,6 +8211,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8187,6 +8237,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index d239e71ac76..4044a1f41a0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1087,10 +1088,12 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1116,6 +1119,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1257,6 +1261,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1272,6 +1277,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1312,6 +1318,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1468,6 +1475,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1606,6 +1614,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1622,6 +1631,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1971,6 +1981,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2006,6 +2017,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2191,6 +2203,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2259,6 +2272,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2516,6 +2530,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3824,6 +3839,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3893,6 +3909,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4019,6 +4037,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4196,6 +4215,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4265,6 +4285,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4315,6 +4336,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4460,6 +4485,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4482,6 +4508,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4942,6 +4969,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5061,6 +5089,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5381,6 +5410,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5570,6 +5600,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5611,6 +5642,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5710,6 +5742,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5756,6 +5789,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5776,6 +5810,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -5946,11 +5981,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6334,6 +6371,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6509,6 +6547,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6572,6 +6611,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6612,6 +6652,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6619,6 +6660,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_8"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6640,10 +6682,13 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6726,6 +6771,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6870,6 +6916,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -6964,7 +7011,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7361,6 +7410,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7492,6 +7542,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7751,6 +7802,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7981,6 +8033,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8005,6 +8058,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 5c828e8e63e..5d5a3767d6f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1086,10 +1087,12 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1115,6 +1118,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1255,6 +1259,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1270,6 +1275,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1310,6 +1316,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1463,6 +1470,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1600,6 +1608,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1616,6 +1625,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1964,6 +1974,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -1999,6 +2010,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2183,6 +2195,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2251,6 +2264,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2508,6 +2522,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3814,6 +3829,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3883,6 +3899,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4009,6 +4027,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4182,6 +4201,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4251,6 +4271,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4301,6 +4322,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4445,6 +4470,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4467,6 +4493,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4927,6 +4954,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5045,6 +5073,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5365,6 +5394,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5554,6 +5584,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5595,6 +5626,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5694,6 +5726,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5740,6 +5773,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5760,6 +5794,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -5929,11 +5964,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6317,6 +6354,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6492,6 +6530,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6555,6 +6594,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6595,6 +6635,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6602,6 +6643,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_8"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6623,10 +6665,13 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6709,6 +6754,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6853,6 +6899,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -6947,7 +6994,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7341,6 +7390,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7471,6 +7521,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7690,6 +7741,7 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7725,6 +7777,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7955,6 +8008,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_13"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -7977,6 +8031,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index d5dbd2eed58..b8353d4f9b3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1085,10 +1086,12 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1114,6 +1117,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1254,6 +1258,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1269,6 +1274,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1309,6 +1315,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1462,6 +1469,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1599,6 +1607,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1615,6 +1624,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1959,6 +1969,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -1994,6 +2005,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2178,6 +2190,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2246,6 +2259,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2503,6 +2517,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3804,6 +3819,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3873,6 +3889,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -3999,6 +4017,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4172,6 +4191,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4240,6 +4260,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4290,6 +4311,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4434,6 +4459,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4456,6 +4482,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4915,6 +4942,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5031,6 +5059,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5347,6 +5376,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5536,6 +5566,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5577,6 +5608,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5676,6 +5708,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5722,6 +5755,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5742,6 +5776,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -5909,11 +5944,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6297,6 +6334,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6472,6 +6510,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6534,6 +6573,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6574,6 +6614,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_6"; @@ -6581,6 +6622,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_8"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6602,10 +6644,13 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6687,6 +6732,7 @@ self: super: { "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6831,6 +6877,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -6925,7 +6972,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7316,6 +7365,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7445,6 +7495,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7664,6 +7715,7 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7699,6 +7751,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7838,10 +7891,12 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1_1"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_4_1"; "xml-enumerator" = dontDistribute super."xml-enumerator"; "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; "xml-extractors" = dontDistribute super."xml-extractors"; @@ -7927,6 +7982,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_13"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -7949,6 +8005,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix new file mode 100644 index 00000000000..75d72e126f1 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -0,0 +1,8071 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.13 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AFSM" = dontDistribute super."AFSM"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-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-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "automitive-cse" = dontDistribute super."automitive-cse"; + "automotive-cse" = dontDistribute super."automotive-cse"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "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"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "diagrams-wx" = dontDistribute super."diagrams-wx"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-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-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_6"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-hplay" = dontDistribute super."ghcjs-hplay"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "givegif" = dontDistribute super."givegif"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpio" = dontDistribute super."gpio"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "guid" = dontDistribute super."guid"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "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"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-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-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_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-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hit-graph" = dontDistribute super."hit-graph"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "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-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_5"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-parse" = dontDistribute super."html-parse"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; + "hw-succinct" = dontDistribute super."hw-succinct"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "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"; + "interlude-l" = dontDistribute super."interlude-l"; + "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"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-machine" = dontDistribute super."io-machine"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdaya-bus" = dontDistribute super."lambdaya-bus"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leancheck" = dontDistribute super."leancheck"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memory" = doDistribute super."memory_0_11"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_4_2_1"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; + "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "mnist-idx" = dontDistribute super."mnist-idx"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-hash" = dontDistribute super."monad-hash"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-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-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanovg" = dontDistribute super."nanovg"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "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-database-url" = dontDistribute super."persistent-database-url"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-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"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = dontDistribute super."protolude"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "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"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; + "quiver-http" = dontDistribute super."quiver-http"; + "quiver-instances" = dontDistribute super."quiver-instances"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; + "quiver-sort" = dontDistribute super."quiver-sort"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow" = doDistribute super."rainbow_0_26_0_6"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "read-env-var" = dontDistribute super."read-env-var"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sarsi" = dontDistribute super."sarsi"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-language-c" = doDistribute super."shake-language-c_0_8_6"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_1"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempo" = dontDistribute super."tempo"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "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-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_4"; + "tls-debug" = doDistribute super."tls-debug_0_4_1"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "transient-universe" = dontDistribute super."transient-universe"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "unit-constraint" = dontDistribute super."unit-constraint"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = doDistribute super."with-location_0_0_0"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_4_1"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 6cfa27dc5f5..7dbaa3da18b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1098,10 +1099,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1127,6 +1130,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1268,6 +1272,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1283,6 +1288,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1324,6 +1330,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1483,6 +1490,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1623,6 +1631,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1639,6 +1648,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2000,6 +2010,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2035,6 +2046,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2226,6 +2238,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2294,6 +2307,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2560,6 +2574,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3891,6 +3906,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3962,6 +3978,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4273,6 +4291,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4343,6 +4362,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4393,6 +4413,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4541,6 +4565,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4563,6 +4588,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5031,6 +5057,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5153,6 +5180,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5480,6 +5508,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5674,6 +5703,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5715,6 +5745,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5818,6 +5849,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5867,6 +5899,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5889,6 +5922,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -6061,11 +6095,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6631,6 +6667,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6697,6 +6734,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6740,6 +6778,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6769,11 +6808,14 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6857,6 +6899,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -7004,6 +7047,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7099,7 +7143,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7503,6 +7549,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7637,6 +7684,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7906,6 +7954,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8139,6 +8188,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8164,6 +8214,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 63f0dd7e6e0..4368c640604 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1095,10 +1096,12 @@ self: super: { "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "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-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1124,6 +1127,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1265,6 +1269,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1280,6 +1285,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1320,6 +1326,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1479,6 +1486,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1618,6 +1626,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1634,6 +1643,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1994,6 +2004,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2029,6 +2040,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2218,6 +2230,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2286,6 +2299,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2550,6 +2564,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3873,6 +3888,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3944,6 +3960,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4255,6 +4273,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4325,6 +4344,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4375,6 +4395,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4522,6 +4546,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4544,6 +4569,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -5011,6 +5037,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5132,6 +5159,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5458,6 +5486,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5652,6 +5681,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5693,6 +5723,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5795,6 +5826,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5844,6 +5876,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5866,6 +5899,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -6038,11 +6072,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6428,6 +6464,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6604,6 +6641,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6670,6 +6708,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6713,6 +6752,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6742,11 +6782,14 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6829,6 +6872,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6974,6 +7018,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7068,7 +7113,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7472,6 +7519,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7606,6 +7654,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7871,6 +7920,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8104,6 +8154,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8129,6 +8180,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 0fa6ca79407..d54a61d0d9d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1093,10 +1094,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1122,6 +1125,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1263,6 +1267,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1278,6 +1283,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1318,6 +1324,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1477,6 +1484,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1616,6 +1624,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1632,6 +1641,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1991,6 +2001,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2026,6 +2037,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2214,6 +2226,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2282,6 +2295,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2541,6 +2555,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3859,6 +3874,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3930,6 +3946,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4238,6 +4256,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4308,6 +4327,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4358,6 +4378,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4505,6 +4529,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4527,6 +4552,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4993,6 +5019,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5113,6 +5140,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5437,6 +5465,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5629,6 +5658,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5670,6 +5700,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5771,6 +5802,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5820,6 +5852,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5842,6 +5875,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -6013,11 +6047,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6402,6 +6438,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6578,6 +6615,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6644,6 +6682,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6687,6 +6726,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6716,11 +6756,14 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6803,6 +6846,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6948,6 +6992,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7042,7 +7087,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7445,6 +7492,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7578,6 +7626,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7843,6 +7892,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8076,6 +8126,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8101,6 +8152,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 0bcc38b4792..3755d3ed35c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1093,10 +1094,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1122,6 +1125,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1263,6 +1267,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1278,6 +1283,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1318,6 +1324,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1476,6 +1483,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1615,6 +1623,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1631,6 +1640,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1987,6 +1997,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2022,6 +2033,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2210,6 +2222,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2278,6 +2291,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2537,6 +2551,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3854,6 +3869,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3925,6 +3941,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4232,6 +4250,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4302,6 +4321,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4352,6 +4372,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4499,6 +4523,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4521,6 +4546,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4987,6 +5013,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5107,6 +5134,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5431,6 +5459,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5623,6 +5652,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5664,6 +5694,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5765,6 +5796,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; @@ -5814,6 +5846,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5836,6 +5869,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -6007,11 +6041,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6396,6 +6432,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6572,6 +6609,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6638,6 +6676,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6681,6 +6720,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6710,11 +6750,14 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6797,6 +6840,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6942,6 +6986,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7036,7 +7081,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7439,6 +7486,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7572,6 +7620,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7835,6 +7884,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8067,6 +8117,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8092,6 +8143,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index d9ee78123bf..53643599858 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1092,10 +1093,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1121,6 +1124,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1262,6 +1266,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1277,6 +1282,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1317,6 +1323,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1473,6 +1480,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1611,6 +1619,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1627,6 +1636,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1982,6 +1992,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2017,6 +2028,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2204,6 +2216,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2272,6 +2285,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2531,6 +2545,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3843,6 +3858,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3914,6 +3930,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4221,6 +4239,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4291,6 +4310,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4341,6 +4361,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4488,6 +4512,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4510,6 +4535,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4975,6 +5001,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5094,6 +5121,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5418,6 +5446,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5609,6 +5638,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5650,6 +5680,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5751,6 +5782,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5799,6 +5831,7 @@ self: super: { "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5821,6 +5854,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -5991,11 +6025,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6379,6 +6415,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6555,6 +6592,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6621,6 +6659,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6664,6 +6703,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6693,11 +6733,14 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6780,6 +6823,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6925,6 +6969,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7019,7 +7064,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7420,6 +7467,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7553,6 +7601,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7815,6 +7864,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8046,6 +8096,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8071,6 +8122,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 359afac3ca8..b8ae4e15211 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1092,10 +1093,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1121,6 +1124,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1262,6 +1266,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1277,6 +1282,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1317,6 +1323,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1473,6 +1480,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1611,6 +1619,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1627,6 +1636,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1979,6 +1989,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2014,6 +2025,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2200,6 +2212,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2268,6 +2281,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2527,6 +2541,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3839,6 +3854,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3909,6 +3925,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4215,6 +4233,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4285,6 +4304,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4335,6 +4355,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4482,6 +4506,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4504,6 +4529,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4969,6 +4995,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5088,6 +5115,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5411,6 +5439,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5602,6 +5631,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5643,6 +5673,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5744,6 +5775,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5791,6 +5823,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5811,6 +5844,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -5981,11 +6015,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6369,6 +6405,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6544,6 +6581,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6610,6 +6648,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6653,6 +6692,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6682,11 +6722,14 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6769,6 +6812,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6914,6 +6958,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7008,7 +7053,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7407,6 +7454,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7539,6 +7587,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7801,6 +7850,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8032,6 +8082,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8057,6 +8108,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index 82f403de3dc..ddb17e5922d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1092,10 +1093,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1121,6 +1124,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1262,6 +1266,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1277,6 +1282,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1317,6 +1323,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1473,6 +1480,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1611,6 +1619,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1627,6 +1636,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1979,6 +1989,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2014,6 +2025,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2199,6 +2211,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2267,6 +2280,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2526,6 +2540,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3838,6 +3853,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3908,6 +3924,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4214,6 +4232,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4284,6 +4303,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4334,6 +4354,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4481,6 +4505,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4503,6 +4528,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4968,6 +4994,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5087,6 +5114,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5410,6 +5438,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5601,6 +5630,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5642,6 +5672,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5743,6 +5774,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5790,6 +5822,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5810,6 +5843,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -5980,11 +6014,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6368,6 +6404,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6543,6 +6580,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6609,6 +6647,7 @@ self: super: { "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-docs" = doDistribute super."servant-docs_0_4_4_6"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6652,6 +6691,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6681,11 +6721,14 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shortcut-links" = doDistribute super."shortcut-links_0_4_1_0"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6768,6 +6811,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6913,6 +6957,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -7007,7 +7052,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7406,6 +7453,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7538,6 +7586,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7798,6 +7847,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8029,6 +8079,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8054,6 +8105,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 695213a886f..3bb8e3ad802 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -72,6 +72,7 @@ self: super: { "Advgame" = dontDistribute super."Advgame"; "AesonBson" = dontDistribute super."AesonBson"; "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; "Agda-executable" = dontDistribute super."Agda-executable"; "AhoCorasick" = dontDistribute super."AhoCorasick"; "AlgorithmW" = dontDistribute super."AlgorithmW"; @@ -1091,10 +1092,12 @@ self: super: { "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; "aeson-schema" = dontDistribute super."aeson-schema"; "aeson-serialize" = dontDistribute super."aeson-serialize"; "aeson-smart" = dontDistribute super."aeson-smart"; @@ -1120,6 +1123,7 @@ self: super: { "airship" = doDistribute super."airship_0_4_3_0"; "aivika" = dontDistribute super."aivika"; "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; "aivika-experiment" = dontDistribute super."aivika-experiment"; "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; @@ -1261,6 +1265,7 @@ self: super: { "apache-md5" = dontDistribute super."apache-md5"; "apelsin" = dontDistribute super."apelsin"; "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; "apiary" = doDistribute super."apiary_1_4_5"; @@ -1276,6 +1281,7 @@ self: super: { "applicative-numbers" = dontDistribute super."applicative-numbers"; "applicative-parsec" = dontDistribute super."applicative-parsec"; "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; @@ -1316,6 +1322,7 @@ self: super: { "arxiv" = dontDistribute super."arxiv"; "ascetic" = dontDistribute super."ascetic"; "ascii" = dontDistribute super."ascii"; + "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1472,6 +1479,7 @@ self: super: { "bench" = dontDistribute super."bench"; "benchmark-function" = dontDistribute super."benchmark-function"; "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; "berkeleydb" = dontDistribute super."berkeleydb"; "berp" = dontDistribute super."berp"; "bert" = dontDistribute super."bert"; @@ -1610,6 +1618,7 @@ self: super: { "blas-hs" = dontDistribute super."blas-hs"; "blatex" = dontDistribute super."blatex"; "blaze" = dontDistribute super."blaze"; + "blaze-builder" = doDistribute super."blaze-builder_0_4_0_1"; "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; "blaze-from-html" = dontDistribute super."blaze-from-html"; "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; @@ -1626,6 +1635,7 @@ self: super: { "blogination" = dontDistribute super."blogination"; "bloodhound" = dontDistribute super."bloodhound"; "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1977,6 +1987,7 @@ self: super: { "collections-api" = dontDistribute super."collections-api"; "collections-base-instances" = dontDistribute super."collections-base-instances"; "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; "colorize-haskell" = dontDistribute super."colorize-haskell"; "colors" = dontDistribute super."colors"; "coltrane" = dontDistribute super."coltrane"; @@ -2012,6 +2023,7 @@ self: super: { "complexity" = dontDistribute super."complexity"; "compose-ltr" = dontDistribute super."compose-ltr"; "compose-trans" = dontDistribute super."compose-trans"; + "composition-tree" = doDistribute super."composition-tree_0_2_0_1"; "compression" = dontDistribute super."compression"; "compstrat" = dontDistribute super."compstrat"; "comptrans" = dontDistribute super."comptrans"; @@ -2197,6 +2209,7 @@ self: super: { "css" = dontDistribute super."css"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; "csv-to-qif" = dontDistribute super."csv-to-qif"; "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; @@ -2265,6 +2278,7 @@ self: super: { "data-cycle" = dontDistribute super."data-cycle"; "data-default-extra" = dontDistribute super."data-default-extra"; "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; @@ -2523,6 +2537,7 @@ self: super: { "docidx" = dontDistribute super."docidx"; "docker" = dontDistribute super."docker"; "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; "doctest-discover" = dontDistribute super."doctest-discover"; "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; "doctest-prop" = dontDistribute super."doctest-prop"; @@ -3832,6 +3847,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; "hermit-syb" = dontDistribute super."hermit-syb"; @@ -3901,6 +3917,8 @@ self: super: { "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; "himpy" = dontDistribute super."himpy"; + "hindent" = doDistribute super."hindent_4_6_1"; + "hindley-milner" = dontDistribute super."hindley-milner"; "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; "hinduce-classifier" = dontDistribute super."hinduce-classifier"; "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; @@ -4207,6 +4225,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; @@ -4277,6 +4296,7 @@ self: super: { "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" = doDistribute super."http-client-openssl_0_2_0_1"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4327,6 +4347,10 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; @@ -4472,6 +4496,7 @@ self: super: { "interleavableIO" = dontDistribute super."interleavableIO"; "interleave" = dontDistribute super."interleave"; "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; "intern" = dontDistribute super."intern"; "internetmarke" = dontDistribute super."internetmarke"; "interpol" = dontDistribute super."interpol"; @@ -4494,6 +4519,7 @@ self: super: { "iothread" = dontDistribute super."iothread"; "iotransaction" = dontDistribute super."iotransaction"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_0_1"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4957,6 +4983,7 @@ self: super: { "loadavg" = dontDistribute super."loadavg"; "local-address" = dontDistribute super."local-address"; "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; "located-base" = dontDistribute super."located-base"; "locators" = dontDistribute super."locators"; "loch" = dontDistribute super."loch"; @@ -5076,6 +5103,7 @@ self: super: { "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; "mappy" = dontDistribute super."mappy"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_2"; @@ -5399,6 +5427,7 @@ self: super: { "nanq" = dontDistribute super."nanq"; "narc" = dontDistribute super."narc"; "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; "nats-queue" = dontDistribute super."nats-queue"; "natural-number" = dontDistribute super."natural-number"; "natural-numbers" = dontDistribute super."natural-numbers"; @@ -5589,6 +5618,7 @@ self: super: { "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; "open-union" = dontDistribute super."open-union"; @@ -5630,6 +5660,7 @@ self: super: { "optimusprime" = dontDistribute super."optimusprime"; "option" = dontDistribute super."option"; "optional" = dontDistribute super."optional"; + "optional-args" = doDistribute super."optional-args_1_0_0"; "options-time" = dontDistribute super."options-time"; "optparse-declarative" = dontDistribute super."optparse-declarative"; "optparse-generic" = dontDistribute super."optparse-generic"; @@ -5729,6 +5760,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "patches-vector" = doDistribute super."patches-vector_0_1_5_1"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5775,6 +5807,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; @@ -5795,6 +5828,7 @@ self: super: { "pg-harness" = dontDistribute super."pg-harness"; "pg-harness-client" = dontDistribute super."pg-harness-client"; "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; "pgdl" = dontDistribute super."pgdl"; "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; @@ -5965,11 +5999,13 @@ self: super: { "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; "prelude-edsl" = dontDistribute super."prelude-edsl"; "prelude-generalize" = dontDistribute super."prelude-generalize"; "prelude-plus" = dontDistribute super."prelude-plus"; "prelude-prime" = dontDistribute super."prelude-prime"; "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; "preprocess-haskell" = dontDistribute super."preprocess-haskell"; "preprocessor-tools" = dontDistribute super."preprocessor-tools"; "present" = dontDistribute super."present"; @@ -6353,6 +6389,7 @@ self: super: { "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; "rethinkdb-model" = dontDistribute super."rethinkdb-model"; "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; "retryer" = dontDistribute super."retryer"; @@ -6528,6 +6565,7 @@ self: super: { "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; "scrape-changes" = dontDistribute super."scrape-changes"; @@ -6591,6 +6629,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-csharp" = dontDistribute super."servant-csharp"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6631,6 +6670,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_5"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_4"; @@ -6660,10 +6700,13 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; "shortcircuit" = dontDistribute super."shortcircuit"; "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; "show" = dontDistribute super."show"; "show-type" = dontDistribute super."show-type"; "showdown" = dontDistribute super."showdown"; @@ -6746,6 +6789,7 @@ self: super: { "sloth" = dontDistribute super."sloth"; "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = doDistribute super."smallcaps_0_6_0_1"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; "smallcheck-series" = dontDistribute super."smallcheck-series"; @@ -6890,6 +6934,7 @@ self: super: { "spoty" = dontDistribute super."spoty"; "spreadsheet" = dontDistribute super."spreadsheet"; "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; "spsa" = dontDistribute super."spsa"; "spy" = dontDistribute super."spy"; "sql-simple" = dontDistribute super."sql-simple"; @@ -6984,7 +7029,9 @@ self: super: { "storablevector-carray" = dontDistribute super."storablevector-carray"; "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; @@ -7381,6 +7428,7 @@ self: super: { "transformers-abort" = dontDistribute super."transformers-abort"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; @@ -7513,6 +7561,7 @@ self: super: { "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; "uberlast" = dontDistribute super."uberlast"; "uconv" = dontDistribute super."uconv"; "udbus" = dontDistribute super."udbus"; @@ -7773,6 +7822,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8003,6 +8053,7 @@ self: super: { "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "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"; @@ -8027,6 +8078,7 @@ self: super: { "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; "yesod-json" = dontDistribute super."yesod-json"; "yesod-links" = dontDistribute super."yesod-links"; "yesod-lucid" = dontDistribute super."yesod-lucid"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index e3d25a1427f..903f2c3a3a1 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -440,8 +440,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "AFSM"; - version = "0.1.2.0"; - sha256 = "b2b8f50b4c0d8e270a2c8df396afd6bc7d4dbe0859d957907129718e37342004"; + version = "0.1.3.1"; + sha256 = "e6438e257446122b63c12dbb22ac58a2ff020ae164a2063a1166a544b325c27b"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/PseudoPower/AFSM"; description = "Arrowized functional state machines"; @@ -776,7 +776,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ abbradar ]; }) {inherit (pkgs) emacs;}; - "Agda" = callPackage + "Agda_2_4_2_5" = callPackage ({ mkDerivation, alex, array, base, binary, boxes, bytestring , containers, cpphs, data-hash, deepseq, directory, edit-distance , emacs, equivalence, filepath, geniplate-mirror, happy, hashable @@ -811,6 +811,47 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "A dependently typed functional programming language and proof assistant"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ abbradar ]; + }) {inherit (pkgs) emacs;}; + + "Agda" = callPackage + ({ mkDerivation, alex, array, base, binary, boxes, bytestring + , containers, cpphs, data-hash, deepseq, directory, EdisonAPI + , EdisonCore, edit-distance, emacs, equivalence, filemanip + , filepath, geniplate-mirror, happy, hashable, hashtables + , haskeline, haskell-src-exts, monadplus, mtl, parallel, pretty + , process, QuickCheck, strict, template-haskell, text, time + , transformers, transformers-compat, unordered-containers, xhtml + , zlib + }: + mkDerivation { + pname = "Agda"; + version = "2.5.1"; + sha256 = "ee4658eafb514460d598322fa98528d1af6e25e5aa51843bb473c0d8a325c0c8"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary boxes bytestring containers data-hash deepseq + directory EdisonAPI EdisonCore edit-distance equivalence filepath + geniplate-mirror hashable hashtables haskeline haskell-src-exts + monadplus mtl parallel pretty process QuickCheck strict + template-haskell text time transformers transformers-compat + unordered-containers xhtml zlib + ]; + libraryToolDepends = [ alex cpphs happy ]; + executableHaskellDepends = [ + base binary containers directory filemanip filepath + haskell-src-exts mtl process + ]; + executableToolDepends = [ emacs ]; + postInstall = '' + $out/bin/agda -c --no-main $(find $out/share -name Primitive.agda) + $out/bin/agda-mode compile + ''; + homepage = "http://wiki.portal.chalmers.se/agda/"; + description = "A dependently typed functional programming language and proof assistant"; + license = "unknown"; maintainers = with stdenv.lib.maintainers; [ abbradar ]; }) {inherit (pkgs) emacs;}; @@ -1952,6 +1993,32 @@ self: { license = "GPL"; }) {}; + "BlogLiterately_0_8_2_1" = callPackage + ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs + , containers, data-default, directory, filepath, HaXml, haxr + , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc + , pandoc-citeproc, pandoc-types, parsec, process, split, strict + , tagsoup, temporary, transformers + }: + mkDerivation { + pname = "BlogLiterately"; + version = "0.8.2.1"; + sha256 = "f95097b2bdc6a65328fd90e0007dac0a68c7847041e64e4d15e6dc523cba8c79"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bool-extras bytestring cmdargs containers + data-default directory filepath HaXml haxr highlighting-kate + hscolour HTTP lens mtl pandoc pandoc-citeproc pandoc-types parsec + process split strict tagsoup temporary transformers + ]; + executableHaskellDepends = [ base cmdargs ]; + homepage = "http://byorgey.wordpress.com/blogliterately/"; + description = "A tool for posting Haskelly articles to blogs"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "BlogLiterately-diagrams_0_1_4_3" = callPackage ({ mkDerivation, base, BlogLiterately, containers, diagrams-builder , diagrams-cairo, diagrams-lib, directory, filepath, pandoc, safe @@ -4678,6 +4745,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Diff_0_3_4" = callPackage + ({ mkDerivation, array, base, directory, pretty, process + , QuickCheck, test-framework, test-framework-quickcheck2 + }: + mkDerivation { + pname = "Diff"; + version = "0.3.4"; + sha256 = "77b7daec5a79ade779706748f11b4d9b8f805e57a68e7406c3b5a1dee16e0c2f"; + libraryHaskellDepends = [ array base pretty ]; + testHaskellDepends = [ + array base directory pretty process QuickCheck test-framework + test-framework-quickcheck2 + ]; + description = "O(ND) diff algorithm in haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "DifferenceLogic" = callPackage ({ mkDerivation, base, containers, fgl, FirstOrderTheory, HUnit }: mkDerivation { @@ -14023,6 +14108,22 @@ self: { license = "unknown"; }) {}; + "MonadRandom_0_4_2_3" = callPackage + ({ mkDerivation, base, mtl, random, transformers + , transformers-compat + }: + mkDerivation { + pname = "MonadRandom"; + version = "0.4.2.3"; + sha256 = "de40b12a70ec6425a9e54b33e2ac652e14d7c005a3b46d701d1e5696b98636c0"; + libraryHaskellDepends = [ + base mtl random transformers transformers-compat + ]; + description = "Random-number generation monad"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "MonadRandomLazy" = callPackage ({ mkDerivation, base, MonadRandom, mtl, random }: mkDerivation { @@ -16015,8 +16116,8 @@ self: { }: mkDerivation { pname = "Plot-ho-matic"; - version = "0.9.0.5"; - sha256 = "2d39740f4bcca543b6fa53faf6dacb1d266f91986bc995fe2d0caeb68578dc3b"; + version = "0.9.0.7"; + sha256 = "48b55a36a471db30444ca4118402f2eece7cf20034a9737db5cd4b8723cbbf90"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -16520,10 +16621,9 @@ self: { ({ mkDerivation, base, mtl, QuickCheck, random }: mkDerivation { pname = "QuickCheck-GenT"; - version = "0.1.4"; - sha256 = "fdfc66a8d416b1c64c95b409552813f239c85bc829527759350f60956fb8fa1f"; + version = "0.2.0"; + sha256 = "2d33ca9912e9a04c21cbde7f11b2b233455fcead3e4e6aaba9700097f8276c6d"; libraryHaskellDepends = [ base mtl QuickCheck random ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/QuickCheck-GenT"; description = "A GenT monad transformer for QuickCheck library"; license = stdenv.lib.licenses.mit; @@ -22481,9 +22581,10 @@ self: { ({ mkDerivation, acme-left-pad, base }: mkDerivation { pname = "acme-php"; - version = "0.0.4"; - sha256 = "c3015f1f75edeec2f42b7334cfaf7d69325b1c6ade573fe35fc487b4b81dc452"; + version = "0.0.5"; + sha256 = "545ecb6260ebb26336bdc41fbee7f0e48de390f220ff57ec1cce2c1661bc4ece"; libraryHaskellDepends = [ acme-left-pad base ]; + homepage = "http://hackage.haskell.org/package/acme-php-0.0.5/src/docs.html"; description = "The flexibility of Haskell and the safety of PHP"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -22888,6 +22989,7 @@ self: { transformers ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/ekmett/ad"; description = "Automatic Differentiation"; @@ -22909,6 +23011,7 @@ self: { transformers ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/ekmett/ad"; description = "Automatic Differentiation"; license = stdenv.lib.licenses.bsd3; @@ -22929,6 +23032,8 @@ self: { transformers ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; + doCheck = false; homepage = "http://github.com/ekmett/ad"; description = "Automatic Differentiation"; license = stdenv.lib.licenses.bsd3; @@ -23742,6 +23847,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aeson-flatten" = callPackage + ({ mkDerivation, aeson, base, bytestring, hspec, text + , unordered-containers + }: + mkDerivation { + pname = "aeson-flatten"; + version = "0.1.0.1"; + sha256 = "e5376ef651b659fdc38274087fdd976da077a6317ec6cd44249e63bd85934bdd"; + libraryHaskellDepends = [ aeson base text unordered-containers ]; + testHaskellDepends = [ aeson base bytestring hspec ]; + homepage = "https://github.com/githubuser/aeson-flatten#readme"; + description = "JSON flatten for Aeson"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "aeson-iproute" = callPackage ({ mkDerivation, aeson, base, iproute, text }: mkDerivation { @@ -23810,6 +23930,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aeson-prefix" = callPackage + ({ mkDerivation, aeson, base, bytestring, hspec, mtl, text + , unordered-containers, vector + }: + mkDerivation { + pname = "aeson-prefix"; + version = "0.1.0.2"; + sha256 = "4ba024dfcad59a90319eedf5d0a61e427fda29c3f0d3c2369ed1ad8790327ef9"; + libraryHaskellDepends = [ + aeson base mtl text unordered-containers vector + ]; + testHaskellDepends = [ aeson base bytestring hspec mtl text ]; + homepage = "https://github.com/j1r1k/aeson-prefix#readme"; + description = "Hiearchical prefixing for aeson"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "aeson-pretty" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, cmdargs, text , unordered-containers, vector @@ -24114,13 +24251,12 @@ self: { }: mkDerivation { pname = "aeson-value-parser"; - version = "0.11.2"; - sha256 = "a0e64e5c4eb8e75e4ba27c6ea26276f508da407883fb1527102e07a20ed0d454"; + version = "0.11.3"; + sha256 = "ac948393647b17a7fe4ccda376c9941000ad99a4c30e48ee4ae39a027cef1b20"; libraryHaskellDepends = [ aeson base-prelude mtl-prelude scientific success text unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/sannsyn/aeson-value-parser"; description = "An API for parsing \"aeson\" JSON tree into Haskell types"; license = stdenv.lib.licenses.mit; @@ -24238,8 +24374,8 @@ self: { }: mkDerivation { pname = "agda-snippets"; - version = "2.4.2.5"; - sha256 = "f1e42f920bb4c4f43836d9844f13ac3942b1048c032b05b043716cd47d11ed22"; + version = "2.5.1"; + sha256 = "9dd2d5fe077df8e6f6af96615e653a4d147e4e51429f022fd69451054b2056d6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -24258,13 +24394,30 @@ self: { }: mkDerivation { pname = "agda-snippets-hakyll"; - version = "0.1.1.1"; - sha256 = "d779e0b6b70eeba21efed698a6842873fb5ddc1de4fe5e91c40d761dceec514c"; + version = "0.1.2.0"; + sha256 = "83829a3599fe61a81747e7054659902fbf7258cf08fb61dd6fc47fae06e699d9"; + libraryHaskellDepends = [ + agda-snippets base directory filepath hakyll network-uri pandoc + pandoc-types + ]; + homepage = "https://github.com/liamoc/agda-snippets#readme"; + description = "Literate Agda support using agda-snippets, for Hakyll pages"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "agda-snippets-hakyll_0_1_2_1" = callPackage + ({ mkDerivation, agda-snippets, base, directory, filepath, hakyll + , network-uri, pandoc, pandoc-types + }: + mkDerivation { + pname = "agda-snippets-hakyll"; + version = "0.1.2.1"; + sha256 = "9f9b2e72b7c2d0aeed1cc8255c50464915f78665ae8c61e8466567ac22d3b6cf"; libraryHaskellDepends = [ agda-snippets base directory filepath hakyll network-uri pandoc pandoc-types ]; - jailbreak = true; homepage = "https://github.com/liamoc/agda-snippets#readme"; description = "Literate Agda support using agda-snippets, for Hakyll pages"; license = stdenv.lib.licenses.bsd3; @@ -24530,8 +24683,8 @@ self: { ({ mkDerivation, array, base, containers, mtl, random, vector }: mkDerivation { pname = "aivika"; - version = "4.3.3"; - sha256 = "3faa7104a9b51c138b9f3a6f3762de08ccff1e427653fee218466eb256b8cb3a"; + version = "4.3.4"; + sha256 = "4d533b39360fef397d948d8e48faed1d526799487f01f60821a7784c727fa8f8"; libraryHaskellDepends = [ array base containers mtl random vector ]; @@ -24556,6 +24709,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aivika-distributed" = callPackage + ({ mkDerivation, aivika, aivika-transformers, base, binary + , bytestring, containers, distributed-process, exceptions, mtl + , random, stm, time + }: + mkDerivation { + pname = "aivika-distributed"; + version = "0.1.3"; + sha256 = "fbfce34de97c3631dcc067726327c10df1325118685beb89458feb58ce860aae"; + libraryHaskellDepends = [ + aivika aivika-transformers base binary bytestring containers + distributed-process exceptions mtl random stm time + ]; + homepage = "http://www.aivikasoft.com/en/products/aivika.html"; + description = "Parallel distributed simulation library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "aivika-experiment" = callPackage ({ mkDerivation, aivika, base, containers, directory, filepath, mtl , network-uri, parallel-io, split @@ -24630,8 +24801,8 @@ self: { }: mkDerivation { pname = "aivika-transformers"; - version = "4.3.3"; - sha256 = "1d05966db50550d92b75338cb4805c8b7f5c074ce7cac431e1b5e8e44902d5f5"; + version = "4.3.4"; + sha256 = "dbce6da57d88824135fafcf81c97f1e1905aea9fbd78241fac7f835491fa8ea9"; libraryHaskellDepends = [ aivika array base containers mtl random vector ]; @@ -30942,6 +31113,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "api-field-json-th" = callPackage + ({ mkDerivation, aeson, base, HUnit, lens, split, template-haskell + , text + }: + mkDerivation { + pname = "api-field-json-th"; + version = "0.1.0.1"; + sha256 = "88befb216037f0460950cd91960db2ba7789231b6ab829b04b2b9dd60a007626"; + libraryHaskellDepends = [ + aeson base lens split template-haskell text + ]; + testHaskellDepends = [ aeson base HUnit lens ]; + homepage = "https://github.com/nakaji-dayo/api-field-json-th"; + description = "option of aeson's deriveJSON"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "api-opentheory-unicode" = callPackage ({ mkDerivation, base, bytestring, directory, opentheory-unicode }: mkDerivation { @@ -31545,6 +31733,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "applicative-splice" = callPackage + ({ mkDerivation, base, haskell-src-exts, haskell-src-meta, mtl, syb + , template-haskell + }: + mkDerivation { + pname = "applicative-splice"; + version = "0.0.0.0"; + sha256 = "8a75dc608c12e1d33213fd7db7423ab545fa00dda300b804992b8de5cd12a32a"; + libraryHaskellDepends = [ + base haskell-src-exts haskell-src-meta mtl syb template-haskell + ]; + homepage = "https://github.com/takano-akio/applicative-splice"; + description = "Write applicative programs in direct style (generalizes idiom brackets)"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "apply-refact_0_1_0_0" = callPackage ({ mkDerivation, base, containers, directory, filemanip, filepath , ghc, ghc-exactprint, mtl, optparse-applicative, process, refact @@ -32537,12 +32741,12 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "array_0_5_1_0" = callPackage + "array_0_5_1_1" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "array"; - version = "0.5.1.0"; - sha256 = "b84bc8a6cd4526888a165e111ed23ba7af6c743608774d41604636a8990c1fa2"; + version = "0.5.1.1"; + sha256 = "89c96958578da5051f684e38dacad7558ec023a7b08f97eb19876dba08ce2223"; libraryHaskellDepends = [ base ]; description = "Mutable and immutable arrays"; license = stdenv.lib.licenses.bsd3; @@ -32776,7 +32980,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ascii-progress" = callPackage + "ascii-progress_0_3_2_0" = callPackage ({ mkDerivation, async, base, concurrent-output, data-default , hspec, QuickCheck, time }: @@ -32795,6 +32999,28 @@ self: { homepage = "https://github.com/yamadapc/haskell-ascii-progress"; description = "A simple progress bar for the console"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ascii-progress" = callPackage + ({ mkDerivation, async, base, concurrent-output, data-default + , hspec, QuickCheck, time + }: + mkDerivation { + pname = "ascii-progress"; + version = "0.3.3.0"; + sha256 = "7e3fa6b80c09a83c9ba8a0644ef304ca92d65b76383b8dd023ff9f89ebec913e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base concurrent-output data-default time + ]; + testHaskellDepends = [ + async base concurrent-output data-default hspec QuickCheck time + ]; + homepage = "https://github.com/yamadapc/haskell-ascii-progress"; + description = "A simple progress bar for the console"; + license = stdenv.lib.licenses.mit; }) {}; "ascii-vector-avc" = callPackage @@ -33943,6 +34169,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "attoparsec_0_13_0_2" = callPackage + ({ mkDerivation, array, base, bytestring, containers, deepseq + , QuickCheck, quickcheck-unicode, scientific, tasty + , tasty-quickcheck, text, transformers, vector + }: + mkDerivation { + pname = "attoparsec"; + version = "0.13.0.2"; + sha256 = "69f7f381f644ba4a6f348bbff9b2b4280b7b602e8e25e59eadb6e30ad5f2ec6a"; + libraryHaskellDepends = [ + array base bytestring containers deepseq scientific text + transformers + ]; + testHaskellDepends = [ + array base bytestring deepseq QuickCheck quickcheck-unicode + scientific tasty tasty-quickcheck text transformers vector + ]; + homepage = "https://github.com/bos/attoparsec"; + description = "Fast combinator parsing for bytestrings and text"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "attoparsec-arff" = callPackage ({ mkDerivation, attoparsec, base, bytestring }: mkDerivation { @@ -34232,8 +34481,8 @@ self: { }: mkDerivation { pname = "aur"; - version = "5.0.0"; - sha256 = "626b590839ca942a6453261deb2abc1f23bfc001fc73fa8fd1cc8161c7ed06e3"; + version = "5.0.1"; + sha256 = "84182e6288734890c02582814009185a6644760cc4ad0f2a83acc5c6f916227b"; libraryHaskellDepends = [ aeson base http-client http-client-tls mtl servant servant-client text transformers @@ -34480,20 +34729,36 @@ self: { }) {}; "autoexporter" = callPackage - ({ mkDerivation, base, directory, filepath }: + ({ mkDerivation, base, Cabal, directory, filepath }: mkDerivation { pname = "autoexporter"; - version = "0.1.4"; - sha256 = "b3b75b89e2d357a49df12b429cb7699932dd9b96bd1104ee9b1fcbe48a7e9b47"; + version = "0.2.0"; + sha256 = "e4c0145475197dd5dd61639d88c406090d472daa7bac28e9be70a230994bb8db"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; + libraryHaskellDepends = [ base Cabal directory filepath ]; executableHaskellDepends = [ base ]; homepage = "https://github.com/tfausak/autoexporter#readme"; description = "Automatically re-export modules"; license = stdenv.lib.licenses.mit; }) {}; + "autoexporter_0_2_1" = callPackage + ({ mkDerivation, base, Cabal, directory, filepath }: + mkDerivation { + pname = "autoexporter"; + version = "0.2.1"; + sha256 = "fe46d1f434862dfaa4fd245c66d4a96ea8c4f3f8c3314ca6fc844e97e71097e4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base Cabal directory filepath ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/tfausak/autoexporter#readme"; + description = "Automatically re-export modules"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "automitive-cse" = callPackage ({ mkDerivation, base, bytestring, cereal, cryptonite, memory , quickcheck-simple @@ -34513,18 +34778,18 @@ self: { }) {}; "automotive-cse" = callPackage - ({ mkDerivation, base, bytestring, cereal, cryptonite, memory - , quickcheck-simple + ({ mkDerivation, base, bytestring, bytestring-short, cereal + , cryptonite, memory, QuickCheck, quickcheck-simple }: mkDerivation { pname = "automotive-cse"; - version = "0.0.1.1"; - sha256 = "d19d0458f01691d72d2a238dfbd925b02145e66c4a64f90dab665d038ed80915"; + version = "0.1.2.0"; + sha256 = "97873ddb30997908e2e82d30a8ffff21d16280efa3be2b9985d69794ccfc515a"; libraryHaskellDepends = [ - base bytestring cereal cryptonite memory + base bytestring bytestring-short cereal cryptonite memory ]; testHaskellDepends = [ - base bytestring cryptonite quickcheck-simple + base bytestring cryptonite QuickCheck quickcheck-simple ]; description = "Automotive CSE emulation"; license = stdenv.lib.licenses.bsd3; @@ -37583,6 +37848,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bento" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "bento"; + version = "0.1.0"; + sha256 = "eba28420daba13af9de264ec0e3d605535496536b9aff9bc23798cdbcc209192"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/tfausak/bento#readme"; + description = "🍱 Manage stateful components"; + license = stdenv.lib.licenses.mit; + }) {}; + "berkeleydb" = callPackage ({ mkDerivation, base, binary, bytestring, db }: mkDerivation { @@ -37796,8 +38073,8 @@ self: { }: mkDerivation { pname = "bibdb"; - version = "0.3.0"; - sha256 = "e90d5952020d7bfe6ba5ae8abc447377eff553ce0bf7d5cfa4ff52dcc74cd0a9"; + version = "0.4.2"; + sha256 = "6f741fe0e4b1adacee03f7ca2a71c5727709e105dee5a67431b2c298233ca446"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -37817,8 +38094,8 @@ self: { ({ mkDerivation, base, latex, parsec, utility-ht }: mkDerivation { pname = "bibtex"; - version = "0.1.0.5"; - sha256 = "dd06fbd5d597a558f059775b258ae526baa41c656a92e7d8a45646c64c1bc74b"; + version = "0.1.0.6"; + sha256 = "090a3b9589388bdf9d2bf60d8d1898aa0313a2874b551ba86cbbd049f3ee5f04"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base latex parsec utility-ht ]; @@ -38500,8 +38777,8 @@ self: { pname = "binary-orphans"; version = "0.1.4.0"; sha256 = "0a952a7521747a7aacf4aa1638674130262f2efacb7121727c1932d49017f742"; - revision = "4"; - editedCabalFile = "5c473d152fd0cc986ec5330e6138d3c3b62b29f2d3ae7ebfad0832ba82593ce6"; + revision = "5"; + editedCabalFile = "76b1ba2893085236d9989cf697d01fca25c7980563c5b5c452a133aeefec2b0d"; libraryHaskellDepends = [ aeson base binary hashable scientific semigroups tagged text text-binary time unordered-containers vector @@ -40141,6 +40418,7 @@ self: { 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; @@ -40617,8 +40895,8 @@ self: { }: mkDerivation { pname = "bitx-bitcoin"; - version = "0.7.0.0"; - sha256 = "533cad5eb0c66efc407b676b9d2a43259e74b5343b00c35e2ded9382a5a36948"; + version = "0.7.0.1"; + sha256 = "808cce7f13d11c7ea5424fa017aada13e787dca3dafe67100e303e976dc6382e"; libraryHaskellDepends = [ aeson base bytestring http-client http-client-tls http-types microlens microlens-th network QuickCheck scientific split text @@ -40939,7 +41217,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "blaze-builder" = callPackage + "blaze-builder_0_4_0_1" = callPackage ({ mkDerivation, base, bytestring, deepseq, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , text, utf8-string @@ -40956,6 +41234,26 @@ self: { homepage = "http://github.com/lpsmith/blaze-builder"; description = "Efficient buffered output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "blaze-builder" = callPackage + ({ mkDerivation, base, bytestring, deepseq, HUnit, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text, utf8-string + }: + mkDerivation { + pname = "blaze-builder"; + version = "0.4.0.2"; + sha256 = "9ad3e4661bf5556d650fb9aa56a3ad6e6eec7575e87d472e8ab6d15eaef163d4"; + libraryHaskellDepends = [ base bytestring deepseq text ]; + testHaskellDepends = [ + base bytestring HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 text utf8-string + ]; + homepage = "http://github.com/lpsmith/blaze-builder"; + description = "Efficient buffered output"; + license = stdenv.lib.licenses.bsd3; }) {}; "blaze-builder-conduit" = callPackage @@ -41732,6 +42030,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bloomfilter-redis" = callPackage + ({ mkDerivation, arithmoi, base, binary, bytestring, hashable + , hedis, QuickCheck, tasty, tasty-hunit, tasty-quickcheck + , tasty-rerun + }: + mkDerivation { + pname = "bloomfilter-redis"; + version = "0.1.0.2"; + sha256 = "82cb0fc85eab0a2f661cad90eb5f6eab6380f5ecdff39299318af9a8193f4052"; + libraryHaskellDepends = [ + arithmoi base binary bytestring hashable hedis + ]; + testHaskellDepends = [ + base bytestring hashable hedis QuickCheck tasty tasty-hunit + tasty-quickcheck tasty-rerun + ]; + description = "Distributed bloom filters on Redis (using the Hedis client)"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "bloxorz" = callPackage ({ mkDerivation, base, GLFW, OpenGL }: mkDerivation { @@ -46876,8 +47194,8 @@ self: { }: mkDerivation { pname = "casadi-bindings"; - version = "2.4.1.8"; - sha256 = "982f4bd1b6e8f4939795daaadf456faa6ea9ffa96723e5081fbbd13a0d28bd95"; + version = "2.4.1.9"; + sha256 = "a5156237cfb2bf64bcee8b1e408ace7b4c69d69733a129ab7d0b15436dab3acd"; libraryHaskellDepends = [ base binary casadi-bindings-core casadi-bindings-internal cereal containers linear spatial-math vector vector-binary-instances @@ -48729,6 +49047,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cheapskate_0_1_0_5" = callPackage + ({ mkDerivation, aeson, base, blaze-html, bytestring, containers + , data-default, http-types, mtl, syb, text, uniplate, wai + , wai-extra, xss-sanitize + }: + mkDerivation { + pname = "cheapskate"; + version = "0.1.0.5"; + sha256 = "7a63b7ffc4976d006c5f693569a5ffd7a887e83d126d1dce9bbe8b5fbaabfa32"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html containers data-default mtl syb text uniplate + xss-sanitize + ]; + executableHaskellDepends = [ + aeson base blaze-html bytestring http-types text wai wai-extra + ]; + homepage = "http://github.com/jgm/cheapskate"; + description = "Experimental markdown processor"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cheapskate-highlight" = callPackage ({ mkDerivation, base, blaze-html, cheapskate, highlighting-kate , text @@ -50409,6 +50751,7 @@ self: { integer-gmp lens QuickCheck singletons template-haskell th-lift ]; testHaskellDepends = [ base doctest Glob ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; license = stdenv.lib.licenses.bsd2; @@ -50431,6 +50774,7 @@ self: { singletons template-haskell th-lift ]; testHaskellDepends = [ base doctest Glob ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; license = stdenv.lib.licenses.bsd2; @@ -50452,6 +50796,7 @@ self: { singletons template-haskell th-lift ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; license = stdenv.lib.licenses.bsd2; @@ -50473,6 +50818,7 @@ self: { singletons template-haskell th-lift ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; license = stdenv.lib.licenses.bsd2; @@ -52491,12 +52837,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clock_0_7_1_1" = callPackage + "clock_0_7_2" = callPackage ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; - version = "0.7.1.1"; - sha256 = "6be612a15ede79fcc6c4f8272555e3890247e75ba211c88b1b02d856f3e0150d"; + version = "0.7.2"; + sha256 = "886601978898d3a91412fef895e864576a7125d661e1f8abc49a2a08840e691f"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; homepage = "https://github.com/corsis/clock"; @@ -53058,8 +53404,8 @@ self: { ({ mkDerivation, array, base, bytestring, text }: mkDerivation { pname = "cndict"; - version = "0.7.3"; - sha256 = "80da1953813673d42dbfaaeb360c5a0d8146ec80e21c5ce6a678dc87f5ec265e"; + version = "0.7.4"; + sha256 = "1d066c7df8e3f789a1139fbed618c4fe633f4f4cc42e30198f80042f93b06c43"; libraryHaskellDepends = [ array base bytestring text ]; homepage = "https://github.com/Lemmih/cndict"; description = "Chinese/Mandarin <-> English dictionary, Chinese lexer"; @@ -53589,6 +53935,30 @@ self: { license = "LGPL"; }) {}; + "color-counter" = callPackage + ({ mkDerivation, aeson, base, cmdargs, colour, containers + , data-default, directory, friday, friday-devil, split, v4l2 + , vector, vector-space, yaml + }: + mkDerivation { + pname = "color-counter"; + version = "0.1.2.2"; + sha256 = "39c79b3aa79621505f343c9e5c9f9907a2b50aae385d5f86259ccb94cb96df6f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base colour containers data-default directory friday + friday-devil split v4l2 vector vector-space yaml + ]; + executableHaskellDepends = [ + aeson base cmdargs colour containers data-default directory friday + friday-devil split v4l2 vector vector-space yaml + ]; + homepage = "https://bitbucket.org/functionally/color-counter"; + description = "Count colors in images"; + license = stdenv.lib.licenses.mit; + }) {}; + "colorize-haskell" = callPackage ({ mkDerivation, ansi-terminal, base, haskell-lexer }: mkDerivation { @@ -54513,7 +54883,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "composition-tree" = callPackage + "composition-tree_0_2_0_1" = callPackage ({ mkDerivation, base, doctest, QuickCheck }: mkDerivation { pname = "composition-tree"; @@ -54521,6 +54891,22 @@ self: { sha256 = "6452868a10df2e5ac564a2c3ae53eafa746a3c8f8791e064b49b9b54d4746502"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest QuickCheck ]; + jailbreak = true; + homepage = "https://github.com/liamoc/composition-tree"; + description = "Composition trees for arbitrary monoids"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "composition-tree" = callPackage + ({ mkDerivation, base, doctest, QuickCheck }: + mkDerivation { + pname = "composition-tree"; + version = "0.2.0.2"; + sha256 = "67d26787ad5e35d1840b5e1bd325bb12815bd151faa0f6e13aaeb55e63af9bd6"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base doctest QuickCheck ]; + doCheck = false; homepage = "https://github.com/liamoc/composition-tree"; description = "Composition trees for arbitrary monoids"; license = stdenv.lib.licenses.bsd3; @@ -57700,6 +58086,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cookie_0_4_2" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring + , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty + , tasty-hunit, tasty-quickcheck, text, time + }: + mkDerivation { + pname = "cookie"; + version = "0.4.2"; + sha256 = "a97a1569a2400a9027f5cf2352d56ea62884d4a98431844456342447919fd95b"; + libraryHaskellDepends = [ + base blaze-builder bytestring data-default-class deepseq old-locale + text time + ]; + testHaskellDepends = [ + base blaze-builder bytestring HUnit QuickCheck tasty tasty-hunit + tasty-quickcheck text time + ]; + homepage = "http://github.com/snoyberg/cookie"; + description = "HTTP cookie parsing and rendering"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "coordinate" = callPackage ({ mkDerivation, base, directory, doctest, filepath, lens , QuickCheck, radian, tagged, template-haskell, transformers @@ -59068,8 +59477,8 @@ self: { }: mkDerivation { pname = "creatur"; - version = "5.9.10"; - sha256 = "d953d471c6dae5c10decf870103b01bd7a8f89d4f64a985951499c1d419ac9fd"; + version = "5.9.11"; + sha256 = "ad172f1372068a8b5a1cf831c5e315c475dd000b0fca34820a2af3266e0a6e3b"; libraryHaskellDepends = [ array base bytestring cereal cond directory exceptions filepath gray-extended hdaemonize hsyslog MonadRandom mtl old-locale process @@ -60646,6 +61055,18 @@ self: { license = "GPL"; }) {}; + "csv-table" = callPackage + ({ mkDerivation, base, containers, csv, filepath, process }: + mkDerivation { + pname = "csv-table"; + version = "0.1.0.1"; + sha256 = "e91959b43226fe79dc00de47560cd25d0b24625c58c70058967d489d1656bcdc"; + libraryHaskellDepends = [ base containers csv filepath process ]; + homepage = "https://github.com/ucsd-progsys/csv-table"; + description = "Scripts for manipulating tables stored as CSV files"; + license = stdenv.lib.licenses.mit; + }) {}; + "csv-to-qif" = callPackage ({ mkDerivation, base, Cabal, explicit-exception, hspec, regex-tdfa , split, spreadsheet @@ -61372,6 +61793,8 @@ self: { pname = "darcs"; version = "2.10.3"; sha256 = "ca00c40d08276f94868c7c1bbc6dbd9b6b41a15c1907c34947aaa51d4dbbf642"; + revision = "1"; + editedCabalFile = "4f5cceb8b3cdf8974e5672c79a2dc8ce083d597f3b52c4137fb6d77cab5a281f"; configureFlags = [ "-fforce-char8-encoding" "-flibrary" ]; isLibrary = true; isExecutable = true; @@ -62033,6 +62456,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "data-default_0_6_0" = callPackage + ({ mkDerivation, base, data-default-class + , data-default-instances-base, data-default-instances-containers + , data-default-instances-dlist, data-default-instances-old-locale + }: + mkDerivation { + pname = "data-default"; + version = "0.6.0"; + sha256 = "1f84023990e44e4555ac54e6bc84e4efa3bb42a0851ce0bb7b3358ef5344386d"; + libraryHaskellDepends = [ + base data-default-class data-default-instances-base + data-default-instances-containers data-default-instances-dlist + data-default-instances-old-locale + ]; + description = "A class for types with a default value"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "data-default-class" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -62067,6 +62509,7 @@ self: { data-default-instances-unordered-containers data-default-instances-vector ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "A class for types with a default value"; license = stdenv.lib.licenses.bsd3; @@ -62093,7 +62536,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "data-default-instances-base" = callPackage + "data-default-instances-base_0_0_1" = callPackage ({ mkDerivation, base, data-default-class }: mkDerivation { pname = "data-default-instances-base"; @@ -62102,6 +62545,18 @@ self: { libraryHaskellDepends = [ base data-default-class ]; description = "Default instances for types in base"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "data-default-instances-base" = callPackage + ({ mkDerivation, base, data-default-class }: + mkDerivation { + pname = "data-default-instances-base"; + version = "0.1.0"; + sha256 = "9e00bc5dc8da3c53a2cb26c3c55d1ffea8272538aec678f65b7c238da09c4636"; + libraryHaskellDepends = [ base data-default-class ]; + description = "Default instances for types in base"; + license = stdenv.lib.licenses.bsd3; }) {}; "data-default-instances-bytestring" = callPackage @@ -62161,6 +62616,7 @@ self: { libraryHaskellDepends = [ base data-default-class data-default-instances-base ]; + jailbreak = true; homepage = "https://github.com/trskop/data-default-extra"; description = "Default instances for types in newer versions of base package"; license = stdenv.lib.licenses.bsd3; @@ -64338,19 +64794,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "deepseq_1_4_1_2" = callPackage + "deepseq_1_4_2_0" = callPackage ({ mkDerivation, array, base, HUnit, test-framework , test-framework-hunit }: mkDerivation { pname = "deepseq"; - version = "1.4.1.2"; - sha256 = "3b7cfa5ff5eb169b3f97285be978f030d664c6e3e84a2525b2fafca4f7380651"; + version = "1.4.2.0"; + sha256 = "de0aa1291790409fe36e8b9bdf3c1f340661290eb3258876af2b07b721e94951"; libraryHaskellDepends = [ array base ]; 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; @@ -65294,6 +65749,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "deriving-compat_0_2" = callPackage + ({ mkDerivation, base, base-compat, base-orphans, containers + , ghc-prim, hspec, QuickCheck, template-haskell, transformers + , transformers-compat + }: + mkDerivation { + pname = "deriving-compat"; + version = "0.2"; + sha256 = "763bb09a78ad4ffa00b30a3655bd01a7f2b816ebec8571c7cf059d481998b42a"; + libraryHaskellDepends = [ + base containers ghc-prim template-haskell + ]; + testHaskellDepends = [ + base base-compat base-orphans hspec QuickCheck transformers + transformers-compat + ]; + jailbreak = true; + homepage = "https://github.com/haskell-compat/deriving-compat"; + description = "Backports of GHC deriving extensions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "derp" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -66286,6 +66764,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "diagrams-contrib_1_3_0_9" = callPackage + ({ mkDerivation, base, circle-packing, colour, containers + , data-default, data-default-class, diagrams-core, diagrams-lib + , diagrams-solve, force-layout, HUnit, lens, linear, MonadRandom + , mtl, parsec, QuickCheck, random, semigroups, split + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text + }: + mkDerivation { + pname = "diagrams-contrib"; + version = "1.3.0.9"; + sha256 = "b5a1fa28f7ab9d32dab44569a26e5918ec7a09c36399d2f789c22260d42d9b22"; + libraryHaskellDepends = [ + base circle-packing colour containers data-default + data-default-class diagrams-core diagrams-lib diagrams-solve + force-layout lens linear MonadRandom mtl parsec random semigroups + split text + ]; + testHaskellDepends = [ + base containers diagrams-lib HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "Collection of user contributions to diagrams EDSL"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "diagrams-core_1_2_0_4" = callPackage ({ mkDerivation, base, containers, dual-tree, lens, MemoTrie , monoid-extras, newtype, semigroups, vector-space @@ -68116,8 +68622,8 @@ self: { }: mkDerivation { pname = "digit"; - version = "0.2.6"; - sha256 = "778670a01298e208ee0913e61749be40d99bc3559541b5f85bc698de1ce5eb1f"; + version = "0.2.7"; + sha256 = "527f2b342e14a09af8d1b327942aab5b104316f8d8793a21f3468620bf099641"; libraryHaskellDepends = [ base lens parsec parsers semigroups template-haskell ]; @@ -68528,12 +69034,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "directory_1_2_5_1" = callPackage + "directory_1_2_6_2" = callPackage ({ mkDerivation, base, filepath, time, unix }: mkDerivation { pname = "directory"; - version = "1.2.5.1"; - sha256 = "15f6d6c403755196617933ed165e6abd82340fcf172582577bb7ced86700ed7d"; + version = "1.2.6.2"; + sha256 = "4c860441ca249c8395a7e74743957b1064359ba3d3c30b1c18df11b9a0a413e0"; libraryHaskellDepends = [ base filepath time unix ]; testHaskellDepends = [ base filepath time unix ]; description = "Platform-agnostic library for filesystem operations"; @@ -69924,8 +70430,8 @@ self: { }: mkDerivation { pname = "dixi"; - version = "0.6.9.0"; - sha256 = "5bb30c107059f7475d6945d6e63ef9ce943e3f1f98df2c1b0f6e28ce369cd8b9"; + version = "0.6.9.1"; + sha256 = "938923def44d17f193907edc2e928fe63eeca685dd9f5527c791718e3e8e6c6a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -70465,7 +70971,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "doctest" = callPackage + "doctest_0_10_1" = callPackage ({ mkDerivation, base, base-compat, deepseq, directory, filepath , ghc, ghc-paths, hspec, HUnit, process, QuickCheck, setenv , silently, stringbuilder, syb, transformers @@ -70489,9 +70995,10 @@ self: { homepage = "https://github.com/sol/doctest#readme"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "doctest_0_11_0" = callPackage + "doctest" = callPackage ({ mkDerivation, base, base-compat, deepseq, directory, filepath , ghc, ghc-paths, hspec, HUnit, process, QuickCheck, setenv , silently, stringbuilder, syb, transformers, with-location @@ -70515,7 +71022,6 @@ self: { homepage = "https://github.com/sol/doctest#readme"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doctest-discover" = callPackage @@ -72330,6 +72836,7 @@ self: { testHaskellDepends = [ base bytestring directory doctest filepath hlint QuickCheck ]; + jailbreak = true; homepage = "http://thoughtpolice.github.com/hs-ed25519"; description = "Ed25519 cryptographic signatures"; license = stdenv.lib.licenses.mit; @@ -73225,13 +73732,12 @@ self: { }: mkDerivation { pname = "ekg-carbon"; - version = "1.0.4"; - sha256 = "e29c0dd46b7fb0966c728757d99d32731355cfe606ffaa59673bface47782f50"; + version = "1.0.5"; + sha256 = "a2617140efc624787954f73700a05a79aa466742ae054c50c415ddbb418ad661"; libraryHaskellDepends = [ base ekg-core network network-carbon text time unordered-containers vector ]; - jailbreak = true; homepage = "http://github.com/ocharles/ekg-carbon"; description = "An EKG backend to send statistics to Carbon (part of Graphite monitoring tools)"; license = stdenv.lib.licenses.bsd3; @@ -75569,6 +76075,8 @@ self: { pname = "esqueleto"; version = "2.4.3"; sha256 = "bf555cfb40519ed1573f7bb90c65f693b9639dfa93fc2222230d3ded6e897434"; + revision = "1"; + editedCabalFile = "651ee129d694aedefa6d6f54e4fd8950f1d8c817e2984141c2ef2fb9174b1e38"; libraryHaskellDepends = [ base blaze-html bytestring conduit monad-logger persistent resourcet tagged text transformers unordered-containers @@ -75734,8 +76242,10 @@ self: { }: mkDerivation { pname = "ether"; - version = "0.4.0.0"; - sha256 = "19470d47313c0fe2984010871c8d13398b9c13d4cdc799b9bd0e431bc9714d6e"; + version = "0.4.0.1"; + sha256 = "2dd65384c5dd884c23cad897bc8ee343015b21bcddc04aeca3fca58c4f12716a"; + revision = "1"; + editedCabalFile = "478e2aa8efec5d299370c8f3d982280ba45f9bfb3eda97adabe7e96eb8f61a1f"; libraryHaskellDepends = [ base exceptions mmorph monad-control mtl template-haskell transformers transformers-base transformers-lift @@ -76025,8 +76535,8 @@ self: { }: mkDerivation { pname = "eventloop"; - version = "0.7.0.1"; - sha256 = "4798d3a5ce6c2daf8f11b3f6aa8eed1ae411894da12a278dd7686b4b4c487b1e"; + version = "0.8.0.0"; + sha256 = "5fbdbe0201c18a2c9f82799f6367c1cb4c1554554677fc181018bca289077b01"; libraryHaskellDepends = [ aeson base bytestring concurrent-utilities deepseq network stm suspend text timers websockets @@ -76213,6 +76723,7 @@ self: { base checkers directory doctest filepath groups QuickCheck random tasty tasty-hunit tasty-quickcheck tasty-th ]; + jailbreak = true; homepage = "http://github.com/expipiplus1/exact-real"; description = "Exact real arithmetic"; license = stdenv.lib.licenses.mit; @@ -77606,6 +78117,22 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "fast-builder_0_0_0_4" = callPackage + ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck + , stm + }: + mkDerivation { + pname = "fast-builder"; + version = "0.0.0.4"; + sha256 = "7c9349ff068b2f321fad9d84a4de699058575fd96470ab5d94964cd7ea032a34"; + libraryHaskellDepends = [ base bytestring ghc-prim ]; + testHaskellDepends = [ base bytestring process QuickCheck stm ]; + homepage = "http://github.com/takano-akio/fast-builder"; + description = "Fast ByteString Builder"; + license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "fast-digits" = callPackage ({ mkDerivation, base, digits, integer-gmp, QuickCheck, smallcheck , tasty, tasty-quickcheck, tasty-smallcheck @@ -77741,6 +78268,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "fast-logger_2_4_5" = callPackage + ({ mkDerivation, array, auto-update, base, bytestring + , bytestring-builder, directory, easy-file, filepath, hspec, text + , unix, unix-time + }: + mkDerivation { + pname = "fast-logger"; + version = "2.4.5"; + sha256 = "6ff04558b53613033b7cfa2d629ea1ea423c2004fba0ced55dd4e2f3483376e5"; + libraryHaskellDepends = [ + array auto-update base bytestring bytestring-builder directory + easy-file filepath text unix unix-time + ]; + testHaskellDepends = [ base bytestring directory hspec ]; + description = "A fast logging system"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "fast-math" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -78141,8 +78687,8 @@ self: { pname = "fay"; version = "0.23.1.12"; sha256 = "3d9c0a64f6d30923e2e45f27c043a7fa4f451c676466c8ca5b69a4121462f727"; - revision = "2"; - editedCabalFile = "8b1d2491a1f85893a14f5212460ec030b22e47e2da680f275f7ff619ad15b4b0"; + revision = "3"; + editedCabalFile = "eed2ee7a483cbde7f743e6f4cd880fa2ddbf72364159cce09d6c5ad963221c28"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -78288,6 +78834,8 @@ self: { pname = "fay-builder"; version = "0.2.0.5"; sha256 = "116dea6dc304834be81d70faec7e3de1fd867ebbda0d02d3c1c6a0f96d2b31a2"; + revision = "1"; + editedCabalFile = "09fb1a4f71c11547dadf8859e302ede4d65aed7437ed1da16376811724a6b1ef"; libraryHaskellDepends = [ base Cabal data-default directory fay filepath safe split text ]; @@ -79855,6 +80403,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "file-embed_0_0_10" = callPackage + ({ mkDerivation, base, bytestring, directory, filepath + , template-haskell + }: + mkDerivation { + pname = "file-embed"; + version = "0.0.10"; + sha256 = "f751925cec5773a4fad5a48ca0a86a21091ee5f1efccf618a64a89fa2cf5f711"; + libraryHaskellDepends = [ + base bytestring directory filepath template-haskell + ]; + testHaskellDepends = [ base filepath ]; + homepage = "https://github.com/snoyberg/file-embed"; + description = "Use Template Haskell to embed file contents directly"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "file-location_0_4_5_3" = callPackage ({ mkDerivation, base, containers, lifted-base, process , template-haskell, transformers @@ -80384,6 +80950,7 @@ self: { sha256 = "f25888d5530a969c40555d3f947d1f5b2254afe33787a040a32663b3e7d3f9da"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; homepage = "https://github.com/markandrus/first-and-last"; description = "First and Last generalized to return up to n values"; license = stdenv.lib.licenses.bsd3; @@ -81169,6 +81736,7 @@ self: { sha256 = "1e45411e366ddf9c9def18ad3a7d274119bf5187e908f5b4beecf68f9cb82086"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + jailbreak = true; homepage = "http://taylor.fausak.me/flow/"; description = "Write more understandable Haskell"; license = stdenv.lib.licenses.mit; @@ -81183,6 +81751,7 @@ self: { sha256 = "20f09c7841b72a90f4dd986f0dd68b0f71f96f12ba84b2097c29eb8f16d256d0"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + jailbreak = true; homepage = "http://taylor.fausak.me/flow/"; description = "Write more understandable Haskell"; license = stdenv.lib.licenses.mit; @@ -81197,6 +81766,7 @@ self: { sha256 = "942cec5eb0430c9e3b147d75ed9246aff651a55afaee0735de3f3fec91266190"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/tfausak/flow#readme"; description = "Write more understandable Haskell"; license = stdenv.lib.licenses.mit; @@ -82636,6 +83206,7 @@ self: { testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/tonymorris/foscam-directory"; description = "Foscam File format"; license = stdenv.lib.licenses.bsd3; @@ -83333,8 +83904,8 @@ self: { }: mkDerivation { pname = "freer"; - version = "0.2.2.5"; - sha256 = "4ba63b5e1c0860458fe59f8d7370d25ddcf7a6a8442409b850108881a6644ef7"; + version = "0.2.2.6"; + sha256 = "0bad3ff57b7347ea50d031e6f6c05cf17311ee9fd3fab343130bd12282c36dc8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ]; @@ -85639,6 +86210,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "geniplate-mirror_0_7_4" = callPackage + ({ mkDerivation, base, mtl, template-haskell }: + mkDerivation { + pname = "geniplate-mirror"; + version = "0.7.4"; + sha256 = "1bbfc296d598d604e0cf4da0b4a23e36e73f019f83b7911e18621443f04e2c5f"; + libraryHaskellDepends = [ base mtl template-haskell ]; + homepage = "https://github.com/danr/geniplate"; + description = "Use Template Haskell to generate Uniplate-like functions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "geniserver" = callPackage ({ mkDerivation, base, bytestring, cmdargs, GenI, http-types, json , snap-core, snap-server, text, transformers, utf8-string @@ -87727,8 +88311,8 @@ self: { }: mkDerivation { pname = "ginger"; - version = "0.2.3.0"; - sha256 = "7a1246cf8eb32cadf750fb2e8bee630eb1d814408ce17fd584fd09b308a88cbe"; + version = "0.2.4.0"; + sha256 = "88671a03eed786add0fc982bca39aed74be98ae9cf50bfd470d4c578fd1370f7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -88275,8 +88859,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "6.20160412"; - sha256 = "6bbdabf279a7fd5252eed818018d546ed9326d5feb648e5573976b2d110f5406"; + version = "6.20160418"; + sha256 = "9d13586cc38d78bcd94c1f3a245d5283e67f43b0ea88033c40d54e78f6544fa2"; configureFlags = [ "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" @@ -90260,8 +90844,8 @@ self: { }: mkDerivation { pname = "gnss-converters"; - version = "0.1.6"; - sha256 = "3d88c38c096cd3887a18acb6b8947436b9b5a6f64e7d2168e946387b817a0993"; + version = "0.1.7"; + sha256 = "282402385403fad10b750146f28f41d447a77592ef23d94b287edf51b7336679"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -91767,14 +92351,13 @@ self: { }: mkDerivation { pname = "googlepolyline"; - version = "0.1.0.1"; - sha256 = "b16915544bfe4656fdf6104e769df8bac4a3e6c5f4ffd0c622d09fffb5f68717"; + version = "0.1.0.2"; + sha256 = "cd593a0c783733beb8300fc9141331fe29d9430f06b0282d75bdc18b4a785c85"; libraryHaskellDepends = [ base bytestring text ]; testHaskellDepends = [ base bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; - jailbreak = true; homepage = "https://github.com/lornap/googlepolyline"; description = "Google Polyline Encoder/Decoder"; license = stdenv.lib.licenses.mit; @@ -96034,25 +96617,26 @@ self: { }) {}; "hackage-security" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, Cabal - , containers, cryptohash, directory, ed25519, filepath, ghc-prim - , HUnit, mtl, network, network-uri, parsec, tar, tasty, tasty-hunit - , template-haskell, temporary, time, transformers, zlib + ({ mkDerivation, base, base16-bytestring, base64-bytestring + , bytestring, Cabal, containers, cryptohash-sha256, directory + , ed25519, filepath, ghc-prim, HUnit, mtl, network, network-uri + , parsec, pretty, QuickCheck, tar, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, temporary, time, transformers + , zlib }: mkDerivation { pname = "hackage-security"; - version = "0.5.0.2"; - sha256 = "4135221bb74e899fde71ff5e878d0401b8c274af6ade996ca7ac15d2b77dbd98"; - revision = "1"; - editedCabalFile = "8b92101ca8da9bb27668763565eaf3c2e461c9c0c429003b196b64dbbd5c0af0"; + version = "0.5.1.0"; + sha256 = "5b2effb1e342f00c57db0b1390c46f9c6142e8039bb062ddab589ba438c88eba"; libraryHaskellDepends = [ - base base64-bytestring bytestring Cabal containers cryptohash - directory ed25519 filepath ghc-prim mtl network network-uri parsec - tar template-haskell time transformers zlib + base base16-bytestring base64-bytestring bytestring Cabal + containers cryptohash-sha256 directory ed25519 filepath ghc-prim + mtl network network-uri parsec pretty tar template-haskell time + transformers zlib ]; testHaskellDepends = [ - base bytestring Cabal containers HUnit network-uri tar tasty - tasty-hunit temporary time zlib + base bytestring Cabal containers HUnit network-uri QuickCheck tar + tasty tasty-hunit tasty-quickcheck temporary time zlib ]; homepage = "https://github.com/well-typed/hackage-security"; description = "Hackage security library"; @@ -96258,27 +96842,30 @@ self: { }) {}; "hackport" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , deepseq, directory, extensible-exceptions, filepath, HTTP, HUnit - , MissingH, network, network-uri, old-locale, old-time, parsec - , pretty, process, random, regex-compat, stm, tar, time, unix, xml - , zlib + ({ mkDerivation, array, base, base64-bytestring, binary, bytestring + , containers, cryptohash, deepseq, directory, ed25519 + , extensible-exceptions, filepath, ghc-prim, hashable, HTTP, HUnit + , MissingH, mtl, network, network-uri, old-locale, old-time, parsec + , pretty, process, random, regex-compat, split, stm, tar + , template-haskell, time, transformers, unix, xml, zlib }: mkDerivation { pname = "hackport"; - version = "0.4.7"; - sha256 = "17dc05163b456dceeb00180a03bb56f4218e5c5e1145c7ad12af13a261b0cf36"; + version = "0.5"; + sha256 = "90594dc1ff022a8fd2779548835555576df134feaf875cadca24378ece7fd97f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - array base binary bytestring containers deepseq directory - extensible-exceptions filepath HTTP MissingH network network-uri - old-locale old-time parsec pretty process random regex-compat stm - tar time unix xml zlib + array base base64-bytestring binary bytestring containers + cryptohash deepseq directory ed25519 extensible-exceptions filepath + ghc-prim hashable HTTP MissingH mtl network network-uri old-locale + old-time parsec pretty process random regex-compat split stm tar + template-haskell time transformers unix xml zlib ]; testHaskellDepends = [ base binary bytestring containers deepseq directory - extensible-exceptions filepath HUnit pretty process time unix xml + extensible-exceptions filepath HUnit pretty process split time unix + xml ]; description = "Hackage and Portage integration tool"; license = "GPL"; @@ -97323,6 +97910,46 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hakyll_4_8_0_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, resourcet + , snap-core, snap-server, system-filepath, tagsoup, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, time + , time-locale-compat, unordered-containers, vector, yaml + }: + mkDerivation { + pname = "hakyll"; + version = "4.8.0.1"; + sha256 = "c5e860cd6cf8bc525e032da106fbe44667bc5bdc5d3023ca77cc32b3c6bc41d5"; + 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 lrucache mtl network network-uri pandoc + pandoc-citeproc parsec process random regex-base regex-tdfa + resourcet snap-core snap-server system-filepath tagsoup text time + time-locale-compat unordered-containers vector yaml + ]; + executableHaskellDepends = [ base directory filepath ]; + testHaskellDepends = [ + 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 resourcet snap-core snap-server system-filepath tagsoup + test-framework test-framework-hunit test-framework-quickcheck2 text + time time-locale-compat unordered-containers vector yaml + ]; + homepage = "http://jaspervdj.be/hakyll"; + description = "A static website compiler library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hakyll-R" = callPackage ({ mkDerivation, base, directory, filepath, hakyll, pandoc, process }: @@ -97815,13 +98442,13 @@ self: { }: mkDerivation { pname = "handa-opengl"; - version = "0.1.13.0"; - sha256 = "b6b357f2795366758cec289a64109e7c6b9c9a54b53f8b24ea8c73dcfe0bbbd5"; + version = "0.1.13.1"; + sha256 = "2142f14c2193deeabb49743cce5dd9d1c2f5ac3b5a3effee293cee0ba5268b2a"; libraryHaskellDepends = [ aeson array base binary data-default GLUT OpenGL opengl-dlp-stereo split vector-space ]; - homepage = "https://bitbucket.org/bwbush/handa-opengl"; + homepage = "https://bitbucket.org/functionally/handa-opengl"; description = "Utility functions for OpenGL and GLUT"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -100022,6 +100649,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "haskeline_0_7_2_3" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , terminfo, transformers, unix + }: + mkDerivation { + pname = "haskeline"; + version = "0.7.2.3"; + sha256 = "6d3ef986ffea93c999a7be1f8c19037351eec763c1c376e6edbd18fbba368d27"; + configureFlags = [ "-fterminfo" ]; + libraryHaskellDepends = [ + base bytestring containers directory filepath terminfo transformers + unix + ]; + homepage = "https://github.com/judah/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 { @@ -105926,6 +106572,19 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "heredocs" = callPackage + ({ mkDerivation, base, doctest, parsec, template-haskell }: + mkDerivation { + pname = "heredocs"; + version = "0.1.1.0"; + sha256 = "fb6779b1eba4fade43b1c25d0289152390d37027e9e79f072331e175dbee7fa6"; + libraryHaskellDepends = [ base doctest parsec template-haskell ]; + testHaskellDepends = [ base doctest ]; + homepage = "http://github.com/cutsea110/heredoc.git"; + description = "heredocument"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "herf-time" = callPackage ({ mkDerivation, base, doctest, time }: mkDerivation { @@ -107638,7 +108297,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hindent" = callPackage + "hindent_4_6_1" = callPackage ({ mkDerivation, base, data-default, descriptive, directory , ghc-prim, haskell-src-exts, hspec, monad-loops, mtl, text , transformers @@ -107664,6 +108323,51 @@ self: { homepage = "http://www.github.com/chrisdone/hindent"; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hindent" = callPackage + ({ mkDerivation, base, containers, data-default, descriptive + , directory, ghc-prim, haskell-src-exts, hspec, monad-loops, mtl + , text, transformers + }: + mkDerivation { + pname = "hindent"; + version = "4.6.3"; + sha256 = "6b8d9d4e0c6ea04115bb555964348350c7cea5e05e66aafa1d624e75c6d5bf8e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers data-default haskell-src-exts monad-loops mtl text + transformers + ]; + executableHaskellDepends = [ + base descriptive directory ghc-prim haskell-src-exts text + ]; + testHaskellDepends = [ + base data-default directory haskell-src-exts hspec monad-loops mtl + text + ]; + doCheck = false; + homepage = "http://www.github.com/chrisdone/hindent"; + description = "Extensible Haskell pretty printer"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hindley-milner" = callPackage + ({ mkDerivation, base, containers, data-fix, hspec, mtl + , transformers + }: + mkDerivation { + pname = "hindley-milner"; + version = "0.1.0.0"; + sha256 = "d29f6fd4871c953fa016dd8cb8dadcf0ed0535947bb8e89c8acb12a78d6964ac"; + libraryHaskellDepends = [ + base containers data-fix mtl transformers + ]; + testHaskellDepends = [ base containers hspec ]; + description = "Template for Hindley-Milner based languages"; + license = stdenv.lib.licenses.mit; }) {}; "hinduce-associations-apriori" = callPackage @@ -107968,8 +108672,8 @@ self: { }: mkDerivation { pname = "hip"; - version = "1.0.1.1"; - sha256 = "e2b2eaf7786f56b50ac814c5ac8a2966c7bd0ee1c132dcca48234188f47f0101"; + version = "1.0.1.2"; + sha256 = "3fff4507cf53a979630d8e94d3dec05b18139007bc7e24ec122ce35d38292484"; libraryHaskellDepends = [ base bytestring Chart Chart-cairo colour deepseq filepath JuicyPixels netpbm primitive process repa temporary vector @@ -108008,17 +108712,20 @@ self: { }) {}; "hipchat-hs" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, either, lens - , servant, servant-client, split, string-conversions, text, time + ({ mkDerivation, aeson, aeson-casing, async, base, bytestring + , either, http-client, lens, network-uri, servant, servant-client + , split, string-conversions, text, time }: mkDerivation { pname = "hipchat-hs"; - version = "0.0.2"; - sha256 = "42c61fccfe9e652ad8ed4d2d7c05e8c7acefe75d8ed1a577937fe132e55e23af"; + version = "0.0.3"; + sha256 = "f793fe60c119608a363a2ce7cc380a8f5c99adcfac4472b990e0726397db5dd5"; libraryHaskellDepends = [ - aeson async base bytestring either lens servant servant-client - split string-conversions text time + aeson aeson-casing async base bytestring either http-client lens + network-uri servant servant-client split string-conversions text + time ]; + jailbreak = true; description = "Hipchat API bindings in Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -108815,8 +109522,8 @@ self: { }: mkDerivation { pname = "hleap"; - version = "0.1.2.6"; - sha256 = "5a0612ff7a1f111ced1cff7b039b33d74909acede53053d702c0311abfd4389b"; + version = "0.1.2.7"; + sha256 = "4e539d4ed4ad9777c464639cfecb9a897dabf89fff0e9c80539fff96cce3eee2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -108827,7 +109534,7 @@ self: { aeson base containers data-default mtl text unordered-containers websockets ]; - homepage = "https://bitbucket.org/bwbush/hleap"; + homepage = "https://bitbucket.org/functionally/hleap"; description = "Web Socket interface to Leap Motion controller"; license = stdenv.lib.licenses.mit; }) {}; @@ -112101,7 +112808,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hopenpgp-tools" = callPackage + "hopenpgp-tools_0_17_1" = callPackage ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, attoparsec , base, base16-bytestring, binary, binary-conduit, bytestring , conduit, conduit-extra, containers, crypto-pubkey, cryptohash @@ -112129,6 +112836,37 @@ self: { homepage = "http://floss.scru.org/hopenpgp-tools"; description = "hOpenPGP-based command-line tools"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hopenpgp-tools" = callPackage + ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, attoparsec + , base, base16-bytestring, binary, binary-conduit, bytestring + , conduit, conduit-extra, containers, crypto-pubkey, cryptohash + , directory, errors, fgl, graphviz, happy, hOpenPGP, ixset-typed + , lens, monad-loops, openpgp-asciiarmor, optparse-applicative + , resourcet, text, time, time-locale-compat, transformers + , unordered-containers, wl-pprint-extras, wl-pprint-terminfo, yaml + }: + mkDerivation { + pname = "hopenpgp-tools"; + version = "0.18"; + sha256 = "e13fa9cbf0f725f026e781c8d4d83b05a5b4bd126d276085152adc0a88c93f76"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson ansi-wl-pprint array attoparsec base base16-bytestring binary + binary-conduit bytestring conduit conduit-extra containers + crypto-pubkey cryptohash directory errors fgl graphviz hOpenPGP + ixset-typed lens monad-loops openpgp-asciiarmor + optparse-applicative resourcet text time time-locale-compat + transformers unordered-containers wl-pprint-extras + wl-pprint-terminfo yaml + ]; + executableToolDepends = [ alex happy ]; + homepage = "http://floss.scru.org/hopenpgp-tools"; + description = "hOpenPGP-based command-line tools"; + license = "unknown"; }) {}; "hopenssl" = callPackage @@ -114300,15 +115038,16 @@ self: { }) {}; "hsc2hs" = callPackage - ({ mkDerivation, base, containers, directory, process }: + ({ mkDerivation, base, containers, directory, filepath, process }: mkDerivation { pname = "hsc2hs"; - version = "0.67.20120610"; - sha256 = "7f471d3912fd8432a5940e3dde0e92abf6743adb452d5c2ff79dea7795bedb4d"; + version = "0.68"; + sha256 = "13834608a7a768e4aeeefee0a79660b2fc7c91bb83e036f0c1cb7b0543c61fda"; isLibrary = false; isExecutable = true; - executableHaskellDepends = [ base containers directory process ]; - jailbreak = true; + executableHaskellDepends = [ + base containers directory filepath process + ]; description = "A preprocessor that helps with writing Haskell bindings to C code"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -117054,6 +117793,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hspec-slow" = callPackage + ({ mkDerivation, base, hspec, mtl, stm, time, transformers }: + mkDerivation { + pname = "hspec-slow"; + version = "0.1.0.0"; + sha256 = "18bacf99cc3f081b65a0c3317ba8b291c1279bcba92c00e53f6fd25d71df70db"; + libraryHaskellDepends = [ base hspec mtl stm time transformers ]; + testHaskellDepends = [ base hspec mtl stm ]; + homepage = "https://github.com/bobjflong/hspec-slow#readme"; + description = "Find slow test cases"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hspec-smallcheck_0_3_0" = callPackage ({ mkDerivation, base, hspec, QuickCheck, smallcheck }: mkDerivation { @@ -118400,6 +119152,7 @@ self: { testHaskellDepends = [ base base-prelude directory doctest filepath ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/html-entities"; description = "A codec library for HTML-escaped text and HTML-entities"; license = stdenv.lib.licenses.mit; @@ -119573,8 +120326,8 @@ self: { }: mkDerivation { pname = "http-client"; - version = "0.4.27.1"; - sha256 = "e0c74065e7e138d8cbe477ba010c7bd352a7ffedd240d1ecaeee274d0ad0bde2"; + version = "0.4.28"; + sha256 = "24346facd4af7268d2c0d828b4865b9b8ba7351d458dd95a3e67094422dfe026"; libraryHaskellDepends = [ array base base64-bytestring blaze-builder bytestring case-insensitive containers cookie data-default-class deepseq @@ -119654,7 +120407,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "http-client-openssl" = callPackage + "http-client-openssl_0_2_0_1" = callPackage ({ mkDerivation, base, HsOpenSSL, hspec, http-client, http-types , network }: @@ -119666,6 +120419,26 @@ self: { testHaskellDepends = [ base HsOpenSSL hspec http-client http-types ]; + doCheck = false; + homepage = "https://github.com/snoyberg/http-client"; + description = "http-client backend using the OpenSSL library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-client-openssl" = callPackage + ({ mkDerivation, base, HsOpenSSL, hspec, http-client, http-types + , network + }: + mkDerivation { + pname = "http-client-openssl"; + version = "0.2.0.2"; + sha256 = "e99682e3ec759b606c86a531127b17db30fdf016e16cfaaca543c5d0f7ca6581"; + libraryHaskellDepends = [ base HsOpenSSL http-client network ]; + testHaskellDepends = [ + base HsOpenSSL hspec http-client http-types + ]; + doCheck = false; homepage = "https://github.com/snoyberg/http-client"; description = "http-client backend using the OpenSSL library"; license = stdenv.lib.licenses.mit; @@ -119749,8 +120522,8 @@ self: { }: mkDerivation { pname = "http-client-tls"; - version = "0.2.3"; - sha256 = "7b2c7c2f3a68a2d8e069e1f5565b77ae8b8a9459e39b3ac5d5500705e2ff4f24"; + version = "0.2.4"; + sha256 = "da60ebd9c0eff1e7a44ce600b450da79a471dda648ae67503d34d69a49ff0921"; libraryHaskellDepends = [ base bytestring connection data-default-class http-client network tls @@ -119940,26 +120713,28 @@ self: { }) {}; "http-conduit" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive - , conduit, conduit-extra, connection, cookie, data-default-class - , hspec, http-client, http-client-tls, http-types, HUnit - , lifted-base, monad-control, mtl, network, resourcet - , streaming-commons, text, time, transformers, utf8-string, wai - , wai-conduit, warp, warp-tls + ({ mkDerivation, aeson, base, blaze-builder, bytestring + , case-insensitive, conduit, conduit-extra, connection, cookie + , data-default-class, exceptions, hspec, http-client + , http-client-tls, http-types, HUnit, lifted-base, monad-control + , mtl, network, resourcet, streaming-commons, temporary, text, time + , transformers, utf8-string, wai, wai-conduit, warp, warp-tls }: mkDerivation { pname = "http-conduit"; - version = "2.1.9"; - sha256 = "61a33fce3630b3a7b0740213cc1a4ab7b756103d629bc35d5fd9298bf66481cd"; + version = "2.1.10"; + sha256 = "eb68fc0f012f177e6883f042bb2455317ea2b1961dbfeff87d122b0b24f9275f"; libraryHaskellDepends = [ - base bytestring conduit http-client http-client-tls http-types - lifted-base monad-control mtl resourcet transformers + aeson base bytestring conduit conduit-extra data-default-class + exceptions http-client http-client-tls http-types lifted-base + monad-control mtl resourcet transformers ]; testHaskellDepends = [ - base blaze-builder bytestring case-insensitive conduit + aeson base blaze-builder bytestring case-insensitive conduit conduit-extra connection cookie data-default-class hspec http-client http-types HUnit lifted-base network streaming-commons - text time transformers utf8-string wai wai-conduit warp warp-tls + temporary text time transformers utf8-string wai wai-conduit warp + warp-tls ]; doCheck = false; homepage = "http://www.yesodweb.com/book/http-conduit"; @@ -121412,20 +122187,20 @@ self: { "hw-bits" = callPackage ({ mkDerivation, array, attoparsec, base, bytestring, conduit - , criterion, deepseq, ghc-prim, hspec, lens, mmap, mono-traversable - , parsec, QuickCheck, random, resourcet, safe, text, transformers - , vector, word8 + , criterion, deepseq, ghc-prim, hspec, hw-prim, lens, mmap + , mono-traversable, parsec, QuickCheck, random, resourcet, safe + , text, transformers, vector, word8 }: mkDerivation { pname = "hw-bits"; - version = "0.0.0.3"; - sha256 = "b83fc49f63fd604fb9232ca1cae1fcfea6ad0badef1e6ff0811bced810d9c728"; + version = "0.0.0.5"; + sha256 = "a65a46718827efefcee0126b047eca6cc77561aebda3fb6e94d354b94f1d87a8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - array attoparsec base bytestring conduit deepseq ghc-prim lens mmap - mono-traversable parsec QuickCheck random resourcet safe text - vector word8 + array attoparsec base bytestring conduit deepseq ghc-prim hw-prim + lens mmap mono-traversable parsec QuickCheck random resourcet safe + text vector word8 ]; executableHaskellDepends = [ base bytestring conduit criterion mmap resourcet vector @@ -121439,35 +122214,205 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hw-bits_0_0_0_6" = callPackage + ({ mkDerivation, base, bytestring, criterion, hspec, hw-prim, mmap + , parsec, QuickCheck, resourcet, vector + }: + mkDerivation { + pname = "hw-bits"; + version = "0.0.0.6"; + sha256 = "8cfe76cdfe568fb392abe90e1f362c340d32729baa47c113d027657c85ef6c37"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring hw-prim parsec vector ]; + executableHaskellDepends = [ + base criterion mmap resourcet vector + ]; + testHaskellDepends = [ base hspec QuickCheck vector ]; + homepage = "http://github.com/haskell-works/hw-bits#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hw-conduit" = callPackage + ({ mkDerivation, array, base, bytestring, conduit, criterion, hspec + , hw-bits, resourcet + }: + mkDerivation { + pname = "hw-conduit"; + version = "0.0.0.8"; + sha256 = "574c7d719bd647f03b6b8f3942c45027ac0a4e49507c38330876507ce2d8b301"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base bytestring conduit hw-bits resourcet + ]; + executableHaskellDepends = [ base criterion ]; + testHaskellDepends = [ base bytestring hspec ]; + homepage = "http://github.com/haskell-works/hw-conduit#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hw-diagnostics" = callPackage + ({ mkDerivation, array, attoparsec, base, bytestring, conduit + , criterion, deepseq, ghc-prim, hspec, lens, mmap, mono-traversable + , parsec, QuickCheck, random, resourcet, safe, text, vector, word8 + }: + mkDerivation { + pname = "hw-diagnostics"; + version = "0.0.0.1"; + sha256 = "109d2f419e8d8ebb4580863f84528c2d2b229a210d756f7ced7383136fed18b7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array attoparsec base bytestring conduit deepseq ghc-prim lens mmap + mono-traversable parsec QuickCheck random resourcet safe text + vector word8 + ]; + executableHaskellDepends = [ + base bytestring conduit criterion mmap resourcet vector + ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hw-diagnostics_0_0_0_2" = callPackage + ({ mkDerivation, base, hspec, QuickCheck }: + mkDerivation { + pname = "hw-diagnostics"; + version = "0.0.0.2"; + sha256 = "f90d28865ebd4fd0116270a47ed13f6b2a91255b8ec71c6d04a1cd5675237569"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hw-prim" = callPackage + ({ mkDerivation, base, bytestring, hspec, QuickCheck, random + , vector + }: + mkDerivation { + pname = "hw-prim"; + version = "0.0.0.7"; + sha256 = "ea9c3334e62e4fdaeca3db78b877621750529fa23323b1a7bee8976c6b5ba4f6"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring random vector ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/haskell-works/hw-prim#readme"; + description = "Primitive functions and data types"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hw-prim_0_0_0_8" = callPackage + ({ mkDerivation, base, bytestring, hspec, QuickCheck, random + , vector + }: + mkDerivation { + pname = "hw-prim"; + version = "0.0.0.8"; + sha256 = "47c84f878d396475590223529fd9d70b277e8345a1f1b2c0d7956d968a5b14b1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring random vector ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/haskell-works/hw-prim#readme"; + description = "Primitive functions and data types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hw-rankselect" = callPackage + ({ mkDerivation, base, hspec, hw-bits, hw-prim, QuickCheck, vector + }: + mkDerivation { + pname = "hw-rankselect"; + version = "0.0.0.2"; + sha256 = "ad79b1fca42093c3db8c7196ab144a2a618c22e4368cc5ccf0d548a15fdc186a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base hw-bits hw-prim vector ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base hspec hw-bits hw-prim QuickCheck vector + ]; + homepage = "http://github.com/haskell-works/hw-rankselect#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hw-succinct" = callPackage ({ mkDerivation, array, attoparsec, base, bytestring, conduit - , criterion, deepseq, ghc-prim, hspec, hw-bits, lens, mmap + , criterion, deepseq, ghc-prim, hspec, hw-bits, hw-prim, lens, mmap , mono-traversable, parsec, QuickCheck, random, resourcet, safe , text, transformers, vector, word8 }: mkDerivation { pname = "hw-succinct"; - version = "0.0.0.5"; - sha256 = "b2b75ed9f82cabfa9ddb48b7fc4c76bb1bc3be5443fd1bfc6b25f334ca5563d7"; + version = "0.0.0.7"; + sha256 = "7bca3413676c9ada97feafd12ed174fc4be570a1b8eb00a258f2a240e6adeee1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array attoparsec base bytestring conduit deepseq ghc-prim hw-bits - lens mmap mono-traversable parsec QuickCheck random resourcet safe - text vector word8 + hw-prim lens mmap mono-traversable parsec QuickCheck random + resourcet safe text vector word8 ]; executableHaskellDepends = [ - base bytestring conduit criterion hw-bits mmap resourcet vector + base bytestring conduit criterion hw-bits hw-prim mmap resourcet + vector ]; testHaskellDepends = [ - attoparsec base bytestring conduit hspec hw-bits mmap parsec - QuickCheck resourcet transformers vector + attoparsec base bytestring conduit hspec hw-bits hw-prim mmap + parsec QuickCheck resourcet transformers vector ]; homepage = "http://github.com/haskell-works/hw-succinct#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; }) {}; + "hw-succinct_0_0_0_8" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, conduit, criterion + , hspec, hw-bits, hw-conduit, hw-diagnostics, hw-prim + , hw-rankselect, mmap, mono-traversable, parsec, QuickCheck + , resourcet, text, transformers, vector + }: + mkDerivation { + pname = "hw-succinct"; + version = "0.0.0.8"; + sha256 = "70b1e52059a18d9ce9f6b5735f4497bf341cce4ec9265858584a4eea0d7215a2"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base bytestring conduit hw-bits hw-conduit hw-prim + hw-rankselect mono-traversable text vector + ]; + executableHaskellDepends = [ + base bytestring conduit criterion hw-bits hw-conduit hw-diagnostics + hw-prim hw-rankselect mmap resourcet vector + ]; + testHaskellDepends = [ + attoparsec base bytestring conduit hspec hw-bits hw-conduit hw-prim + hw-rankselect mmap parsec QuickCheck resourcet transformers vector + ]; + homepage = "http://github.com/haskell-works/hw-succinct#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hwall-auth-iitk" = callPackage ({ mkDerivation, base, bytestring, haskeline, http-conduit , http-types, mtl, regex-compat, unix @@ -122503,21 +123448,21 @@ self: { }) {}; "hylogen" = callPackage - ({ mkDerivation, base, bytestring, filepath, hinotify, network - , process, random, text, vector-space, websockets + ({ mkDerivation, base, bytestring, filepath, fsnotify, http-types + , process, text, vector-space, wai, warp, websockets }: mkDerivation { pname = "hylogen"; - version = "0.1.0.6"; - sha256 = "12ea64085fb2c7bb81311ec899e2ac5c24dcb92ec050ba2237baf9a86a7e6ed8"; + version = "0.1.0.10"; + sha256 = "a8e59008ec5d4293ae14b52b900a8182f02640e6e5724d56f856e94cd1e5d40a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base vector-space ]; executableHaskellDepends = [ - base bytestring filepath hinotify network process random text + base bytestring filepath fsnotify http-types process text wai warp websockets ]; - homepage = "https://github.com/sleexyz/hylogen"; + homepage = "https://hylogen.com"; description = "an EDSL for live-coding fragment shaders"; license = stdenv.lib.licenses.mit; }) {}; @@ -126119,6 +127064,22 @@ self: { license = "GPL"; }) {}; + "interlude-l" = callPackage + ({ mkDerivation, aeson, base, exceptions, lens, mtl, protolude + , string-conv, witherable + }: + mkDerivation { + pname = "interlude-l"; + version = "0.1.0.1"; + sha256 = "0128de332aa2b5520f96555921197e14db1e07990cd1ac5a05fd2618b49e9813"; + libraryHaskellDepends = [ + aeson base exceptions lens mtl protolude string-conv witherable + ]; + jailbreak = true; + description = "Prelude replacement based on protolude"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "intern" = callPackage ({ mkDerivation, array, base, bytestring, hashable, text , unordered-containers @@ -126504,13 +127465,21 @@ self: { }) {}; "io-capture" = callPackage - ({ mkDerivation, base, unix }: + ({ mkDerivation, base, bytestring, hspec, hspec-core + , streaming-bytestring, unix + }: mkDerivation { pname = "io-capture"; - version = "0.3"; - sha256 = "ce809d6ff9c22bceb67c9bcd55477a209141da9fbb265c9fe5718718be96720e"; - libraryHaskellDepends = [ base unix ]; - description = "capture IO action's stdout and stderr"; + version = "1.0.0"; + sha256 = "86885b68cb9d198f3ebf80d8d5ea46a15976b8257bc86fae50d680c4eae5c847"; + libraryHaskellDepends = [ + base bytestring streaming-bytestring unix + ]; + testHaskellDepends = [ + base bytestring hspec hspec-core streaming-bytestring unix + ]; + homepage = "https://github.com/mitchellwrosen/io-capture#readme"; + description = "Capture IO actions' stdout and stderr"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -126834,7 +127803,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "ip6addr" = callPackage + "ip6addr_0_5_0_1" = callPackage ({ mkDerivation, base, cmdargs, IPv6Addr, text }: mkDerivation { pname = "ip6addr"; @@ -126846,6 +127815,21 @@ self: { homepage = "https://github.com/MichelBoucey/ip6addr"; description = "Commandline tool to generate IPv6 address text representations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ip6addr" = callPackage + ({ mkDerivation, base, cmdargs, IPv6Addr, text }: + mkDerivation { + pname = "ip6addr"; + version = "0.5.1.0"; + sha256 = "e6088c7208ad0f57d2ae5e92ca63232ccb4c9c9ee443e6f411ba611bb1768b50"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base cmdargs IPv6Addr text ]; + homepage = "https://github.com/MichelBoucey/ip6addr"; + description = "Commandline tool to generate IPv6 address text representations"; + license = stdenv.lib.licenses.bsd3; }) {}; "ipatch" = callPackage @@ -127453,8 +128437,8 @@ self: { }: mkDerivation { pname = "iridium"; - version = "0.1.5.2"; - sha256 = "97709297aae761e274de08e9d47cab14e87065e9787357a0e45f817cfefaa640"; + version = "0.1.5.3"; + sha256 = "7713b11ea4ea643fbbc99eef0c2bb52cb0968c8d645bf176e196a738e7b18644"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -127466,7 +128450,6 @@ self: { executableHaskellDepends = [ base extra multistate text transformers unordered-containers yaml ]; - jailbreak = true; homepage = "https://github.com/lspitzner/iridium"; description = "Automated Testing and Package Uploading"; license = stdenv.lib.licenses.bsd3; @@ -130358,8 +131341,8 @@ self: { }: mkDerivation { pname = "jsontsv"; - version = "0.1.5.0"; - sha256 = "85756b958fa6655fc3d438609a4e3dfe45715db91fccae7f1b2f144cc2863462"; + version = "0.1.6.1"; + sha256 = "d84484e71b4fd577aafb4674fb5ba6f2aece4f3ed1eb152cef9b50d4cf025ef5"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -130367,7 +131350,6 @@ self: { optparse-applicative scientific string-qq text unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/danchoi/jsontsv"; description = "JSON to TSV transformer"; license = stdenv.lib.licenses.mit; @@ -130922,6 +131904,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "katip_0_2_0_0" = callPackage + ({ mkDerivation, aeson, auto-update, base, bytestring, containers + , directory, either, exceptions, hostname, microlens, microlens-th + , monad-control, mtl, old-locale, quickcheck-instances + , regex-tdfa-rc, resourcet, string-conv, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, temporary, text, time + , time-locale-compat, transformers, transformers-base + , transformers-compat, unix, unordered-containers + }: + mkDerivation { + pname = "katip"; + version = "0.2.0.0"; + sha256 = "bd947874e92da876603c1cbb3bc521e8f33cd08a59c2714d0e35e8dd15ad53b9"; + libraryHaskellDepends = [ + aeson auto-update base bytestring containers either exceptions + hostname microlens microlens-th monad-control mtl old-locale + resourcet string-conv template-haskell text time time-locale-compat + transformers transformers-base transformers-compat unix + unordered-containers + ]; + testHaskellDepends = [ + aeson base directory quickcheck-instances regex-tdfa-rc tasty + tasty-hunit tasty-quickcheck template-haskell temporary text time + unordered-containers + ]; + homepage = "https://github.com/Soostone/katip"; + description = "A structured logging framework"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "katip-elasticsearch" = callPackage ({ mkDerivation, aeson, async, base, bloodhound, containers , enclosed-exceptions, exceptions, http-client, http-types, katip @@ -130949,6 +131962,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "katip-elasticsearch_0_2_0_0" = callPackage + ({ mkDerivation, aeson, async, base, bloodhound, containers + , enclosed-exceptions, exceptions, http-client, http-types, katip + , lens, lens-aeson, quickcheck-instances, random, retry, scientific + , stm, stm-chans, tasty, tasty-hunit, tasty-quickcheck, text, time + , transformers, unordered-containers, uuid, vector + }: + mkDerivation { + pname = "katip-elasticsearch"; + version = "0.2.0.0"; + sha256 = "3d7c1326c749b41635b4dbd6044f8ff1e94dc0209a30faca69a2808e91564f0e"; + libraryHaskellDepends = [ + aeson async base bloodhound enclosed-exceptions exceptions + http-client http-types katip random retry scientific stm stm-chans + text time transformers unordered-containers uuid + ]; + testHaskellDepends = [ + aeson base bloodhound containers http-client http-types katip lens + lens-aeson quickcheck-instances scientific stm tasty tasty-hunit + tasty-quickcheck text time transformers unordered-containers vector + ]; + jailbreak = true; + description = "ElasticSearch scribe for the Katip logging framework"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "katt" = callPackage ({ mkDerivation, aeson, base, bytestring, ConfigFile, containers , directory, errors, filepath, lens, mtl, parsec, text, url, wreq @@ -131808,6 +132848,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "keycode_0_2" = callPackage + ({ mkDerivation, base, containers, ghc-prim }: + mkDerivation { + pname = "keycode"; + version = "0.2"; + sha256 = "93f09542fa79993e46a263ff11c3a3c5368c00aa5a11e53bdccf7fbe885459ae"; + libraryHaskellDepends = [ base containers ghc-prim ]; + homepage = "https://github.com/RyanGlScott/keycode"; + description = "Maps web browser keycodes to their corresponding keyboard keys"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "keyed" = callPackage ({ mkDerivation, base, containers, vector }: mkDerivation { @@ -132411,10 +133464,11 @@ self: { ({ mkDerivation, base, bytestring, cereal, kyotocabinet }: mkDerivation { pname = "kyotocabinet"; - version = "0.1.3"; - sha256 = "dfcfbd39122b17ff66738d5d997eb756f31af58a67424b5762a33301ababfcf3"; + version = "0.1.4"; + sha256 = "03f1943d7c0bb40d2e259a2ccc93efabe00bf9f7943d5d611921ba40a7af7973"; libraryHaskellDepends = [ base bytestring cereal ]; librarySystemDepends = [ kyotocabinet ]; + homepage = "https://github.com/bitonic/kyotocabinet"; description = "Mid level bindings to Kyoto Cabinet"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -132556,14 +133610,14 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "lackey_0_3_0" = callPackage + "lackey_0_3_1" = callPackage ({ mkDerivation, base, servant, servant-foreign, tasty, tasty-hspec , text }: mkDerivation { pname = "lackey"; - version = "0.3.0"; - sha256 = "36f40425c39a7a214d5932b9f2c005335e61c2e95f2dc6fe4cf1172bf45d84c3"; + version = "0.3.1"; + sha256 = "a7b552e3c24fbb6e272cabb897b6788712da789a3934d0ad3bae6fe9857d1d2a"; libraryHaskellDepends = [ base servant servant-foreign text ]; testHaskellDepends = [ base servant tasty tasty-hspec text ]; jailbreak = true; @@ -134945,6 +135999,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "latex-formulae-hakyll_0_2_0_2" = callPackage + ({ mkDerivation, base, hakyll, latex-formulae-image + , latex-formulae-pandoc, lrucache, pandoc-types + }: + mkDerivation { + pname = "latex-formulae-hakyll"; + version = "0.2.0.2"; + sha256 = "82723a7eac09864eed8349b9b4cbef6f2eb85bb80950b427121c525e3c39bb65"; + libraryHaskellDepends = [ + base hakyll latex-formulae-image latex-formulae-pandoc lrucache + pandoc-types + ]; + homepage = "https://github.com/liamoc/latex-formulae#readme"; + description = "Use actual LaTeX to render formulae inside Hakyll pages"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "latex-formulae-image_0_1_1_0" = callPackage ({ mkDerivation, base, directory, errors, filepath, JuicyPixels , process, temporary, transformers @@ -135468,22 +136540,22 @@ self: { }) {}; "learn-physics" = callPackage - ({ mkDerivation, base, gloss, gnuplot, not-gloss, spatial-math - , vector-space + ({ mkDerivation, base, gloss, gnuplot, hmatrix, linear, not-gloss + , polynomial, spatial-math, vector-space }: mkDerivation { pname = "learn-physics"; - version = "0.5.2"; - sha256 = "473585c2c6c8c3503bba1dcbfc308dcb402a67c942a8edb5ed3bfbad1e91830d"; + version = "0.6.0.0"; + sha256 = "6403b807172ceebb2081a580489e4e9a5d7a451f07f0228863db7ac46fdec8de"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base gloss gnuplot not-gloss spatial-math vector-space + base gloss gnuplot hmatrix linear not-gloss polynomial spatial-math + vector-space ]; executableHaskellDepends = [ base gloss gnuplot not-gloss spatial-math ]; - jailbreak = true; description = "Haskell code for learning physics"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -135555,6 +136627,8 @@ self: { pname = "leksah"; version = "0.15.2.0"; sha256 = "44be854eb7091fb383ddfbf497772d9a9b27c033a4e9ba9994c6a9b36d4e9606"; + revision = "1"; + editedCabalFile = "b5498ba06634ac70bf2bb4d09b85324a95a3b1b8bff92430ad761ae8280e0f47"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -136163,6 +137237,7 @@ self: { sha256 = "66494550d66d4c62ea56d0184d118e302d3f1f12505c5c7c0a00e098e77272ab"; libraryHaskellDepends = [ base lens ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; description = "Tutorial for the lens library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -137885,6 +138960,7 @@ self: { base binary bytestring directory doctest filepath HUnit lens simple-reflect test-framework test-framework-hunit ]; + jailbreak = true; homepage = "http://github.com/ekmett/linear/"; description = "Linear Algebra"; license = stdenv.lib.licenses.bsd3; @@ -137916,6 +138992,8 @@ self: { base binary bytestring directory doctest filepath HUnit lens simple-reflect test-framework test-framework-hunit ]; + jailbreak = true; + doCheck = false; homepage = "http://github.com/ekmett/linear/"; description = "Linear Algebra"; license = stdenv.lib.licenses.bsd3; @@ -139552,8 +140630,8 @@ self: { }: mkDerivation { pname = "lmonad-yesod"; - version = "0.1.0.0"; - sha256 = "bd2389ecb5d8c734c72da1bb77f76824bacbabb42ae727d2c161184a4f9f508f"; + version = "1.0.0.0"; + sha256 = "b5bdffc143763460d2587d5d7dffe354622c3622f3068f4f62f5214c13d2ccb9"; libraryHaskellDepends = [ attoparsec base blaze-html blaze-markup containers esqueleto haskell-src-meta lifted-base lmonad mtl persistent shakespeare @@ -139617,6 +140695,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "located" = callPackage + ({ mkDerivation, base, text }: + mkDerivation { + pname = "located"; + version = "0.1.0.0"; + sha256 = "80c2fe4b858243b164b9491c0caa97f46108893743c1f18468ea8c805bb756ab"; + libraryHaskellDepends = [ base text ]; + homepage = "https://github.com/elliottt/located"; + description = "Source location helpers"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "located-base" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -141630,8 +142720,8 @@ self: { }: mkDerivation { pname = "machinecell"; - version = "3.1.0"; - sha256 = "0dde8e806b5418ac6c5610a3ed65dcd54ddc5f7232c516be31a5b375f6e67feb"; + version = "3.2.0"; + sha256 = "507f367bd35ea9b0b2c81af1b1ec14f4aa68fae4309f71c69c9c58715405bddd"; libraryHaskellDepends = [ arrows base free mtl profunctors semigroups ]; @@ -143102,6 +144192,7 @@ self: { version = "0.1.1.0"; sha256 = "9979681fcea7a314db619da04ffca77c93d5afe42ce0b819bd974ca70e74050c"; libraryHaskellDepends = [ base manifolds random-fu vector-space ]; + jailbreak = true; homepage = "https://github.com/leftaroundabout/manifolds"; description = "Sampling random points on general manifolds"; license = stdenv.lib.licenses.gpl3; @@ -143111,15 +144202,16 @@ self: { "manifolds" = callPackage ({ mkDerivation, base, comonad, constrained-categories, containers , deepseq, hmatrix, MemoTrie, semigroups, tagged, transformers - , vector, vector-space, void + , trivial-constraint, vector, vector-space, void }: mkDerivation { pname = "manifolds"; - version = "0.1.6.3"; - sha256 = "52b27094f18303664d91d5042f10d5ff0379de1104a21d14282b85efa954178a"; + version = "0.2.0.1"; + sha256 = "72116d4489b4b2b125647271c92a1b1d7c2323554ae329614e175e967ce3c3f4"; libraryHaskellDepends = [ base comonad constrained-categories containers deepseq hmatrix - MemoTrie semigroups tagged transformers vector vector-space void + MemoTrie semigroups tagged transformers trivial-constraint vector + vector-space void ]; homepage = "https://github.com/leftaroundabout/manifolds"; description = "Coordinate-free hypersurfaces"; @@ -143127,6 +144219,21 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "map-exts" = callPackage + ({ mkDerivation, base, bytestring, cassava, containers }: + mkDerivation { + pname = "map-exts"; + version = "0.1.0.1"; + sha256 = "836b92414c8858a485cf7f0f0bd39d2043217a3db34be913a7a412ba5be76c7e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base containers ]; + executableHaskellDepends = [ base bytestring cassava containers ]; + homepage = "http://github.com/elsen-trading/map-extensions#readme"; + description = "Extensions to Data.Map"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "map-syntax" = callPackage ({ mkDerivation, base, containers, deepseq, HUnit, mtl, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -143674,6 +144781,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "math-functions_0_1_6_0" = callPackage + ({ mkDerivation, base, deepseq, erf, HUnit, ieee754, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , vector, vector-th-unbox + }: + mkDerivation { + pname = "math-functions"; + version = "0.1.6.0"; + sha256 = "3cb90fc750d28c8f6096ee083aff77dfa4dcf4a4938497957860d222e4436199"; + libraryHaskellDepends = [ + base deepseq erf vector vector-th-unbox + ]; + testHaskellDepends = [ + base HUnit ieee754 QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 vector + ]; + homepage = "https://github.com/bos/math-functions"; + description = "Special functions and Chebyshev polynomials"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mathblog" = callPackage ({ mkDerivation, base, bytestring, ConfigFile, containers , data-default, deepseq, directory, either, filepath, fsnotify @@ -145894,8 +147023,8 @@ self: { }: mkDerivation { pname = "midi"; - version = "0.2.2"; - sha256 = "e0f32499afddb6f0e790a8cabecd53e6cefdf87a64a789ad1d15a2d862a0fb6d"; + version = "0.2.2.1"; + sha256 = "441931731ab75fd4dbbce459a3494941cb6f12a897d4bacdf33ab2f2501003cf"; libraryHaskellDepends = [ base binary bytestring event-list explicit-exception monoid-transformer non-negative QuickCheck random transformers @@ -145932,15 +147061,14 @@ self: { }: mkDerivation { pname = "midi-music-box"; - version = "0.0"; - sha256 = "ae5ae1f9db61d56ee17035a04e8d1d9a8c68f4bfdb213f619e159d619fb4d442"; + version = "0.0.0.1"; + sha256 = "1e830c1f871cbf8f5b478c5923d52f76457b15eda2d64a4bf9e6c2016ed47de9"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ 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; @@ -146421,6 +147549,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "mime-types_0_1_0_7" = callPackage + ({ mkDerivation, base, bytestring, containers, text }: + mkDerivation { + pname = "mime-types"; + version = "0.1.0.7"; + sha256 = "83164a24963a7ef37543349df095155b30116c208e602a159a5cd3722f66e9b9"; + libraryHaskellDepends = [ base bytestring containers text ]; + homepage = "https://github.com/yesodweb/wai"; + description = "Basic mime-type handling types and functions"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mines" = callPackage ({ mkDerivation, base, directory, mtl, random }: mkDerivation { @@ -149965,6 +151106,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "morte_1_6_0" = callPackage + ({ mkDerivation, alex, array, base, binary, containers, deepseq + , Earley, http-client, http-client-tls, microlens, microlens-mtl + , mtl, optparse-applicative, pipes, QuickCheck, system-fileio + , system-filepath, tasty, tasty-hunit, tasty-quickcheck, text + , text-format, transformers + }: + mkDerivation { + pname = "morte"; + version = "1.6.0"; + sha256 = "c182fc6f3bdaa4f0ecfaeaf95812bfaa4a170227489940400967a6e6b6e4445a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary containers deepseq Earley http-client + http-client-tls microlens microlens-mtl pipes system-fileio + system-filepath text text-format transformers + ]; + libraryToolDepends = [ alex ]; + executableHaskellDepends = [ base optparse-applicative text ]; + testHaskellDepends = [ + base mtl QuickCheck system-filepath tasty tasty-hunit + tasty-quickcheck text transformers + ]; + description = "A bare-bones calculus of constructions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mosaico-lib" = callPackage ({ mkDerivation, base, base-unicode-symbols, colour, diagrams-cairo , diagrams-core, diagrams-gtk, diagrams-lib, glib, gtk, JuicyPixels @@ -151634,6 +152804,26 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "mutable-containers_0_3_2_1" = callPackage + ({ mkDerivation, base, containers, ghc-prim, hspec + , mono-traversable, primitive, QuickCheck, vector + }: + mkDerivation { + pname = "mutable-containers"; + version = "0.3.2.1"; + sha256 = "fb83475c6a755d1998906f37a71b6aa6f414fd0b5d41b16567c2219fb43e4e4d"; + libraryHaskellDepends = [ + base containers ghc-prim mono-traversable primitive vector + ]; + testHaskellDepends = [ + base containers hspec primitive QuickCheck vector + ]; + homepage = "https://github.com/fpco/mutable-containers"; + description = "Abstactions and concrete implementations of mutable containers"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mutable-iter" = callPackage ({ mkDerivation, base, iteratee, MonadCatchIO-transformers , transformers, vector @@ -152568,6 +153758,25 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "native" = callPackage + ({ mkDerivation, base, bytestring, directory, filepath + , optparse-applicative, process, shelly, text + }: + mkDerivation { + pname = "native"; + version = "0.1.0.1"; + sha256 = "7f18590d63af1dbb134f1768b2173009283865f35bb47eaa04e98377ee66ecaf"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring directory filepath process shelly text + ]; + executableHaskellDepends = [ base optparse-applicative ]; + testHaskellDepends = [ base ]; + description = "Native library manager for Windows"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "nats_1" = callPackage ({ mkDerivation }: mkDerivation { @@ -155590,6 +156799,8 @@ self: { pname = "nonce"; version = "1.0.2"; sha256 = "1004184996ea797b43189a0e73eab0b939f129cafc776341ca82289edb329cd0"; + revision = "1"; + editedCabalFile = "b2a96acc58b405b7eea2022ff253da5deb16df2e60071bdca2956f0a939b5004"; libraryHaskellDepends = [ base base64-bytestring bytestring cprng-aes crypto-random text transformers @@ -156182,6 +157393,7 @@ self: { 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; @@ -156580,8 +157792,8 @@ self: { }: mkDerivation { pname = "objective"; - version = "1.1"; - sha256 = "38a3e0d27fbff0d358942202051121ef0080e68a9e0e57bd2b97de7586006a0e"; + version = "1.1.1"; + sha256 = "7ad18e779f0b5910cc5425a16bcd07dba9f6a785c83526e047e62587b8d86634"; libraryHaskellDepends = [ base containers either exceptions free hashable monad-skeleton mtl profunctors template-haskell transformers transformers-compat @@ -156611,8 +157823,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.4.16"; - sha256 = "5ee70deae5a19be4c82bf555f8bef20dc41d1328e58e35e13cf3006e6cb91267"; + version = "0.4.17"; + sha256 = "0384e4d970bed711c8415bba64e4fae6d8a18a442defc3775bd08fb46bbdd18e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -156628,6 +157840,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "octane_0_4_18" = callPackage + ({ mkDerivation, aeson, aeson-pretty, autoexporter, base, binary + , binary-bits, bytestring, containers, data-binary-ieee754, deepseq + , newtype-generics, tasty, tasty-hspec, text + }: + mkDerivation { + pname = "octane"; + version = "0.4.18"; + sha256 = "75662d122bf7eb1f552cda017e45d74b2f0364a45ac0a11eb3af1687d8ce8f44"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty autoexporter base binary binary-bits bytestring + containers data-binary-ieee754 deepseq newtype-generics text + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base binary bytestring containers tasty tasty-hspec + ]; + homepage = "https://github.com/tfausak/octane#readme"; + description = "Parse Rocket League replays"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "octohat" = callPackage ({ mkDerivation, aeson, base, base-compat, base16-bytestring , base64-bytestring, bytestring, containers, cryptohash, dotenv @@ -157436,6 +158673,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "open-signals" = callPackage + ({ mkDerivation, base, either, mtl, transformers }: + mkDerivation { + pname = "open-signals"; + version = "0.1.0.3"; + sha256 = "a311f6ab03acaa6da81593fd1a8fb0f8796f51c6592475311892762dfa57d133"; + libraryHaskellDepends = [ base either mtl transformers ]; + testHaskellDepends = [ base ]; + description = "A mechanism similar to checked exceptions that integrates with MTL and transformer stacks"; + license = stdenv.lib.licenses.mit; + }) {}; + "open-symbology" = callPackage ({ mkDerivation, attoparsec, base, conduit, mtl, text }: mkDerivation { @@ -157482,13 +158731,17 @@ self: { }) {}; "open-witness" = callPackage - ({ mkDerivation, base, mtl, witness }: + ({ mkDerivation, base, hashable, random, template-haskell + , transformers, witness + }: mkDerivation { pname = "open-witness"; - version = "0.1.1"; - sha256 = "74dc0d586b21116cc47ba8614e52301a869c4e30c0f9c51eee40511e3ca468c4"; - libraryHaskellDepends = [ base mtl witness ]; - jailbreak = true; + version = "0.3.1"; + sha256 = "f217e4585e706cef7ab7aa3419f56205a929c350dbeb6c868972d7c25e7b82cb"; + libraryHaskellDepends = [ + base hashable random template-haskell transformers witness + ]; + homepage = "https://github.com/AshleyYakeley/open-witness"; description = "open witnesses"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -157576,15 +158829,15 @@ self: { ({ mkDerivation, base, data-default, GLUT, OpenGL, vector }: mkDerivation { pname = "opengl-dlp-stereo"; - version = "0.1.5.2"; - sha256 = "ae6c39a874af2fe12fd5af0dfc312ed9c2156a9240243c8ff81aa66970b0cad1"; + version = "0.1.5.4"; + sha256 = "d50aaa46219ae649cc4df821cd53d3c962c77b42c09d4ee6328ecb99f482f4d9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-default GLUT OpenGL vector ]; executableHaskellDepends = [ base data-default GLUT OpenGL vector ]; - homepage = "https://bitbucket.org/bwbush/opengl-dlp-stereo"; + homepage = "https://bitbucket.org/functionally/opengl-dlp-stereo"; description = "Library and example for using DLP stereo in OpenGL"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -157594,15 +158847,15 @@ self: { ({ mkDerivation, base, binary, data-default, GLUT, OpenGL }: mkDerivation { pname = "opengl-spacenavigator"; - version = "0.1.5.4"; - sha256 = "a6b1d313e0dce09ad4134b69df197acec6cc75ff5f3c2db9ca18cf384db64a54"; + version = "0.1.5.5"; + sha256 = "4835cd07f5fa8931b2fd38580faf9cd6057550ae70104ad60ff5a42d6f97080e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base binary data-default GLUT OpenGL ]; executableHaskellDepends = [ base binary data-default GLUT OpenGL ]; - homepage = "https://bitbucket.org/bwbush/opengl-spacenavigator"; + homepage = "https://bitbucket.org/functionally/opengl-spacenavigator"; description = "Library and example for using a SpaceNavigator-compatible 3-D mouse with OpenGL"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -158298,7 +159551,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "optional-args" = callPackage + "optional-args_1_0_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "optional-args"; @@ -158307,6 +159560,18 @@ self: { libraryHaskellDepends = [ base ]; description = "Optional function arguments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "optional-args" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "optional-args"; + version = "1.0.1"; + sha256 = "940604d6ebc1fb1b5372cb21e0b3870cd9d920655e41841844131994d1f1fd99"; + libraryHaskellDepends = [ base ]; + description = "Optional function arguments"; + license = stdenv.lib.licenses.bsd3; }) {}; "options_1_2" = callPackage @@ -159972,6 +161237,8 @@ self: { pname = "pandoc"; version = "1.17.0.3"; sha256 = "7b14e1bcb78a7e2ad1e585f127be7efd20225c9f9b5131d507b376b62cd77e32"; + revision = "1"; + editedCabalFile = "23dfb2513b8b5352d16fc331cb1b6b4989df239e62905f9cf341c9f519191891"; configureFlags = [ "-fhttps" ]; isLibrary = true; isExecutable = true; @@ -161658,7 +162925,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "patches-vector" = callPackage + "patches-vector_0_1_5_1" = callPackage ({ mkDerivation, base, criterion, doctest, edit-distance-vector , hspec, microlens, QuickCheck, vector }: @@ -161672,6 +162939,28 @@ self: { testHaskellDepends = [ base criterion doctest hspec QuickCheck vector ]; + jailbreak = true; + homepage = "https://github.com/liamoc/patches-vector"; + description = "Patches (diffs) on vectors: composable, mergeable, and invertible"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "patches-vector" = callPackage + ({ mkDerivation, base, criterion, doctest, edit-distance-vector + , hspec, microlens, QuickCheck, vector + }: + mkDerivation { + pname = "patches-vector"; + version = "0.1.5.2"; + sha256 = "aa19e7edb991e383672d58536351f63733359b0260902170c61c48e7196fec85"; + libraryHaskellDepends = [ + base edit-distance-vector microlens vector + ]; + testHaskellDepends = [ + base criterion doctest hspec QuickCheck vector + ]; + doCheck = false; homepage = "https://github.com/liamoc/patches-vector"; description = "Patches (diffs) on vectors: composable, mergeable, and invertible"; license = stdenv.lib.licenses.bsd3; @@ -163491,6 +164780,41 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent_2_5" = 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.5"; + sha256 = "de34feeb6e9fb3a181f204e8fdf6ad2adebe781a88182cd136e0d330c2455375"; + 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; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-cereal" = callPackage ({ mkDerivation, base, cereal, persistent, text }: mkDerivation { @@ -163504,6 +164828,26 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "persistent-database-url" = callPackage + ({ mkDerivation, base, bytestring, fail, hspec + , persistent-postgresql, string-conversions, text, uri-bytestring + }: + mkDerivation { + pname = "persistent-database-url"; + version = "1.1.0"; + sha256 = "a3e1c0bc2592593beb3bdae36a7b880bda5e38e3b288a71d88e2c99b8f4ec4d1"; + libraryHaskellDepends = [ + base bytestring fail persistent-postgresql string-conversions text + uri-bytestring + ]; + testHaskellDepends = [ + base bytestring hspec persistent-postgresql text + ]; + jailbreak = true; + description = "Parse DATABASE_URL into configuration types for Persistent"; + license = stdenv.lib.licenses.mit; + }) {}; + "persistent-equivalence" = callPackage ({ mkDerivation, array, base, diffarray }: mkDerivation { @@ -163664,6 +165008,29 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-mongoDB_2_5" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bson, bytestring, cereal + , conduit, containers, http-api-data, monad-control, mongoDB + , network, path-pieces, persistent, resource-pool, resourcet, text + , time, transformers + }: + mkDerivation { + pname = "persistent-mongoDB"; + version = "2.5"; + sha256 = "e181caeafa76905faa57ba5173ce5171469753b20d276bd008a515eb7e696e84"; + libraryHaskellDepends = [ + aeson attoparsec base bson bytestring cereal conduit containers + http-api-data monad-control mongoDB network path-pieces persistent + resource-pool resourcet text time transformers + ]; + jailbreak = true; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Backend for the persistent library using mongoDB"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-mysql_2_1_2" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit , containers, monad-control, monad-logger, mysql, mysql-simple @@ -163789,6 +165156,28 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-mysql_2_5" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit + , containers, monad-control, monad-logger, mysql, mysql-simple + , persistent, resource-pool, resourcet, text, transformers + }: + mkDerivation { + pname = "persistent-mysql"; + version = "2.5"; + sha256 = "fad1617beb44caa9e39c7aab574296004c45f5554bf76b404697e48c61e7395d"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring conduit containers + monad-control monad-logger mysql mysql-simple persistent + resource-pool resourcet text transformers + ]; + jailbreak = true; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Backend for the persistent library using MySQL database server"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-odbc" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, containers , convertible, HDBC, HDBC-odbc, monad-control, monad-logger @@ -164130,6 +165519,29 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-postgresql_2_5" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit + , containers, monad-control, monad-logger, persistent + , postgresql-libpq, postgresql-simple, resource-pool, resourcet + , text, time, transformers + }: + mkDerivation { + pname = "persistent-postgresql"; + version = "2.5"; + sha256 = "46694c4cf4f83b73944e8df989c37a50dc22b109fee2e739f21c66c352cdae09"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring conduit containers + monad-control monad-logger persistent postgresql-libpq + postgresql-simple resource-pool resourcet text time transformers + ]; + jailbreak = true; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Backend for the persistent library using postgresql"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-protobuf" = callPackage ({ mkDerivation, base, bytestring, persistent, protocol-buffers , protocol-buffers-descriptor, template-haskell, text @@ -164431,6 +165843,35 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-sqlite_2_5" = callPackage + ({ mkDerivation, aeson, base, bytestring, conduit, containers + , hspec, monad-control, monad-logger, old-locale, persistent + , persistent-template, resource-pool, resourcet, text, time + , transformers + }: + mkDerivation { + pname = "persistent-sqlite"; + version = "2.5"; + sha256 = "ca67e87e5089215cfe1782c32b5e227355054caa92c802beef056f2304bb6373"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring conduit containers monad-control monad-logger + old-locale persistent resource-pool resourcet text time + transformers + ]; + executableHaskellDepends = [ base monad-logger ]; + testHaskellDepends = [ + base hspec persistent persistent-template time transformers + ]; + jailbreak = true; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Backend for the persistent library using sqlite3"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + "persistent-template_2_1" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, ghc-prim , hspec, monad-control, monad-logger, path-pieces, persistent @@ -164745,6 +166186,32 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-template_2_5_1" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers + , ghc-prim, hspec, http-api-data, monad-control, monad-logger + , path-pieces, persistent, QuickCheck, tagged, template-haskell + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "persistent-template"; + version = "2.5.1"; + sha256 = "24776c5690023cebc85bda7c2cc8b0ebeb6cc87884ac83800f6891b1b32975fa"; + 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 + ]; + 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-vector" = callPackage ({ mkDerivation, base, deepseq, QuickCheck, test-framework , test-framework-quickcheck2 @@ -164968,6 +166435,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pg-store" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, hspec + , postgresql-libpq, QuickCheck, template-haskell, text + , transformers + }: + mkDerivation { + pname = "pg-store"; + version = "0.0.1"; + sha256 = "27032e33207c53c65452bfc3ea3d90620069850297e3edb5aa3e9274e6130c7f"; + libraryHaskellDepends = [ + attoparsec base bytestring postgresql-libpq template-haskell text + transformers + ]; + testHaskellDepends = [ + base bytestring hspec postgresql-libpq QuickCheck text + ]; + homepage = "https://github.com/vapourismo/pg-store"; + description = "Dead simple storage interface to PostgreSQL"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pgdl" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, configurator , directory, filepath, HTTP, http-conduit, network-uri, process @@ -166405,6 +167893,7 @@ self: { base free pipes pipes-parse transformers ]; testHaskellDepends = [ base doctest lens-family-core ]; + jailbreak = true; description = "Group streams into substreams"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -169915,12 +171404,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "prelude-compat" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "prelude-compat"; + version = "0.0.0.1"; + sha256 = "7bdc875d5b7265a87f06866dc00da69edcd4ae36ea9687c8c6e643833ffb40d4"; + libraryHaskellDepends = [ base ]; + description = "Provide Prelude and Data.List with fixed content across GHC versions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "prelude-edsl" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "prelude-edsl"; - version = "0.3.1"; - sha256 = "7b6233ca1eeb916185f87a7ba9ba8007a3b3f3307b795e52b32444fbcce44658"; + version = "0.4"; + sha256 = "2ef0353e4386cb64d8911fa2315b24a3581082e9ec8046b148364686df1b4657"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/emilaxelsson/prelude-edsl"; description = "An EDSL-motivated subset of the Prelude"; @@ -170015,6 +171515,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "prelude2010" = callPackage + ({ mkDerivation, prelude-compat }: + mkDerivation { + pname = "prelude2010"; + version = "0.0"; + sha256 = "d480894d9ad18f21395a26bcba80d7bd0d02b51ad81dc0f123eb1435aa7d8f38"; + libraryHaskellDepends = [ prelude-compat ]; + description = "Provide Prelude with fixed content across GHC versions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "preprocess-haskell" = callPackage ({ mkDerivation, base, base-unicode-symbols, basic-prelude , bytestring, Cabal, containers, cpphs, deepseq, directory @@ -170479,15 +171990,14 @@ self: { "printf-mauke" = callPackage ({ mkDerivation, base, bytestring, containers, data-default - , template-haskell, utf8-string + , template-haskell }: mkDerivation { pname = "printf-mauke"; - version = "0.6.0"; - sha256 = "1fa0f6c024f4a1d5d3b8da3a8de29b48b5735391a00581077a476cd816a9ddbb"; + version = "0.7.0"; + sha256 = "c518dca90f5767a63d10fc98be31cf20f96cc86609550b4530d1bfbcbf149715"; libraryHaskellDepends = [ base bytestring containers data-default template-haskell - utf8-string ]; description = "A Perl printf like formatter"; license = stdenv.lib.licenses.bsd3; @@ -172039,8 +173549,8 @@ self: { }: mkDerivation { pname = "protolude"; - version = "0.1.2"; - sha256 = "c44cff763b5ec3c46fd5e624db6b46932f555968f4f5a43c0948e6d06600a920"; + version = "0.1.4"; + sha256 = "2b8b2e7ceb88f6db37633e204d1b59cc676535bff61c0ceb6074b75f02a6cd29"; libraryHaskellDepends = [ async base bytestring containers deepseq ghc-prim mtl safe semiring-simple stm string-conv text transformers @@ -172106,8 +173616,8 @@ self: { ({ mkDerivation, base, generic-deriving, tagged }: mkDerivation { pname = "proxied"; - version = "0.1.1"; - sha256 = "dc4f7f3553dfcc2ff40dd967d5c04bed58ac3d8d210b77a62df45623b36be087"; + version = "0.2"; + sha256 = "76f3a157b2f5373d46aa4203369a17052ce472a21dc2b067f7810b117a1cee0b"; libraryHaskellDepends = [ base generic-deriving tagged ]; homepage = "https://github.com/RyanGlScott/proxied"; description = "Make functions consume Proxy instead of undefined"; @@ -172300,6 +173810,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "psqueues_0_2_2_1" = callPackage + ({ mkDerivation, array, base, deepseq, ghc-prim, hashable, HUnit + , QuickCheck, tagged, test-framework, test-framework-hunit + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "psqueues"; + version = "0.2.2.1"; + sha256 = "1428771180a34c2258bc9ca0f0c12f1df530be018e870c91348975cc7d33ae9b"; + libraryHaskellDepends = [ base deepseq ghc-prim hashable ]; + testHaskellDepends = [ + array base deepseq ghc-prim hashable HUnit QuickCheck tagged + test-framework test-framework-hunit test-framework-quickcheck2 + ]; + description = "Pure priority search queues"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pub" = callPackage ({ mkDerivation, base, bytestring, cmdargs, ConfigFile, containers , groom, hedis, hslogger, mtl, network, pipes, pipes-bytestring @@ -173027,7 +174556,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "purescript_0_8_4_0" = callPackage + "purescript_0_8_5_0" = callPackage ({ mkDerivation, aeson, aeson-better-errors, ansi-wl-pprint, base , base-compat, bower-json, boxes, bytestring, containers, directory , dlist, edit-distance, filepath, fsnotify, Glob, haskeline, hspec @@ -173035,13 +174564,14 @@ self: { , lifted-base, monad-control, monad-logger, mtl, network , optparse-applicative, parallel, parsec, pattern-arrows, pipes , pipes-http, process, regex-tdfa, safe, semigroups, sourcemap - , split, stm, syb, text, time, transformers, transformers-base - , transformers-compat, unordered-containers, utf8-string, vector + , spdx, split, stm, syb, text, time, transformers + , transformers-base, transformers-compat, unordered-containers + , utf8-string, vector }: mkDerivation { pname = "purescript"; - version = "0.8.4.0"; - sha256 = "cb0f75b7c4a9f926b6e183fe825153abdde6170f5da9c2b0ccef27575e3e264e"; + version = "0.8.5.0"; + sha256 = "75a253d113b33e79abceff9d280988c1a4cb46eb84547a82eda1ec4bdad60d04"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -173049,9 +174579,9 @@ self: { bytestring containers directory dlist edit-distance filepath fsnotify Glob http-types language-javascript lifted-base monad-control monad-logger mtl parallel parsec pattern-arrows pipes - pipes-http process regex-tdfa safe semigroups sourcemap split stm - syb text time transformers transformers-base transformers-compat - unordered-containers utf8-string vector + pipes-http process regex-tdfa safe semigroups sourcemap spdx split + stm syb text time transformers transformers-base + transformers-compat unordered-containers utf8-string vector ]; executableHaskellDepends = [ aeson ansi-wl-pprint base base-compat boxes bytestring containers @@ -174037,6 +175567,7 @@ self: { testHaskellDepends = [ base directory doctest filepath QuickCheck ]; + jailbreak = true; homepage = "http://github.com/bennofs/quickcheck-property-monad/"; description = "A monad for generating QuickCheck properties without Arbitrary instances"; license = stdenv.lib.licenses.bsd3; @@ -174417,8 +175948,8 @@ self: { ({ mkDerivation, base, hspec, QuickCheck, quiver }: mkDerivation { pname = "quiver-interleave"; - version = "0.2.0.0"; - sha256 = "756bfdf3b0a932e4452f4f032fc517977e01b19c98b645486ce89f47217ec801"; + version = "0.2.0.1"; + sha256 = "0dbe071064fdffb6995475048afe2531096e4009243fe58fc9bfe6ed31f2dad8"; libraryHaskellDepends = [ base quiver ]; testHaskellDepends = [ base hspec QuickCheck quiver ]; description = "Interleave values from multiple Quivers"; @@ -174426,19 +175957,19 @@ self: { }) {}; "quiver-sort" = callPackage - ({ mkDerivation, base, binary, directory, exceptions, hspec - , QuickCheck, quiver, quiver-binary, quiver-bytestring + ({ mkDerivation, base, binary, containers, directory, exceptions + , hspec, QuickCheck, quiver, quiver-binary, quiver-bytestring , quiver-groups, quiver-instances, quiver-interleave, resourcet , temporary, transformers }: mkDerivation { pname = "quiver-sort"; - version = "0.1.0.0"; - sha256 = "ad93f4cdb76043612f816f02e0ca40fdb1396e8b7a96b7e303255eb7b4099d05"; + version = "0.2.0.0"; + sha256 = "78dba51aa22ecc34e7d871d066bd936febcb684dd20679d46ba2cd377399ee0c"; libraryHaskellDepends = [ - base directory exceptions quiver quiver-binary quiver-bytestring - quiver-groups quiver-instances quiver-interleave resourcet - temporary transformers + base containers directory exceptions quiver quiver-binary + quiver-bytestring quiver-groups quiver-instances quiver-interleave + resourcet temporary transformers ]; testHaskellDepends = [ base binary directory exceptions hspec QuickCheck quiver @@ -175482,6 +177013,26 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "ratel_0_1_3" = callPackage + ({ mkDerivation, aeson, base, bytestring, case-insensitive + , containers, http-client, http-client-tls, http-types, tasty + , tasty-hspec, text, uuid + }: + mkDerivation { + pname = "ratel"; + version = "0.1.3"; + sha256 = "49fee52e108c70551438f75f997b8c0a3053ee15476422c77509918bfb3ca9b3"; + libraryHaskellDepends = [ + aeson base bytestring case-insensitive containers http-client + http-client-tls http-types text uuid + ]; + testHaskellDepends = [ base tasty tasty-hspec ]; + homepage = "https://github.com/tfausak/ratel#readme"; + description = "Notify Honeybadger about exceptions"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ratel-wai" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , http-client, ratel, wai @@ -175498,6 +177049,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "ratel-wai_0_1_2" = callPackage + ({ mkDerivation, base, bytestring, case-insensitive, containers + , http-client, ratel, wai + }: + mkDerivation { + pname = "ratel-wai"; + version = "0.1.2"; + sha256 = "f8aad4c4f57e58bda51edc56521e095e03810c825ef2333069e9151f51e1468e"; + libraryHaskellDepends = [ + base bytestring case-insensitive containers http-client ratel wai + ]; + homepage = "https://github.com/tfausak/ratel-wai#readme"; + description = "Notify Honeybadger about exceptions via a WAI middleware"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ratio-int" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -175659,29 +177227,28 @@ self: { "rdf4h" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, fgl, hashable, HTTP, HUnit, hxt, knob, network - , network-uri, parsec, QuickCheck, safe, test-framework - , test-framework-hunit, test-framework-quickcheck2, text - , text-binary, unordered-containers + , directory, fgl, hashable, hgal, HTTP, HUnit, hxt, network + , network-uri, parsec, QuickCheck, safe, tasty, tasty-hunit + , tasty-quickcheck, text, text-binary, unordered-containers + , utf8-string }: mkDerivation { pname = "rdf4h"; - version = "1.3.6"; - sha256 = "59b3f7a1893b1ec2c4ce967dd98d1dd1541e57ce1a697810d3b8fec27d21b1da"; + version = "2.0.0"; + sha256 = "2c6eb2a15590931e0646731c688b010d75186a2d1ce38eabb27fdbc19647a23a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base binary bytestring containers deepseq directory fgl hashable - HTTP hxt network network-uri parsec text text-binary - unordered-containers + hgal HTTP hxt network network-uri parsec text text-binary + unordered-containers utf8-string ]; executableHaskellDepends = [ - base bytestring containers network network-uri text + base containers network network-uri text ]; testHaskellDepends = [ - base bytestring containers directory HUnit knob network network-uri - QuickCheck safe test-framework test-framework-hunit - test-framework-quickcheck2 text + base bytestring containers directory HUnit network network-uri + QuickCheck safe tasty tasty-hunit tasty-quickcheck text ]; homepage = "https://github.com/robstewart57/rdf4h"; description = "A library for RDF processing in Haskell"; @@ -179834,8 +181401,8 @@ self: { pname = "rest-client"; version = "0.5.1.0"; sha256 = "9b75fb30f0f101945440c21b38d64b22a9aad81b81bce8e6a21e4675e6c8136e"; - revision = "1"; - editedCabalFile = "792e8084ca7b8c30c3c5870c03c0f2b0e401ea75a7edea9ec598fdbe5213f676"; + revision = "2"; + editedCabalFile = "a95c81e43b13fd4998514f346a7b81093228886b99dc0b05e07506f44b8ae642"; libraryHaskellDepends = [ aeson-utils base bytestring case-insensitive data-default exceptions http-conduit http-types hxt hxt-pickle-utils @@ -180008,8 +181575,8 @@ self: { pname = "rest-core"; version = "0.38"; sha256 = "b491b734c2d74729f427ca02370f12b839dd92347fea44b5fb66c66a39b11cec"; - revision = "1"; - editedCabalFile = "edcbe69d770149b6e3aeb47cc7ae2a9f4e589fa3cd1c928f1538504ac24b8b2c"; + revision = "2"; + editedCabalFile = "ed51d0cdb0e2562b3d3d03bc87c0da6d8da947ccec0f66307cf9455e82bd39dc"; libraryHaskellDepends = [ aeson aeson-utils base base-compat bytestring case-insensitive errors fclabels hxt hxt-pickle-utils json-schema mtl mtl-compat @@ -180431,8 +181998,8 @@ self: { pname = "rest-gen"; version = "0.19.0.2"; sha256 = "12caa70e7b29b073cb0e066cf7d5c590b13e0fb5b2f924944cd1ae5217c79330"; - revision = "1"; - editedCabalFile = "afca13957f1b186ba5922659d6275cdf5c8d49ec2bca6f2319d89c213afa5c4d"; + revision = "2"; + editedCabalFile = "e4e4528467c593e7cfc6ae2180bfa4a255097f1921a9daa70b46c48c0e84763a"; libraryHaskellDepends = [ aeson base base-compat blaze-html Cabal code-builder directory fclabels filepath hashable haskell-src-exts HStringTemplate hxt @@ -180674,8 +182241,8 @@ self: { pname = "rest-stringmap"; version = "0.2.0.6"; sha256 = "66e5a32f04cfcf9826296b3c053c22caa745fd890ccc6ea9199c34529507524a"; - revision = "2"; - editedCabalFile = "286ce136699cc8dffad47ead93fdaf0538e465edafde510ff7697f96e470ea1d"; + revision = "3"; + editedCabalFile = "33fa62a06fc1c77f4e77c603b0a19678eab9695402e20e56556c6fd090e332dd"; libraryHaskellDepends = [ aeson base containers hashable hxt json-schema tostring unordered-containers @@ -180915,7 +182482,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rethinkdb" = callPackage + "rethinkdb_2_2_0_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary , bytestring, containers, data-default, doctest, mtl, network , scientific, text, time, unordered-containers, utf8-string, vector @@ -180937,6 +182504,31 @@ self: { homepage = "http://github.com/atnnn/haskell-rethinkdb"; description = "A driver for RethinkDB 2.2"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rethinkdb" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary + , bytestring, containers, data-default, doctest, mtl, network + , scientific, text, time, unordered-containers, utf8-string, vector + }: + mkDerivation { + pname = "rethinkdb"; + version = "2.2.0.4"; + sha256 = "e1f700f1cdbe9e7b96d529f29725ec13be86ae164c3c99a03b1d502ac9416f9c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base base64-bytestring binary bytestring containers + data-default mtl network scientific text time unordered-containers + utf8-string vector + ]; + executableHaskellDepends = [ attoparsec base text ]; + testHaskellDepends = [ base doctest ]; + doCheck = false; + homepage = "http://github.com/atnnn/haskell-rethinkdb"; + description = "A driver for RethinkDB 2.2"; + license = stdenv.lib.licenses.asl20; }) {}; "rethinkdb-client-driver_0_0_13" = callPackage @@ -182551,8 +184143,8 @@ self: { }: mkDerivation { pname = "rss-conduit"; - version = "0.2.0.0"; - sha256 = "feff18d16f9c23e3180a7a4ae9efebcce52cdc8b8ad78791948dba33f5af53a6"; + version = "0.2.0.1"; + sha256 = "c06317ac567f3a025bd5ba498837a64f0f045a3fa38e4ae36ca9ca76c4aafe3a"; libraryHaskellDepends = [ base conduit conduit-parse containers exceptions foldl lens-simple mono-traversable parsers safe text time timerep uri-bytestring @@ -182600,8 +184192,8 @@ self: { }: mkDerivation { pname = "rtcm"; - version = "0.1.4"; - sha256 = "9f4343199636b5509c71c982f8d8be39eaadcdac0fb63b86323590c66ef43a03"; + version = "0.1.5"; + sha256 = "cc91a2c354c79e6f4bb98c3f801bc72c5a37fd3874fa3d0ac4e6fa5637fac364"; libraryHaskellDepends = [ array base basic-prelude binary binary-bits bytestring lens template-haskell word24 @@ -183662,26 +185254,26 @@ self: { }) {}; "sarsi" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, Cabal + ({ mkDerivation, async, attoparsec, base, binary, bytestring, Cabal , containers, cryptonite, directory, filepath, fsnotify, machines , machines-binary, machines-io, machines-process, msgpack, network - , process, text, unordered-containers, vector + , process, stm, text, unordered-containers, vector }: mkDerivation { pname = "sarsi"; - version = "0.0.1.0"; - sha256 = "fb0fd9a1f67876bc7656c27782ad74f64427e16ab43e3914cdad7d68be56e4b7"; + version = "0.0.3.0"; + sha256 = "5dce7ea1ce2288c62069f98f3757357b41a0385338edb4e741d9ef59f0243861"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - attoparsec base binary bytestring containers cryptonite directory - filepath machines machines-binary machines-io machines-process - msgpack network process text vector + async attoparsec base binary bytestring containers cryptonite + directory filepath fsnotify machines machines-binary machines-io + machines-process msgpack network process stm text vector ]; executableHaskellDepends = [ - base binary bytestring Cabal containers fsnotify machines - machines-binary machines-io machines-process msgpack network - process text unordered-containers vector + base binary bytestring Cabal containers directory filepath fsnotify + machines machines-binary machines-io machines-process msgpack + network process text unordered-containers vector ]; jailbreak = true; homepage = "http://github.com/aloiscochard/sarsi"; @@ -183850,12 +185442,12 @@ self: { , conduit-combinators, conduit-extra, data-binary-ieee754, lens , monad-loops, QuickCheck, resourcet, tasty, tasty-hunit , tasty-quickcheck, template-haskell, text, unordered-containers - , yaml, yaml-light + , yaml }: mkDerivation { pname = "sbp"; - version = "0.52.1"; - sha256 = "72e53ab77cf026fc5bde9899a5a49a35bbe6a2e3853022b9d62e238eee8450f6"; + version = "0.52.2"; + sha256 = "e3510bf821f2af6bc73221a0c35cce3e3436f8651bdddc08db190d389992fa41"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -183869,7 +185461,7 @@ self: { ]; testHaskellDepends = [ aeson base base64-bytestring basic-prelude bytestring QuickCheck - tasty tasty-hunit tasty-quickcheck yaml-light + tasty tasty-hunit tasty-quickcheck ]; homepage = "https://github.com/swift-nav/libsbp"; description = "SwiftNav's SBP Library"; @@ -185063,8 +186655,8 @@ self: { }: mkDerivation { pname = "scotty-resource"; - version = "0.1.0.0"; - sha256 = "54bb90b0cd35b4a22bbed7af58e1e9297344551badc0ebcc56620ce1bad1c5d5"; + version = "0.1.0.1"; + sha256 = "d65bea57c1151d8cf467fa624ca6351ceb02f086cb9ff87aafef450511f52127"; libraryHaskellDepends = [ base containers http-types scotty text transformers wai ]; @@ -185134,6 +186726,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "scotty-view" = callPackage + ({ mkDerivation, base, scotty, text, transformers }: + mkDerivation { + pname = "scotty-view"; + version = "1.0.0"; + sha256 = "d46e0f66f200595d666d5b996cc1aa7999ce059668bc720d641e60c03f4b3bda"; + revision = "2"; + editedCabalFile = "d941c5b17efc35e5a244ee219198795d8b3df583685abe7b128731a417735a29"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base scotty text transformers ]; + executableHaskellDepends = [ base scotty text transformers ]; + jailbreak = true; + license = stdenv.lib.licenses.mit; + }) {}; + "scp-streams" = callPackage ({ mkDerivation, attoparsec, base, bytestring, cmdargs, io-streams , process, SHA, sha-streams, unix @@ -185428,19 +187036,20 @@ self: { }) {}; "sdl2-compositor" = callPackage - ({ mkDerivation, base, lens, linear, lrucache, QuickCheck, sdl2 - , sdl2-ttf, StateVar, stm, text, transformers + ({ mkDerivation, base, Cabal, hspec, hspec-core, lens, linear + , lrucache, QuickCheck, sdl2, StateVar, stm, text, transformers }: mkDerivation { pname = "sdl2-compositor"; - version = "1.2.0.4"; - sha256 = "f4e80bef41513080e60c76d1f6d15fe6afe479acb92e9775cbe9e12d7ee15135"; + version = "1.2.0.5"; + sha256 = "233b6fa622703849d4f7d69ac2202a0787b4e1048341b09767a3b5fa2e3ee255"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base lens linear lrucache QuickCheck sdl2 sdl2-ttf StateVar stm - text transformers + base lens linear lrucache QuickCheck sdl2 StateVar stm text + transformers ]; + testHaskellDepends = [ base Cabal hspec hspec-core QuickCheck ]; description = "image compositing with sdl2 - declarative style"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = stdenv.lib.platforms.none; @@ -186155,6 +187764,7 @@ self: { distributive semigroups tagged transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/ekmett/semigroupoids"; description = "Semigroupoids: Category sans id"; @@ -186178,6 +187788,8 @@ self: { distributive semigroups tagged transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; + doCheck = false; homepage = "http://github.com/ekmett/semigroupoids"; description = "Semigroupoids: Category sans id"; license = stdenv.lib.licenses.bsd3; @@ -187082,7 +188694,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant_0_6_1" = callPackage + "servant_0_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring , bytestring-conversion, case-insensitive, directory, doctest , filemanip, filepath, hspec, http-api-data, http-media, http-types @@ -187091,8 +188703,8 @@ self: { }: mkDerivation { pname = "servant"; - version = "0.6.1"; - sha256 = "830154335052270314be49644db3a88665b1910d1678ff35337a9b3caabaab3a"; + version = "0.7"; + sha256 = "c4a61f0bb998c7e3a7dd808c64e73419e7c1b3a60e51d3cbce8cb32eb1ea3f97"; libraryHaskellDepends = [ aeson attoparsec base base-compat bytestring bytestring-conversion case-insensitive http-api-data http-media http-types network-uri @@ -187221,12 +188833,12 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-blaze_0_6_1" = callPackage + "servant-blaze_0_7" = callPackage ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { pname = "servant-blaze"; - version = "0.6.1"; - sha256 = "f34b45f7c15f53858034052bc0e662ce884ca2c231bc7f3fecc69bc8763f209f"; + version = "0.7"; + sha256 = "e0639a646d1ce876da88ddbcc32e99348c6e3c9b76d21fb43261b89b19dc8ebd"; libraryHaskellDepends = [ base blaze-html http-media servant ]; jailbreak = true; homepage = "http://haskell-servant.github.io/"; @@ -187239,8 +188851,8 @@ self: { ({ mkDerivation, base, cassava, http-media, servant, vector }: mkDerivation { pname = "servant-cassava"; - version = "0.6.1"; - sha256 = "2cd80c3c5e92111e4ccca8a0aeef5001cb5e64ca31365fa363148a2d239e781f"; + version = "0.7"; + sha256 = "ae4d8a51a2a6a1bafa224fd83ce7ccb7669e01e0bb19328bb09841e4e6a3a8ad"; libraryHaskellDepends = [ base cassava http-media servant vector ]; jailbreak = true; homepage = "http://haskell-servant.github.io/"; @@ -187435,7 +189047,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-client_0_6_1" = callPackage + "servant-client_0_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, deepseq, exceptions, hspec, http-api-data , http-client, http-client-tls, http-media, http-types, HUnit @@ -187445,8 +189057,8 @@ self: { }: mkDerivation { pname = "servant-client"; - version = "0.6.1"; - sha256 = "3b2724cd01fd60c10132b4c20384e5bc734f2e46b03db9b6a0f6d4b947decee4"; + version = "0.7"; + sha256 = "8874dc13f0256d31734e011d8fcd4ffbb38c3d25ca0514e5e9433a16d42b96cf"; libraryHaskellDepends = [ aeson attoparsec base base64-bytestring bytestring exceptions http-api-data http-client http-client-tls http-media http-types @@ -187465,6 +189077,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "servant-csharp" = callPackage + ({ mkDerivation, base, bytestring, directory, filepath + , haskell-src-exts, heredocs, http-types, lens, servant + , servant-foreign, text, time, uuid, uuid-types + }: + mkDerivation { + pname = "servant-csharp"; + version = "0.0.7.1"; + sha256 = "98bb40bf02a4ed672fe50c1c5c90901e61ebe5ade8d639a1dfdee215ce1de4ff"; + libraryHaskellDepends = [ + base bytestring directory filepath haskell-src-exts heredocs + http-types lens servant servant-foreign text time uuid uuid-types + ]; + jailbreak = true; + homepage = "https://github.com/cutsea110/servant-csharp.git"; + description = "Generate servant client library for C#"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "servant-docs_0_3_1" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring, hashable , lens, servant, string-conversions, system-filepath, text @@ -187661,7 +189292,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-docs_0_6_1" = callPackage + "servant-docs_0_7" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring , bytestring-conversion, case-insensitive, control-monad-omega , hashable, hspec, http-media, http-types, lens, servant @@ -187669,8 +189300,8 @@ self: { }: mkDerivation { pname = "servant-docs"; - version = "0.6.1"; - sha256 = "66604bcbeee4f84847d64fb7ed127eb4f32570d16a33aa24adf2684688aae33b"; + version = "0.7"; + sha256 = "8bb427ae3f9633b166efa45274cfffd17e7c313a5cbe40f6e6384e746eb59fb2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -187767,8 +189398,8 @@ self: { ({ mkDerivation, base, hspec, http-types, lens, servant, text }: mkDerivation { pname = "servant-foreign"; - version = "0.6.1"; - sha256 = "de131f3538d9e01a5c9a8c57ee85a22753fa25e80f98031e0c2947c5aca9b324"; + version = "0.7"; + sha256 = "2c0fe064a4cd38fe73bb6133fd7d402e5b6457dd2902c76322887d6c5f0e383b"; libraryHaskellDepends = [ base http-types lens servant text ]; testHaskellDepends = [ base hspec ]; jailbreak = true; @@ -187994,8 +189625,8 @@ self: { }: mkDerivation { pname = "servant-js"; - version = "0.6.1"; - sha256 = "8bafcd5632bb49346280a1922e1708e55da639c485347d0566724445e2854611"; + version = "0.7"; + sha256 = "355fac0a7232a163b628194750aa47897e0bc53a57799d6b132509cf4a82be66"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -188020,8 +189651,8 @@ self: { ({ mkDerivation, base, http-media, lucid, servant }: mkDerivation { pname = "servant-lucid"; - version = "0.6.1"; - sha256 = "bb0d27b58f21e4921f302a0902ead2377372617df80ab829be9dd296d1f031e6"; + version = "0.7"; + sha256 = "6a1dc36d919763d0793e21dca873038ececfaa386e792ac8d70c597ef94e74a4"; libraryHaskellDepends = [ base http-media lucid servant ]; jailbreak = true; homepage = "http://haskell-servant.github.io/"; @@ -188051,15 +189682,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-mock_0_6_1" = callPackage + "servant-mock_0_7" = callPackage ({ mkDerivation, aeson, base, bytestring, bytestring-conversion , hspec, hspec-wai, http-types, QuickCheck, servant, servant-server , transformers, wai, warp }: mkDerivation { pname = "servant-mock"; - version = "0.6.1"; - sha256 = "c612d546f82f0b633cab8396c71583f0866034abd9c3f2462fce3faec9006621"; + version = "0.7"; + sha256 = "42065734878eabbb2cd424737bab0e1dd3ff99eddace93c9c0953f59a42dc55d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -188447,7 +190078,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-server_0_6_1" = callPackage + "servant-server_0_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-compat , base64-bytestring, bytestring, bytestring-conversion, containers , directory, doctest, exceptions, filemanip, filepath, hspec @@ -188459,8 +190090,8 @@ self: { }: mkDerivation { pname = "servant-server"; - version = "0.6.1"; - sha256 = "4d1b0871008945009bf4d4756108cc1376edbd08e49ce96d9c1365d9b382ec07"; + version = "0.7"; + sha256 = "ea58c79d6ac65d0beda9e64c1cde420d77a355be4cab0b48738ccf3adad4eb0b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -189561,7 +191192,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shake" = callPackage + "shake_0_15_5" = callPackage ({ mkDerivation, base, binary, bytestring, deepseq, directory , extra, filepath, hashable, js-flot, js-jquery, old-time, process , QuickCheck, random, time, transformers, unix @@ -189592,6 +191223,40 @@ self: { homepage = "http://shakebuild.com"; description = "Build system library, like Make, but more accurate dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "shake" = callPackage + ({ mkDerivation, base, binary, bytestring, deepseq, directory + , extra, filepath, hashable, js-flot, js-jquery, primitive, process + , QuickCheck, random, time, transformers, unix + , unordered-containers, utf8-string + }: + mkDerivation { + pname = "shake"; + version = "0.15.6"; + sha256 = "d162f5437ffb08a9b638e381dc99807975ed48b2f04e24b1e3df74b0c1bbca10"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring deepseq directory extra filepath hashable + js-flot js-jquery process random time transformers unix + unordered-containers utf8-string + ]; + executableHaskellDepends = [ + base binary bytestring deepseq directory extra filepath hashable + js-flot js-jquery primitive process random time transformers unix + unordered-containers utf8-string + ]; + testHaskellDepends = [ + base binary bytestring deepseq directory extra filepath hashable + js-flot js-jquery process QuickCheck random time transformers unix + unordered-containers utf8-string + ]; + doCheck = false; + homepage = "http://shakebuild.com"; + description = "Build system library, like Make, but more accurate dependencies"; + license = stdenv.lib.licenses.bsd3; }) {}; "shake-cabal-build" = callPackage @@ -190093,7 +191758,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "shakespeare" = callPackage + "shakespeare_2_0_8" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec , process, scientific, template-haskell, text, time, transformers @@ -190116,6 +191781,60 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "A toolkit for making compile-time interpolated templates"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "shakespeare" = callPackage + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring + , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec + , process, scientific, template-haskell, text, time, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "shakespeare"; + version = "2.0.8.1"; + sha256 = "36f44b3e07f9142d0d4d3ef87ec1b84ec915a3f21091f470f493e61dbe0c38a5"; + libraryHaskellDepends = [ + aeson base blaze-html blaze-markup bytestring containers directory + exceptions ghc-prim parsec process scientific template-haskell text + time transformers unordered-containers vector + ]; + testHaskellDepends = [ + aeson base blaze-html blaze-markup bytestring containers directory + exceptions ghc-prim hspec HUnit parsec process template-haskell + text time transformers + ]; + homepage = "http://www.yesodweb.com/book/shakespearean-templates"; + description = "A toolkit for making compile-time interpolated templates"; + license = stdenv.lib.licenses.mit; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "shakespeare_2_0_8_2" = callPackage + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring + , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec + , process, scientific, template-haskell, text, time, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "shakespeare"; + version = "2.0.8.2"; + sha256 = "30797f10420f70164443ba4167fb3901f84d235cb419fd0d0442e746c835b114"; + libraryHaskellDepends = [ + aeson base blaze-html blaze-markup bytestring containers directory + exceptions ghc-prim parsec process scientific template-haskell text + time transformers unordered-containers vector + ]; + testHaskellDepends = [ + aeson base blaze-html blaze-markup bytestring containers directory + exceptions ghc-prim hspec HUnit parsec process template-haskell + text time transformers + ]; + homepage = "http://www.yesodweb.com/book/shakespearean-templates"; + description = "A toolkit for making compile-time interpolated templates"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -190511,8 +192230,8 @@ self: { pname = "shelltestrunner"; version = "1.3.5"; sha256 = "4265eb9cc87c352655099da26f49fb7829f5163edd03a20105b7a25609d3a829"; - revision = "1"; - editedCabalFile = "4ccce28f099594a89bbb8ff9c8f6408955b4be02a01eb2d552e1ce7165dce3aa"; + revision = "2"; + editedCabalFile = "647017bad45490fe4d5f549d21583d80c8ce69f3e4e8e4476c55707126b2e2b4"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -190752,6 +192471,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "shelly_1_6_6" = 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.6"; + sha256 = "9c89e1ed25de9ede0ee6d6a4094ff72ca6af5b1a1f67503ea40a87beb796e1c5"; + 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 + ]; + 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-extra" = callPackage ({ mkDerivation, async, base, hspec, HUnit, mtl, SafeSemaphore , shelly, text @@ -190769,6 +192519,41 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "shine" = callPackage + ({ mkDerivation, base, ghcjs-dom, ghcjs-prim, keycode, mtl, time + , transformers + }: + mkDerivation { + pname = "shine"; + version = "0.1.0.0"; + sha256 = "b20ef3b3c40df6f53bf4eefeaf8d53482f3729562626744095c101641ae469a0"; + revision = "1"; + editedCabalFile = "650580b5783e188ebeda9d052966052dba2fad5a971cbe078e5046b120ed1f1a"; + libraryHaskellDepends = [ + base ghcjs-dom ghcjs-prim keycode mtl time transformers + ]; + testHaskellDepends = [ base ghcjs-dom ]; + jailbreak = true; + homepage = "https://github.com/fgaz/shine"; + description = "Declarative graphics for the browser using GHCJS"; + license = stdenv.lib.licenses.mit; + broken = true; + }) {ghcjs-prim = null;}; + + "shine-varying" = callPackage + ({ mkDerivation, base, ghcjs-dom, keycode, shine, varying }: + mkDerivation { + pname = "shine-varying"; + version = "0.1.0.0"; + sha256 = "80301d12099fa02193881457cf80603b00d8c0fe59ef3a8e75f1f81491fbb68e"; + libraryHaskellDepends = [ base ghcjs-dom keycode shine varying ]; + testHaskellDepends = [ base ghcjs-dom keycode shine varying ]; + homepage = "https://github.com/fgaz/shine-varying"; + description = "FRP interface for shine using the varying package"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "shivers-cfg" = callPackage ({ mkDerivation, base, containers, directory, HPDF, language-dot , mtl, pretty, process @@ -190860,7 +192645,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "should-not-typecheck" = callPackage + "should-not-typecheck_2_0_1" = callPackage ({ mkDerivation, base, deepseq, hspec, hspec-expectations, HUnit }: mkDerivation { pname = "should-not-typecheck"; @@ -190873,6 +192658,22 @@ self: { homepage = "http://github.com/CRogers/should-not-typecheck"; description = "A HUnit/hspec assertion library to verify that an expression does not typecheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "should-not-typecheck" = callPackage + ({ mkDerivation, base, deepseq, hspec, hspec-expectations, HUnit }: + mkDerivation { + pname = "should-not-typecheck"; + version = "2.1.0"; + sha256 = "f538ac70ce07679bc2e6c1651db82a86866664ab995665fdc78e6cb12bd8d591"; + libraryHaskellDepends = [ base deepseq HUnit ]; + testHaskellDepends = [ + base deepseq hspec hspec-expectations HUnit + ]; + homepage = "http://github.com/CRogers/should-not-typecheck"; + description = "A HUnit/hspec assertion library to verify that an expression does not typecheck"; + license = stdenv.lib.licenses.bsd3; }) {}; "show" = callPackage @@ -192446,13 +194247,13 @@ self: { }) {}; "skulk" = callPackage - ({ mkDerivation, base, hspec }: + ({ mkDerivation, base, hspec, QuickCheck }: mkDerivation { pname = "skulk"; - version = "0.1.0.0"; - sha256 = "c7442785a7211084928a4bc6ab2612bab96676d6e979b0d3debc6c8c13f8dd44"; + version = "0.1.1.0"; + sha256 = "21bfa0fb579dd9b4cd0c48cbd0011b0b4a38985b517dfd6ee1d455d9c83506df"; libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base hspec ]; + testHaskellDepends = [ base hspec QuickCheck ]; homepage = "http://github.com/geekyfox/skulk"; description = "Eclectic collection of utility functions"; license = stdenv.lib.licenses.mit; @@ -192857,7 +194658,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "smallcaps" = callPackage + "smallcaps_0_6_0_1" = callPackage ({ mkDerivation, attoparsec, base, containers, data-default , directory, filepath, parsec, text, transformers }: @@ -192877,6 +194678,29 @@ self: { ]; description = "Flatten camel case text in LaTeX files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "smallcaps" = callPackage + ({ mkDerivation, attoparsec, base, containers, data-default + , directory, filepath, parsec, text, transformers + }: + mkDerivation { + pname = "smallcaps"; + version = "0.6.0.2"; + sha256 = "7eb841d025e88447172824480d8867263421e14472bf2c82cfde8f2f7f9551dc"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base containers data-default directory filepath parsec + text transformers + ]; + executableHaskellDepends = [ base containers data-default text ]; + testHaskellDepends = [ + attoparsec base containers data-default parsec text + ]; + description = "Flatten camel case text in LaTeX files"; + license = stdenv.lib.licenses.bsd3; }) {}; "smallcheck" = callPackage @@ -194574,14 +196398,13 @@ self: { }: mkDerivation { pname = "snaplet-mysql-simple"; - version = "0.2.1.0"; - sha256 = "21db42dc3ddf618fd3faf7dedc3fb663d9705a3b7e5db11b9b09813275470543"; + version = "0.2.2.0"; + sha256 = "431144707d54737953c83fbe71b78ad06be73454e25f56163c108ecc20935058"; libraryHaskellDepends = [ base bytestring clientsession configurator containers errors lens MonadCatchIO-transformers mtl mysql mysql-simple resource-pool-catchio snap text transformers unordered-containers ]; - jailbreak = true; homepage = "https://github.com/ibotty/snaplet-mysql-simple"; description = "mysql-simple snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -196678,6 +198501,31 @@ self: { license = stdenv.lib.licenses.bsd2; }) {}; + "sproxy" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bytestring, containers, data-default, docopt, entropy + , http-conduit, http-kit, http-types, interpolatedstring-perl6 + , logging-facade, logsink, network, postgresql-simple + , raw-strings-qq, resource-pool, SHA, split, string-conversions + , time, tls, unix, utf8-string, x509, yaml + }: + mkDerivation { + pname = "sproxy"; + version = "0.9.5"; + sha256 = "54633c0d8ec9de787947af025e9a4f43e762bada88e5e1745a32420632e2c35f"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson attoparsec base base64-bytestring bytestring containers + data-default docopt entropy http-conduit http-kit http-types + interpolatedstring-perl6 logging-facade logsink network + postgresql-simple raw-strings-qq resource-pool SHA split + string-conversions time tls unix utf8-string x509 yaml + ]; + description = "HTTP proxy for authenticating users via Google OAuth2"; + license = stdenv.lib.licenses.mit; + }) {}; + "spsa" = callPackage ({ mkDerivation, base, hmatrix, HUnit, mtl, QuickCheck, random , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -197969,8 +199817,8 @@ self: { pname = "stack"; version = "1.0.4.3"; sha256 = "2a445ff671cfd75ccf3185c52832298598dc03dbfbede2b7be21237f63c305b2"; - revision = "1"; - editedCabalFile = "d637dfe390596b7ee702c516d177ffd266ab110c4a0b691c9a7d49d274382e08"; + revision = "2"; + editedCabalFile = "a2cedd499125c5380a6f2e7f7a57c6b67e330e07ecd5e95114b83cefe7975e3f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -198555,15 +200403,14 @@ self: { , monad-unlift, mono-traversable, mtl, old-locale , optparse-applicative, optparse-simple, process, QuickCheck , resourcet, semigroups, stackage-cli, stackage-install - , stackage-metadata, stackage-types, stm, streaming-commons, syb - , system-fileio, system-filepath, tar, temporary, text, time - , transformers, unix-compat, utf8-string, xml-conduit, xml-types - , yaml, zlib + , stackage-types, stm, streaming-commons, syb, system-fileio + , system-filepath, tar, temporary, text, time, transformers + , unix-compat, utf8-string, xml-conduit, xml-types, yaml, zlib }: mkDerivation { pname = "stackage-curator"; - version = "0.13.2"; - sha256 = "09373b993ef5958e945c38cff08c6dabdbd3f71e61f8ffc049ba30196c3bae6b"; + version = "0.13.3"; + sha256 = "3bd12ba07d2a81d7439ba9ac4668a40981a7aab718942469f9e465a5d3127d94"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -198574,9 +200421,9 @@ self: { directory filepath html-conduit http-client http-client-tls http-conduit lucid mime-types monad-unlift mono-traversable mtl old-locale process resourcet semigroups stackage-install - stackage-metadata stackage-types stm streaming-commons syb - system-fileio system-filepath tar temporary text time transformers - unix-compat utf8-string xml-conduit xml-types yaml zlib + stackage-types stm streaming-commons syb system-fileio + system-filepath tar temporary text time transformers unix-compat + utf8-string xml-conduit xml-types yaml zlib ]; executableHaskellDepends = [ base http-client http-client-tls optparse-applicative @@ -199032,6 +200879,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "stateWriter_0_2_7" = callPackage + ({ mkDerivation, base, free, hspec, mtl, QuickCheck, transformers + }: + mkDerivation { + pname = "stateWriter"; + version = "0.2.7"; + sha256 = "b8c23d83157fef157c44e46190267c5a16e9e6b479066abc1219708726c24da8"; + libraryHaskellDepends = [ base mtl transformers ]; + testHaskellDepends = [ base free hspec mtl QuickCheck ]; + description = "A faster variant of the RWS monad transformers"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "statechart" = callPackage ({ mkDerivation, base, polyparse }: mkDerivation { @@ -200374,6 +202235,35 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "stratosphere" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, ede, hlint + , lens, system-fileio, system-filepath, tasty, tasty-hspec + , template-haskell, text, unordered-containers + }: + mkDerivation { + pname = "stratosphere"; + version = "0.1.0"; + sha256 = "4cc6816f1196fcf59d774f0267268935c7bbdf5d8953b8e0ebe1b92d5cb51d15"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty base bytestring ede lens system-fileio + system-filepath template-haskell text unordered-containers + ]; + executableHaskellDepends = [ + aeson aeson-pretty base bytestring ede lens system-fileio + system-filepath template-haskell text unordered-containers + ]; + testHaskellDepends = [ + aeson aeson-pretty base bytestring ede hlint lens system-fileio + system-filepath tasty tasty-hspec template-haskell text + unordered-containers + ]; + homepage = "https://github.com/frontrowed/stratosphere#readme"; + description = "EDSL for AWS CloudFormation"; + license = stdenv.lib.licenses.mit; + }) {}; + "stratum-tool" = callPackage ({ mkDerivation, aeson, async, base, bytestring, bytestring-builder , cmdargs, connection, containers, curl, curl-aeson, network, stm @@ -200395,6 +202285,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "stream" = callPackage + ({ mkDerivation, base, bytestring, exceptions, hspec, mtl + , streaming-commons, temporary, transformers + }: + mkDerivation { + pname = "stream"; + version = "0.1.0.0"; + sha256 = "5e9e0531132edd68758d65fbd150f55b7ea858ef90c184386aa8625e552af1fa"; + libraryHaskellDepends = [ + base bytestring exceptions mtl streaming-commons transformers + ]; + testHaskellDepends = [ base bytestring hspec temporary ]; + homepage = "https://github.com/githubuser/stream#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.mit; + }) {}; + "stream-fusion" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -200861,6 +202768,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "streaming-commons_0_1_15_4" = callPackage + ({ mkDerivation, array, async, base, blaze-builder, bytestring + , deepseq, directory, hspec, network, process, QuickCheck, random + , stm, text, transformers, unix, zlib + }: + mkDerivation { + pname = "streaming-commons"; + version = "0.1.15.4"; + sha256 = "910831609225700605b9e0111c9f0dd214015b54c0dddb6f29069dc03624afbb"; + libraryHaskellDepends = [ + array async base blaze-builder bytestring directory network process + random stm text transformers unix zlib + ]; + testHaskellDepends = [ + array async base blaze-builder bytestring deepseq hspec network + QuickCheck text unix zlib + ]; + homepage = "https://github.com/fpco/streaming-commons"; + description = "Common lower-level functions needed by various streaming data libraries"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "streaming-histogram" = callPackage ({ mkDerivation, base, containers, criterion, tasty, tasty-hunit , tasty-quickcheck @@ -201499,8 +203429,8 @@ self: { }: mkDerivation { pname = "strive"; - version = "2.2.1"; - sha256 = "eeecc39037562bf656349d6e42b52870859d7b2be72deb81bd7b8bb72d70fca5"; + version = "2.2.2"; + sha256 = "cf1b8b89a234798947931c874e9a48598737fb41d8971e5c1eed87d9fb75beb0"; libraryHaskellDepends = [ aeson base bytestring data-default gpolyline http-conduit http-types template-haskell text time transformers @@ -203314,8 +205244,8 @@ self: { }: mkDerivation { pname = "syntactic"; - version = "3.5"; - sha256 = "6bb80992cee979b5c15f57c0f92aef6fedc76e510e39ba399fbc43bbc1ef9eb9"; + version = "3.6"; + sha256 = "a7365712bf0e050505dfa31cce21937865d80df2f5c83767c34c2b0f7469613a"; libraryHaskellDepends = [ base constraints containers data-hash deepseq mtl syb template-haskell tree-view @@ -204552,6 +206482,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tagged_0_8_4" = callPackage + ({ mkDerivation, base, deepseq, template-haskell }: + mkDerivation { + pname = "tagged"; + version = "0.8.4"; + sha256 = "20c861d299445ea810ba39d9d0529fb0b3862f4d0271a4fb168ccd493a234d5e"; + libraryHaskellDepends = [ base deepseq template-haskell ]; + homepage = "http://github.com/ekmett/tagged"; + description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "tagged-binary" = callPackage ({ mkDerivation, base, binary, bytestring, pureMD5 }: mkDerivation { @@ -207329,6 +209272,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "testing-feat_0_4_0_3" = callPackage + ({ mkDerivation, base, mtl, QuickCheck, tagshare, template-haskell + }: + mkDerivation { + pname = "testing-feat"; + version = "0.4.0.3"; + sha256 = "34ca9c7849c4054b951cb359dc55ec1d24f5c2f7cf31d6211959778ad35407ce"; + libraryHaskellDepends = [ + base mtl QuickCheck tagshare template-haskell + ]; + description = "Functional Enumeration of Algebraic Types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "testing-type-modifiers" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -207768,6 +209726,31 @@ self: { license = "GPL"; }) {}; + "texmath_0_8_6_2" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , mtl, network-uri, pandoc-types, parsec, process, split, syb + , temporary, text, utf8-string, xml + }: + mkDerivation { + pname = "texmath"; + version = "0.8.6.2"; + sha256 = "a9aabd507733c80ae86bcaa7129cf43056904047e27571c65606f158fe0f3b05"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers mtl pandoc-types parsec syb xml + ]; + executableHaskellDepends = [ network-uri ]; + testHaskellDepends = [ + base bytestring directory filepath process split temporary text + utf8-string xml + ]; + homepage = "http://github.com/jgm/texmath"; + description = "Conversion between formats used to represent mathematics"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "texrunner" = callPackage ({ mkDerivation, attoparsec, base, bytestring, directory, filepath , HUnit, io-streams, lens, mtl, process, temporary, test-framework @@ -208396,7 +210379,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "text-show_3_2" = callPackage + "text-show_3_2_1" = callPackage ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors , bytestring, bytestring-builder, containers, generic-deriving , ghc-prim, hspec, integer-gmp, nats, QuickCheck @@ -208405,8 +210388,8 @@ self: { }: mkDerivation { pname = "text-show"; - version = "3.2"; - sha256 = "038073600759d0dafa7f2f2de31dae0df83254850a218e4db9def2e870a9887b"; + version = "3.2.1"; + sha256 = "c5d13ce1c1a411930a0bc3220f8189b91d9ff58c8b82f5777277fc62cc27d28a"; libraryHaskellDepends = [ array base base-compat bifunctors bytestring bytestring-builder containers generic-deriving ghc-prim integer-gmp nats semigroups @@ -209147,6 +211130,7 @@ self: { base bytestring containers directory doctest filepath QuickCheck template-haskell text vector ]; + jailbreak = true; homepage = "http://github.com/bennofs/th-lift-instances/"; description = "Lift instances for template-haskell for common data types"; license = stdenv.lib.licenses.bsd3; @@ -210372,16 +212356,13 @@ self: { }: mkDerivation { pname = "time-recurrence"; - version = "0.9.2"; - sha256 = "f5e73d98da00b48422719bc8243809314d1ad92adf6174e0aa91ebfad4ac38ab"; - revision = "1"; - editedCabalFile = "7f1fe44ec61160e3fba86a04942d056ac91faa0002817e107e3d8399b71fe427"; + version = "0.9.3"; + sha256 = "316db4760478346fa0d0081e00be9b73b873ec2b644e3ea6ea28f4175ffd530d"; libraryHaskellDepends = [ base data-ordlist mtl time ]; testHaskellDepends = [ 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; @@ -212208,6 +214189,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "transformers-eff" = callPackage + ({ mkDerivation, base, free, mmorph, pipes, transformers }: + mkDerivation { + pname = "transformers-eff"; + version = "0.1.0.0"; + sha256 = "577f7ce07459239b1039d9f8c2935c02cc55bc585a5a4d21f5a81ac758f20037"; + libraryHaskellDepends = [ base free mmorph pipes transformers ]; + homepage = "https://github.com/ocharles/transformers-eff"; + description = "An approach to managing composable effects, ala mtl/transformers/extensible-effects/Eff"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "transformers-free" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -213098,8 +215091,8 @@ self: { }: mkDerivation { pname = "tttool"; - version = "1.6.0.1"; - sha256 = "52d9d4e28ce1e1a81e81ff2b8fe9a2a21d0b1b74ba172777c654d0c1e608a23f"; + version = "1.6.1"; + sha256 = "a319444a352ac16d2b987fc3b2e866dd8d96ac022aa6ca67b0af0d0c0cfca92e"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -213560,8 +215553,8 @@ self: { ({ mkDerivation, base, eventloop }: mkDerivation { pname = "twentefp-eventloop-trees"; - version = "0.1.2.2"; - sha256 = "5fc63b1739a64e5316fa3c1d91f9d47a34d1f2e494e91658bd0b719c18a2257d"; + version = "0.1.2.3"; + sha256 = "f6cd6a92421f35eb5943f0c57435a30035d7ebde6dacafa081bb48ae5bde7d0b"; libraryHaskellDepends = [ base eventloop ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; license = stdenv.lib.licenses.bsd3; @@ -215235,6 +217228,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "uber" = callPackage + ({ mkDerivation, aeson, base, hspec, text, webapi }: + mkDerivation { + pname = "uber"; + version = "0.1.0.0"; + sha256 = "ab7ecef408cc04b51c1253d5c19274f8e92e974d114b434e48cc7814ecc0da30"; + libraryHaskellDepends = [ aeson base text webapi ]; + testHaskellDepends = [ base hspec text ]; + homepage = "https://github.com/byteally/webapi-uber.git"; + description = "Uber client for Haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "uberlast" = callPackage ({ mkDerivation, base, lens, tagged, template-haskell }: mkDerivation { @@ -215324,7 +217330,7 @@ self: { description = "libudev bindings"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {libudev = null;}; + }) {inherit (pkgs) libudev;}; "uglymemo" = callPackage ({ mkDerivation, base, containers }: @@ -216033,6 +218039,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "union_0_1_1_0" = callPackage + ({ mkDerivation, base, deepseq, profunctors, tagged, vinyl }: + mkDerivation { + pname = "union"; + version = "0.1.1.0"; + sha256 = "d83b04349288fe9b73c254312da9850e1c05717beb7f8db6f7fefed83f1a82e6"; + libraryHaskellDepends = [ base deepseq profunctors tagged vinyl ]; + description = "Extensible type-safe unions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "union-find" = callPackage ({ mkDerivation, base, containers, transformers }: mkDerivation { @@ -216384,14 +218402,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unix_2_7_1_0" = callPackage + "unix_2_7_2_0" = callPackage ({ mkDerivation, base, bytestring, time }: mkDerivation { pname = "unix"; - version = "2.7.1.0"; - sha256 = "6bd4e6013855541535a1317197aa6a11e7f24ba0e4dd64a8b7fcfd40b5a4e45c"; - revision = "1"; - editedCabalFile = "ee3232af128d50f0b51e8ee786cd928399371d13942581da1bc73232d8f6d802"; + version = "2.7.2.0"; + sha256 = "9444ea785b9f3547d3e04d2d42ead6bc3c2e0129390d9d41a655b18b0c322bf0"; libraryHaskellDepends = [ base bytestring time ]; homepage = "https://github.com/haskell/unix"; description = "POSIX functionality"; @@ -219427,6 +221443,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "vector-binary-instances_0_2_3_2" = callPackage + ({ mkDerivation, base, binary, tasty, tasty-quickcheck, vector }: + mkDerivation { + pname = "vector-binary-instances"; + version = "0.2.3.2"; + sha256 = "e42cf4c80a69c6d661c6be152d43b39291fe22e7e55f4694709266692b50e049"; + libraryHaskellDepends = [ base binary vector ]; + testHaskellDepends = [ base binary tasty tasty-quickcheck vector ]; + homepage = "https://github.com/bos/vector-binary-instances"; + description = "Instances of Data.Binary and Data.Serialize for vector"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "vector-buffer" = callPackage ({ mkDerivation, base, deepseq, vector }: mkDerivation { @@ -219867,6 +221897,8 @@ self: { pname = "vector-th-unbox"; version = "0.2.1.4"; sha256 = "a765f8a679d2c59d0ab73d8c158cb020a362ab9e825c845f8202cd11ba660551"; + revision = "1"; + editedCabalFile = "5df99c83217a702f6b8e5c8ecce8f74bbaf0b8a7d90d0764c74aca88221140b8"; libraryHaskellDepends = [ base template-haskell vector ]; testHaskellDepends = [ base data-default vector ]; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; @@ -219880,12 +221912,27 @@ self: { pname = "vector-th-unbox"; version = "0.2.1.5"; sha256 = "f5be54bc96d922bb48d3d1b5b127f88477ade064042f9ced4e5f9d74e75b68e0"; + revision = "1"; + editedCabalFile = "88ee583a97da72239a2a931684c4ceab10516f963793858bc553ee0c628c893d"; libraryHaskellDepends = [ base template-haskell vector ]; testHaskellDepends = [ base data-default vector ]; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; + "vector-th-unbox_0_2_1_6" = callPackage + ({ mkDerivation, base, data-default, template-haskell, vector }: + mkDerivation { + pname = "vector-th-unbox"; + version = "0.2.1.6"; + sha256 = "be87d4a6f1005ee2d0de6adf521e05c9e83c441568a8a8b60c79efe24ae90235"; + libraryHaskellDepends = [ base template-haskell vector ]; + testHaskellDepends = [ base data-default vector ]; + description = "Deriver for Data.Vector.Unboxed using Template Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "verbalexpressions" = callPackage ({ mkDerivation, base, regex-pcre }: mkDerivation { @@ -220511,15 +222558,15 @@ self: { ({ mkDerivation, base, vrpn }: mkDerivation { pname = "vrpn"; - version = "0.2.1.3"; - sha256 = "3268782b9412fe9cc3757dcaea0d9756ef9db4c80ea4004065df548384109d68"; + version = "0.2.1.4"; + sha256 = "642562ad8634d1f1875060b0685719b5282f309196bd74079a10b7b4e0e73186"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ]; librarySystemDepends = [ vrpn ]; executableHaskellDepends = [ base ]; executableSystemDepends = [ vrpn ]; - homepage = "https://bitbucket.org/bwbush/vrpn"; + homepage = "https://bitbucket.org/functionally/vrpn"; description = "Bindings to VRPN"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -220665,18 +222712,19 @@ self: { }) {}; "vulkan" = callPackage - ({ mkDerivation, base, vector-sized }: + ({ mkDerivation, base, vector-sized, vulkan }: mkDerivation { pname = "vulkan"; - version = "1.6.0.0"; - sha256 = "0c97af15d2367c02d669f1a5d5236968ed7c1dfe0fb733f0bcac139cb8778972"; + version = "1.7.0.0"; + sha256 = "17c8437061adee81f6c4b34a1ead85a44f98c0c443bc2696025f1849c086e965"; libraryHaskellDepends = [ base vector-sized ]; + librarySystemDepends = [ vulkan ]; jailbreak = true; homepage = "http://github.com/expipiplus1/vulkan#readme"; description = "Bindings to the Vulkan graphics API"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {vulkan = null;}; "wacom-daemon" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory @@ -220882,7 +222930,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai" = callPackage + "wai_3_2_0_1" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , bytestring-builder, hspec, http-types, network, text , transformers, vault @@ -220899,6 +222947,26 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Web Application Interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring + , bytestring-builder, hspec, http-types, network, text + , transformers, vault + }: + mkDerivation { + pname = "wai"; + version = "3.2.1"; + sha256 = "8709ea5c5739f74a9b4db9f4e0ac2d04dcec594623f03ff4b24f0070ed09f19c"; + libraryHaskellDepends = [ + base blaze-builder bytestring bytestring-builder http-types network + text transformers vault + ]; + testHaskellDepends = [ base blaze-builder bytestring hspec ]; + homepage = "https://github.com/yesodweb/wai"; + description = "Web Application Interface"; + license = stdenv.lib.licenses.mit; }) {}; "wai-accept-language" = callPackage @@ -222327,6 +224395,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "wai-handler-launch_3_0_1" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, http-types + , process, streaming-commons, transformers, wai, warp + }: + mkDerivation { + pname = "wai-handler-launch"; + version = "3.0.1"; + sha256 = "73cfe38f74f37085e3d8ca355fa32d2773b4d1298ca391fa2678aa956d3f453d"; + libraryHaskellDepends = [ + base blaze-builder bytestring http-types process streaming-commons + transformers wai warp + ]; + description = "Launch a web app in the default browser"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wai-handler-scgi" = callPackage ({ mkDerivation, base, bytestring, wai, wai-extra }: mkDerivation { @@ -222532,6 +224617,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "wai-logger_2_2_7" = callPackage + ({ mkDerivation, base, blaze-builder, byteorder, bytestring + , case-insensitive, doctest, fast-logger, http-types, network, unix + , unix-time, wai + }: + mkDerivation { + pname = "wai-logger"; + version = "2.2.7"; + sha256 = "f4718c7661373b6a93fb7ac4b4662617f9e161f6b9297d0f665f71391e489607"; + libraryHaskellDepends = [ + base blaze-builder byteorder bytestring case-insensitive + fast-logger http-types network unix unix-time wai + ]; + testHaskellDepends = [ base doctest ]; + jailbreak = true; + description = "A logging system for WAI"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wai-logger-prefork" = callPackage ({ mkDerivation, base, bytestring, date-cache, fast-logger , http-types, unix, wai, wai-logger @@ -223672,7 +225777,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-session-postgresql" = callPackage + "wai-session-postgresql_0_2_0_4" = callPackage ({ mkDerivation, base, bytestring, cereal, cookie, data-default , entropy, postgresql-simple, resource-pool, text, time , transformers, wai, wai-session @@ -223693,6 +225798,30 @@ self: { homepage = "https://github.com/hce/postgresql-session#readme"; description = "PostgreSQL backed Wai session store"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-session-postgresql" = callPackage + ({ mkDerivation, base, bytestring, cereal, cookie, data-default + , entropy, postgresql-simple, resource-pool, text, time + , transformers, wai, wai-session + }: + mkDerivation { + pname = "wai-session-postgresql"; + version = "0.2.0.5"; + sha256 = "5ab689645cc9f283673b3807e532dc8a8524d71e9412328cdc35bbd325455b33"; + libraryHaskellDepends = [ + base bytestring cereal cookie data-default entropy + postgresql-simple resource-pool text time transformers wai + wai-session + ]; + testHaskellDepends = [ + base bytestring data-default postgresql-simple text wai-session + ]; + doCheck = false; + homepage = "https://github.com/hce/postgresql-session#readme"; + description = "PostgreSQL backed Wai session store"; + license = stdenv.lib.licenses.bsd3; }) {}; "wai-session-tokyocabinet" = callPackage @@ -225727,8 +227856,8 @@ self: { }: mkDerivation { pname = "webapi"; - version = "0.2.1.0"; - sha256 = "3c3a93a48f25e809601b9f20f16327f7fb730747e441824e53b3b0d83f260233"; + version = "0.2.2.0"; + sha256 = "b908d6b1a03750fa6ef45a2ac445eb9d52afb2fd3de73898081d80a791d843eb"; libraryHaskellDepends = [ aeson base binary blaze-builder bytestring bytestring-lexing bytestring-trie case-insensitive containers cookie exceptions @@ -225739,7 +227868,6 @@ self: { aeson base bytestring case-insensitive hspec hspec-wai http-media http-types QuickCheck text time vector wai wai-extra warp ]; - jailbreak = true; homepage = "http://byteally.github.io/webapi/"; description = "WAI based library for web api"; license = stdenv.lib.licenses.bsd3; @@ -226765,8 +228893,8 @@ self: { }: mkDerivation { pname = "werewolf"; - version = "1.0.0.0"; - sha256 = "1f5febe542ef8bbb5e2c8a0d29785ca6056a33224f8240791e7511e90b04d411"; + version = "1.0.1.0"; + sha256 = "62394b709d0c7b119cabc0fedb42f279d2b5fba49c69990c61d9051f70260f66"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -226786,6 +228914,36 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "werewolf_1_0_2_0" = callPackage + ({ mkDerivation, aeson, base, containers, directory, extra + , filepath, lens, MonadRandom, mtl, optparse-applicative + , QuickCheck, random-shuffle, tasty, tasty-quickcheck, text + , transformers + }: + mkDerivation { + pname = "werewolf"; + version = "1.0.2.0"; + sha256 = "d0ba1281ff4753b2e4c2c52136e846e3aaf0ca1170bccf30407a42a7c2c42677"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base containers directory extra filepath lens MonadRandom mtl + text transformers + ]; + executableHaskellDepends = [ + aeson base directory extra filepath lens MonadRandom mtl + optparse-applicative random-shuffle text transformers + ]; + testHaskellDepends = [ + base containers extra lens MonadRandom mtl QuickCheck tasty + tasty-quickcheck text + ]; + homepage = "https://github.com/hjwylde/werewolf"; + description = "A game engine for playing werewolf within an arbitrary chat client"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "werewolf-slack" = callPackage ({ mkDerivation, aeson, base, bytestring, extra, http-client , http-client-tls, http-types, mtl, optparse-applicative, process @@ -227154,8 +229312,8 @@ self: { ({ mkDerivation, base, categories, constraints, transformers }: mkDerivation { pname = "witness"; - version = "0.3"; - sha256 = "21345b658dfe646b1753658117e92753fa9164259dd426f47825f74857490364"; + version = "0.3.0.1"; + sha256 = "dcff8801b082b6805912ed8924c2ab62175d531d6e68f699419123d987a32851"; libraryHaskellDepends = [ base categories constraints transformers ]; @@ -228137,18 +230295,16 @@ self: { }) {}; "wuss" = callPackage - ({ mkDerivation, base, bytestring, connection, doctest, network - , websockets + ({ mkDerivation, base, bytestring, connection, network, websockets }: mkDerivation { pname = "wuss"; - version = "1.0.2"; - sha256 = "fae21817931cf16961e64353d8647800689abf0a21b4c8197e2c6cb92fb29444"; + version = "1.0.4"; + sha256 = "11a0072c4986d6aa60f686cf9fd29b58077706ab27aabad18d01e5942a179155"; libraryHaskellDepends = [ base bytestring connection network websockets ]; - testHaskellDepends = [ base doctest ]; - homepage = "http://taylor.fausak.me/wuss/"; + homepage = "https://github.com/tfausak/wuss#readme"; description = "Secure WebSocket (WSS) clients"; license = stdenv.lib.licenses.mit; }) {}; @@ -229416,7 +231572,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xlsx" = callPackage + "xlsx_0_2_1_1" = callPackage ({ mkDerivation, base, binary-search, bytestring, conduit , containers, data-default, digest, HUnit, lens, mtl, old-locale , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time @@ -229446,6 +231602,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.1.2"; + sha256 = "0f39cdb98e1414690f4237ad86c0052a49c59bf83391a2943fc5da17a8d173c6"; + 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-tabular" = callPackage @@ -229824,7 +232013,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xml-conduit" = callPackage + "xml-conduit_1_3_4_1" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, conduit, conduit-extra, containers , data-default, deepseq, hspec, HUnit, monad-control, resourcet @@ -229846,6 +232035,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.4.2"; + sha256 = "37be4f4788e937365b90f24b520b59a016d0e587b3e342ec0243b26f0656d17d"; + 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 @@ -230980,6 +233194,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "xss-sanitize_0_3_5_7" = callPackage + ({ mkDerivation, attoparsec, base, containers, css-text, hspec + , HUnit, network-uri, tagsoup, text, utf8-string + }: + mkDerivation { + pname = "xss-sanitize"; + version = "0.3.5.7"; + sha256 = "955856413e70375c794766d04ac9ab7f0d3337dbb04a412c9b7ff5c415acac00"; + libraryHaskellDepends = [ + attoparsec base containers css-text network-uri tagsoup text + utf8-string + ]; + testHaskellDepends = [ + attoparsec base containers css-text hspec HUnit network-uri tagsoup + text utf8-string + ]; + homepage = "http://github.com/yesodweb/haskell-xss-sanitize"; + description = "sanitize untrusted HTML to prevent XSS attacks"; + license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "xtc" = callPackage ({ mkDerivation, base, wx, wxcore }: mkDerivation { @@ -231573,14 +233809,13 @@ self: { "yaml" = callPackage ({ mkDerivation, aeson, aeson-qq, attoparsec, base, base-compat , bytestring, conduit, containers, directory, enclosed-exceptions - , filepath, hspec, HUnit, libyaml, mockery, raw-strings-qq - , resourcet, scientific, semigroups, text, transformers - , unordered-containers, vector + , filepath, hspec, HUnit, libyaml, mockery, resourcet, scientific + , semigroups, text, transformers, unordered-containers, vector }: mkDerivation { pname = "yaml"; - version = "0.8.17"; - sha256 = "65d8585e80c334318d0c6b1fbefaf07f8e99163b8eff2166decea7b21185d397"; + version = "0.8.17.1"; + sha256 = "2bec28da3e1041892d0a694d6daf9ba1bdf5381111b4a3b3ac6b4cd909b0d3b3"; configureFlags = [ "-fsystem-libyaml" ]; isLibrary = true; isExecutable = true; @@ -231590,9 +233825,7 @@ self: { transformers unordered-containers vector ]; libraryPkgconfigDepends = [ libyaml ]; - executableHaskellDepends = [ - aeson base bytestring raw-strings-qq text - ]; + executableHaskellDepends = [ aeson base bytestring ]; testHaskellDepends = [ aeson aeson-qq base base-compat bytestring conduit hspec HUnit mockery resourcet text transformers unordered-containers vector @@ -233063,7 +235296,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-hashdb" = callPackage + "yesod-auth-hashdb_1_4_2_2" = callPackage ({ mkDerivation, base, bytestring, cryptohash, hspec, persistent , pwstore-fast, text, yesod-auth, yesod-core, yesod-form , yesod-persistent @@ -233080,6 +235313,46 @@ self: { homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; description = "Authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth-hashdb" = callPackage + ({ mkDerivation, base, bytestring, cryptohash, hspec, persistent + , pwstore-fast, text, yesod-auth, yesod-core, yesod-form + , yesod-persistent + }: + mkDerivation { + pname = "yesod-auth-hashdb"; + version = "1.4.3"; + sha256 = "64736c0b69849185197bd2ea4b7d742312e9697fe931daa611eb95e26a5f10fd"; + libraryHaskellDepends = [ + base bytestring cryptohash persistent pwstore-fast text yesod-auth + yesod-core yesod-form yesod-persistent + ]; + testHaskellDepends = [ base hspec text ]; + homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; + description = "Authentication plugin for Yesod"; + license = stdenv.lib.licenses.mit; + }) {}; + + "yesod-auth-hashdb_1_5" = callPackage + ({ mkDerivation, base, bytestring, cryptohash, hspec, persistent + , pwstore-fast, text, yesod-auth, yesod-core, yesod-form + , yesod-persistent + }: + mkDerivation { + pname = "yesod-auth-hashdb"; + version = "1.5"; + sha256 = "396fbe836c291d9d1dce70c18ce39f82671a7e40af3fc743efb14a7faefb7259"; + libraryHaskellDepends = [ + base bytestring cryptohash persistent pwstore-fast text yesod-auth + yesod-core yesod-form yesod-persistent + ]; + testHaskellDepends = [ base hspec text ]; + homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; + description = "Authentication plugin for Yesod"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-kerberos" = callPackage @@ -235595,8 +237868,8 @@ self: { }: mkDerivation { pname = "yesod-crud-persist"; - version = "0.2.1"; - sha256 = "9206e96ccb46021be089f1919d2775839dd82ad25cde0240680a152eb214f1ba"; + version = "0.3"; + sha256 = "6bdc078780b7fd8194706a6a0e344f03caf1b9c02edb1f3e624e14c5af89aac9"; libraryHaskellDepends = [ base either esqueleto microlens microlens-th persistent text time transformers wai yesod-core yesod-form yesod-markdown @@ -236109,6 +238382,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "yesod-job-queue" = callPackage + ({ mkDerivation, aeson, api-field-json-th, base, bytestring + , classy-prelude-yesod, cron, file-embed, hedis, lens, monad-logger + , persistent-sqlite, resourcet, stm, text, time, uuid, yesod + , yesod-core + }: + mkDerivation { + pname = "yesod-job-queue"; + version = "0.2.0.0"; + sha256 = "42e294394434fcca8ee048a6f6cd365e1979761e24078eb0cc8f090ffcf4070c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson api-field-json-th base bytestring classy-prelude-yesod cron + file-embed hedis lens monad-logger stm text time uuid yesod + ]; + executableHaskellDepends = [ + base classy-prelude-yesod monad-logger persistent-sqlite resourcet + yesod yesod-core + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/nakaji-dayo/yesod-job-queue#readme"; + description = "Background jobs library for Yesod"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "yesod-json" = callPackage ({ mkDerivation, base, yesod-core }: mkDerivation { diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix index f71b557bc25..b612033c8e5 100644 --- a/pkgs/development/interpreters/elixir/default.nix +++ b/pkgs/development/interpreters/elixir/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, erlang, rebar, makeWrapper, coreutils, curl, bash }: +{ stdenv, fetchurl, erlang, rebar, makeWrapper, coreutils, curl, bash, + debugInfo ? false }: stdenv.mkDerivation rec { name = "elixir-${version}"; @@ -16,6 +17,12 @@ stdenv.mkDerivation rec { LANG = "en_US.UTF-8"; LC_TYPE = "en_US.UTF-8"; + setupHook = ./setup-hook.sh; + + buildFlags = if debugInfo + then "ERL_COMPILER_OPTIONS=debug_info" + else ""; + preBuild = '' # The build process uses ./rebar. Link it to the nixpkgs rebar rm -v rebar diff --git a/pkgs/development/interpreters/elixir/setup-hook.sh b/pkgs/development/interpreters/elixir/setup-hook.sh new file mode 100644 index 00000000000..2ed3b2e6454 --- /dev/null +++ b/pkgs/development/interpreters/elixir/setup-hook.sh @@ -0,0 +1,5 @@ +addErlLibPath() { + addToSearchPath ERL_LIBS $1/lib/elixir/lib +} + +envHooks+=(addErlLibPath) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index e5b0d37a737..140793192ff 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -296,13 +296,13 @@ let in { php55 = generic { - version = "5.5.34"; - sha256 = "0745wn0qg9rqibwr948bzc719s7pywizvl1ahkg1j9m92r28i25g"; + version = "5.5.35"; + sha256 = "1msqh8ii0qwzzcwlwn8f493x2r3hy2djzrrwd5jgs87893b8sr1d"; }; php56 = generic { - version = "5.6.20"; - sha256 = "07xz48dz1ijwq45vh90jfzdd56k0s5ppi3j5rwc9p9y7mrybziss"; + version = "5.6.21"; + sha256 = "144m8xzpqv3pimxh2pjhbk4fy1kch9afkzclcinzv2dnfjspmvdl"; }; php70 = generic { diff --git a/pkgs/development/interpreters/spidermonkey/default.nix b/pkgs/development/interpreters/spidermonkey/default.nix index fdd8209407c..41d36096734 100644 --- a/pkgs/development/interpreters/spidermonkey/default.nix +++ b/pkgs/development/interpreters/spidermonkey/default.nix @@ -27,4 +27,11 @@ stdenv.mkDerivation rec { CFLAGS = "-DPIC -fPIC -DJS_C_STRINGS_ARE_UTF8"; makeFlags = "-f ${makefile} JS_DIST=\${out} BUILD_OPT=1 JS_READLINE=1"; + + meta = with stdenv.lib; { + description = "Mozilla's JavaScript engine written in C/C++"; + homepage = "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey"; + license = licenses.mpl20; + platforms = platforms.all; + }; } diff --git a/pkgs/development/libraries/CGAL/default.nix b/pkgs/development/libraries/CGAL/default.nix index 1f964388cbd..b8fd4af812a 100644 --- a/pkgs/development/libraries/CGAL/default.nix +++ b/pkgs/development/libraries/CGAL/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cmake, boost, gmp, mpfr }: +{ stdenv, fetchurl, cmake, boost, gmp, mpfr, mesa_glu }: stdenv.mkDerivation rec { version = "4.7"; @@ -12,6 +12,7 @@ stdenv.mkDerivation rec { # note: optional component libCGAL_ImageIO would need zlib and opengl; # there are also libCGAL_Qt{3,4} omitted ATM buildInputs = [ cmake boost gmp mpfr ]; + #propagatedBuildInputs = [ mesa_glu ]; doCheck = false; diff --git a/pkgs/development/libraries/SDL/default.nix b/pkgs/development/libraries/SDL/default.nix index 6c3920ff8aa..5d97a7fa59e 100644 --- a/pkgs/development/libraries/SDL/default.nix +++ b/pkgs/development/libraries/SDL/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, fetchpatch, pkgconfig, audiofile, libcap -, openglSupport ? false, mesa ? null +, openglSupport ? false, mesa_noglu ? null , alsaSupport ? true, alsaLib ? null , x11Support ? true, xlibsWrapper ? null, libXrandr ? null , pulseaudioSupport ? true, libpulseaudio ? null @@ -10,7 +10,7 @@ # PulseAudio. assert (stdenv.isLinux && !(stdenv ? cross)) -> alsaSupport || pulseaudioSupport; -assert openglSupport -> (mesa != null && x11Support); +assert openglSupport -> (mesa_noglu != null && x11Support); assert x11Support -> (xlibsWrapper != null && libXrandr != null); assert alsaSupport -> alsaLib != null; assert pulseaudioSupport -> libpulseaudio != null; @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { optionals x11Support [ xlibsWrapper libXrandr ] ++ optional alsaSupport alsaLib ++ optional stdenv.isLinux libcap ++ - optional openglSupport mesa ++ + optional openglSupport mesa_noglu ++ optional pulseaudioSupport libpulseaudio ++ optional stdenv.isDarwin Cocoa; diff --git a/pkgs/development/libraries/accounts-qt/default.nix b/pkgs/development/libraries/accounts-qt/default.nix index e82d37f1d3c..a16a0ef8cf5 100644 --- a/pkgs/development/libraries/accounts-qt/default.nix +++ b/pkgs/development/libraries/accounts-qt/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qtbase }: +{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qtbase, qmakeHook }: stdenv.mkDerivation rec { name = "accounts-qt-${version}"; @@ -12,12 +12,10 @@ stdenv.mkDerivation rec { }; buildInputs = [ glib libaccounts-glib qtbase ]; - nativeBuildInputs = [ doxygen pkgconfig ]; + nativeBuildInputs = [ doxygen pkgconfig qmakeHook ]; - configurePhase = '' - runHook preConfigure - qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake - runHook postConfigure + preConfigure = '' + qmakeFlags="$qmakeFlags LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake" ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/avro-c++/default.nix b/pkgs/development/libraries/avro-c++/default.nix new file mode 100644 index 00000000000..2cd03253e7e --- /dev/null +++ b/pkgs/development/libraries/avro-c++/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl, cmake, boost155, pythonPackages +}: + +let version = "1.7.5"; in + +stdenv.mkDerivation { + name = "avro-c++-${version}"; + + src = fetchurl { + url = "mirror://apache/avro/avro-${version}/cpp/avro-cpp-${version}.tar.gz"; + sha256 = "064ssbbgrc3hyalzj8rn119bsrnyk1vlpkhl8gghv96jgqbpdyb3"; + }; + + buildInputs = [ + cmake + boost155 + pythonPackages.python + ]; + + enableParallelBuilding = true; + + meta = { + description = "A C++ library which implements parts of the Avro Specification"; + homepage = https://avro.apache.org/; + license = stdenv.lib.licenses.asl20; + maintainers = with stdenv.lib.maintainers; [ rasendubi ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/development/libraries/aws-sdk-cpp/default.nix b/pkgs/development/libraries/aws-sdk-cpp/default.nix index 6a881e4245a..1848bd064f1 100644 --- a/pkgs/development/libraries/aws-sdk-cpp/default.nix +++ b/pkgs/development/libraries/aws-sdk-cpp/default.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { name = "aws-sdk-cpp-${version}"; - version = "0.9.6"; + version = "0.10.6"; src = fetchFromGitHub { owner = "awslabs"; repo = "aws-sdk-cpp"; rev = version; - sha256 = "022v7naa5vjvq3wfn4mcp99li61ffsk2fnc8qqi52cb1pyxz9sk1"; + sha256 = "1x3xam7vprlld6iqhqgdhgmqyclfy8dvzgy3375cijy9akhvv67i"; }; buildInputs = [ cmake curl ]; diff --git a/pkgs/development/libraries/beignet/clang_llvm.patch b/pkgs/development/libraries/beignet/clang_llvm.patch new file mode 100644 index 00000000000..88876f157cd --- /dev/null +++ b/pkgs/development/libraries/beignet/clang_llvm.patch @@ -0,0 +1,62 @@ +diff --git a/./CMake/FindLLVM.cmake b/../Beignet-1.1.2-Source_new/CMake/FindLLVM.cmake +index a148321..96cafb8 100644 +--- a/./CMake/FindLLVM.cmake ++++ b/../Beignet-1.1.2-Source_new/CMake/FindLLVM.cmake +@@ -22,6 +22,7 @@ if (LLVM_CONFIG_EXECUTABLE) + else (LLVM_CONFIG_EXECUTABLE) + message(FATAL_ERROR "Could NOT find LLVM executable, please add -DLLVM_INSTALL_DIR=/path/to/llvm-config/ in cmake command") + endif (LLVM_CONFIG_EXECUTABLE) ++ + execute_process( + COMMAND ${LLVM_CONFIG_EXECUTABLE} --version + OUTPUT_VARIABLE LLVM_VERSION +@@ -44,10 +45,16 @@ if (LLVM_FIND_VERSION_MAJOR AND LLVM_FIND_VERSION_MINOR) + endif (LLVM_VERSION_NODOT VERSION_LESS LLVM_FIND_VERSION_NODOT) + endif (LLVM_FIND_VERSION_MAJOR AND LLVM_FIND_VERSION_MINOR) + +-if (LLVM_INSTALL_DIR) ++if (CLANG_INSTALL_DIR) + find_program(CLANG_EXECUTABLE + NAMES clang-${LLVM_VERSION_NODOT} clang-${LLVM_VERSION_NOPATCH} clang +- PATHS ${LLVM_INSTALL_DIR} NO_DEFAULT_PATH) ++ PATHS ${CLANG_INSTALL_DIR} NO_DEFAULT_PATH) ++else (CLANG_INSTALL_DIR) ++ find_program(CLANG_EXECUTABLE ++ NAMES clang-${LLVM_VERSION_NODOT} clang-${LLVM_VERSION_NOPATCH} clang) ++endif (CLANG_INSTALL_DIR) ++ ++if (LLVM_INSTALL_DIR) + find_program(LLVM_AS_EXECUTABLE + NAMES llvm-as-${LLVM_VERSION_NODOT} llvm-as-${LLVM_VERSION_NOPATCH} llvm-as + PATHS ${LLVM_INSTALL_DIR} NO_DEFAULT_PATH) +@@ -55,8 +62,6 @@ if (LLVM_INSTALL_DIR) + NAMES llvm-link-${LLVM_VERSION_NODOT} llvm-link-${LLVM_VERSION_NOPATCH} llvm-link + PATHS ${LLVM_INSTALL_DIR} NO_DEFAULT_PATH) + else (LLVM_INSTALL_DIR) +- find_program(CLANG_EXECUTABLE +- NAMES clang-${LLVM_VERSION_NODOT} clang-${LLVM_VERSION_NOPATCH} clang) + find_program(LLVM_AS_EXECUTABLE + NAMES llvm-as-${LLVM_VERSION_NODOT} llvm-as-${LLVM_VERSION_NOPATCH} llvm-as) + find_program(LLVM_LINK_EXECUTABLE +@@ -105,7 +110,7 @@ endif (LLVM_VERSION_NODOT VERSION_GREATER 34) + macro(add_one_lib name) + FIND_LIBRARY(CLANG_LIB + NAMES ${name} +- PATHS ${LLVM_LIBRARY_DIR} NO_DEFAULT_PATH) ++ PATHS ${CLANG_LIBRARY_DIR} NO_DEFAULT_PATH) + set(CLANG_LIBRARIES ${CLANG_LIBRARIES} ${CLANG_LIB}) + unset(CLANG_LIB CACHE) + endmacro() +diff --git a/./CMakeLists.txt b/../Beignet-1.1.2-Source_new/CMakeLists.txt +index 88985d7..01bca9e 100644 +--- a/./CMakeLists.txt ++++ b/../Beignet-1.1.2-Source_new/CMakeLists.txt +@@ -205,7 +205,7 @@ IF(OCLIcd_FOUND) + "intel-beignet.icd.in" + "${ICD_FILE_NAME}" + ) +- install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${ICD_FILE_NAME} DESTINATION /etc/OpenCL/vendors) ++ install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${ICD_FILE_NAME} DESTINATION ${CMAKE_INSTALL_PREFIX}/etc/OpenCL/vendors) + ELSE(OCLIcd_FOUND) + MESSAGE(STATUS "Looking for OCL ICD header file - not found") + ENDIF(OCLIcd_FOUND) diff --git a/pkgs/development/libraries/beignet/default.nix b/pkgs/development/libraries/beignet/default.nix new file mode 100644 index 00000000000..5d5c834b4ac --- /dev/null +++ b/pkgs/development/libraries/beignet/default.nix @@ -0,0 +1,123 @@ +{ stdenv +, fetchurl +, cmake +, pkgconfig +, clang-unwrapped +, llvm +, libdrm +, libX11 +, libXfixes +, libpthreadstubs +, libXdmcp +, libXdamage +, libXxf86vm +, python +, gl +, ocl-icd +}: + +stdenv.mkDerivation rec { + name = "beignet-${version}"; + version = "1.1.2"; + + src = fetchurl { + url = "https://01.org/sites/default/files/${name}-source.tar.gz"; + sha256 = "6a8d875afbb5e3c4fc57da1ea80f79abadd9136bfd87ab1f83c02784659f1d96"; + }; + + patches = [ ./clang_llvm.patch ]; + + postPatch = '' + patchShebangs src/git_sha1.sh; + + for f in $(find utests -type f) + do + sed -e "s@isnan(@std::isnan(@g" -i $f + sed -e "s@_std::isnan@_isnan@g" -i $f + + sed -e "s@isinf(@std::isinf(@g" -i $f + sed -e "s@_std::isinf@_isinf@g" -i $f + done + ''; + + configurePhase = '' + cmake . -DCMAKE_INSTALL_PREFIX=$out \ + -DCLANG_LIBRARY_DIR="${clang-unwrapped}/lib" \ + -DLLVM_INSTALL_DIR="${llvm}/bin" \ + -DCLANG_INSTALL_DIR="${clang-unwrapped}/bin" + ''; + + postInstall = '' + mkdir -p $out/utests/kernels + mkdir -p $out/utests/lib + + cp -r kernels $out/utests + cp src/libcl.so $out/utests/lib + + cat > $out/utests/setenv.sh << EOF +#!/bin/sh +export OCL_BITCODE_LIB_PATH=$out/lib/beignet/beignet.bc +export OCL_HEADER_FILE_DIR=$out/lib/beignet/include +export OCL_PCH_PATH=$out/lib/beignet/beignet.pch +export OCL_GBE_PATH=$out/lib/beignet/libgbe.so +export OCL_INTERP_PATH=$out/lib/beignet/libgbeinterp.so +export OCL_KERNEL_PATH=$out/utests/kernels +export OCL_IGNORE_SELF_TEST=1 +EOF + + function fixRunPath { + p0=$(patchelf --print-rpath $1) + p1=$(echo $p0 | sed -e "s@$(pwd)/src@$out/utests/lib@g" -) + p2=$(echo $p1 | sed -e "s@$(pwd)/utests@$out/utests@g" -) + patchelf --set-rpath $p2 $1 + } + + fixRunPath utests/utest_run + fixRunPath utests/libutests.so + + cp utests/utest_run $out/utests + cp utests/libutests.so $out/utests + + mkdir -p $out/bin + ln -s $out/utests/setenv.sh $out/bin/beignet_setenv.sh + ln -s $out/utests/utest_run $out/bin/beignet_utest_run + ''; + + # To run the unit tests, the user must be in "video" group. + # The nix builders are members of only "nixbld" group, so + # they are able to compile the tests, but not to run them. + # To verify the installation, add yourself to "video" group, + # switch to a working directory which has both read and write + # permissions, run: nix-shell -p pkgs.beignet, and execute: + # . beignet_setenv.sh && beignet_utest_run + doCheck = false; + + buildInputs = [ + llvm + clang-unwrapped + cmake + libX11 + pkgconfig + libdrm + gl + libXfixes + libpthreadstubs + libXdmcp + libXdamage + libXxf86vm + python + ocl-icd + ]; + + meta = with stdenv.lib; { + homepage = https://cgit.freedesktop.org/beignet/; + description = "OpenCL Library for Intel Ivy Bridge and newer GPUs"; + longDescription = '' + The package provides an open source implementation of the OpenCL specification for Intel GPUs. + It supports the Intel OpenCL runtime library and compiler. + ''; + license = licenses.lgpl21Plus; + maintainers = with maintainers; [ artuuge ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/development/libraries/bobcat/default.nix b/pkgs/development/libraries/bobcat/default.nix index 7a8209d5046..fbc7df68d44 100644 --- a/pkgs/development/libraries/bobcat/default.nix +++ b/pkgs/development/libraries/bobcat/default.nix @@ -3,10 +3,10 @@ stdenv.mkDerivation rec { name = "bobcat-${version}"; - version = "4.01.04"; + version = "4.02.00"; src = fetchFromGitHub { - sha256 = "1qnyssvjvwc7ann5rw8spcfrfkxyh1lv3k12bq19d8db67znk4ms"; + sha256 = "1hl5b2g4cmxcafkcpr4vs0c705cy254g0h410zi5wxnygjam8adn"; rev = version; repo = "bobcat"; owner = "fbb-git"; diff --git a/pkgs/development/libraries/cairo/default.nix b/pkgs/development/libraries/cairo/default.nix index 2e4821b3073..f6f0a0d3af7 100644 --- a/pkgs/development/libraries/cairo/default.nix +++ b/pkgs/development/libraries/cairo/default.nix @@ -32,8 +32,7 @@ stdenv.mkDerivation rec { ]); propagatedBuildInputs = - with xorg; [ libXext fontconfig expat freetype pixman zlib libpng ] - ++ optional (!stdenv.isDarwin) libXrender + with xorg; [ libXext fontconfig expat freetype pixman zlib libpng libXrender ] ++ optionals xcbSupport [ libxcb xcbutil ] ++ optional gobjectSupport glib ++ optional glSupport mesa_noglu diff --git a/pkgs/development/libraries/catch/default.nix b/pkgs/development/libraries/catch/default.nix index 625ec2995e3..3ab520fd4a6 100644 --- a/pkgs/development/libraries/catch/default.nix +++ b/pkgs/development/libraries/catch/default.nix @@ -3,20 +3,20 @@ stdenv.mkDerivation rec { name = "catch-${version}"; - version = "1.2.1"; + version = "1.5.0"; src = fetchFromGitHub { owner = "philsquared"; repo = "Catch"; rev = "v" + version; - sha256 = "0rz2nmvvh66x6w2nb7l08vc5x9aqg1qfz2qfiykaz1ybc19fwck2"; + sha256 = "1ag8siafg7fmb50qdqznryrg3lvv56f09nvqwqqn2rlk83zjnaw0"; }; buildInputs = [ cmake ]; dontUseCmakeConfigure = true; buildPhase = '' - cmake -Hprojects/CMake -BBuild -DCMAKE_BUILD_TYPE=Release + cmake -Hprojects/CMake -BBuild -DCMAKE_BUILD_TYPE=Release -DUSE_CPP11=ON cd Build make cd .. diff --git a/pkgs/development/libraries/cegui/default.nix b/pkgs/development/libraries/cegui/default.nix new file mode 100644 index 00000000000..c7d7aa4d67a --- /dev/null +++ b/pkgs/development/libraries/cegui/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, cmake, ogre, freetype, boost, expat }: + +stdenv.mkDerivation rec { + name = "cegui-${version}"; + version = "0.8.4"; + + src = fetchurl { + url = "mirror://sourceforge/crayzedsgui/${name}.tar.bz2"; + sha256 = "1253aywv610rbs96hwqiw2z7xrrv24l3jhfsqj95w143idabvz5m"; + }; + + + buildInputs = [ cmake ogre freetype boost expat ]; + + meta = with stdenv.lib; { + homepage = http://cegui.org.uk/; + description = "C++ Library for creating GUIs"; + license = licenses.mit; + platforms = platforms.linux; + }; +} diff --git a/pkgs/development/libraries/enet/default.nix b/pkgs/development/libraries/enet/default.nix index 0d5bd834787..4c3d67b8f31 100644 --- a/pkgs/development/libraries/enet/default.nix +++ b/pkgs/development/libraries/enet/default.nix @@ -13,5 +13,6 @@ stdenv.mkDerivation rec { description = "Simple and robust network communication layer on top of UDP"; license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; + platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/development/libraries/ffmpeg-full/default.nix b/pkgs/development/libraries/ffmpeg-full/default.nix index 91974a31175..0f6ffe51d85 100644 --- a/pkgs/development/libraries/ffmpeg-full/default.nix +++ b/pkgs/development/libraries/ffmpeg-full/default.nix @@ -141,7 +141,7 @@ /* * Darwin frameworks */ -, Cocoa, CoreServices +, Cocoa, CoreServices, AVFoundation, MediaToolbox, VideoDecodeAcceleration, CF }: /* Maintainer notes: @@ -177,7 +177,7 @@ let inherit (stdenv) isCygwin isFreeBSD isLinux; - inherit (stdenv.lib) optional optionals enableFeature; + inherit (stdenv.lib) optional optionals optionalString enableFeature; in /* @@ -410,11 +410,25 @@ stdenv.mkDerivation rec { ++ optionals nonfreeLicensing [ faac fdk_aac openssl ] ++ optional ((isLinux || isFreeBSD) && libva != null) libva ++ optionals isLinux [ alsaLib libraw1394 libv4l ] - ++ optionals stdenv.isDarwin [ Cocoa CoreServices ]; + ++ optionals stdenv.isDarwin [ Cocoa CoreServices AVFoundation MediaToolbox + VideoDecodeAcceleration ]; # Build qt-faststart executable buildPhase = optional qtFaststartProgram ''make tools/qt-faststart''; - postInstall = optional qtFaststartProgram ''cp -a tools/qt-faststart $out/bin/''; + + # Hacky framework patching technique borrowed from the phantomjs2 package + postInstall = optionalString qtFaststartProgram '' + cp -a tools/qt-faststart $out/bin/ + '' + optionalString stdenv.isDarwin '' + FILES=($(ls $out/bin/*)) + FILES+=($(ls $out/lib/*.dylib)) + for f in ''${FILES[@]}; do + if [ ! -h "$f" ]; then + install_name_tool -change ${CF}/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation "$f" + fi + done + ''; + enableParallelBuilding = true; diff --git a/pkgs/development/libraries/fmod/4.24.16.nix b/pkgs/development/libraries/fmod/4.24.16.nix index b78b1a46e25..191db2f6f6d 100644 --- a/pkgs/development/libraries/fmod/4.24.16.nix +++ b/pkgs/development/libraries/fmod/4.24.16.nix @@ -5,7 +5,7 @@ let bits = stdenv.lib.optionalString (stdenv.system == "x86_64-linux") "64"; libPath = stdenv.lib.makeLibraryPath - [ stdenv.cc.libc stdenv.cc.cc ] + ":${stdenv.cc.cc}/lib64"; + [ stdenv.cc.libc stdenv.cc.cc ] + ":${stdenv.cc.cc.lib}/lib64"; patchLib = x: "patchelf --set-rpath ${libPath} ${x}"; src = diff --git a/pkgs/development/libraries/fmod/default.nix b/pkgs/development/libraries/fmod/default.nix index f014c4cecb6..621d6dc405f 100644 --- a/pkgs/development/libraries/fmod/default.nix +++ b/pkgs/development/libraries/fmod/default.nix @@ -5,7 +5,7 @@ let bits = stdenv.lib.optionalString (stdenv.system == "x86_64-linux") "64"; libPath = stdenv.lib.makeLibraryPath - [ stdenv.cc.libc stdenv.cc.cc ] + ":${stdenv.cc.cc}/lib64"; + [ stdenv.cc.libc stdenv.cc.cc ] + ":${stdenv.cc.cc.lib}/lib64"; patchLib = x: "patchelf --set-rpath ${libPath} ${x}"; in stdenv.mkDerivation rec { diff --git a/pkgs/development/libraries/folly/default.nix b/pkgs/development/libraries/folly/default.nix index 046b7f97ba4..72867e012a9 100644 --- a/pkgs/development/libraries/folly/default.nix +++ b/pkgs/development/libraries/folly/default.nix @@ -2,24 +2,16 @@ , google-gflags, python, libiberty, openssl }: stdenv.mkDerivation rec { - version = "0.57.0"; name = "folly-${version}"; + version = "2016-04-29"; src = fetchFromGitHub { owner = "facebook"; repo = "folly"; - rev = "v${version}"; - sha256 = "12b9bkwmndfwmsknc209kpplxn9wqmwr3p2h0l2szrppq4qqyfq9"; + rev = "b31eb722e444ab0293a73fe9de3f94e657ca6de9"; + sha256 = "0s95y0wnz4xbrkzbiksnb0n0d0qrkcsbssznng57kwlq8jlfka24"; }; - patches = [ - # Fix compatibility with Boost 1.59 - (fetchpatch { - url = "https://github.com/facebook/folly/commit/29193aca605bb93d82a3c92acd95bb342115f3a4.patch"; - sha256 = "1ixpgq1wjr3i7madx4faw72n17ilc9cr435k5w1x95jr954m9j7b"; - }) - ]; - nativeBuildInputs = [ autoreconfHook python ]; buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ]; diff --git a/pkgs/development/libraries/gdk-pixbuf/default.nix b/pkgs/development/libraries/gdk-pixbuf/default.nix index 756ebf81619..1487d92dada 100644 --- a/pkgs/development/libraries/gdk-pixbuf/default.nix +++ b/pkgs/development/libraries/gdk-pixbuf/default.nix @@ -2,15 +2,15 @@ , jasper, libintlOrEmpty, gobjectIntrospection, doCheck ? false }: let - ver_maj = "2.32"; - ver_min = "3"; + ver_maj = "2.34"; + ver_min = "0"; in stdenv.mkDerivation rec { name = "gdk-pixbuf-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://gnome/sources/gdk-pixbuf/${ver_maj}/${name}.tar.xz"; - sha256 = "0cfh87aqyqbfcwpbv1ihgmgfcn66il5q2n8yjyl8gxkjmkqp2rrb"; + sha256 = "0yc8indbl3hf18z6x6kjg59xp9sngm1d8vmz4c7bs6g27qw5npnm"; }; outputs = [ "dev" "out" "docdev" ]; diff --git a/pkgs/development/libraries/gegl/3.0.nix b/pkgs/development/libraries/gegl/3.0.nix index 575e2d562aa..1ca0a2b5925 100644 --- a/pkgs/development/libraries/gegl/3.0.nix +++ b/pkgs/development/libraries/gegl/3.0.nix @@ -1,13 +1,12 @@ -{ stdenv, fetchgit, pkgconfig, glib, babl, libpng, cairo, libjpeg, which +{ stdenv, fetchurl, pkgconfig, glib, babl, libpng, cairo, libjpeg, which , librsvg, pango, gtk, bzip2, intltool, libtool, automake, autoconf, json_glib }: stdenv.mkDerivation rec { - name = "gegl-0.3.0-20140619"; + name = "gegl-0.3.6"; - src = fetchgit { - url = "https://git.gnome.org/browse/gegl"; - sha256 = "1rjmv2y7z34zrnlqczmmh0bm724iszzdf6jpibszxnp3w0npwjrb"; - rev = "0014eb1bad50244314ed09592fe57efa9322678c"; + src = fetchurl { + url = "http://download.gimp.org/pub/gegl/0.3/${name}.tar.bz2"; + sha256 = "08m7dlf2kwmp7jw3qskwxas192swhn1g4jcd8aldg9drfjygprvh"; }; configureScript = "./autogen.sh"; diff --git a/pkgs/development/libraries/glib/default.nix b/pkgs/development/libraries/glib/default.nix index 120d398bd44..b3b9dfcef16 100644 --- a/pkgs/development/libraries/glib/default.nix +++ b/pkgs/development/libraries/glib/default.nix @@ -39,8 +39,8 @@ let ln -sr -t "''${!outputInclude}/include/" "''${!outputInclude}"/lib/*/include/* 2>/dev/null || true ''; - ver_maj = "2.46"; - ver_min = "2"; + ver_maj = "2.48"; + ver_min = "0"; in stdenv.mkDerivation rec { @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/glib/${ver_maj}/${name}.tar.xz"; - sha256 = "5031722e37036719c1a09163cc6cf7c326e4c4f1f1e074b433c156862bd733db"; + sha256 = "0d3w2hblrw7vvpx60l1kbvb830ygn3v8zhwdz65cc5593j9ycjvl"; }; patches = optional stdenv.isDarwin ./darwin-compilation.patch ++ optional doCheck ./skip-timer-test.patch; diff --git a/pkgs/development/libraries/gnutls/3.4.nix b/pkgs/development/libraries/gnutls/3.4.nix index 6d196978cdf..71c3010467c 100644 --- a/pkgs/development/libraries/gnutls/3.4.nix +++ b/pkgs/development/libraries/gnutls/3.4.nix @@ -1,11 +1,11 @@ { callPackage, fetchurl, autoreconfHook, ... } @ args: callPackage ./generic.nix (args // rec { - version = "3.4.6"; + version = "3.4.11"; src = fetchurl { url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.4/gnutls-${version}.tar.xz"; - sha256 = "1v109px1sy1s731fnawzdsvggdswmr7ha9q5lid4v8pzgznmkdgy"; + sha256 = "1f4sbb38xab46h67a3pm6kybgrahjx3vbrn66qq3cbc2jngrrvvh"; }; # This fixes some broken parallel dependencies diff --git a/pkgs/development/libraries/gobject-introspection/darwin-fixups.patch b/pkgs/development/libraries/gobject-introspection/darwin-fixups.patch deleted file mode 100644 index 02443d56afa..00000000000 --- a/pkgs/development/libraries/gobject-introspection/darwin-fixups.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff -ur gobject-introspection-1.46.0-orig/giscanner/ccompiler.py gobject-introspection-1.46.0/giscanner/ccompiler.py ---- gobject-introspection-1.46.0-orig/giscanner/ccompiler.py 2016-02-01 12:25:41.000000000 -0500 -+++ gobject-introspection-1.46.0/giscanner/ccompiler.py 2016-02-01 15:50:36.000000000 -0500 -@@ -128,11 +128,7 @@ - self.compiler.add_runtime_library_dir('.') - - # https://bugzilla.gnome.org/show_bug.cgi?id=625195 -- args.append('-Wl,-rpath=.') -- -- # Ensure libraries are always linked as we are going to use ldd to work -- # out their names later -- args.append('-Wl,--no-as-needed') -+ args.append('-Wl,-rpath,.') - - for library in libraries: - self.compiler.add_library(library) -@@ -140,7 +136,7 @@ - for library_path in libpaths: - args.append('-L' + library_path) - if os.path.isabs(library_path): -- args.append('-Wl,-rpath=' + library_path) -+ args.append('-Wl,-rpath,' + library_path) - - else: - # libtool case: assemble linker command arguments, like we did before -Only in gobject-introspection-1.46.0/giscanner: ccompiler.py~ diff --git a/pkgs/development/libraries/gobject-introspection/default.nix b/pkgs/development/libraries/gobject-introspection/default.nix index 47ccb17e484..0b48ef076b1 100644 --- a/pkgs/development/libraries/gobject-introspection/default.nix +++ b/pkgs/development/libraries/gobject-introspection/default.nix @@ -7,7 +7,7 @@ # In that case its about 6MB which could be separated let - ver_maj = "1.46"; + ver_maj = "1.48"; ver_min = "0"; in with stdenv.lib; @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/gobject-introspection/${ver_maj}/${name}.tar.xz"; - sha256 = "6658bd3c2b8813eb3e2511ee153238d09ace9d309e4574af27443d87423e4233"; + sha256 = "0xsqwxhfqzr79av89mg766kxpb2i41bd0vwspk01xjdzrnn5l9zs"; }; outputs = [ "dev" "out" ]; @@ -40,9 +40,6 @@ stdenv.mkDerivation rec { patches = stdenv.lib.singleton (substituteAll { src = ./absolute_shlib_path.patch; inherit nixStoreDir; - }) ++ optional stdenv.isDarwin (substituteAll { - src = ./darwin-fixups.patch; - inherit nixStoreDir; }); meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix index 4603b3e29db..add3026275f 100644 --- a/pkgs/development/libraries/gstreamer/bad/default.nix +++ b/pkgs/development/libraries/gstreamer/bad/default.nix @@ -4,7 +4,7 @@ , libmodplug, mpeg2dec, mpg123 , openjpeg, libopus, librsvg , wildmidi, fluidsynth, libvdpau, wayland -, libwebp, xvidcore, gnutls +, libwebp, xvidcore, gnutls, mjpegtools , mesa, libintlOrEmpty }: @@ -14,7 +14,7 @@ let inherit (stdenv.lib) optional optionalString; in stdenv.mkDerivation rec { - name = "gst-plugins-bad-1.6.1"; + name = "gst-plugins-bad-1.8.0"; meta = with stdenv.lib; { description = "Gstreamer Bad Plugins"; @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-plugins-bad/${name}.tar.xz"; - sha256 = "0rjla9zcal9b5ynagq7cscjs53qrd9bafjkjssrp8s2z2apsjxp1"; + sha256 = "03m99igngm37653353n5d724bcqw7p6hw6xjw0i2824523fpcqqi"; }; nativeBuildInputs = [ pkgconfig python ]; @@ -43,6 +43,7 @@ stdenv.mkDerivation rec { openjpeg libopus librsvg fluidsynth libvdpau libwebp xvidcore gnutls mesa + mjpegtools ] ++ libintlOrEmpty ++ optional faacSupport faac diff --git a/pkgs/development/libraries/gstreamer/base/default.nix b/pkgs/development/libraries/gstreamer/base/default.nix index 4f592dbe31e..b2fff30197c 100644 --- a/pkgs/development/libraries/gstreamer/base/default.nix +++ b/pkgs/development/libraries/gstreamer/base/default.nix @@ -4,7 +4,7 @@ }: stdenv.mkDerivation rec { - name = "gst-plugins-base-1.6.1"; + name = "gst-plugins-base-1.8.0"; meta = { description = "Base plugins and helper libraries"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-plugins-base/${name}.tar.xz"; - sha256 = "18sbyjcp281zb3bsqji3pglsdsxi0s6ai7rx90sx8cpflkxdqcwm"; + sha256 = "08hmg7fp519wim1fm04r7f2q2020ssdninawqsbrqjsvs70srh5b"; }; nativeBuildInputs = [ diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix index 754b2bb64b8..40caf4093f0 100644 --- a/pkgs/development/libraries/gstreamer/core/default.nix +++ b/pkgs/development/libraries/gstreamer/core/default.nix @@ -3,7 +3,7 @@ }: stdenv.mkDerivation rec { - name = "gstreamer-1.6.1"; + name = "gstreamer-1.8.0"; meta = { description = "Open source multimedia framework"; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gstreamer/${name}.tar.xz"; - sha256 = "172w1bpnkn6mm1wi37n03apdbb6cdkykhzjf1vfxchcd7hhkyflp"; + sha256 = "1p5y9bbrhywng0prmpxv29p6jsz6vd039d49bnc98p9b45532yll"; }; nativeBuildInputs = [ diff --git a/pkgs/development/libraries/gstreamer/ges/default.nix b/pkgs/development/libraries/gstreamer/ges/default.nix index 1e0ee39667e..e47ecfa01aa 100644 --- a/pkgs/development/libraries/gstreamer/ges/default.nix +++ b/pkgs/development/libraries/gstreamer/ges/default.nix @@ -3,7 +3,7 @@ }: stdenv.mkDerivation rec { - name = "gstreamer-editing-services-1.6.1"; + name = "gstreamer-editing-services-1.8.0"; meta = with stdenv.lib; { description = "Library for creation of audio/video non-linear editors"; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gstreamer-editing-services/${name}.tar.xz"; - sha256 = "1lkvkrsipn35341hwwkhwn44n90y49sjwra1r5pazbjgn1yykxzm"; + sha256 = "1gisdfa91kq89bsmbvb47alaxh8lpqmr6f3dzlwmf389nkandw2h"; }; nativeBuildInputs = [ pkgconfig python gobjectIntrospection flex perl ]; diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix index 75f0760747b..54175fb83fb 100644 --- a/pkgs/development/libraries/gstreamer/good/default.nix +++ b/pkgs/development/libraries/gstreamer/good/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, python , gst-plugins-base, orc, bzip2 , libv4l, libdv, libavc1394, libiec61883 -, libvpx, speex, flac, taglib +, libvpx, speex, flac, taglib, libshout , cairo, gdk_pixbuf, aalib, libcaca , libsoup, libpulseaudio, libintlOrEmpty }: @@ -10,7 +10,7 @@ let inherit (stdenv.lib) optionals optionalString; in stdenv.mkDerivation rec { - name = "gst-plugins-good-1.6.1"; + name = "gst-plugins-good-1.8.0"; meta = with stdenv.lib; { description = "Gstreamer Good Plugins"; @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.xz"; - sha256 = "0darc3058kbnql3mnlpizl0sq0hhli7vkm0rpqb7nywz14abim46"; + sha256 = "0kczdvqxvl8kxiy2d7czv16jp73hv9k3nykh47ckihnv8x6i6362"; }; nativeBuildInputs = [ pkgconfig python ]; @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { gst-plugins-base orc bzip2 libdv libvpx speex flac taglib cairo gdk_pixbuf aalib libcaca - libsoup + libsoup libshout ] ++ libintlOrEmpty ++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 ]; diff --git a/pkgs/development/libraries/gstreamer/libav/default.nix b/pkgs/development/libraries/gstreamer/libav/default.nix index 6d0c28d0e28..e4daa642ba0 100644 --- a/pkgs/development/libraries/gstreamer/libav/default.nix +++ b/pkgs/development/libraries/gstreamer/libav/default.nix @@ -9,7 +9,7 @@ assert withSystemLibav -> libav != null; stdenv.mkDerivation rec { - name = "gst-libav-1.6.1"; + name = "gst-libav-1.8.0"; meta = { homepage = "http://gstreamer.freedesktop.org"; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-libav/${name}.tar.xz"; - sha256 = "1a9pc7zp5rg0cvpx8gqkr21w73i6p9xa505a34day9f8p3lfim94"; + sha256 = "0719njp8aarhvn038pijq6dmsnli0zlg146hyfs3rsdffs4f472s"; }; configureFlags = stdenv.lib.optionalString withSystemLibav diff --git a/pkgs/development/libraries/gstreamer/python/default.nix b/pkgs/development/libraries/gstreamer/python/default.nix index c1b94a647b8..5320fdfaced 100644 --- a/pkgs/development/libraries/gstreamer/python/default.nix +++ b/pkgs/development/libraries/gstreamer/python/default.nix @@ -4,14 +4,14 @@ }: stdenv.mkDerivation rec { - name = "gst-python-1.4.0"; + name = "gst-python-1.8.0"; src = fetchurl { urls = [ "${meta.homepage}/src/gst-python/${name}.tar.xz" "mirror://gentoo/distfiles/${name}.tar.xz" ]; - sha256 = "0gixsp46mv7fvhk669q60wfk9w2lc02sdb1qipq066xlrqlhrr5i"; + sha256 = "1spn49x7yaj69df6mxh9wwcs0y3abswkfpk84njs71lzqlbzyiff"; }; patches = [ ./different-path-with-pygobject.patch ]; diff --git a/pkgs/development/libraries/gstreamer/ugly/default.nix b/pkgs/development/libraries/gstreamer/ugly/default.nix index 540b3ba0be8..8f8437ad4ac 100644 --- a/pkgs/development/libraries/gstreamer/ugly/default.nix +++ b/pkgs/development/libraries/gstreamer/ugly/default.nix @@ -5,7 +5,7 @@ }: stdenv.mkDerivation rec { - name = "gst-plugins-ugly-1.6.1"; + name = "gst-plugins-ugly-1.8.0"; meta = with stdenv.lib; { description = "Gstreamer Ugly Plugins"; @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-plugins-ugly/${name}.tar.xz"; - sha256 = "0mvasl1pwq70w2kmrkcrg77kggl5q7jqybi7fkvy3vr28c7gkhqc"; + sha256 = "137b6kqykh5nwbmiv28nn1pc1d2x2rb2xxg382pc9pa9gpxpyrak"; }; nativeBuildInputs = [ pkgconfig python ]; diff --git a/pkgs/development/libraries/gstreamer/vaapi/default.nix b/pkgs/development/libraries/gstreamer/vaapi/default.nix index bf061b4125b..a9aa3d73fa2 100644 --- a/pkgs/development/libraries/gstreamer/vaapi/default.nix +++ b/pkgs/development/libraries/gstreamer/vaapi/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "gst-vaapi-${version}"; - version = "0.6.1"; + version = "0.7.0"; src = fetchurl { url = "${meta.homepage}/software/vaapi/releases/gstreamer-vaapi/gstreamer-vaapi-${version}.tar.bz2"; - sha256 = "1cv7zlz5wj6b3acv0pr5cq5wqzd5vcs1lrrlvyl9wrzcnzz8mz1n"; + sha256 = "14jal2g5mf8r59w8420ixl3kg50vcmy56446ncwd0xrizd6yms5b"; }; nativeBuildInputs = with stdenv.lib; [ pkgconfig bzip2 ]; diff --git a/pkgs/development/libraries/gstreamer/validate/default.nix b/pkgs/development/libraries/gstreamer/validate/default.nix index 0b0ba11a793..1c123621664 100644 --- a/pkgs/development/libraries/gstreamer/validate/default.nix +++ b/pkgs/development/libraries/gstreamer/validate/default.nix @@ -3,7 +3,7 @@ }: stdenv.mkDerivation rec { - name = "gst-validate-1.6.0"; + name = "gst-validate-1.8.0"; meta = { description = "Integration testing infrastructure for the GStreamer framework"; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gst-validate/${name}.tar.xz"; - sha256 = "1vmg5mh068zrvhgrjsbnb7y4k632akyhm8ql0g196cinnp3zibiv"; + sha256 = "1pcy9pfffyk6xiw6aq38kbv7k24x2rljdy8fabjfy1abpmvvfrkn"; }; nativeBuildInputs = [ diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index a2da4c7b033..dcbf0b4a47c 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -11,8 +11,8 @@ assert cupsSupport -> cups != null; with stdenv.lib; let - ver_maj = "3.18"; - ver_min = "5"; + ver_maj = "3.20"; + ver_min = "3"; version = "${ver_maj}.${ver_min}"; in stdenv.mkDerivation rec { @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/gtk+/${ver_maj}/gtk+-${version}.tar.xz"; - sha256 = "107aeb9a4244ce3c044becdd6dffc32d83202595181597180d4c736302a71852"; + sha256 = "3834f3bf23b260b3e5ebfea41102e2026a8af29e36c3620edf4a5cf05e82f694"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/herqq/default.nix b/pkgs/development/libraries/herqq/default.nix index fee12592c63..39d5b2c792a 100644 --- a/pkgs/development/libraries/herqq/default.nix +++ b/pkgs/development/libraries/herqq/default.nix @@ -1,11 +1,9 @@ -{ stdenv, fetchurl, qt4, unzip }: +{ stdenv, fetchurl, qt4, qmake4Hook, unzip }: stdenv.mkDerivation rec { name = "herqq-1.0.0"; - buildInputs = [ qt4 unzip ]; - - configurePhase = "qmake PREFIX=$out herqq.pro"; + buildInputs = [ qt4 unzip qmake4Hook ]; src = fetchurl { url = "mirror://sourceforge/hupnp/${name}.zip"; diff --git a/pkgs/development/libraries/ijs/default.nix b/pkgs/development/libraries/ijs/default.nix index 0c7d412fee6..a08a653dc71 100644 --- a/pkgs/development/libraries/ijs/default.nix +++ b/pkgs/development/libraries/ijs/default.nix @@ -1,14 +1,9 @@ -{ stdenv, fetchurl, fetchpatch, autoreconfHook }: +{ stdenv, fetchurl, fetchpatch, autoreconfHook, ghostscript }: -let version = "9.18"; -in stdenv.mkDerivation { - name = "ijs-${version}"; + name = "ijs-${ghostscript.version}"; - src = fetchurl { - url = "http://downloads.ghostscript.com/public/ghostscript-${version}.tar.bz2"; - sha256 = "18ad90za28dxybajqwf3y3dld87cgkx1ljllmcnc7ysspfxzbnl3"; - }; + inherit (ghostscript) src; patches = [ # http://bugs.ghostscript.com/show_bug.cgi?id=696246 @@ -28,7 +23,7 @@ stdenv.mkDerivation { configureFlags = [ "--disable-static" "--enable-shared" ]; meta = with stdenv.lib; { - homepage = https://www.openprinting.org/download/ijs/; + homepage = "https://www.openprinting.org/download/ijs/"; description = "Raster printer driver architecture"; license = licenses.gpl3Plus; diff --git a/pkgs/development/libraries/json-glib/default.nix b/pkgs/development/libraries/json-glib/default.nix index e49063a9de9..5cfafc8e69a 100644 --- a/pkgs/development/libraries/json-glib/default.nix +++ b/pkgs/development/libraries/json-glib/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, glib, pkgconfig, gobjectIntrospection, dbus }: stdenv.mkDerivation rec { - name = "json-glib-${minVer}.2"; - minVer = "1.0"; + name = "json-glib-${minVer}.0"; + minVer = "1.2"; src = fetchurl { url = "mirror://gnome/sources/json-glib/${minVer}/${name}.tar.xz"; - sha256 = "887bd192da8f5edc53b490ec51bf3ffebd958a671f5963e4f3af32c22e35660a"; + sha256 = "1lx7p1c7cl21byvfgw92n8dhm09vi6qxrs0zkx9dg3y096zdzmlr"; }; configureflags= "--with-introspection"; diff --git a/pkgs/development/libraries/kerberos/krb5.nix b/pkgs/development/libraries/kerberos/krb5.nix index 5b2b0954203..332ca526b6b 100644 --- a/pkgs/development/libraries/kerberos/krb5.nix +++ b/pkgs/development/libraries/kerberos/krb5.nix @@ -11,11 +11,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { name = "${type}krb5-${version}"; - version = "1.14"; + version = "1.14.2"; src = fetchurl { url = "${meta.homepage}dist/krb5/1.14/krb5-${version}.tar.gz"; - sha256 = "1sgr61cnkgc5xazijaww6wpn5fnxl9vyj9ixk3r3y7ikv3x0gnyf"; + sha256 = "09wbv969ak4fqlqr1ip5bi62fny1zlp1vwjarvj6a6cdfzkdgjkb"; }; configureFlags = optional stdenv.isFreeBSD ''WARN_CFLAGS=""''; diff --git a/pkgs/development/libraries/libburn/default.nix b/pkgs/development/libraries/libburn/default.nix new file mode 100644 index 00000000000..22edcc15769 --- /dev/null +++ b/pkgs/development/libraries/libburn/default.nix @@ -0,0 +1,18 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "libburn-${version}"; + version = "1.4.2.pl01"; + + src = fetchurl { + url = "http://files.libburnia-project.org/releases/${name}.tar.gz"; + sha256 = "1nqfm24dm2csdnhsmpgw9cwcnkwvqlvfzsm9bhr6yg7bbmzwvkrk"; + }; + + meta = with stdenv.lib; { + homepage = http://libburnia-project.org/; + description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)"; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ abbradar ]; + }; +} diff --git a/pkgs/development/libraries/libcommuni/default.nix b/pkgs/development/libraries/libcommuni/default.nix index 008311c620c..7b83be7e911 100644 --- a/pkgs/development/libraries/libcommuni/default.nix +++ b/pkgs/development/libraries/libcommuni/default.nix @@ -1,4 +1,4 @@ -{ fetchgit, qt5, stdenv +{ fetchgit, qtbase, qmakeHook, stdenv }: stdenv.mkDerivation rec { @@ -11,16 +11,16 @@ stdenv.mkDerivation rec { sha256 = "15sb7vinaaz1v5nclxpnp5p9a0kmfmlgiqibkipnyydizclidpfx"; }; - buildInputs = [ qt5.qtbase ]; + buildInputs = [ qtbase ]; + nativeBuildInputs = [ qmakeHook ]; enableParallelBuild = true; - postPatch = '' - sed -i -e 's|/bin/pwd|pwd|g' -e 's/which/type -P/' configure + configurePhase = '' + sed -i -e 's|/bin/pwd|pwd|g' configure + ./configure -config release -prefix $out -qmake $QMAKE ''; - configureFlags = [ "-config release" ]; - meta = with stdenv.lib; { description = "A cross-platform IRC framework written with Qt"; homepage = https://communi.github.io; diff --git a/pkgs/development/libraries/libdigidoc/default.nix b/pkgs/development/libraries/libdigidoc/default.nix new file mode 100644 index 00000000000..e060f8c1d76 --- /dev/null +++ b/pkgs/development/libraries/libdigidoc/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, cmake, openssl, pcsclite, opensc, libxml2 }: + +stdenv.mkDerivation rec { + + version = "3.10.1.1212"; + name = "libdigidoc-${version}"; + + src = fetchurl { + url = "https://installer.id.ee/media/ubuntu/pool/main/libd/libdigidoc/libdigidoc_3.10.1.1212.orig.tar.xz"; + sha256 = "ad5e0603aea2e02977f17318cc93a53c3a19a815e57b2347d97136d11c110807"; + }; + + unpackPhase = '' + mkdir src + tar xf $src -C src + cd src + ''; + + buildInputs = [ cmake openssl pcsclite opensc libxml2 ]; + + meta = with stdenv.lib; { + description = "Library for creating DigiDoc signature files"; + homepage = "http://www.id.ee/"; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; + }; +} diff --git a/pkgs/development/libraries/libdigidocpp/default.nix b/pkgs/development/libraries/libdigidocpp/default.nix new file mode 100644 index 00000000000..5ddc6303126 --- /dev/null +++ b/pkgs/development/libraries/libdigidocpp/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, cmake, libdigidoc, minizip, pcsclite, opensc, openssl +, xercesc, xml-security-c, pkgconfig, xsd, zlib, vim }: + +stdenv.mkDerivation rec { + + version = "3.12.0.1317"; + name = "libdigidocpp-${version}"; + + src = fetchurl { + url = "https://installer.id.ee/media/ubuntu/pool/main/libd/libdigidocpp/libdigidocpp_3.12.0.1317.orig.tar.xz"; + sha256 = "8059e1dbab99f062d070b9da0b1334b7226f1ab9badcd7fddea3100519d1f9a9"; + }; + + unpackPhase = '' + mkdir src + tar xf $src -C src + cd src + ''; + + buildInputs = [ cmake libdigidoc minizip pcsclite opensc openssl xercesc + xml-security-c pkgconfig xsd zlib vim + ]; + + meta = with stdenv.lib; { + description = "Library for creating DigiDoc signature files"; + homepage = "http://www.id.ee/"; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; + }; +} diff --git a/pkgs/development/libraries/libdvdcss/default.nix b/pkgs/development/libraries/libdvdcss/default.nix index c5cdec0ae5f..ae3ae407a92 100644 --- a/pkgs/development/libraries/libdvdcss/default.nix +++ b/pkgs/development/libraries/libdvdcss/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libdvdcss-${version}"; - version = "1.3.0"; + version = "1.4.0"; src = fetchurl { url = "http://get.videolan.org/libdvdcss/${version}/${name}.tar.bz2"; - sha256 = "158k9zagmbk5bkbz96l6lwhh7xcgfcnzflkr4vblskhcab6llhbw"; + sha256 = "0nl45ifc4xcb196snv9d6hinfw614cqpzcqp92dg43c0hickg290"; }; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/libeatmydata/default.nix b/pkgs/development/libraries/libeatmydata/default.nix index 2fdd1658f19..ac75e6c8baa 100644 --- a/pkgs/development/libraries/libeatmydata/default.nix +++ b/pkgs/development/libraries/libeatmydata/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, makeWrapper }: stdenv.mkDerivation rec { - name = "libeatmydata-82"; + name = "libeatmydata-105"; src = fetchurl { url = "http://www.flamingspork.com/projects/libeatmydata/${name}.tar.gz"; - sha256 = "0aavq71bf0yxdgyf8gvyzq086shszzwpbsz5rqkjg4cz0rc5yrqb"; + sha256 = "1pd8sc73cgc41ldsvq6g8ics1m5k8gdcb91as9yg8z5jnrld1lmx"; }; buildInputs = [ makeWrapper ]; diff --git a/pkgs/development/libraries/libfilezilla/default.nix b/pkgs/development/libraries/libfilezilla/default.nix index d8e1c29875c..4381f9e6c73 100644 --- a/pkgs/development/libraries/libfilezilla/default.nix +++ b/pkgs/development/libraries/libfilezilla/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libfilezilla-${version}"; - version = "0.4.0.1"; + version = "0.5.0"; src = fetchurl { url = "mirror://sourceforge/project/filezilla/libfilezilla/${version}/${name}.tar.bz2"; - sha256 = "1ldiyhjv4jg2jyj3d56mlgyj9lx0qkf1857wvsy51lp9aj96h0v0"; + sha256 = "07f5hk5izqgqjadrwy608gi0w3scm3zvpsv63j7bgfqk67qilslc"; }; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/libiberty/default.nix b/pkgs/development/libraries/libiberty/default.nix index c3dc3a4e852..1f5ab2cf096 100644 --- a/pkgs/development/libraries/libiberty/default.nix +++ b/pkgs/development/libraries/libiberty/default.nix @@ -1,26 +1,16 @@ -{ stdenv, fetchurl, staticBuild ? false }: +{ stdenv, lib, fetchurl, gcc, staticBuild ? false }: stdenv.mkDerivation rec { - version = "4.9.3"; - name = "libiberty-${version}"; + name = "libiberty-${gcc.cc.version}"; - src = fetchurl { - url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2"; - sha256 = "0zmnm00d2a1hsd41g34bhvxzvxisa2l584q3p447bd91lfjv4ci3"; - }; + inherit (gcc.cc) src; postUnpack = "sourceRoot=\${sourceRoot}/libiberty"; - enable_shared = !staticBuild; + configureFlags = [ "--enable-install-libiberty" ] ++ lib.optional (!staticBuild) "--enable-shared"; - installPhase = '' - mkdir -p $out/lib $out/include - cp ../include/libiberty.h $out/include/ - if [ -z "$enabled_shared" ]; then - cp libiberty.a $out/lib/libiberty.a - else - cp pic/libiberty.a $out/lib/libiberty_pic.a - fi + postInstall = lib.optionalString (!staticBuild) '' + cp pic/libiberty.a $out/lib*/libiberty.a ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/libibverbs/default.nix b/pkgs/development/libraries/libibverbs/default.nix index 5ce1e5cbdf6..8e37648adfc 100644 --- a/pkgs/development/libraries/libibverbs/default.nix +++ b/pkgs/development/libraries/libibverbs/default.nix @@ -1,17 +1,65 @@ { stdenv, fetchurl }: -stdenv.mkDerivation rec { - name = "libibverbs-1.1.8"; +let - src = fetchurl { - url = "https://www.openfabrics.org/downloads/verbs/${name}.tar.gz"; - sha256 = "13w2j5lrrqxxxvhpxbqb70x7wy0h8g329inzgfrvqv8ykrknwxkw"; + verbs = rec { + version = "1.1.8"; + name = "libibverbs-${version}"; + url = "http://downloads.openfabrics.org/verbs/${name}.tar.gz"; + sha256 = "13w2j5lrrqxxxvhpxbqb70x7wy0h8g329inzgfrvqv8ykrknwxkw"; }; + drivers = { + libmlx4 = rec { + version = "1.0.6"; + name = "libmlx4-${version}"; + url = "http://downloads.openfabrics.org/mlx4/${name}.tar.gz"; + sha256 = "f680ecbb60b01ad893490c158b4ce8028a3014bb8194c2754df508d53aa848a8"; + }; + libmthca = rec { + version = "1.0.6"; + name = "libmthca-${version}"; + url = "http://downloads.openfabrics.org/mthca/${name}.tar.gz"; + sha256 = "cc8ea3091135d68233d53004e82b5b510009c821820494a3624e89e0bdfc855c"; + }; + }; + +in stdenv.mkDerivation rec { + + inherit (verbs) name version ; + + srcs = [ + ( fetchurl { inherit (verbs) url sha256 ; } ) + ( fetchurl { inherit (drivers.libmlx4) url sha256 ; } ) + ( fetchurl { inherit (drivers.libmthca) url sha256 ; } ) + ]; + + sourceRoot = name; + + # Install userspace drivers + postInstall = '' + for dir in ${drivers.libmlx4.name} ${drivers.libmthca.name} ; do + cd ../$dir + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$out/include" + export NIX_LDFLAGS="-rpath $out/lib $NIX_LDFLAGS -L$out/lib" + ./configure $configureFlags + make -j$NIX_BUILD_CORES + make install + done + ''; + + # Re-add the libibverbs path into runpath of the library + # to enable plugins to be found by dlopen + postFixup = '' + RPATH=$(patchelf --print-rpath $out/lib/libibverbs.so) + patchelf --set-rpath $RPATH:$out/lib $out/lib/libibverbs.so.1.0.0 + ''; + meta = with stdenv.lib; { homepage = https://www.openfabrics.org/; license = licenses.bsd2; platforms = with platforms; linux ++ freebsd; - maintainers = with maintainers; [ wkennington ]; + maintainers = with maintainers; [ wkennington bzizou ]; }; } + diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index 18dbd2de38b..2c29482227a 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -15,11 +15,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { - name = "libinput-1.2.2"; + name = "libinput-1.2.3"; src = fetchurl { url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz"; - sha256 = "0rzkp37dnn4qnkx7v3hckx5ryv3lr0vl234pnk6z2vfq40v5pb08"; + sha256 = "1wp937sn2dzqhrbl2bhapqb0pvybc80z8ynw7yfkm5ycl39skch9"; }; configureFlags = [ diff --git a/pkgs/development/libraries/libisofs/default.nix b/pkgs/development/libraries/libisofs/default.nix new file mode 100644 index 00000000000..d7e78410740 --- /dev/null +++ b/pkgs/development/libraries/libisofs/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, acl, attr, zlib }: + +stdenv.mkDerivation rec { + name = "libisofs-${version}"; + version = "1.4.2"; + + src = fetchurl { + url = "http://files.libburnia-project.org/releases/${name}.tar.gz"; + sha256 = "1axk1ykv8ibrlrd2f3allidviimi4ya6k7wpvr6r4y1sc7mg7rym"; + }; + + buildInputs = [ attr zlib ]; + propagatedBuildInputs = [ acl ]; + + meta = with stdenv.lib; { + homepage = http://libburnia-project.org/; + description = "A library to create an ISO-9660 filesystem with extensions like RockRidge or Joliet"; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ abbradar ]; + }; +} diff --git a/pkgs/development/libraries/libjpeg-turbo/default.nix b/pkgs/development/libraries/libjpeg-turbo/default.nix index 79cf45a8005..da4d3a9822f 100644 --- a/pkgs/development/libraries/libjpeg-turbo/default.nix +++ b/pkgs/development/libraries/libjpeg-turbo/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, nasm, autoreconfHook }: +{ stdenv, fetchurl, nasm }: stdenv.mkDerivation rec { name = "libjpeg-turbo-1.4.2"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { outputs = [ "dev" "out" "doc" "bin" ]; - buildInputs = [ autoreconfHook nasm ]; + nativeBuildInputs = [ nasm ]; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/libkeyfinder/default.nix b/pkgs/development/libraries/libkeyfinder/default.nix index 729df918e57..d95ada04a34 100644 --- a/pkgs/development/libraries/libkeyfinder/default.nix +++ b/pkgs/development/libraries/libkeyfinder/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, fftw, qtbase }: +{ stdenv, fetchFromGitHub, fftw, qtbase, qmakeHook }: stdenv.mkDerivation rec { name = "libkeyfinder-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { owner = "ibsh"; }; - buildInputs = [ fftw qtbase ]; + buildInputs = [ fftw qtbase qmakeHook ]; postPatch = '' substituteInPlace LibKeyFinder.pro \ @@ -19,12 +19,6 @@ stdenv.mkDerivation rec { --replace "-stdlib=libc++" "" ''; - configurePhase = '' - runHook preConfigure - qmake - runHook postConfigure - ''; - enableParallelBuilding = true; postInstall = '' diff --git a/pkgs/development/libraries/libmatchbox/default.nix b/pkgs/development/libraries/libmatchbox/default.nix index 38702817734..6cb7defb097 100644 --- a/pkgs/development/libraries/libmatchbox/default.nix +++ b/pkgs/development/libraries/libmatchbox/default.nix @@ -1,14 +1,15 @@ { stdenv, fetchurl, libX11, libXext, libpng, libXft, libICE, pango, libjpeg}: stdenv.mkDerivation rec { - name = "libmatchbox-1.9"; + name = "libmatchbox-${version}"; + version = "1.11"; buildInputs = [ libXft libICE pango libjpeg ]; propagatedBuildInputs = [ libX11 libXext libpng ]; src = fetchurl { - url = http://matchbox-project.org/sources/libmatchbox/1.9/libmatchbox-1.9.tar.bz2; - sha256 = "006zdrgs7rgh7dvakjmqsp1q9karq6c5cz4gki2l15fhx0cf40fv"; + url = "http://downloads.yoctoproject.org/releases/matchbox/libmatchbox/${version}/libmatchbox-${version}.tar.bz2"; + sha256 = "0lvv44s3bf96zvkysa4ansxj2ffgj3b5kgpliln538q4wd9ank15"; }; meta = { diff --git a/pkgs/development/libraries/libmemcached/default.nix b/pkgs/development/libraries/libmemcached/default.nix index 619aa014497..2570c645f26 100644 --- a/pkgs/development/libraries/libmemcached/default.nix +++ b/pkgs/development/libraries/libmemcached/default.nix @@ -19,7 +19,8 @@ stdenv.mkDerivation rec { sha256 = "1nvxwdkxj2a2g39z0g8byxjwnw4pa5xlvsmdk081q63vmfywh7zb"; }); - buildInputs = [ cyrus_sasl libevent ]; + buildInputs = [ libevent ]; + propagatedBuildInputs = [ cyrus_sasl ]; meta = with stdenv.lib; { homepage = http://libmemcached.org; diff --git a/pkgs/development/libraries/libqglviewer/default.nix b/pkgs/development/libraries/libqglviewer/default.nix index 6b40eeb3b1f..eef9e05ca03 100644 --- a/pkgs/development/libraries/libqglviewer/default.nix +++ b/pkgs/development/libraries/libqglviewer/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4 }: +{ stdenv, fetchurl, qt4, qmake4Hook }: stdenv.mkDerivation rec { name = "libqglviewer-2.6.3"; @@ -9,13 +9,11 @@ stdenv.mkDerivation rec { sha256 = "00jdkyk4wg1356c3ar6nk3hyp494ya3yvshq9m57kfmqpn3inqdy"; }; - buildInputs = [ qt4 ]; + buildInputs = [ qt4 qmake4Hook ]; - buildPhase = + postPatch = '' cd QGLViewer - qmake PREFIX=$out - make ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/libraw/default.nix b/pkgs/development/libraries/libraw/default.nix index 031886d3451..ee842b0c4bd 100644 --- a/pkgs/development/libraries/libraw/default.nix +++ b/pkgs/development/libraries/libraw/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libraw-${version}"; - version = "0.17.0"; + version = "0.17.1"; src = fetchurl { url = "http://www.libraw.org/data/LibRaw-${version}.tar.gz"; - sha256 = "043kckxjqanw8dl3m9f6kvsf0l20ywxmgxd1xb0slj6m8l4w4hz6"; + sha256 = "18fygk896gxbx47nh2rn5jp4skisgkl6pdfjqb7h0zn39hd6b6g5"; }; buildInputs = [ lcms2 jasper ]; diff --git a/pkgs/development/libraries/libsearpc/default.nix b/pkgs/development/libraries/libsearpc/default.nix index 0410f64edec..0391786c3fd 100644 --- a/pkgs/development/libraries/libsearpc/default.nix +++ b/pkgs/development/libraries/libsearpc/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { - version = "1.2.2"; - seafileVersion = "3.0-latest"; + version = "3.0.7"; + seafileVersion = "5.0.7"; name = "libsearpc-${version}"; src = fetchurl { - url = "https://github.com/haiwen/libsearpc/archive/v${seafileVersion}.tar.gz"; - sha256 = "1kdq6chn3qhvr616sw91gf9kjfgbv9snl2srqisw0zddw1qkfcan"; + url = "https://github.com/haiwen/libsearpc/archive/v${version}.tar.gz"; + sha256 = "0fdrgksdwd4qxp7qvh75y39dy52h2f5wfjbqr00h3rwkbx4npvpg"; }; patches = [ ./libsearpc.pc.patch ]; diff --git a/pkgs/development/libraries/libsigcxx/default.nix b/pkgs/development/libraries/libsigcxx/default.nix index 1171fa079cf..e062e2db5c2 100644 --- a/pkgs/development/libraries/libsigcxx/default.nix +++ b/pkgs/development/libraries/libsigcxx/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, fetchpatch, pkgconfig, gnum4 }: let - ver_maj = "2.6"; # odd major numbers are unstable - ver_min = "2"; + ver_maj = "2.8"; # odd major numbers are unstable + ver_min = "0"; in stdenv.mkDerivation rec { name = "libsigc++-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://gnome/sources/libsigc++/${ver_maj}/${name}.tar.xz"; - sha256 = "fdace7134c31de792c17570f9049ca0657909b28c4c70ec4882f91a03de54437"; + sha256 = "0lcnzzdq6718znfshs1hflpwqq6awbzwdyp4kv5lfaf54z880jbp"; }; patches = [(fetchpatch { url = "https://anonscm.debian.org/cgit/collab-maint/libsigc++-2.0.git/plain" diff --git a/pkgs/development/libraries/libsolv/default.nix b/pkgs/development/libraries/libsolv/default.nix new file mode 100644 index 00000000000..cece520e3c5 --- /dev/null +++ b/pkgs/development/libraries/libsolv/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchFromGitHub, cmake, zlib, expat, rpm, db }: + +stdenv.mkDerivation rec { + rev = "0.6.20"; + name = "libsolv-${rev}"; + + src = fetchFromGitHub { + inherit rev; + owner = "openSUSE"; + repo = "libsolv"; + sha256 = "1gammarbnjbbkw2vlgcj9ynp1kgi5nns6xcl6ab8b5i4zgq91v2p"; + }; + + cmakeFlags = "-DENABLE_RPMMD=true -DENABLE_RPMDB=true -DENABLE_PUBKEY=true -DENABLE_RPMDB_BYRPMHEADER=true"; + + buildInputs = [ cmake zlib expat rpm db ]; + + meta = with stdenv.lib; { + description = "A free package dependency solver"; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; + }; +} + diff --git a/pkgs/development/libraries/libu2f-host/default.nix b/pkgs/development/libraries/libu2f-host/default.nix index de51da51bca..dc2481a2e85 100644 --- a/pkgs/development/libraries/libu2f-host/default.nix +++ b/pkgs/development/libraries/libu2f-host/default.nix @@ -11,6 +11,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ json_c hidapi ]; + postInstall = '' + mkdir -p $out/lib/udev/rules.d/ + cp -v *.rules $out/lib/udev/rules.d/ + ''; + meta = with stdenv.lib; { homepage = https://developers.yubico.com/libu2f-host; description = "A C library and command-line tool thati mplements the host-side of the U2F protocol"; diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix index 48d12321248..e039711e457 100644 --- a/pkgs/development/libraries/libuv/default.nix +++ b/pkgs/development/libraries/libuv/default.nix @@ -2,9 +2,23 @@ , ApplicationServices, CoreServices }: -let - stable = "stable"; - unstable = "unstable"; +stdenv.mkDerivation rec { + version = "1.9.0"; + name = "libuv-${version}"; + + src = fetchFromGitHub { + owner = "libuv"; + repo = "libuv"; + rev = "v${version}"; + sha256 = "0sq8c8n7xixn2xxp35crprvh35ry18i5mcxgwh12lydwv9ks0d4k"; + }; + + buildInputs = [ automake autoconf libtool pkgconfig ] + ++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices CoreServices ]; + + preConfigure = '' + LIBTOOLIZE=libtoolize ./autogen.sh + ''; meta = with lib; { description = "A multi-platform support library with a focus on asynchronous I/O"; @@ -13,73 +27,4 @@ let platforms = with platforms; linux ++ darwin; }; - mkName = stability: version: - if stability == stable - then "libuv-${version}" - else "libuv-${stability}-${version}"; - - mkSrc = version: sha256: fetchFromGitHub { - owner = "libuv"; - repo = "libuv"; - rev = "v${version}"; - inherit sha256; - }; - - # for versions < 0.11.6 - mkWithoutAutotools = stability: version: sha256: stdenv.mkDerivation { - name = mkName stability version; - src = mkSrc version sha256; - buildPhase = lib.optionalString stdenv.isDarwin '' - mkdir extrapath - ln -s /usr/sbin/dtrace extrapath/dtrace - export PATH=$PATH:`pwd`/extrapath - '' + '' - mkdir build - make builddir_name=build - - rm -r build/src - rm build/libuv.a - cp -r include build - - mkdir build/lib - mv build/libuv.* build/lib - - pushd build/lib - lib=$(basename libuv.*) - ext="''${lib##*.}" - mv $lib libuv.10.$ext - ln -s libuv.10.$ext libuv.$ext - popd - ''; - installPhase = '' - cp -r build $out - ''; - inherit meta; - }; - - # for versions > 0.11.6 - mkWithAutotools = stability: version: sha256: stdenv.mkDerivation { - name = mkName stability version; - src = mkSrc version sha256; - buildInputs = [ automake autoconf libtool pkgconfig ] - ++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices CoreServices ]; - preConfigure = '' - LIBTOOLIZE=libtoolize ./autogen.sh - ''; - inherit meta; - }; - - toVersion = with lib; name: - replaceChars ["_"] ["."] (removePrefix "v" name); - -in - - with lib; - - mapAttrs (v: h: mkWithAutotools unstable (toVersion v) h) { - v0_11_29 = "1z07phfwryfy2155p3lxcm2a33h20sfl96lds5dghn157x6csz7m"; - } - // - mapAttrs (v: h: mkWithAutotools stable (toVersion v) h) { - v1_7_5 = "18x6cy2xn31am97vn6jli7kmb2fbp4c8kmv7jm97vggh0x55flsc"; - } +} diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index 1d1945af319..16a4498f54c 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -6,7 +6,7 @@ , dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages , curl, libiconv, gmp, xen }: - +# if you update, also bump pythonPackages.libvirt or it will break stdenv.mkDerivation rec { name = "libvirt-${version}"; version = "1.3.3"; diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix index f7e175373e1..8eedf50c9ca 100644 --- a/pkgs/development/libraries/libxml2/default.nix +++ b/pkgs/development/libraries/libxml2/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ zlib findXMLCatalogs ]; - configureFlags = "--with-python=${python}"; + configureFlags = "--with-python=${python} --exec_prefix=$dev"; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/menu-cache/default.nix b/pkgs/development/libraries/menu-cache/default.nix index 3131b6b2918..b6d187e7a0e 100644 --- a/pkgs/development/libraries/menu-cache/default.nix +++ b/pkgs/development/libraries/menu-cache/default.nix @@ -1,15 +1,17 @@ { stdenv, fetchurl, glib, pkgconfig, libfm-extra }: -let name = "menu-cache-0.7.0"; +let name = "menu-cache-1.0.1"; in stdenv.mkDerivation { inherit name; src = fetchurl { url = "mirror://sourceforge/lxde/${name}.tar.xz"; - sha256 = "0wwkk4jrcl2sp11bspabplchh4ipi1zyn39j3skyzgbm8k40gkhk"; + sha256 = "0ngxvwfj9drabqi3lyzgpi0d0za6431sy2ijb010filrj54jdiqa"; }; - buildInputs = [ glib pkgconfig libfm-extra ]; + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ glib libfm-extra ]; meta = with stdenv.lib; { homepage = "http://blog.lxde.org/?tag=menu-cache"; diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix index ad6bf8ba319..2d05861605a 100644 --- a/pkgs/development/libraries/mesa/default.nix +++ b/pkgs/development/libraries/mesa/default.nix @@ -23,7 +23,7 @@ else with { inherit (stdenv.lib) optional optionalString; }; let - version = "11.1.2"; + version = "11.1.3"; # this is the default search path for DRI drivers driverLink = "/run/opengl-driver" + optionalString stdenv.isi686 "-32"; in @@ -38,7 +38,7 @@ stdenv.mkDerivation { + head (splitString "." version) + ''.x/${version}/mesa-${version}.tar.xz'') "https://launchpad.net/mesa/trunk/${version}/+download/mesa-${version}.tar.xz" ]; - sha256 = "8f72aead896b340ba0f7a4a474bfaf71681f5d675592aec1cb7ba698e319148b"; + sha256 = "51f6658a214d75e4d9f05207586d7ed56ebba75c6b10841176fb6675efa310ac"; }; prePatch = "patchShebangs ."; diff --git a/pkgs/development/libraries/nanoflann/default.nix b/pkgs/development/libraries/nanoflann/default.nix new file mode 100644 index 00000000000..387632a890f --- /dev/null +++ b/pkgs/development/libraries/nanoflann/default.nix @@ -0,0 +1,25 @@ +{stdenv, fetchFromGitHub, cmake}: + +stdenv.mkDerivation rec { + version = "1.1.9"; + name = "nanoflann-${version}"; + + src = fetchFromGitHub { + owner = "jlblancoc"; + repo = "nanoflann"; + rev = "v${version}"; + sha256 = "1q588cf2aark45bp4ciqjiz3dkdv8dcijkhm1ybzs8qjdzz9fimn"; + }; + + buildInputs = [ cmake ]; + + doCheck = true; + checkTarget = "test"; + + meta = { + homepage = https://github.com/jlblancoc/nanoflann; + license = stdenv.lib.licenses.bsd3; + description = "Header only C++ library for approximate nearest neighbor search"; + platforms = stdenv.lib.platforms.unix; + }; +} diff --git a/pkgs/development/libraries/nghttp2/default.nix b/pkgs/development/libraries/nghttp2/default.nix index 761f6933f5c..29175fbb7d4 100644 --- a/pkgs/development/libraries/nghttp2/default.nix +++ b/pkgs/development/libraries/nghttp2/default.nix @@ -1,77 +1,36 @@ { stdenv, fetchurl, pkgconfig -# Optinal Dependencies +# Optional Dependencies , openssl ? null, libev ? null, zlib ? null, jansson ? null, boost ? null , libxml2 ? null, jemalloc ? null - -# Extra argument -, prefix ? "" }: -let - mkFlag = trueStr: falseStr: cond: name: val: - if cond == null then null else - "--${if cond != false then trueStr else falseStr}${name}${if val != null && cond != false then "=${val}" else ""}"; - mkEnable = mkFlag "enable-" "disable-"; - mkWith = mkFlag "with-" "without-"; - mkOther = mkFlag "" "" true; - - shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null; - - isLib = prefix == "lib"; - - optOpenssl = if isLib then null else shouldUsePkg openssl; - optLibev = if isLib then null else shouldUsePkg libev; - optZlib = if isLib then null else shouldUsePkg zlib; - - hasApp = optOpenssl != null && optLibev != null && optZlib != null; - - optJansson = if isLib then null else shouldUsePkg jansson; - #optBoost = if isLib then null else shouldUsePkg boost; - optBoost = null; # Currently detection is broken - optLibxml2 = if !hasApp then null else shouldUsePkg libxml2; - optJemalloc = if !hasApp then null else shouldUsePkg jemalloc; -in stdenv.mkDerivation rec { - name = "${prefix}nghttp2-${version}"; - version = "1.8.0"; + name = "nghttp2-${version}"; + version = "1.9.2"; # Don't use fetchFromGitHub since this needs a bootstrap curl src = fetchurl { url = "https://github.com/nghttp2/nghttp2/releases/download/v${version}/nghttp2-${version}.tar.bz2"; - sha256 = "10xz3s624w208pr9xgm4ammc8bc5mi17vy4357hjfd5vmmp5m8b0"; + sha256 = "1jnms0mmf73cwdqvbzpdyi974f8xq7p8bxgba2ippw70pz8y0ac0"; }; # Configure script searches for a symbol which does not exist in jemalloc on Darwin # Reported upstream in https://github.com/tatsuhiro-t/nghttp2/issues/233 - postPatch = if (stdenv.isDarwin && optJemalloc != null) then '' + postPatch = if stdenv.isDarwin && jemalloc != null then '' substituteInPlace configure --replace "malloc_stats_print" "je_malloc_stats_print" '' else null; - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ optJansson optBoost optLibxml2 optJemalloc ] - ++ stdenv.lib.optionals hasApp [ optOpenssl optLibev optZlib ]; + outputs = [ "dev" "out" "lib" ]; - configureFlags = [ - (mkEnable false "werror" null) - (mkEnable false "debug" null) - (mkEnable true "threads" null) - (mkEnable hasApp "app" null) - (mkEnable (optJansson != null) "hpack-tools" null) - (mkEnable (optBoost != null) "asio-lib" null) - (mkEnable false "examples" null) - (mkEnable false "python-bindings" null) - (mkEnable false "failmalloc" null) - (mkWith (optLibxml2 != null) "libxml2" null) - (mkWith (optJemalloc != null) "jemalloc" null) - (mkWith false "spdylay" null) - (mkWith false "cython" null) - (mkWith false "mruby" null) - ]; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ openssl libev zlib ]; + + enableParallelBuilding = true; meta = with stdenv.lib; { homepage = http://nghttp2.org/; - description = "an implementation of HTTP/2 in C"; + description = "A C implementation of HTTP/2"; license = licenses.mit; platforms = platforms.all; maintainers = with maintainers; [ wkennington ]; diff --git a/pkgs/development/libraries/nlopt/default.nix b/pkgs/development/libraries/nlopt/default.nix index 080f09dfdf4..ddf47cf31d8 100644 --- a/pkgs/development/libraries/nlopt/default.nix +++ b/pkgs/development/libraries/nlopt/default.nix @@ -16,6 +16,10 @@ stdenv.mkDerivation rec { "M_INSTALL_DIR=$(out)/${octave.sitePath}/m " + "OCT_INSTALL_DIR=$(out)/${octave.sitePath}/oct "); + preConfigure = '' + find octave -name '*.cc' | xargs sed -i 's|Octave_map|octave_map|g' + ''; + meta = { homepage = "http://ab-initio.mit.edu/nlopt/"; description = "Free open-source library for nonlinear optimization"; diff --git a/pkgs/development/libraries/ogre/default.nix b/pkgs/development/libraries/ogre/default.nix index 89d694cc497..aba02827665 100644 --- a/pkgs/development/libraries/ogre/default.nix +++ b/pkgs/development/libraries/ogre/default.nix @@ -1,11 +1,12 @@ -{ fetchurl, stdenv +{ fetchurl, stdenv, lib , cmake, mesa , freetype, freeimage, zziplib, randrproto, libXrandr , libXaw, freeglut, libXt, libpng, boost, ois , xproto, libX11, libXmu, libSM, pkgconfig , libXxf86vm, xf86vidmodeproto, libICE , renderproto, libXrender -, nvidia_cg_toolkit }: +, withNvidiaCg ? false, nvidia_cg_toolkit +, withSamples ? false }: stdenv.mkDerivation { name = "ogre-1.9-hg-20160322"; @@ -15,10 +16,10 @@ stdenv.mkDerivation { sha256 = "0w3argjy1biaxwa3c80zxxgll67wjp8czd83p87awlcvwzdk5mz9"; }; - cmakeFlags = [ "-DOGRE_INSTALL_SAMPLES=yes" ] - ++ (map (x: "-DOGRE_BUILD_PLUGIN_${x}=on") - [ "BSP" "CG" "OCTREE" "PCZ" "PFX" ]) - ++ (map (x: "-DOGRE_BUILD_RENDERSYSTEM_${x}=on") [ "GL" ]); + cmakeFlags = [ "-DOGRE_BUILD_SAMPLES=${toString withSamples}" ] + ++ map (x: "-DOGRE_BUILD_PLUGIN_${x}=on") + ([ "BSP" "OCTREE" "PCZ" "PFX" ] ++ lib.optional withNvidiaCg "CG") + ++ map (x: "-DOGRE_BUILD_RENDERSYSTEM_${x}=on") [ "GL" ]; enableParallelBuilding = true; @@ -29,8 +30,7 @@ stdenv.mkDerivation { xproto libX11 libXmu libSM pkgconfig libXxf86vm xf86vidmodeproto libICE renderproto libXrender - nvidia_cg_toolkit - ]; + ] ++ lib.optional withNvidiaCg nvidia_cg_toolkit; meta = { description = "A 3D engine"; diff --git a/pkgs/development/libraries/pcre/default.nix b/pkgs/development/libraries/pcre/default.nix index 8bce1512d13..91af6f4dadf 100644 --- a/pkgs/development/libraries/pcre/default.nix +++ b/pkgs/development/libraries/pcre/default.nix @@ -1,6 +1,5 @@ { stdenv, fetchurl , windows ? null, variant ? null, pcre -, withCharSize ? 8 }: with stdenv.lib; diff --git a/pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix b/pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix index 844c2e58009..2f588cbe708 100644 --- a/pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix +++ b/pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix @@ -1,8 +1,7 @@ -{ stdenv, fetchurl, cmake, automoc4, qt4, pkgconfig, phonon, gstreamer -, gst_plugins_base }: +{ stdenv, fetchurl, cmake, automoc4, qt4, pkgconfig, phonon, gst_all_1 }: let - version = "4.7.2"; + version = "4.8.2"; pname = "phonon-backend-gstreamer"; in @@ -11,18 +10,24 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://kde/stable/phonon/${pname}/${version}/src/${name}.tar.xz"; - sha256 = "1cfjk450aajr8hfhnfq7zbmryprxiwr9ha5x585dsh7mja82mdw0"; + sha256 = "1q1ix6zsfnh6gfnpmwp67s376m7g7ahpjl1qp2fqakzb5cgzgq10"; }; - buildInputs = [ phonon qt4 gstreamer gst_plugins_base ]; + buildInputs = with gst_all_1; [ phonon qt4 gstreamer gst-plugins-base ]; nativeBuildInputs = [ cmake automoc4 pkgconfig ]; + 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" + ]; + cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ]; meta = { homepage = http://phonon.kde.org/; description = "GStreamer backend for Phonon"; platforms = stdenv.lib.platforms.linux; - }; + maintainers = with stdenv.lib.maintainers; [ ttuegel ]; + }; } diff --git a/pkgs/development/libraries/phonon/default.nix b/pkgs/development/libraries/phonon/default.nix new file mode 100644 index 00000000000..db4c237c989 --- /dev/null +++ b/pkgs/development/libraries/phonon/default.nix @@ -0,0 +1,54 @@ +{ stdenv, fetchurl, cmake, mesa, pkgconfig, libpulseaudio +, qt4 ? null, automoc4 ? null +, qtbase ? null, qtquick1 ? null, qttools ? null +, debug ? false }: + +with stdenv.lib; + +let + v = "4.8.3"; + withQt5 = qtbase != null; +in + +assert withQt5 -> qtquick1 != null; +assert withQt5 -> qttools != null; +assert !withQt5 -> automoc4 != null; + +stdenv.mkDerivation rec { + name = "phonon-${v}"; + + 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 ]; + }; + + src = fetchurl { + url = "mirror://kde/stable/phonon/${v}/src/phonon-${v}.tar.xz"; + sha256 = "05nshngk03ln90vsjz44dx8al576f4vd5fvhs1l0jmx13jb9q551"; + }; + + buildInputs = + [ mesa libpulseaudio ] + ++ (if withQt5 then [ qtbase qtquick1 qttools ] else [ qt4 ]); + + nativeBuildInputs = + [ cmake pkgconfig ] + ++ optional (!withQt5) automoc4; + + NIX_CFLAGS_COMPILE = "-fPIC"; + + cmakeFlags = + [ "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}" ] + ++ optional withQt5 "-DPHONON_BUILD_PHONON4QT5=ON"; + + postPatch = '' + sed -i PhononConfig.cmake.in \ + -e "/get_filename_component(rootDir/ s/^.*$//" \ + -e "/^set(PHONON_INCLUDE_DIR/ s,\''${rootDir},''${!outputDev}," \ + -e "/^set(PHONON_LIBRARY_DIR/ s,\''${rootDir}/,," \ + -e "/^set(PHONON_BUILDSYSTEM_DIR/ s,\''${rootDir},''${!outputDev}," + ''; +} diff --git a/pkgs/development/libraries/phonon/qt4/default.nix b/pkgs/development/libraries/phonon/qt4/default.nix deleted file mode 100644 index 9875b216e06..00000000000 --- a/pkgs/development/libraries/phonon/qt4/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ stdenv, fetchurl, cmake, automoc4, libpulseaudio, qt4 }: - -with stdenv.lib; - -let - v = "4.8.1"; -in - -stdenv.mkDerivation rec { - name = "phonon-${v}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${v}/phonon-${v}.tar.xz"; - sha256 = "1l97h1jj3gvl1chx1qbipizfvjgqc05wrhdcflc76c2krlk03jmn"; - }; - - buildInputs = [ qt4 libpulseaudio ]; - - nativeBuildInputs = [ cmake automoc4 ]; - - 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/phonon/qt5/default.nix b/pkgs/development/libraries/phonon/qt5/default.nix deleted file mode 100644 index c7baeb2e340..00000000000 --- a/pkgs/development/libraries/phonon/qt5/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ stdenv, fetchurl, cmake, mesa, pkgconfig, libpulseaudio -, qtbase, qtquick1, qttools -, 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 qtbase qtquick1 qttools libpulseaudio ]; - - nativeBuildInputs = [ cmake pkgconfig ]; - - 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/default.nix b/pkgs/development/libraries/polkit-qt-1/default.nix deleted file mode 100644 index 3715158705c..00000000000 --- a/pkgs/development/libraries/polkit-qt-1/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ stdenv, fetchurl, cmake, pkgconfig, polkit, automoc4, glib -, qt4 ? null -, withQt5 ? false, qtbase ? null }: - -with stdenv.lib; - -assert (withQt5 -> qtbase != 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 pkgconfig ] ++ optional (!withQt5) automoc4; - - propagatedBuildInputs = [ polkit glib ] ++ [(if withQt5 then qtbase else qt4)]; - - meta = { - description = "A Qt wrapper around PolKit"; - maintainers = with stdenv.lib.maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/polkit-qt-1/qt-4.nix b/pkgs/development/libraries/polkit-qt-1/qt-4.nix new file mode 100644 index 00000000000..fa5c77aa27a --- /dev/null +++ b/pkgs/development/libraries/polkit-qt-1/qt-4.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, cmake, pkgconfig, polkit, automoc4, glib, qt4 }: + +with stdenv.lib; + +stdenv.mkDerivation { + name = "polkit-qt-1-qt4-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 pkgconfig automoc4 ]; + + propagatedBuildInputs = [ polkit glib qt4 ]; + + meta = { + description = "A Qt wrapper around PolKit"; + maintainers = with stdenv.lib.maintainers; [ ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/polkit-qt-1/qt-5.nix b/pkgs/development/libraries/polkit-qt-1/qt-5.nix new file mode 100644 index 00000000000..bdeb175b89f --- /dev/null +++ b/pkgs/development/libraries/polkit-qt-1/qt-5.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl, cmake, pkgconfig, polkit, glib, qtbase }: + +with stdenv.lib; + +stdenv.mkDerivation { + name = "polkit-qt-1-qt5-0.112.0"; + + outputs = [ "dev" "out" ]; + + src = fetchurl { + url = "mirror://kde/stable/apps/KDE4.x/admin/polkit-qt-1-0.112.0.tar.bz2"; + sha256 = "1ip78x20hjqvm08kxhp6gb8hf6k5n6sxyx6kk2yvvq53djzh7yv7"; + }; + + nativeBuildInputs = [ cmake pkgconfig ]; + + propagatedBuildInputs = [ polkit glib qtbase ]; + + postFixup = '' + # Fix library location in CMake module + sed -i "$dev/lib/cmake/PolkitQt5-1/PolkitQt5-1Config.cmake" \ + -e "s,\\(set_and_check.POLKITQT-1_LIB_DIR\\).*$,\\1 \"''${!outputLib}/lib\")," + ''; + + meta = { + description = "A Qt wrapper around PolKit"; + maintainers = with stdenv.lib.maintainers; [ ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/qmltermwidget/default.nix b/pkgs/development/libraries/qmltermwidget/default.nix index 359a4341537..1620649a3cc 100644 --- a/pkgs/development/libraries/qmltermwidget/default.nix +++ b/pkgs/development/libraries/qmltermwidget/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, qtbase, qtquick1 }: +{ stdenv, fetchgit, qtbase, qtquick1, qmakeHook }: stdenv.mkDerivation rec { version = "0.1.0"; @@ -11,19 +11,14 @@ stdenv.mkDerivation rec { }; buildInputs = [ qtbase qtquick1 ]; + nativeBuildInputs = [ qmakeHook ]; patchPhase = '' substituteInPlace qmltermwidget.pro \ --replace '$$[QT_INSTALL_QML]' "/lib/qt5/qml/" ''; - configurePhase = '' - runHook preConfigure - qmake PREFIX=$out - runHook postConfigure - ''; - - installPhase=''make INSTALL_ROOT="$out" install''; + installFlags = [ "INSTALL_ROOT=$(out)" ]; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/qoauth/default.nix b/pkgs/development/libraries/qoauth/default.nix index f93e4479e71..5a448d33067 100644 --- a/pkgs/development/libraries/qoauth/default.nix +++ b/pkgs/development/libraries/qoauth/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4, qca2 }: +{ stdenv, fetchurl, qt4, qca2, qmake4Hook }: stdenv.mkDerivation { name = "qoauth-1.0.1"; @@ -9,13 +9,13 @@ stdenv.mkDerivation { sha256 = "1ax0g4dd49a3a1699ams13bkhz690xfwqg8rxp1capbdpf2aa8cp"; }; - configurePhase = "qmake PREFIX=$prefix"; patchPhase = "sed -e 's/lib64/lib/g' -i src/src.pro"; buildInputs = [ qt4 qca2 ]; + nativeBuildInputs = [ qmake4Hook ]; - NIX_CFLAGS_COMPILE="-I${qca2}/include/QtCrypto"; - NIX_LDFLAGS = "-lqca"; + NIX_CFLAGS_COMPILE = [ "-I${qca2}/include/QtCrypto" ]; + NIX_LDFLAGS = [ "-lqca" ]; meta = { description = "Qt library for OAuth authentication"; diff --git a/pkgs/development/libraries/qscintilla/default.nix b/pkgs/development/libraries/qscintilla/default.nix index 26d412e5a8c..bc44f53fa6e 100644 --- a/pkgs/development/libraries/qscintilla/default.nix +++ b/pkgs/development/libraries/qscintilla/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt }: +{ stdenv, fetchurl, qt4, qmake4Hook }: stdenv.mkDerivation rec { pname = "qscintilla"; @@ -11,7 +11,8 @@ stdenv.mkDerivation rec { sha256 = "d7c32e32582f93779de861006d87467b38b9ebc06e3d0b32e981cb24369fa417"; }; - buildInputs = [ qt ]; + buildInputs = [ qt4 ]; + nativeBuildInputs = [ qmake4Hook ]; preConfigure = '' cd Qt4Qt5 @@ -20,7 +21,6 @@ stdenv.mkDerivation rec { -e "s,\$\$\\[QT_INSTALL_TRANSLATIONS\\],$out/share/qt/translations," \ -e "s,\$\$\\[QT_INSTALL_DATA\\],$out/share/qt," \ qscintilla.pro - qmake qscintilla.pro ''; meta = { 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 788fb874140..65d45923e5a 100644 --- a/pkgs/development/libraries/qt-4.x/4.8/default.nix +++ b/pkgs/development/libraries/qt-4.x/4.8/default.nix @@ -11,6 +11,8 @@ , docs ? false , examples ? false , demos ? false +# darwin support +, cf-private, libobjc, ApplicationServices, OpenGL, Cocoa, AGL, libcxx }: with stdenv.lib; @@ -114,7 +116,7 @@ stdenv.mkDerivation rec { -no-phonon ${if buildWebkit then "" else "-no"}-webkit ${if buildMultimedia then "" else "-no"}-multimedia -audio-backend ${if developerBuild then "-developer-build" else ""} - ''; + '' + optionalString stdenv.isDarwin "-platform unsupported/macx-clang-libc++"; propagatedBuildInputs = [ libXrender libXrandr libXinerama libXcursor libXext libXfixes libXv libXi @@ -129,14 +131,16 @@ stdenv.mkDerivation rec { [ cups # Qt dlopen's libcups instead of linking to it postgresql sqlite libjpeg libmng libtiff icu ] ++ optionals (mysql != null) [ mysql.lib ] - ++ optionals gtkStyle [ gtk gdk_pixbuf ]; + ++ optionals gtkStyle [ gtk gdk_pixbuf ] + ++ optionals stdenv.isDarwin [ cf-private ApplicationServices OpenGL Cocoa AGL libcxx libobjc ]; nativeBuildInputs = [ perl pkgconfig which ]; enableParallelBuilding = false; NIX_CFLAGS_COMPILE = optionalString (stdenv.isFreeBSD || stdenv.isDarwin) - "-I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include"; + "-I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include" + + optionalString stdenv.isDarwin " -I${libcxx}/include/c++/v1"; NIX_LDFLAGS = optionalString (stdenv.isFreeBSD || stdenv.isDarwin) "-lglib-2.0"; @@ -145,6 +149,8 @@ stdenv.mkDerivation rec { # resolve "extra qualification on member" error sed -i 's/struct ::TabletProximityRec;/struct TabletProximityRec;/' \ src/gui/kernel/qt_cocoa_helpers_mac_p.h + find . -name "Makefile*" | xargs sed -i 's/^\(LINK[[:space:]]* = clang++\)/\1 ${NIX_LDFLAGS}/' + sed -i 's/^\(LIBS[[:space:]]*=.*$\)/\1 -lobjc/' ./src/corelib/Makefile.Release ''; crossAttrs = let diff --git a/pkgs/development/libraries/qt-4.x/4.8/qmake-hook.sh b/pkgs/development/libraries/qt-4.x/4.8/qmake-hook.sh new file mode 100644 index 00000000000..bf716a72d0f --- /dev/null +++ b/pkgs/development/libraries/qt-4.x/4.8/qmake-hook.sh @@ -0,0 +1,11 @@ +qmakeConfigurePhase() { + runHook preConfigure + + $QMAKE PREFIX=$out $qmakeFlags + + runHook postConfigure +} + +export QMAKE=@qt4@/bin/qmake + +configurePhase=qmakeConfigurePhase diff --git a/pkgs/development/libraries/qt-5/5.4/default.nix b/pkgs/development/libraries/qt-5/5.4/default.nix index df2fb8ad186..950129ba541 100644 --- a/pkgs/development/libraries/qt-5/5.4/default.nix +++ b/pkgs/development/libraries/qt-5/5.4/default.nix @@ -37,12 +37,10 @@ let inherit src; propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []); - nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ self.fixQtModuleCMakeConfig ]; + nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ self.fixQtModuleCMakeConfig self.qmakeHook ]; NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true; - dontAddPrefix = args.dontAddPrefix or true; dontFixLibtool = args.dontFixLibtool or true; - configureScript = args.configureScript or "qmake"; outputs = args.outputs or [ "dev" "out" ]; setOutputFlags = false; @@ -109,6 +107,7 @@ let makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; fixQtModuleCMakeConfig = makeSetupHook { } ./fix-qt-module-cmake-config.sh; + qmakeHook = makeSetupHook { substitutions = { qt_dev = qtbase.dev; lndir = pkgs.xorg.lndir; }; } ./qmake-hook.sh; }; diff --git a/pkgs/development/libraries/qt-5/5.4/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.4/qmake-hook.sh new file mode 100644 index 00000000000..a38f9f578e3 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qmake-hook.sh @@ -0,0 +1,101 @@ +if [[ -z "$QMAKE" ]]; then + +_qtLinkDependencyDir() { + @lndir@/bin/lndir -silent "$1/$2" "$qtOut/$2" + if [ -n "$NIX_QT_SUBMODULE" ]; then + find "$1/$2" -printf "$2/%P\n" >> "$out/nix-support/qt-inputs" + fi +} + +_qtLinkModule() { + if [ -d "$1/mkspecs" ]; then + # $1 is a Qt module + _qtLinkDependencyDir "$1" mkspecs + + for dir in bin include lib share; do + if [ -d "$1/$dir" ]; then + _qtLinkDependencyDir "$1" "$dir" + fi + done + fi +} + +_qtRmModules() { + cat "$out/nix-support/qt-inputs" | while read file; do + if [ -h "$out/$file" ]; then + rm "$out/$file" + fi + done + + cat "$out/nix-support/qt-inputs" | while read file; do + if [ -d "$out/$file" ]; then + rmdir --ignore-fail-on-non-empty -p "$out/$file" + fi + done + + rm "$out/nix-support/qt-inputs" +} + +_qtRmQmake() { + rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf" +} + +_qtSetQmakePath() { + export PATH="$qtOut/bin${PATH:+:}$PATH" +} + +_qtMultioutModuleDevs() { + # We cannot simply set these paths in configureFlags because libQtCore retains + # references to the paths it was built with. + moveToOutput "bin" "${!outputDev}" + moveToOutput "include" "${!outputDev}" + + # The destination directory must exist or moveToOutput will do nothing + mkdir -p "${!outputDev}/share" + moveToOutput "share/doc" "${!outputDev}" +} + +qmakeConfigurePhase() { + runHook preConfigure + + qmake PREFIX=$out $qmakeFlags + + runHook postConfigure +} + +qtOut="" +if [[ -z "$NIX_QT_SUBMODULE" ]]; then + qtOut=`mktemp -d` +else + qtOut=$out +fi + +mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share" + +cp "@qt_dev@/bin/qmake" "$qtOut/bin" +cat >"$qtOut/bin/qt.conf" <> "$out/nix-support/qt-inputs" - fi -} - -_qtLinkModule() { - if [ -d "$1/mkspecs" ]; then - # $1 is a Qt module - _qtLinkDependencyDir "$1" mkspecs - - for dir in bin include lib share; do - if [ -d "$1/$dir" ]; then - _qtLinkDependencyDir "$1" "$dir" - fi - done - fi -} - -_qtRmModules() { - cat "$out/nix-support/qt-inputs" | while read file; do - if [[ -h "$out/$file" ]]; then - rm "$out/$file" - fi - done - - cat "$out/nix-support/qt-inputs" | while read file; do - if [[ -d "$out/$file" ]]; then - rmdir --ignore-fail-on-non-empty -p "$out/$file" - fi - done - - rm "$out/nix-support/qt-inputs" -} - addToSearchPathOnceWithCustomDelimiter() { local delim="$1" local search="$2" @@ -43,11 +5,14 @@ addToSearchPathOnceWithCustomDelimiter() { local dirs local exported IFS="$delim" read -a dirs <<< "${!search}" - for dir in ${dirs[@]}; do - if [ "z$dir" == "z$target" ]; then exported=1; fi - done - if [ -z $exported ]; then - eval "export ${search}=\"${!search}${!search:+$delim}$target\"" + local canonical + if canonical=$(readlink -e "$target"); then + for dir in ${dirs[@]}; do + if [ "z$dir" == "z$canonical" ]; then exported=1; fi + done + if [ -z $exported ]; then + eval "export ${search}=\"${!search}${!search:+$delim}$canonical\"" + fi fi } @@ -63,6 +28,7 @@ _qtPropagateRuntimeDependencies() { for dir in "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports"; do if [ -d "$1/$dir" ]; then propagateOnce propagatedBuildInputs "$1" + propagateOnce propagatedUserEnvPkgs "$1" break fi done @@ -71,63 +37,14 @@ _qtPropagateRuntimeDependencies() { addToSearchPathOnce QML2_IMPORT_PATH "$1/lib/qt5/qml" } -_qtRmQmake() { - rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf" -} - -_qtSetQmakePath() { - export PATH="$qtOut/bin${PATH:+:}$PATH" -} - -_qtMultioutModuleDevs() { - # We cannot simply set these paths in configureFlags because libQtCore retains - # references to the paths it was built with. - moveToOutput "bin" "${!outputDev}" - moveToOutput "include" "${!outputDev}" - - # The destination directory must exist or moveToOutput will do nothing - mkdir -p "${!outputDev}/share" - moveToOutput "share/doc" "${!outputDev}" -} +envHooks+=(_qtPropagateRuntimeDependencies) _qtMultioutDevs() { # This is necessary whether the package is a Qt module or not moveToOutput "mkspecs" "${!outputDev}" } -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 "@dev@/bin/qmake" "$qtOut/bin" -cat >"$qtOut/bin/qt.conf" <> "$out/nix-support/qt-inputs" + fi +} + +_qtLinkModule() { + if [ -d "$1/mkspecs" ]; then + # $1 is a Qt module + _qtLinkDependencyDir "$1" mkspecs + + for dir in bin include lib share; do + if [ -d "$1/$dir" ]; then + _qtLinkDependencyDir "$1" "$dir" + fi + done + fi +} + +_qtRmModules() { + cat "$out/nix-support/qt-inputs" | while read file; do + if [ -h "$out/$file" ]; then + rm "$out/$file" + fi + done + + cat "$out/nix-support/qt-inputs" | while read file; do + if [ -d "$out/$file" ]; then + rmdir --ignore-fail-on-non-empty -p "$out/$file" + fi + done + + rm "$out/nix-support/qt-inputs" +} + +_qtRmQmake() { + rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf" +} + +_qtSetQmakePath() { + export PATH="$qtOut/bin${PATH:+:}$PATH" +} + +_qtMultioutModuleDevs() { + # We cannot simply set these paths in configureFlags because libQtCore retains + # references to the paths it was built with. + moveToOutput "bin" "${!outputDev}" + moveToOutput "include" "${!outputDev}" + + # The destination directory must exist or moveToOutput will do nothing + mkdir -p "${!outputDev}/share" + moveToOutput "share/doc" "${!outputDev}" +} + +qmakeConfigurePhase() { + runHook preConfigure + + qmake PREFIX=$out $qmakeFlags + + runHook postConfigure +} + +qtOut="" +if [[ -z "$NIX_QT_SUBMODULE" ]]; then + qtOut=`mktemp -d` +else + qtOut=$out +fi + +mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share" + +cp "@qt_dev@/bin/qmake" "$qtOut/bin" +cat >"$qtOut/bin/qt.conf" <append("/lib/qt5/plugins"); -+ QString canonicalPath = QDir(*it).canonicalPath(); -+ if (!canonicalPath.isEmpty() -+ && !app_libpaths->contains(canonicalPath)) { -+ app_libpaths->append(canonicalPath); -+ } ++ const QByteArrayList profiles = qgetenv("NIX_PROFILES").split(' '); ++ const QString plugindir = QString::fromLatin1("/lib/qt5/plugins"); ++ Q_FOREACH (const QByteArray &profile, profiles) { ++ if (!profile.isEmpty()) { ++ app_libpaths->append(QFile::decodeName(profile) + plugindir); + } + } } diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh index 9cf1ef9ccb6..a9c4fbc855f 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh @@ -1,41 +1,3 @@ -if [[ -z "$QMAKE" ]]; then - -_qtLinkDependencyDir() { - @lndir@/bin/lndir -silent "$1/$2" "$qtOut/$2" - if [[ -n "$NIX_QT_SUBMODULE" ]]; then - find "$1/$2" -printf "$2/%P\n" >> "$out/nix-support/qt-inputs" - fi -} - -_qtLinkModule() { - if [ -d "$1/mkspecs" ]; then - # $1 is a Qt module - _qtLinkDependencyDir "$1" mkspecs - - for dir in bin include lib share; do - if [ -d "$1/$dir" ]; then - _qtLinkDependencyDir "$1" "$dir" - fi - done - fi -} - -_qtRmModules() { - cat "$out/nix-support/qt-inputs" | while read file; do - if [[ -h "$out/$file" ]]; then - rm "$out/$file" - fi - done - - cat "$out/nix-support/qt-inputs" | while read file; do - if [[ -d "$out/$file" ]]; then - rmdir --ignore-fail-on-non-empty -p "$out/$file" - fi - done - - rm "$out/nix-support/qt-inputs" -} - addToSearchPathOnceWithCustomDelimiter() { local delim="$1" local search="$2" @@ -43,11 +5,14 @@ addToSearchPathOnceWithCustomDelimiter() { local dirs local exported IFS="$delim" read -a dirs <<< "${!search}" - for dir in ${dirs[@]}; do - if [ "z$dir" == "z$target" ]; then exported=1; fi - done - if [ -z $exported ]; then - eval "export ${search}=\"${!search}${!search:+$delim}$target\"" + local canonical + if canonical=$(readlink -e "$target"); then + for dir in ${dirs[@]}; do + if [ "z$dir" == "z$canonical" ]; then exported=1; fi + done + if [ -z $exported ]; then + eval "export ${search}=\"${!search}${!search:+$delim}$canonical\"" + fi fi } @@ -72,63 +37,14 @@ _qtPropagateRuntimeDependencies() { addToSearchPathOnce QML2_IMPORT_PATH "$1/lib/qt5/qml" } -_qtRmQmake() { - rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf" -} - -_qtSetQmakePath() { - export PATH="$qtOut/bin${PATH:+:}$PATH" -} - -_qtMultioutModuleDevs() { - # We cannot simply set these paths in configureFlags because libQtCore retains - # references to the paths it was built with. - moveToOutput "bin" "${!outputDev}" - moveToOutput "include" "${!outputDev}" - - # The destination directory must exist or moveToOutput will do nothing - mkdir -p "${!outputDev}/share" - moveToOutput "share/doc" "${!outputDev}" -} +envHooks+=(_qtPropagateRuntimeDependencies) _qtMultioutDevs() { # This is necessary whether the package is a Qt module or not moveToOutput "mkspecs" "${!outputDev}" } -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 "@dev@/bin/qmake" "$qtOut/bin" -cat >"$qtOut/bin/qt.conf" < readline != null && ncurses != null; stdenv.mkDerivation { - name = "sqlite-3.11.1"; + name = "sqlite-3.12.2"; src = fetchurl { - url = "http://sqlite.org/2016/sqlite-autoconf-3110100.tar.gz"; - sha1 = "c4b4dcd735a4daf5a2e2bb90f374484c8d4dad29"; + url = "http://sqlite.org/2016/sqlite-autoconf-3120200.tar.gz"; + sha1 = "b43c2e7238e54c50b95fbbd85c48792f4f39af8c"; }; outputs = [ "dev" "out" "bin" ]; diff --git a/pkgs/development/libraries/sqlite/sqlite3_analyzer.nix b/pkgs/development/libraries/sqlite/sqlite3_analyzer.nix index 4e5d360aea0..d3e1a6dc17e 100644 --- a/pkgs/development/libraries/sqlite/sqlite3_analyzer.nix +++ b/pkgs/development/libraries/sqlite/sqlite3_analyzer.nix @@ -1,7 +1,7 @@ { lib, stdenv, fetchurl, unzip, tcl }: stdenv.mkDerivation { - name = "sqlite3_analzer-3.8.10.1"; + name = "sqlite3_analyzer-3.8.10.1"; src = fetchurl { url = "https://www.sqlite.org/2015/sqlite-src-3081001.zip"; diff --git a/pkgs/development/libraries/telepathy/glib/default.nix b/pkgs/development/libraries/telepathy/glib/default.nix index 9167ecc76d4..bb187ce1202 100644 --- a/pkgs/development/libraries/telepathy/glib/default.nix +++ b/pkgs/development/libraries/telepathy/glib/default.nix @@ -2,11 +2,11 @@ , gobjectIntrospection, valaSupport ? true, vala }: stdenv.mkDerivation rec { - name = "telepathy-glib-0.24.0"; + name = "telepathy-glib-0.24.1"; src = fetchurl { url = "${meta.homepage}/releases/telepathy-glib/${name}.tar.gz"; - sha256 = "ae0002134991217f42e503c43dea7817853afc18863b913744d51ffa029818cf"; + sha256 = "1symyzbjmxvksn2ifdkk50lafjm2llf2sbmky062gq2pz3cg23cy"; }; configureFlags = stdenv.lib.optional valaSupport "--enable-vala-bindings"; diff --git a/pkgs/development/libraries/tsocks/default.nix b/pkgs/development/libraries/tsocks/default.nix index 778762f1bf8..149b2260792 100644 --- a/pkgs/development/libraries/tsocks/default.nix +++ b/pkgs/development/libraries/tsocks/default.nix @@ -1,4 +1,5 @@ { stdenv, fetchurl }: + stdenv.mkDerivation rec { name = "tsocks-${version}"; version = "1.8beta5"; @@ -16,11 +17,19 @@ stdenv.mkDerivation rec { export configureFlags="$configureFlags --libdir=$out/lib" ''; + preBuild = '' + # We don't need the saveme binary, it is in fact never stored and we're + # never injecting stuff into ld.so.preload anyway + sed -i \ + -e "s,TARGETS=\(.*\)..SAVE.\(.*\),TARGETS=\1\2," \ + -e "/SAVE/d" Makefile + ''; + meta = with stdenv.lib; { description = "Transparent SOCKS v4 proxying library"; homepage = http://tsocks.sourceforge.net/; license = stdenv.lib.licenses.gpl2; maintainers = with maintainers; [ edwtjo phreedom ]; - platforms = platforms.linux; + platforms = platforms.unix; }; -} \ No newline at end of file +} diff --git a/pkgs/development/libraries/v8/3.16.14.nix b/pkgs/development/libraries/v8/3.16.14.nix index c79357cd907..d9addab3030 100644 --- a/pkgs/development/libraries/v8/3.16.14.nix +++ b/pkgs/development/libraries/v8/3.16.14.nix @@ -3,7 +3,10 @@ assert readline != null; let - arch = if stdenv.is64bit then "x64" else "ia32"; + arch = if stdenv.isArm + then (if stdenv.is64bit then "arm64" else "arm") + else (if stdenv.is64bit then "x64" else "ia32"); + armHardFloat = stdenv.isArm && (stdenv.platform.gcc.float or null) == "hard"; in stdenv.mkDerivation rec { @@ -34,6 +37,7 @@ stdenv.mkDerivation rec { -Dconsole=readline \ -Dcomponent=shared_library \ -Dv8_target_arch=${arch} \ + ${lib.optionalString armHardFloat "-Dv8_use_arm_eabi_hardfloat=true"} \ --depth=. -Ibuild/standalone.gypi \ build/all.gyp ''; diff --git a/pkgs/development/libraries/v8/4.5.nix b/pkgs/development/libraries/v8/4.5.nix index 50fc2b7b0d9..065b656147d 100644 --- a/pkgs/development/libraries/v8/4.5.nix +++ b/pkgs/development/libraries/v8/4.5.nix @@ -122,8 +122,8 @@ stdenv.mkDerivation rec { install -vD out/Release/mksnapshot "$out/bin/mksnapshot" ${if stdenv.isDarwin then '' install -vD out/Release/lib.target/libv8.dylib "$out/lib/libv8.dylib" - install_name_tool -change /usr/local/lib/libv8.dylib $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc}/lib/libgcc_s.1.dylib $out/bin/d8 - install_name_tool -id $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc}/lib/libgcc_s.1.dylib $out/lib/libv8.dylib + install_name_tool -change /usr/local/lib/libv8.dylib $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc.lib}/lib/libgcc_s.1.dylib $out/bin/d8 + install_name_tool -id $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc.lib}/lib/libgcc_s.1.dylib $out/lib/libv8.dylib '' else '' install -vD out/Release/lib.target/libv8.so "$out/lib/libv8.so" ''} diff --git a/pkgs/development/libraries/v8/generic.nix b/pkgs/development/libraries/v8/generic.nix index 349b35549b6..d603fda3225 100644 --- a/pkgs/development/libraries/v8/generic.nix +++ b/pkgs/development/libraries/v8/generic.nix @@ -67,8 +67,8 @@ stdenv.mkDerivation rec { ''; postFixup = if stdenv.isDarwin then '' - install_name_tool -change /usr/local/lib/libv8.dylib $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc}/lib/libgcc_s.1.dylib $out/bin/d8 - install_name_tool -id $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc}/lib/libgcc_s.1.dylib $out/lib/libv8.dylib + install_name_tool -change /usr/local/lib/libv8.dylib $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc.lib}/lib/libgcc_s.1.dylib $out/bin/d8 + install_name_tool -id $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc.lib}/lib/libgcc_s.1.dylib $out/lib/libv8.dylib '' else null; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/xalanc/default.nix b/pkgs/development/libraries/xalanc/default.nix new file mode 100644 index 00000000000..8284fd7707f --- /dev/null +++ b/pkgs/development/libraries/xalanc/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, xercesc }: + +stdenv.mkDerivation rec { + name = "xalan-c-${version}"; + version = "1.11"; + + src = fetchurl { + url = "http://www.eu.apache.org/dist/xalan/xalan-c/sources/xalan_c-${version}-src.tar.gz"; + sha256 = "0a3a2b15vpacnqgpp6fiy1pwyc8q6ywzvyb5445f6wixfdspypjg"; + }; + + configurePhase = '' + export XALANCROOT=`pwd`/c + cd `pwd`/c + mkdir -p $out/usr + ./runConfigure -p linux -c gcc -x g++ -P$out/usr + ''; + + buildInputs = [ xercesc ]; + + meta = { + homepage = http://xalan.apache.org/; + description = "A XSLT processor for transforming XML documents"; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.jagajaga ]; + }; +} diff --git a/pkgs/development/libraries/xml-security-c/default.nix b/pkgs/development/libraries/xml-security-c/default.nix new file mode 100644 index 00000000000..1932acbd7ed --- /dev/null +++ b/pkgs/development/libraries/xml-security-c/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchurl, xalanc, xercesc, openssl, pkgconfig }: + +stdenv.mkDerivation rec { + name = "xml-security-c-${version}"; + version = "1.7.3"; + + src = fetchurl { + url = "http://www.apache.org/dist/santuario/c-library/${name}.tar.gz"; + sha256 = "e5226e7319d44f6fd9147a13fb853f5c711b9e75bf60ec273a0ef8a190592583"; + }; + + patchPhase = '' + mkdir -p xsec/yes/lib + sed -i -e 's/-O2 -DNDEBUG/-DNDEBUG/g' configure + ''; + + configurePhase = '' + ./configure --prefix=$out \ + --with-openssl \ + --with-xerces \ + --with-xalan \ + --disable-static + ''; + + buildInputs = [ xalanc xercesc openssl pkgconfig ]; + + meta = { + homepage = http://santuario.apache.org/; + description = "C++ Implementation of W3C security standards for XML"; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.jagajaga ]; + }; +} diff --git a/pkgs/development/libraries/xsd/default.nix b/pkgs/development/libraries/xsd/default.nix new file mode 100644 index 00000000000..bef2e46e073 --- /dev/null +++ b/pkgs/development/libraries/xsd/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchurl, xercesc }: + +let + fixed_paths = ''LDFLAGS="-L${xercesc}/lib" CPPFLAGS="-I${xercesc}/include"''; +in +stdenv.mkDerivation rec { + name = "xsd-${version}"; + version = "4.0.0"; + + src = fetchurl { + url = "http://codesynthesis.com/download/xsd/4.0/xsd-4.0.0+dep.tar.bz2"; + sha256 = "05wqhmd5cd4pdky8i8qysnh96d2h16ly8r73whmbxkajiyf2m9gc"; + }; + + patches = [ ./xsdcxx.patch ]; + + configurePhase = '' + patchShebangs . + ''; + + buildPhase = '' + make ${fixed_paths} + ''; + + buildInputs = [ xercesc ]; + + installPhase = '' + make ${fixed_paths} install_prefix="$out" install + ''; + + meta = { + homepage = http://www.codesynthesis.com/products/xsd; + description = "An open-source, cross-platform W3C XML Schema to C++ data binding compiler"; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.jagajaga ]; + }; +} diff --git a/pkgs/development/libraries/xsd/xsdcxx.patch b/pkgs/development/libraries/xsd/xsdcxx.patch new file mode 100644 index 00000000000..88a893c6e60 --- /dev/null +++ b/pkgs/development/libraries/xsd/xsdcxx.patch @@ -0,0 +1,126 @@ +--- xsd-4.0.0+dep/xsd/doc/xsd.1~ 2014-09-14 12:25:36.862267587 +0000 ++++ xsd-4.0.0+dep/xsd/doc/xsd.1 2014-09-14 12:28:25.728229892 +0000 +@@ -1,16 +1,16 @@ + .\" Process this file with +-.\" groff -man -Tascii xsd.1 ++.\" groff -man -Tascii xsdcxx.1 + .\" + .TH XSD 1 "July 2014" "XSD 4.0.0" + .SH NAME +-xsd \- W3C XML Schema to C++ Compiler ++xsdcxx \- W3C XML Schema to C++ Compiler + .\" + .\" + .\" + .\"-------------------------------------------------------------------- + .SH SYNOPSIS + .\"-------------------------------------------------------------------- +-.B xsd ++.B xsdcxx + .I command + .B [ + .I options +@@ -20,19 +20,19 @@ + .I file + .B ...] + .in +-.B xsd help ++.B xsdcxx help + .B [ + .I command + .B ] + .in +-.B xsd version ++.B xsdcxx version + .\" + .\" + .\" + .\"-------------------------------------------------------------------- + .SH DESCRIPTION + .\"-------------------------------------------------------------------- +-.B xsd ++.B xsdcxx + generates vocabulary-specific, statically-typed C++ mapping from W3C XML + Schema definitions. Particular mapping to produce is selected by a + .IR command . +@@ -96,7 +96,7 @@ + .PP + .RS + .RS 3 +-.B xsd help ++.B xsdcxx help + .I command + .RE + .PP +@@ -206,7 +206,7 @@ + \fIfilename\fP \fInamespace\fP + + For example, if you have file \fBhello\.xsd\fP with namespace +-\fBhttp://example\.com/hello\fP and you run \fBxsd\fP on this file, then the ++\fBhttp://example\.com/hello\fP and you run \fBxsdcxx\fP on this file, then the + string in question will be: + + \fBhello\.xsd\. http://example\.com/hello\fP +@@ -1632,7 +1632,7 @@ + .\" + .SH DIAGNOSTICS + If the input file is not a valid W3C XML Schema definition, +-.B xsd ++.B xsdcxx + will issue diagnostic messages to + .B STDERR + and exit with non-zero exit code. +--- xsd-4.0.0+dep/xsd/doc/xsd.xhtml~ 2014-09-14 12:28:37.731513138 +0000 ++++ xsd-4.0.0+dep/xsd/doc/xsd.xhtml 2014-09-14 12:30:11.277789610 +0000 +@@ -50,19 +50,19 @@ + +

NAME

+ +-

xsd - W3C XML Schema to C++ Compiler

++

xsdcxx - W3C XML Schema to C++ Compiler

+ +

SYNOPSIS

+ +
+-
xsd command [options] file [file ...]
+-
xsd help [command]
+-
xsd version
++
xsdcxx command [options] file [file ...]
++
xsdcxx help [command]
++
xsdcxx version
+
+ +

DESCRIPTION

+ +-

xsd generates vocabulary-specific, statically-typed ++

xsdcxx generates vocabulary-specific, statically-typed + C++ mapping from W3C XML Schema definitions. Particular mapping to + produce is selected by a command. Each mapping has + a number of mapping-specific options that should +@@ -104,7 +104,7 @@ + +

help
+
Print usage information and exit. Use +-

xsd help command

++

xsdcxx help command

+ for command-specific help. +
+ +@@ -219,7 +219,7 @@ + +

For example, if you have file hello.xsd with + namespace http://example.com/hello and you run +- xsd on this file, then the string in question will ++ xsdcxx on this file, then the string in question will + be:

+ +

hello.xsd. http://example.com/hello

+@@ -1530,7 +1530,7 @@ +

DIAGNOSTICS

+ +

If the input file is not a valid W3C XML Schema definition, +- xsd will issue diagnostic messages to STDERR ++ xsdcxx will issue diagnostic messages to STDERR + and exit with non-zero exit code.

+ +

BUGS

diff --git a/pkgs/development/misc/amdapp-sdk/default.nix b/pkgs/development/misc/amdapp-sdk/default.nix index 81b40bc78ac..acd71d65c0e 100644 --- a/pkgs/development/misc/amdapp-sdk/default.nix +++ b/pkgs/development/misc/amdapp-sdk/default.nix @@ -87,7 +87,7 @@ in stdenv.mkDerivation rec { # Create wrappers patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/bin/clinfo - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib $out/bin/clinfo + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib $out/bin/clinfo # Fix modes find "$out/" -type f -exec chmod 644 {} \; diff --git a/pkgs/development/misc/windows-sdk/builder.sh b/pkgs/development/misc/windows-sdk/builder.sh deleted file mode 100644 index 8f1eaffbcaf..00000000000 --- a/pkgs/development/misc/windows-sdk/builder.sh +++ /dev/null @@ -1,35 +0,0 @@ -source $stdenv/setup - -mkdir -p $out - -n=1 -for p in $srcs; do - ln -s $p PSDK-FULL.$n.cab - n=$((n + 1)) -done - -mkdir tmp -cd tmp -cabextract ../PSDK-FULL.1.cab - -mkdir tmp -cd tmp -for i in ../Setup/*.cab; do - cabextract $i -done - -while read target; do - read source - echo "$source -> $target" - mkdir -p "$out/$(dirname "$target")" - cp "$source" "$out/$target" -done < $filemap - -# Make DLLs and executables executable. -find $out \( -iname "*.dll" -o -iname "*.exe" -o -iname "*.config" \) -print0 | xargs -0 chmod +x - -cat > $out/setup < m1 - # $ find -type f /path/to/visual-c++ -print0 | xargs -0 md5sum > m2 - # $ nixpkgs/maintainers/scripts/map-files.pl m1 m2 > filemap - filemap = ./filemap; - - buildInputs = [cabextract]; -} diff --git a/pkgs/development/misc/windows-sdk/filemap b/pkgs/development/misc/windows-sdk/filemap deleted file mode 100644 index 05498d931c1..00000000000 --- a/pkgs/development/misc/windows-sdk/filemap +++ /dev/null @@ -1,3738 +0,0 @@ -./Bin/Ace.Exe -./Ace_Exe.9D680411_628E_4A25_90E0_D910D59E60C3 -./Bin/AEReadMe.rtf -./AEReadMe_rtf.31A90105_5D49_495F_B308_CE80D00D924D -./Bin/AssistPalet.Bmp -./AssistPalet_Bmp.9D680411_628E_4A25_90E0_D910D59E60C3 -./Bin/Bind.Exe -./Bind_Exe.FB899C8D_AEDE_4DC6_AEA5_C2060C17E046 -./Bin/CabArc.Exe -./CabArc_Exe.8FEB9412_EDAC_4C4A_A3CC_D36BE5D86A24 -./Bin/Cert2Spc.Exe -./Cert2Spc_Exe.C08881EB_C9DE_4A5E_9259_D8031DF805D7 -./Bin/CertAdmL.Dll -./CertAdmL_Dll.971B641F_B805_43AA_9D98_CB7A9F58DE56 -./Bin/CertCliL.Dll -./CertCliL_Dll.971B641F_B805_43AA_9D98_CB7A9F58DE56 -./Bin/CertEncL.Dll -./CertEncL_Dll.971B641F_B805_43AA_9D98_CB7A9F58DE56 -./Bin/CertMgr.Exe -./CertMgr_Exe.6CC84BAC_FC93_450D_A7D1_D90EA3A25A62 -./Bin/checkv4.exe -./checkv4_exe.33E12168_7E32_4643_B1F9_8EBA77A82440 -./Bin/consume.exe -./consume_exe.25169329_7F10_44CD_94AD_76B53FD40C1D -./Bin/Depends.Cnt -./Depends_Cnt.4260B6FE_7568_4BCD_AE9A_FCCACBE58592 -./Bin/Depends.Dll -./Depends_Dll.FFCB8068_C080_43CA_BA8B_8CCE6A6701E2 -./Bin/Depends.Exe -./Depends_Exe.127AA5A6_7565_4669_8326_8FDB83C9ACDD -./Bin/Depends.Hlp -./Depends_Hlp.4260B6FE_7568_4BCD_AE9A_FCCACBE58592 -./Bin/ExtidGen.Exe -./ExtidGen_Exe.EF9FA63D_E0FF_4BC4_8930_D582F662E111 -./Bin/FiltDump.Exe -./FiltDump_Exe.7371AF73_13F4_4F84_AC8B_A711E4E79821 -./Bin/FiltReg.Exe -./FiltReg_Exe.7371AF73_13F4_4F84_AC8B_A711E4E79821 -./Bin/FrameDyD.Dll -./FrameDyD_Dll.1FE46D04_13C9_4E58_B965_E20C87A5E2EA -./Bin/graphedit.chm -./graphedit_chm.D65733DC_AD9D_46F8_9CAE_9DD65CFEB7BC -./Bin/graphedt.exe -./graphedt_exe.F524F79A_120D_4F96_82B2_D5F568E8A1E2 -./Bin/GuidGen.exe -./GuidGen_exe.8CEBE7C4_C33A_43B2_BB09_D9700343CE15 -./Bin/GUtils.Dll -./GUtils_Dll.96AD660B_9CCE_4BEB_82AC_130CBB29F231 -./Bin/IViewers.Dll -./IViewers_Dll.02A6C9DE_3977_457B_AA07_978287ADB778 -./Bin/Liset.Exe -./Liset_Exe.9D680411_628E_4A25_90E0_D910D59E60C3 -./Bin/MakeCat.Exe -./MakeCat_Exe.FC77A2D4_5CD0_435F_ADA1_66A8973B46C3 -./Bin/makecert.exe -./makecert_exe.32997D52_01FB_4CBF_B1C7_C68FD4253033 -./Bin/MakeCtl.Exe -./MakeCtl_Exe.46A5D545_C185_4AC4_98C1_13AD9E13C3B3 -./Bin/MapSym.Exe -./MapSym_Exe.2B8C04EA_9592_4120_9D05_4B4B0CB18657 -./Bin/MC.Exe -./MC_Exe.59639336_1464_44C3_9FF9_66EDBFCA8EC6 -./Bin/Mc.Hlp -./Mc_Hlp.D41C50E7_AA67_48C7_A2BE_CE91AF99CE16 -./Bin/MergeMod.Dll -./MergeMod_Dll.9BC0D62A_1241_413C_8F4B_20C4B845BC97 -./Bin/Microsoft.Uddi.dll -./Microsoft_Uddi_dll.6E0C05A4_020E_48B2_A1CE_733117E7F508 -./Bin/Microsoft.Uddi.xml -./Microsoft_Uddi_xml.6E0C05A4_020E_48B2_A1CE_733117E7F508 -./Bin/Midl.Exe -./Midl_Exe.7D419645_5565_4CBA_874F_C8F7FF95D870 -./Bin/MidlC.Exe -./MidlC_Exe.7D419645_5565_4CBA_874F_C8F7FF95D870 -./Bin/mmcproxy.dll -./mmcproxy_dll.C1D44F4D_D8A9_469C_A759_71DF3BB091EF -./Bin/MsiCert.exe -./MsiCert_exe.629D4BFB_E889_4E6C_897C_093DB6D05EBF -./Bin/MsiDb.Exe -./MsiDb_Exe.83A5AC83_810D_46F7_8991_A90A4AB51505 -./Bin/MsiFiler.Exe -./MsiFiler_Exe.03A08BFA_0174_43CB_8B63_8516F8277EFD -./Bin/MsiInfo.Exe -./MsiInfo_Exe.AADA8778_B01B_4AB3_9315_8D350F4A5B2C -./Bin/MsiMerg.Exe -./MsiMerg_Exe.D92912E9_23AC_4ECF_90B5_D43326C72E2F -./Bin/MsiMig.Dll -./MsiMig_Dll.5E25C7B1_E509_4FC0_A8C7_9862AB17BFB1 -./Bin/MsiMig.Exe -./MsiMig_Exe.5E25C7B1_E509_4FC0_A8C7_9862AB17BFB1 -./Bin/MsiTool.Mak -./MsiTool_Mak.F4B97E1E_EA99_4808_A5BF_656667DD4267 -./Bin/MsiTran.Exe -./MsiTran_Exe.3F278AA9_26F5_4915_AC72_3C0E3AE3703F -./Bin/MsiVal2.Msi -./MsiVal2_Msi.A3EF8DFF_7CCD_4FA6_9C59_57E28F7F6EF9 -./Bin/MsiZap.Exe -./MsiZap_Exe.17E01D9E_20F1_4288_95AF_BA38D00C6973 -./Bin/mssnapd.ocx -./mssnapd_ocx.D66E7744_983C_4AE6_B4AB_1DE53431D3AC -./Bin/mssnapr.dep -./mssnapr_dep.395D97FA_C0B5_4D1D_9CC0_6980C3899FBF -./Bin/mssnapr.dll -./mssnapr_dll.0F6A9ECE_2DFD_4F23_89C3_B3241A9FD727 -./Bin/mt.exe -./mt_exe.7BDCA3FD_2654_4C18_9592_E728A8A37516 -./Bin/nmake.exe -./nmake_exe.23DF85B1_CB01_41EC_BA8A_F53B1201C21E -./Bin/OleView.Exe -./OleView_Exe.49DB37E1_7D59_49DC_A72E_37C05E79B6C0 -./Bin/Orca.Msi -./Orca_Msi.F443CEDC_68B1_4EE7_B9FD_A6C85374EF6E -./Bin/pktextract.exe -./pktextract_exe.E4B53D63_3CE8_4D30_BCC7_A22DE6EF1F5F -./Bin/proppage.dll -./proppage_dll.4E636F60_B074_45B5_9216_BEA4D548BAE3 -./Bin/pvk2pfx.exe -./pvk2pfx_exe.40ED341D_22C2_4704_B35D_E00CC4010EBE -./Bin/RC.Exe -./RC_Exe.F671962B_91F5_41DC_A710_8A59488B185F -./Bin/RcDll.Dll -./RcDll_Dll.812F17D8_4961_40E2_A123_F4F911A1D797 -./Bin/ReBase.Exe -./ReBase_Exe.72976844_9A15_4956_8A8A_C75951982B24 -./Bin/signtool.exe -./signtool_exe.9052203A_CBA9_4CBE_A248_DECF46016081 -./Bin/Tb20.Exe -./Tb20_Exe.222B4FB4_A948_48A6_8E5A_B5DD7C24461B -./Bin/tracefmt.exe -./tracefmt_exe.AB646BA8_F27B_454B_9921_68889C4C5750 -./Bin/tracelog.exe -./tracelog_exe.AB646BA8_F27B_454B_9921_68889C4C5750 -./Bin/tracepdb.exe -./tracepdb_exe.AB646BA8_F27B_454B_9921_68889C4C5750 -./Bin/traceprt.dll -./traceprt_dll.AB646BA8_F27B_454B_9921_68889C4C5750 -./Bin/tracewpp.exe -./tracewpp_exe.B88013CF_6978_4C76_A024_0654BDB2BB08 -./Bin/uddi.publish.wizard.chm -./uddi_publish_wizard_chm.6E0C05A4_020E_48B2_A1CE_733117E7F508 -./Bin/UddiPublishWizard.exe -./UddiPublishWizard_exe.6E0C05A4_020E_48B2_A1CE_733117E7F508 -./Bin/UddiReadMe.htm -./UddiReadMe_htm.6E0C05A4_020E_48B2_A1CE_733117E7F508 -./Bin/UddiSdkRegister.exe -./UddiSdkRegister_exe.6E0C05A4_020E_48B2_A1CE_733117E7F508 -./Bin/Uuidgen.Exe -./Uuidgen_Exe.6C98F31D_318E_4180_BAEF_EE4E4BC2E2B8 -./Bin/Where.Exe -./Where_Exe.77C72A79_0E6D_4001_9CAD_C491FD9AD7B5 -./Bin/WiLogUtl.exe -./WiLogUtl_exe.793990E2_E949_47AF_88C1_C6F749A19603 -./Bin/WinDiff.Exe -./WinDiff_Exe.B3623704_1F3E_46E7_B7C5_FD1E9B1AE3BC -./Bin/WinDiff.Hlp -./WinDiff_Hlp.671495D7_1765_400A_9A49_A79987B84A35 -./Bin/winnt/Dbmon.Exe -./Dbmon_Exe.D28CCBD7_CA07_463A_8D42_1E43412A2552 -./Bin/winnt/Esp32.Tsp -./Esp32_Tsp.F9D12C07_2F6B_42D9_94F8_9B2BDD13E534 -./Bin/winnt/EspExe.Exe -./EspExe_Exe.46246156_32D0_4323_AF9D_DC048B9B4F1B -./Bin/winnt/Espui.Dll -./Espui_Dll.A08614E6_F424_47A9_9F72_205A61063AF6 -./Bin/winnt/IFiltTst.Exe -./IFiltTst_Exe.9E54116D_31BC_410C_93EB_7085EB623B6E -./Bin/winnt/IFiltTst.Ini -./IFiltTst_Ini.F25729BD_3398_4FFC_993F_7D4F7C803765 -./Bin/winnt/PerfMtr.Exe -./PerfMtr_Exe.8CEA1618_6E2F_4DA1_A53B_6F4A92A8B43E -./Bin/winnt/Pfmon.Exe -./Pfmon_Exe.710D7A2A_AB47_4A78_A5C0_244C37991BA5 -./Bin/winnt/PStat.Exe -./PStat_Exe.A8895EF4_8D6F_45F6_B150_C66379C1B34C -./Bin/winnt/PView.Exe -./PView_Exe.A475CBA2_0ED5_44BD_ACA0_530B57DD543E -./Bin/winnt/Sc.Exe -./Sc_Exe.EC224196_14C3_4685_BADA_95550432D473 -./Bin/winnt/SpOrder.Dll -./SpOrder_Dll.9A7CE161_2EF5_47E7_8738_01B94511CADD -./Bin/winnt/SpOrder.Exe -./SpOrder_Exe.7540A53B_8DB7_4168_A8D7_4021096101F1 -./Bin/winnt/TB3x.exe -./TB3x_exe.0241E9C0_DEB7_41A8_8D7B_78B07B283BBC -./Bin/winnt/utl2idl.exe -./utl2idl_exe.40BE6063_77B9_40E8_9F70_B654F27C40AC -./Bin/winnt/VaDump.Exe -./VaDump_Exe.5D808647_F8A9_4C3C_A173_8010EF6962EF -./Bin/winnt/validatesd.exe -./validatesd_exe.40BE6063_77B9_40E8_9F70_B654F27C40AC -./Bin/wppconfig/rev1/control.tpl -./control_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/defaultwpp.ini -./defaultwpp_ini.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/header.tpl -./header_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/km-default.tpl -./km_default_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/km-header.tpl -./km_header_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/km-init.tpl -./km_init_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/mof.tpl -./mof_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/r1defwpp.ini -./r1defwpp_ini.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/simple.tpl -./simple_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/stdout.tpl -./stdout_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/trmacro.tpl -./trmacro_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/um-default.tpl -./um_default_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/um-header.tpl -./um_header_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/um-init.tpl -./um_init_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/wppconfig/rev1/um-w2k.tpl -./um_w2k_tpl.092D0B15_4E20_4BF9_9F25_919B12AD9F03 -./Bin/Ws2_32.dll -./Ws2_32_dll.01E16487_B2BF_42AC_9980_D4D544D6A192 -./Images/PSDKLogo.gif -./PSDKLogo_gif.87918550_EDC0_45FB_BA34_9AD0951E7AFB -./Include/AccCtrl.h -./AccCtrl_h.40C59884_454B_4CFB_BD36_6D75282E5D30 -./Include/AclAPI.h -./AclAPI_h.4F463275_49A5_4DB6_B84A_3EF0722E6623 -./Include/AclUI.h -./AclUI_h.40A37D65_9DFE_4606_BB51_7493400080E2 -./Include/activdbg.h -./activdbg_h.52E3F94C_E4F4_41B1_A1AF_D8BE72BDEBD3 -./Include/activecf.h -./activecf_h.8398D889_ACF5_4957_943C_2D96F1020886 -./Include/ActiveDS.h -./ActiveDS_h.04F0112A_3DDD_48A2_8569_EE83114C57E7 -./Include/ActivScp.h -./ActivScp_h.5B58ABAE_F131_49B2_99C5_C56A6F6AC62D -./Include/ActivScp.Idl -./ActivScp_Idl.55A11AAC_6768_4A9C_9F8E_D0B60A03EB16 -./Include/Adptif.h -./Adptif_h.EAB9A09C_3691_4DA9_8BAE_051E85F686D3 -./Include/AdsDb.h -./AdsDb_h.3441AAD4_5B72_4C0C_980C_3B6A411FF8A5 -./Include/AdsErr.h -./AdsErr_h.73E1A76A_2E32_4A3D_AF82_02B53C9BDDF6 -./Include/AdsHlp.h -./AdsHlp_h.B29E3291_2EFF_4395_91AF_1CF846E7CBE2 -./Include/ADSIid.h -./ADSIid_h.36F7F247_37BD_40F0_A149_8708CCA44761 -./Include/Adsnms.h -./Adsnms_h.FCB45EDA_0CB8_411A_8131_BEE4CD1DF389 -./Include/AdsProp.h -./AdsProp_h.82D538B9_C14B_48E0_B39B_889C1252E6A4 -./Include/Adssts.h -./Adssts_h.B9E5DE1C_5972_4C11_A6B3_E0F4351F9DF1 -./Include/AdtGen.h -./AdtGen_h.99810400_839D_4052_9B6C_88442349808B -./Include/advpub.h -./advpub_h.E193DA22_3D5B_4A32_87E5_297629F0E258 -./Include/AF_Irda.h -./AF_Irda_h.A9FE1621_3974_4BB9_B728_D98FE04124C1 -./Include/AgtCtl.h -./AgtCtl_h.1BA61262_421C_47EB_8821_A744C4C945C1 -./Include/AgtCtl_i.c -./AgtCtl_i_c.F418DA6B_7D56_4209_9061_67401D8C6E01 -./Include/AgtErr.h -./AgtErr_h.CAC7B2B9_320B_4D6D_944F_7BFC033FF71A -./Include/AgtSvr.h -./AgtSvr_h.645D121A_2504_427F_BCD2_64CFC3CA2538 -./Include/AgtSvr_i.c -./AgtSvr_i_c.61FF4575_089A_4CB4_8D73_582B7D1A70A2 -./Include/alg.h -./alg_h.762DD5E6_9EA0_41BC_B369_3F42EEC596AB -./Include/alg.idl -./alg_idl.3CDBD10F_DA75_4218_8217_9E2265F5E345 -./Include/amaudio.h -./amaudio_h.35F6AEA3_8CE2_4BA7_986D_803E2BE6E2EE -./Include/amparse.h -./amparse_h.B4E168B4_1BD1_4F6F_84F5_9106C9547654 -./Include/amstream.h -./amstream_h.EC64900F_7CD4_4343_A709_88330CAD9AF1 -./Include/amstream.idl -./amstream_idl.49B88D29_3CFE_4318_BE08_FF096709AD8A -./Include/amva.h -./amva_h.2562F562_D5D2_49CA_B4B0_7EC81192551E -./Include/amvideo.h -./amvideo_h.433056EF_FB01_4456_845D_8A7AFCD76F4D -./Include/AppAvCap.h -./AppAvCap_h.F90E7E8C_0234_44EC_A097_518036B32ACE -./Include/appcompatapi.h -./appcompatapi_h.DB14D639_CAB6_4E6F_8FD4_2266199CCF98 -./Include/appmgmt.h -./appmgmt_h.25B3537C_424A_48D3_90E0_E3D9A6C7CDFA -./Include/atacct.h -./atacct_h.A008FCB4_FD09_4F14_A68A_DF062E1FA561 -./Include/AtalkWsh.h -./AtalkWsh_h.443C576A_B23A_41E6_AA7F_0DC047C49E01 -./Include/atl/atlbase.h -./atlbase_h.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atlcom.h -./atlcom_h.B8FCDAF0_A4D8_4588_A05E_FFC0DFFAB362 -./Include/atl/atlconv.cpp -./statreg_cpp.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atlconv.h -./atlconv_h.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atlctl.cpp -./statreg_cpp.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atlctl.h -./atlctl_h.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atldb.h -./atldb_h.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atldbcli.h -./atldbcli_h.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atldbsch.h -./atldbsch_h.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atldef.h -./atldef_h.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atlhost.h -./atlhost_h.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atliface.h -./atliface_h.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atliface.idl -./atliface_idl.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atlimpl.cpp -./atlimpl_cpp.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atlsnap.h -./atlsnap_h.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atlwin.cpp -./statreg_cpp.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/atlwin.h -./atlwin_h.B1AAB21C_970C_4E86_BE7E_3EF68240819E -./Include/atl/license.txt -./license_txt.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/statreg.cpp -./statreg_cpp.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atl/statreg.h -./statreg_h.D0386B79_FCB1_458F_A031_4CB28CAC2C99 -./Include/atsmedia.h -./atsmedia_h.17313BE5_5F89_433D_B525_4783A65FC892 -./Include/audevcod.h -./audevcod_h.E039A852_0CF7_47AB_B6AC_51F0006A5EE9 -./Include/austream.h -./austream_h.199B1A3B_64C4_426E_AD85_D16A7AAAF334 -./Include/austream.idl -./austream_idl.162BFFFF_6F93_4143_BAAB_D2CBE5B4ED65 -./Include/authen.h -./authen_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/authen.idl -./authen_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/Authif.h -./Authif_h.73E78AB1_50AB_4974_BA2E_8897DA29CC99 -./Include/AuthZ.h -./AuthZ_h.BFFF87E7_896C_4F41_8B4E_BFFA07A7CDFF -./Include/AviFmt.h -./AviFmt_h.B9BECFAF_CD00_47CC_B1D5_8ED2AAA1E827 -./Include/aviriff.h -./aviriff_h.AA2DF1F1_C921_484B_9E93_C30D21665505 -./Include/Avrfsdk.h -./Avrfsdk_h.97392435_E9BB_4415_A727_F7AA293C0866 -./Include/axcore.idl -./axcore_idl.BA03BB54_63B0_40B8_BC3E_E59C1A52571F -./Include/axextend.idl -./axextend_idl.214AE2A4_CB61_4CD5_A839_092E518FD12E -./Include/axextendenums.h -./axextendenums_h.0578CEAB_A39C_469E_A837_EB7119201BFB -./Include/azroles.h -./azroles_h.05638B02_CB82_433A_B0AD_6E984DC5F161 -./Include/BaseTsd.h -./BaseTsd_h.2F22BB4E_9A86_4B22_987A_4B73F72C5DC0 -./Include/BaseTyps.h -./BaseTyps_h.DF09C88A_D24E_43B7_8191_DCE91BEAB0BF -./Include/BatClass.h -./BatClass_h.5AED5C34_43AD_4B42_9880_9546BF4D18BC -./Include/bdaiface.h -./bdaiface_h.C61ADB81_42EB_45F4_B742_3CB8264B48C7 -./Include/bdaiface.idl -./bdaiface_idl.EA19C407_7D96_43E2_ABF0_C1B0321215FE -./Include/bdamedia.h -./bdamedia_h.D24B1A2B_2495_40E5_8B96_C48C12238699 -./Include/bdatif.h -./bdatif_h.CA62B469_D99A_4AD1_864A_42AF262F9AAF -./Include/bdatif.idl -./bdatif_idl.F99AFD2F_FB23_42DA_A8ED_DE7CDA5482F9 -./Include/bdatypes.h -./bdatypes_h.2DAAFAF6_9CAD_492A_A98C_9B488A8A0026 -./Include/bh.h -./bh_h.6E62D5BA_591A_4726_9481_51EFE172338D -./Include/BiDiSpl.h -./BiDiSpl_h.A32E93E6_42D6_4FEF_8BAA_35F5342C6766 -./Include/Bits.h -./Bits_h.38FE3DC3_1B9B_4A74_8B1F_0E2C50E81E0A -./Include/Bits.Idl -./Bits_Idl.B66000E9_D43D_4A0F_841A_548EFB26C871 -./Include/bits1_5.h -./bits1_5_h.0C11566B_EBDB_4BBC_AAD8_124E22BDCFC6 -./Include/bits1_5.idl -./bits1_5_idl.DDD3DBD3_0815_4560_9601_941B7BA90639 -./Include/bits2_0.h -./bits2_0_h.1AC6E790_EB8C_4BFD_8749_DE498C142D5C -./Include/bits2_0.idl -./bits2_0_idl.1AC6E790_EB8C_4BFD_8749_DE498C142D5C -./Include/bitscfg.h -./bitscfg_h.5C397435_31A9_42C9_88D9_E3438C0598E3 -./Include/bitscfg.idl -./bitscfg_idl.5F0E23B1_C205_42BF_8D6C_5A10CC6DDE11 -./Include/BitsMsg.h -./BitsMsg_h.AA612384_2865_4D9F_A25B_6B14B4F06F5A -./Include/BkOffice.Mak -./BkOffice_Mak.E29A1BED_E8F7_4A11_8B8C_7D6CE970FF49 -./Include/BLBErr.h -./BLBErr_h.748DBD53_53DF_4F7C_9BCC_A6A28A77F100 -./Include/BluetoothAPIs.h -./BluetoothAPIs_h.251FFCE3_D561_4089_9F89_E9DEB07FA35B -./Include/bthdef.h -./bthdef_h.251FFCE3_D561_4089_9F89_E9DEB07FA35B -./Include/bthsdpdef.h -./bthsdpdef_h.251FFCE3_D561_4089_9F89_E9DEB07FA35B -./Include/CallConv.Inc -./CallConv_Inc.50DC665B_7661_43EF_A412_713EDA76C50D -./Include/callobj.h -./callobj_h.81575195_D03D_4C77_B2A5_88809E639749 -./Include/callobj.idl -./callobj_idl.BC864B1C_37C9_4317_A0DF_704A8614591A -./Include/CChannel.h -./CChannel_h.AF4420AF_53CB_4117_BD3F_ACEB242A5DF8 -./Include/CdErr.h -./CdErr_h.BDF396CA_857B_43C6_B486_C70F1649E63A -./Include/cdoex.h -./cdoex_h.66C2F019_CC0B_4865_B24D_51249EA1B656 -./Include/cdoex.idl -./cdoex_idl.FDFFFF19_27DB_4D71_8390_64B9FD4658A6 -./Include/cdoexerr.h -./cdoexerr_h.35149B53_DB9F_401F_901D_D0E837E2B094 -./Include/cdoexm.h -./cdoexm_h.ABF509B7_DA26_4625_B3C3_CAA6A76A162C -./Include/cdoexm_i.c -./cdoexm_i_c.7FE08415_E6DE_42B5_8D27_E422A6B0AA6F -./Include/cdoexstr.h -./cdoexstr_h.91D71AAC_9721_470E_9796_A1A598B54C63 -./Include/cdoex_i.c -./cdoex_i_c.C29147E1_1A1C_4E9B_B529_5437A7B4CD56 -./Include/CDONTS.h -./CDONTS_h.7FAC7AD7_8CDE_4B7D_AF16_F23D62863624 -./Include/CDOSys.h -./CDOSys_h.7FAC7AD7_8CDE_4B7D_AF16_F23D62863624 -./Include/CDOSys.Idl -./CDOSys_Idl.E4810F38_2776_4595_A8B0_CF2BE548F9E7 -./Include/CDOSysErr.h -./CDOSysErr_h.F545547C_5388_4D03_9924_425F268541A0 -./Include/CDOSysStr.h -./CDOSysStr_h.C1C2707F_7C12_49F2_8363_9426165AC903 -./Include/CDOSys_I.c -./CDOSys_I_c.E011D811_6E86_4E0B_9C9D_EC321DA60B7A -./Include/CeLib.h -./CeLib_h.BF33529F_640F_418A_BD7F_D97E279A3022 -./Include/CertAdm.h -./CertAdm_h.DE658157_530C_4C92_A8FB_81B15C43CA15 -./Include/CertAdm.Idl -./CertAdm_Idl.9A35D345_5BA4_452A_8554_666419AE9650 -./Include/CertBase.h -./CertBase_h.6CD79AE2_99C3_4194_8F19_FC5A4BD10518 -./Include/CertBase.Idl -./CertBase_Idl.6CD79AE2_99C3_4194_8F19_FC5A4BD10518 -./Include/CertBCli.h -./CertBCli_h.B73CE375_4743_4887_86A1_5009EB76DD29 -./Include/CertBCli.Idl -./CertBCli_Idl.B73CE375_4743_4887_86A1_5009EB76DD29 -./Include/CertCli.h -./CertCli_h.AF5220AB_1C02_4326_8EDB_83DDCF6B345E -./Include/CertCli.Idl -./CertCli_Idl.9A35D345_5BA4_452A_8554_666419AE9650 -./Include/CertEnc.h -./CertEnc_h.1D368E03_F1BF_4FB2_B8BE_2AB9E124BB55 -./Include/CertEnc.Idl -./CertEnc_Idl.1D368E03_F1BF_4FB2_B8BE_2AB9E124BB55 -./Include/CertExit.h -./CertExit_h.C98FFC39_4968_482D_83C5_6269EB911606 -./Include/CertExit.Idl -./CertExit_Idl.C98FFC39_4968_482D_83C5_6269EB911606 -./Include/Certif.h -./Certif_h.B1B74C7D_6C2A_4E1D_9B34_4265597BDF75 -./Include/Certif.Idl -./Certif_Idl.9A35D345_5BA4_452A_8554_666419AE9650 -./Include/CertMod.h -./CertMod_h.6994DF03_FC8B_4345_9DB2_400DED502994 -./Include/CertMod.Idl -./CertMod_Idl.10D15A39_625C_47E9_BC3A_5FA003AE6471 -./Include/CertPol.h -./CertPol_h.4CA134F6_2967_419C_BF23_3E4D45756DDE -./Include/CertPol.Idl -./CertPol_Idl.4CA134F6_2967_419C_BF23_3E4D45756DDE -./Include/certreqd.h -./certreqd_h.7C785865_8F88_45E8_9CDF_5744438F1A04 -./Include/CertSrv.h -./CertSrv_h.35E403A5_1F41_46BE_8651_2EE32127B7EE -./Include/CertView.h -./CertView_h.10D15A39_625C_47E9_BC3A_5FA003AE6471 -./Include/CertView.Idl -./CertView_Idl.9A35D345_5BA4_452A_8554_666419AE9650 -./Include/cfg.h -./cfg_h.6D177ECF_6966_48F7_BF90_60DA51FF93EB -./Include/cfgmgr32.h -./cfgmgr32_h.96AB8B90_C407_4DD9_AAF3_49CB15ABEF54 -./Include/CGuid.h -./CGuid_h.B11D5DDA_B206_4CFB_B930_39DDB2186DC1 -./Include/ChanMgr.h -./ChanMgr_h.D0336E77_7598_4728_B2F2_F172C7A35410 -./Include/ChanMgr.Idl -./ChanMgr_Idl.4A07A09C_A62B_4948_90AE_CB63114024DA -./Include/ChPtrArr.h -./ChPtrArr_h.5A956DC1_AD53_4E1C_8955_09F2065A0C1D -./Include/ChStrArr.h -./ChStrArr_h.0E43AAC1_3B07_410E_9D06_D8BD52F9C085 -./Include/ChString.h -./ChString_h.36BB5ED2_5861_4C60_AE2C_F25346905ADD -./Include/CiError.h -./CiError_h.1E7C36C3_CD4D_4422_905A_373F3935408B -./Include/clfs.h -./clfs_h.6025AE55_D8FA_49EF_A0DE_02B180F6AD60 -./Include/clfslsn.h -./clfslsn_h.2D14DFD6_E8C7_43D3_B9D5_AC20CB11E57A -./Include/clfsmgmt.h -./clfsmgmt_h.FA402A46_9DEA_49BD_A672_87F26921C9A9 -./Include/clfsmgmtw32.h -./clfsmgmtw32_h.CCF73BCC_8AB6_43A1_944F_DE4C36B0662D -./Include/clfsw32.h -./clfsw32_h.E1417273_37DE_4C2C_A036_0C373948731A -./Include/CluAdmEx.h -./CluAdmEx_h.453A91E9_F0DA_4C1C_99D1_30D2F6AABAD4 -./Include/CluAdmEx.Idl -./CluAdmEx_Idl.687240C7_8046_4D0E_AC29_2139098466AC -./Include/ClusApi.h -./ClusApi_h.0B8E58E3_6C63_469F_A52B_A3F2214EC87F -./Include/ClusCfgGuids.h -./ClusCfgGuids_h.BED14676_59B5_47B3_B3EE_A65C0D36A5C5 -./Include/ClusCfgServer.h -./ClusCfgServer_h.F4059DCF_7DFA_4CAE_929D_C931CBE26F2F -./Include/ClusCfgServer.idl -./ClusCfgServer_idl.71EC6C4E_8351_45B0_8932_177FB84CE3C8 -./Include/ClusCfgWizard.h -./ClusCfgWizard_h.015622F7_910E_4969_AD55_6778D8441A08 -./Include/ClusCfgWizard.idl -./ClusCfgWizard_idl.E2624412_6B1D_48A9_8472_A8E07FD8CE11 -./Include/CmnQuery.h -./CmnQuery_h.97DF6685_3D05_4004_813B_D92458915E94 -./Include/Codecs.h -./Codecs_h.89B233FB_EEAF_4CC0_BE0C_0CA2764B2F3C -./Include/colldispid.h -./colldispid_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/Color.Dlg -./Color_Dlg.23F5D34B_CF9E_44A7_9DA9_60D89EC0F57B -./Include/ColorDlg.h -./ColorDlg_h.D20C8F87_5BC8_4784_8686_6322927997CC -./Include/ComAdmin.h -./ComAdmin_h.42BB4B60_182F_4766_B2D5_7AF3CEA10352 -./Include/ComAdmin.Idl -./ComAdmin_Idl.28B8E9D4_3FE1_4F3B_AA4F_719B2CF28F7B -./Include/ComCat.h -./ComCat_h.97DF6685_3D05_4004_813B_D92458915E94 -./Include/ComCat.Idl -./ComCat_Idl.0C2F9D6D_6AB1_4823_B992_F4C4BA4A254D -./Include/ComDef.h -./ComDef_h.7A95C8DF_F7D6_463E_A0B3_E2A9819E0217 -./Include/comlite.h -./comlite_h.74CB6FF7_A400_4318_8030_05057C459B8A -./Include/CommCtrl.h -./CommCtrl_h.1AF8B6E6_AD99_426A_BA80_967CDD65A12B -./Include/CommCtrl.rh -./CommCtrl_rh.49A6AE50_91D9_419E_A370_A4389726D826 -./Include/CommDlg.h -./CommDlg_h.1CE30A10_73F7_4C67_AAE2_6C0345D8C051 -./Include/common.ver -./common_ver.7849A3D7_21E8_4E0B_B7A2_E7A37777D290 -./Include/commoncontrols.h -./commoncontrols_h.5DD52765_925F_48F7_82D0_F19A88F211CA -./Include/commoncontrols.idl -./commoncontrols_idl.3D4047C5_DC12_410C_B7D8_F2A6C7A8205F -./Include/CompObj.h -./CompObj_h.23FA55CB_560F_471A_B758_94F10C80272A -./Include/ComSvcs.h -./ComSvcs_h.E3DF77DE_BB65_47E5_9B59_115EA3C7DB18 -./Include/ConfPriv.h -./ConfPriv_h.8001213C_88BF_4A68_9DAB_092C722C5C6A -./Include/ConfPriv.Idl -./ConfPriv_Idl.E20307C8_6363_4826_BED9_2682B85C860B -./Include/control.h -./control_h.3AADE802_E842_41DB_8CC2_A5515534B320 -./Include/control.odl -./control_odl.1BC3AAE9_2D86_4312_B789_936E43798D11 -./Include/CorReg.h -./CorReg_h.6E3AE19D_6EB9_46E4_8E68_CBF394F5110D -./Include/Cpl.h -./Cpl_h.19EEB4BB_5A5D_40A2_846B_08F06F6AD75F -./Include/Cplext.h -./Cplext_h.171A64E3_30C2_417A_94D5_2A010124A145 -./Include/crt/algorithm -./algorithm.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/assert.h -./assert_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/bitset -./bitset.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/cassert -./cassert.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/cctype -./cctype.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/cerrno -./cerrno.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/cfloat -./cfloat.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/ciso646 -./ciso646.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/climits -./climits.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/clocale -./clocale.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/cmath -./cmath.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/comdef.h -./ComDef_h.7A95C8DF_F7D6_463E_A0B3_E2A9819E0217 -./Include/crt/comdefsp.h -./comdefsp_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/comip.h -./comip_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/complex -./complex.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/comutil.h -./comutil_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/conio.h -./conio_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/crtdbg.h -./crtdbg_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/csetjmp -./csetjmp.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/csignal -./csignal.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/cstdarg -./cstdarg.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/cstddef -./cstddef.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/cstdio -./cstdio.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/cstdlib -./cstdlib.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/cstring -./cstring.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/ctime -./ctime.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/ctype.h -./ctype_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/cwchar -./cwchar.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/cwctype -./cwctype.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/delayimp.h -./delayimp_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/deque -./deque.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/direct.h -./direct_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/dos.h -./dos_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/eh.h -./eh_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/errno.h -./errno_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/exception -./exception.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/excpt.h -./excpt_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/fcntl.h -./fcntl_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/float.h -./float_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/fpieee.h -./fpieee_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/fstream -./fstream.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/fstream.h -./fstream_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/functional -./functional.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/intsafe.h -./intsafe_h.A4FE0D2D_0737_4ABD_B36F_FC006847DD46 -./Include/crt/invkprxy.h -./invkprxy_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/io.h -./io_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/iomanip -./iomanip.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/iomanip.h -./iomanip_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/ios -./ios.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/ios.h -./ios_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/iosfwd -./iosfwd.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/iostream -./iostream.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/iostream.h -./iostream_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/iso646.h -./iso646_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/istream -./istream.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/istream.h -./istream_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/iterator -./iterator.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/limits -./limits.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/limits.h -./limits_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/list -./list.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/locale -./locale.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/locale.h -./locale_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/malloc.h -./malloc_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/map -./map.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/math.h -./math_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/mbctype.h -./mbctype_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/mbstring.h -./mbstring_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/memory -./memory.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/memory.h -./memory_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/minmax.h -./minmax_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/new -./new.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/new.h -./new_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/numeric -./numeric.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/ostream -./ostream.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/ostream.h -./ostream_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/process.h -./process_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/queue -./queue.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/rtcapi.h -./rtcapi_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/search.h -./search_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/set -./set.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/setjmp.h -./setjmp_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/setjmpex.h -./setjmpex_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/share.h -./share_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/signal.h -./signal_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/sstream -./sstream.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/stack -./stack.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/stdarg.h -./stdarg_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/stddef.h -./stddef_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/stdexcept -./stdexcept.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/stdexcpt.h -./stdexcpt_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/stdio.h -./stdio_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/stdiostr.h -./stdiostr_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/stdlib.h -./stdlib_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/stl.h -./stl_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/streamb.h -./streamb_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/streambuf -./streambuf.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/string -./string.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/string.h -./string_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/strstrea.h -./strstrea_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/strstream -./strstream.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/sys/locking.h -./locking_h.4745DFC2_11B4_49A1_8703_DFC969120BF0 -./Include/crt/sys/stat.h -./stat_h.4745DFC2_11B4_49A1_8703_DFC969120BF0 -./Include/crt/sys/timeb.h -./timeb_h.4745DFC2_11B4_49A1_8703_DFC969120BF0 -./Include/crt/sys/types.h -./types_h.4745DFC2_11B4_49A1_8703_DFC969120BF0 -./Include/crt/sys/utime.h -./utime_h.4745DFC2_11B4_49A1_8703_DFC969120BF0 -./Include/crt/tchar.h -./tchar_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/time.h -./time_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/typeinfo -./typeinfo.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/typeinfo.h -./typeinfo_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/useoldio.h -./useoldio_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/use_ansi.h -./use_ansi_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/utility -./utility.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/valarray -./valarray.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/varargs.h -./varargs_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/vector -./vector.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/wchar.h -./wchar_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/wctype.h -./wctype_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/xcomplex -./xcomplex.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/xiosbase -./xiosbase.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/xlocale -./xlocale.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/xlocinfo -./xlocinfo.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/xlocinfo.h -./xlocinfo_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/xlocmon -./xlocmon.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/xlocnum -./xlocnum.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/xloctime -./xloctime.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/xmath.h -./xmath_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/xmemory -./xmemory.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/xstddef -./xstddef.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/xstring -./xstring.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/xtree -./xtree.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/xutility -./xutility.FA1E7979_9AA4_469A_A337_D07412B7A30E -./Include/crt/ymath.h -./ymath_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/crt/yvals.h -./yvals_h.BBD43D5A_6D5C_4770_88B9_A42253FB9B6B -./Include/cryptdlg.h -./cryptdlg_h.C1857A54_866B_4CCA_A04E_15815AB4E068 -./Include/cryptuiapi.h -./cryptuiapi_h.DF42666A_717C_40EA_9CF0_502FE3FD434B -./Include/ctffunc.h -./ctffunc_h.0353DC33_163F_4E55_B51B_6918416A4A9A -./Include/ctffunc.idl -./ctffunc_idl.393934F0_B9A3_44B3_A7D8_092D97C3975C -./Include/ctfspui.h -./ctfspui_h.7B183C4E_90A3_4F54_A88A_A8D091C49A4F -./Include/ctfspui.idl -./ctfspui_idl.B8DEB2CE_562E_43A3_8639_602E4DD0ECE6 -./Include/ctfutb.h -./ctfutb_h.F566A70C_179B_431C_BD29_B6ECCC042771 -./Include/ctfutb.idl -./ctfutb_idl.E160B7E9_63F8_4CE3_930D_422C2169E725 -./Include/ctxtcall.h -./ctxtcall_h.AF308CB8_0DE8_46FA_9D55_04D8CE09DA9F -./Include/ctxtcall.idl -./ctxtcall_idl.0D908BC8_818D_43B9_A39D_922283C88531 -./Include/CustCntl.h -./CustCntl_h.7B2060B8_526C_494D_8812_8451F3B1277F -./Include/CustomAw.h -./CustomAw_h.EDB9E4CD_A974_443F_B07C_198A8CF294D9 -./Include/daogetrw.h -./daogetrw_h.A65BA029_6C32_4B4B_94EF_42AF8A583680 -./Include/datacontainer.h -./datacontainer_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/datacontainer.idl -./datacontainer_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/datacontainerversion.h -./datacontainerversion_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/datacontainerversion.idl -./datacontainerversion_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/DataPath.h -./DataPath_h.54BDE3E0_A585_42D5_9495_8479D329B1A8 -./Include/dbdao.h -./dbdao_h.FBA2846C_BAF4_447B_A4B3_F2856932DBF8 -./Include/dbdaoerr.h -./dbdaoerr_h.808462A6_CAA4_41A4_AAC3_333CC3A537D3 -./Include/dbdaoid.h -./dbdaoid_h.23E4CBEA_ECBF_453F_8D22_81A4DCE5912E -./Include/dbdaoint.h -./dbdaoint_h.D9ECD37E_85ED_436F_9304_18145E04F556 -./Include/DbgEng.h -./DbgEng_h.86B270F8_317A_4C9A_8F67_A523BB57CB24 -./Include/DbgHelp.h -./DbgHelp_h.482E6DE5_DE13_471D_8930_BCAFCFC37973 -./Include/DbgProp.h -./DbgProp_h.5B58ABAE_F131_49B2_99C5_C56A6F6AC62D -./Include/dbnetlib.h -./dbnetlib_h.77A1B96D_E801_4006_9543_BB4095AFC6E4 -./Include/Dbt.h -./Dbt_h.407E7C22_7CF4_4BBA_8F51_CC585B9D0F53 -./Include/dciddi.h -./dciddi_h.99EDFB94_6508_46A9_A30A_2690B509D0A6 -./Include/dciman.h -./dciman_h.96AB8B90_C407_4DD9_AAF3_49CB15ABEF54 -./Include/Dde.h -./Dde_h.D9888C43_F027_41AA_B559_C2A1B4AE1213 -./Include/Dde.rh -./Dde_rh.64DE7C63_CBE5_4781_AF8A_681B0962F028 -./Include/Ddeml.h -./Ddeml_h.E68360DB_171F_4B10_898C_2C961F7210CA -./Include/ddrawgdi.h -./ddrawgdi_h.794E3F3B_ADEA_4201_9318_AD5F21DC9FA7 -./Include/ddstream.h -./ddstream_h.76B1C4FC_C1A4_4264_A218_B1BE31FE45F1 -./Include/ddstream.idl -./ddstream_idl.4D597DF5_4DDF_4CA7_BEEA_C260C4EC9382 -./Include/devenum.idl -./devenum_idl.25DF5899_4B44_4BBC_B0AC_88CFBC008F34 -./Include/devguid.h -./devguid_h.B4A76EC7_D754_4ADA_A04A_8458FD280CE4 -./Include/DhcpCSdk.h -./DhcpCSdk_h.B12AD7F5_702F_4464_9994_85F7A5B506EF -./Include/dhcpsapi.h -./dhcpsapi_h.B3C23C22_15CC_48CE_BFD7_9D35187BBE48 -./Include/DhcpSSdk.h -./DhcpSSdk_h.C2CE4C88_40FC_401A_BBD4_C85CFDE0CAAF -./Include/DHtmldid.h -./DHtmldid_h.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/DHtmled.h -./DHtmled_h.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/DHtmled.idl -./DHtmled_idl.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/DHtmled.js -./DHtmled_js.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/DHtmled.vbs -./DHtmled_vbs.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/DHtmliid.h -./DHtmliid_h.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/Digitalv.h -./Digitalv_h.74772540_8AC3_4055_878E_5FD4307BA5C5 -./Include/Dimm.h -./Dimm_h.A873C499_7702_4E9D_BC2A_5EE6AD156C1D -./Include/Dimm.Idl -./Dimm_Idl.2E74A03E_B39B_42B8_B7A2_CB6A7A0DF521 -./Include/Disable.Mak -./Disable_Mak.DC7448AA_658C_425C_B6F5_AC2308E8E734 -./Include/diskguid.h -./diskguid_h.54839F83_B760_434A_96C7_317CDCA6AB2C -./Include/Dispatch.h -./Dispatch_h.6A4D571E_0B8A_49C2_AC64_E821F55314F2 -./Include/Dispdib.h -./Dispdib_h.F3E01C12_53E0_4F19_9A52_79A43AC34A58 -./Include/DispEx.h -./DispEx_h.5B58ABAE_F131_49B2_99C5_C56A6F6AC62D -./Include/Dispex.Idl -./Dispex_Idl.0338CDDE_2215_4463_9145_5B1F2BD989ED -./Include/DlcAPI.h -./DlcAPI_h.14743CAC_1B72_453B_AB57_C02B464344B8 -./Include/Dlgs.h -./Dlgs_h.FFA23255_A25C_442B_BAEF_817DF31A7283 -./Include/dmo.h -./dmo_h.D6FA1D0E_F7B0_437F_85CD_6A78F21AE922 -./Include/dmodshow.h -./dmodshow_h.3D03BE95_B18D_401C_8797_45ED8CE22BEB -./Include/dmodshow.idl -./dmodshow_idl.D39A4020_9641_4B8D_9D6A_B483148DDB31 -./Include/dmoimpl.h -./dmoimpl_h.62604B02_2B1B_4F3D_A05E_1F6E15C1133B -./Include/dmoreg.h -./dmoreg_h.BB3EE4B7_71F9_4A8A_AF2E_2ECED4ACF74A -./Include/dmort.h -./dmort_h.336664A7_DBFD_4580_9AC7_62C7332505B4 -./Include/DocObj.h -./DocObj_h.84C315F1_276B_4F57_AE21_774FB1F57EEF -./Include/DocObj.Idl -./DocObj_Idl.95AC5012_AFA7_45FC_A796_C396F1B49EB4 -./Include/Dom.Idl -./Dom_Idl.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/DomDid.h -./DomDid_h.57535F0A_681A_4C61_8771_30A573AEB76D -./Include/dpnathlp.h -./dpnathlp_h.E75787FA_F2FF_4D58_87B1_35511CEEDD3A -./Include/drivinit.h -./drivinit_h.F5C8460F_6ACA_48C9_8D1F_81892C5BCF74 -./Include/DSAdmin.h -./DSAdmin_h.6B3FDEB1_8A2F_46D2_9A45_2CA08E1C2F30 -./Include/DSClient.h -./DSClient_h.6A31F8C9_EC6C_4343_9CA0_A56CFA2AF806 -./Include/DsGetDC.h -./DsGetDC_h.6F2A6C1B_497D_4269_BFCA_70F085E638AF -./Include/DShow.h -./DShow_h.ADC94608_FF9F_4CE4_B31D_417DBD77BF20 -./Include/DskQuota.h -./DskQuota_h.AC15ADCA_6175_45F1_B3E5_4D0B4686A111 -./Include/DSQuery.h -./DSQuery_h.6B3FDEB1_8A2F_46D2_9A45_2CA08E1C2F30 -./Include/DSRole.h -./DSRole_h.85A4CF4B_7F48_46BB_9021_88B38652006C -./Include/dssec.h -./dssec_h.2304A866_C4B0_4050_8BC7_73D9AA8FD72F -./Include/DtcHelp.h -./DtcHelp_h.F21385FC_CA28_495C_A0F9_0761F974B7AB -./Include/dv.h -./dv_h.1EED9F3C_3F52_4053_9F76_FD47E6472AF8 -./Include/dvdevcod.h -./dvdevcod_h.2ABB18E1_AA5A_4B13_9E36_C7E92884353F -./Include/dvdif.idl -./dvdif_idl.9C43C88B_B645_4531_A79B_67A7FE44E19A -./Include/dvdmedia.h -./dvdmedia_h.C765861C_458F_4B48_A45C_9575B5B060BF -./Include/dvec.h -./dvec_h.724EB65B_B14C_48B4_928C_AB87224D2F09 -./Include/DvObj.h -./DvObj_h.A171027E_3696_4451_AC91_BDA14AE0E789 -./Include/dxtmpl.h -./dxtmpl_h.DF55D2E8_3096_44BE_80F8_85326449CD65 -./Include/dxva.h -./dxva_h.37E3FA6F_8235_4054_9FA2_2FEC5D45CE0B -./Include/dyngraph.idl -./dyngraph_idl.2C42A90D_1DD3_4E91_AED5_98FCDC75816F -./Include/edevctrl.h -./edevctrl_h.F06789AA_E654_4BFE_9D07_89356E351D4D -./Include/edevdefs.h -./edevdefs_h.25F94F59_F005_46AD_8EEB_0C8B16A36F6E -./Include/emmintrin.h -./emmintrin_h.51539243_210B_46C4_B0B3_3892362B45B3 -./Include/emostore.h -./emostore_h.7CE0A274_D563_445E_8F22_E38184B90CA9 -./Include/emostore_i.c -./emostore_i_c.020A3B76_0757_4E0A_8199_64DFC8AEE40E -./Include/EmptyVC.h -./EmptyVC_h.3BABB554_C195_4C75_83A4_61ADFEBDF534 -./Include/emptyvc.idl -./emptyvc_idl.743FF8A6_5B46_4889_B59C_24E9DDAE07E9 -./Include/Error.h -./Error_h.24B60C5A_298A_4F42_8C6F_494BF0EA1A36 -./Include/ErrorRep.h -./ErrorRep_h.B91F3786_592D_41AE_B89A_5F7448D06AA6 -./Include/errors.h -./errors_h.106EE975_0E24_47EA_9065_DA2CEBE210F7 -./Include/esebcli2.h -./esebcli2_h.2FB03083_E0CF_4E5B_A6A7_B27B8510114A -./Include/esebkmsg.h -./esebkmsg_h.2C0D4ABC_F67F_4F29_BB80_648AA5428288 -./Include/esent.h -./esent_h.9BFCE0A1_6F00_43FC_B192_CEF7D1093283 -./Include/evcode.h -./evcode_h.A14157EA_1D05_4749_9DEB_BCD2894FA9FE -./Include/event.h -./event_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/event.idl -./event_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/EventSys.h -./EventSys_h.F06BA2E9_9079_4346_9DFA_F78791079DA8 -./Include/EventSys.Idl -./EventSys_Idl.993E4C7B_4675_405B_A007_2390500343B0 -./Include/Evntrace.h -./Evntrace_h.8DF9A186_6341_41C3_BF06_2D4751F9A06E -./Include/ExchForm.h -./ExchForm_h.2D9A3CB8_154A_4D24_8E37_DC89835AC580 -./Include/ExDisp.h -./ExDisp_h.3DB00592_5DC6_4511_BB5F_45B027CE8B28 -./Include/ExDisp.Idl -./ExDisp_Idl.8315521C_4001_4827_9BB5_094232BEC12F -./Include/ExDispid.h -./ExDispid_h.5C06784F_B393_4A7E_B46B_52AF9A6E51A0 -./Include/exevtsnk.idl -./exevtsnk_idl.04D54D16_ECC6_4CDC_8CD7_AADE22B2071B -./Include/exposeenums2managed.h -./exposeenums2managed_h.F193C4A8_FF9F_4463_BCF4_1E085D9D96F2 -./Include/fastcall.h -./fastcall_h.B21C0F7B_5CC7_4B31_9AE1_21675A3B8B27 -./Include/FaxCom.h -./FaxCom_h.DBF961BC_0B5F_4072_9F3E_47651B87084A -./Include/FaxComEx.h -./FaxComEx_h.A33DE35D_F214_44BA_A8A8_9411CC5544DF -./Include/FaxComEx_i.c -./FaxComEx_i_c.4A95BE30_A1D6_4C00_8CCE_7634DABE3D2B -./Include/FaxCom_i.c -./FaxCom_i_c.FD1968AE_E9C5_4C33_B81E_5F465D9CBF27 -./Include/FaxDev.h -./FaxDev_h.0E333E22_2313_4CE1_BCFD_519493119917 -./Include/FaxExt.h -./FaxExt_h.46D6D8C4_877C_447E_BD22_7860A7D7FB8C -./Include/FaxMmc.h -./FaxMmc_h.D3C23646_658A_491A_9A2D_237E58C07AEF -./Include/FaxRoute.h -./FaxRoute_h.A22BE1AD_D6D8_4118_B664_FA82798E737C -./Include/Fci.h -./Fci_h.4BA634A2_C8D4_4392_8458_544072DD7308 -./Include/Fdi.h -./Fdi_h.17C48691_29F7_41FB_9A10_6C2136103CE3 -./Include/FileOpen.Dlg -./FileOpen_Dlg.E713618B_EC27_4D1B_8A43_BDB080829B91 -./Include/Filter.h -./Filter_h.45027A60_7975_434B_85C8_07B2BB4ED5C2 -./Include/Filterr.h -./Filterr_h.0C0DDDEB_1814_4796_91E7_E5D912C1AD6D -./Include/FindText.Dlg -./FindText_Dlg.51063EC1_94FE_4937_81D2_D29ED3D268C1 -./Include/fltdefs.h -./fltdefs_h.46FF9DD2_B7E8_4E25_903E_024E4B52B06A -./Include/Font.Dlg -./Font_Dlg.93FF2691_B0E0_4EEF_BDDB_DE7E094E80E9 -./Include/FrQuery.h -./FrQuery_h.D42EEFFA_FB76_4026_8892_02D825D18412 -./Include/FtsIface.h -./FtsIface_h.3DB4D9DD_32AF_40DD_8CFA_D45E9458AA32 -./Include/fvec.h -./fvec_h.1AEF7331_0BEB_4C8B_B5D6_A00DE662B130 -./Include/FwCommon.h -./FwCommon_h.B407CF17_89DD_49D3_BF63_A69A84226CAE -./Include/gb18030.h -./gb18030_h.08429FE3_8882_453F_9473_C6267491E2F0 -./Include/GdiPlus.h -./GdiPlus_h.B8F96192_D70F_446D_BAA5_4832C4E14C7A -./Include/GdiPlusBase.h -./GdiPlusBase_h.DC2D43E9_29F9_42F1_AF16_00973182B3A4 -./Include/GdiPlusBitmap.h -./GdiPlusBitmap_h.166410C0_4438_4678_AD3C_174C6D2AA519 -./Include/GdiPlusBrush.h -./GdiPlusBrush_h.271F0923_EE61_49DB_B481_7B2D0B3C74EB -./Include/GdiPlusCachedBitmap.h -./GdiPlusCachedBitmap_h.56D0F3A2_13AF_4F65_B3FE_90520D17F6A9 -./Include/GdiPlusColor.h -./GdiPlusColor_h.1385D438_717C_4FA8_B5D3_0E61E0DF8D70 -./Include/GdiPlusColorMatrix.h -./GdiPlusColorMatrix_h.26685DFF_A21F_4EBF_87A1_67EE09FA1CFF -./Include/GdiPlusEnums.h -./GdiPlusEnums_h.5EF6F66F_D797_475E_B8EF_FD49CDD87D48 -./Include/GdiPlusFlat.h -./GdiPlusFlat_h.5AC5B03F_2628_4930_BA72_E632CAD37FEB -./Include/GdiPlusFont.h -./GdiPlusFont_h.71E72F73_43E2_4153_AF02_0B725DB173C3 -./Include/GdiPlusFontCollection.h -./GdiPlusFontCollection_h.19F67CFA_48C2_4A02_8C86_D5225FDA2D88 -./Include/GdiPlusFontFamily.h -./GdiPlusFontFamily_h.17D7CCAF_B2B6_4E3B_ABD8_2B5501800007 -./Include/GdiPlusGpStubs.h -./GdiPlusGpStubs_h.935640B5_297F_49FE_9302_AE4A3711F2D8 -./Include/GdiPlusGraphics.h -./GdiPlusGraphics_h.A41E2EE5_5ECA_486B_83C7_B16076943A65 -./Include/GdiPlusHeaders.h -./GdiPlusHeaders_h.E1678F21_7792_46AD_9F58_2BA3DB444767 -./Include/GdiPlusimageAttributes.h -./GdiPlusimageAttributes_h.D5B6243B_1212_4084_B252_07CB86950C72 -./Include/GdiPlusImageCodec.h -./GdiPlusImageCodec_h.9635A95E_2775_4977_B3F6_4EE30BE74137 -./Include/GdiPlusImaging.h -./GdiPlusImaging_h.A5106C5A_BDDA_4F3A_A308_569960DB6C80 -./Include/GdiPlusInit.h -./GdiPlusInit_h.FA34DFDA_AD3A_4893_958E_FFFF102531A0 -./Include/GdiPlusLineCaps.h -./GdiPlusLineCaps_h.79EFE096_ADA9_4D60_9DC2_4AAF5009FFC7 -./Include/GdiPlusMatrix.h -./GdiPlusMatrix_h.AA8965B1_7AB3_4148_AAEC_626DD6115796 -./Include/GdiPlusMem.h -./GdiPlusMem_h.D783F1D7_3798_40A2_9AD3_E28DB2651882 -./Include/GdiPlusMetaFile.h -./GdiPlusMetaFile_h.03D37A2E_A4E4_40C6_ADCD_D35B883EE449 -./Include/GdiPlusMetaHeader.h -./GdiPlusMetaHeader_h.FDAFA155_D681_4CD4_BD15_80C6FC65455D -./Include/GdiPlusPath.h -./GdiPlusPath_h.B94A39F8_EC6F_45AF_B496_E4F577667A9B -./Include/GdiPlusPen.h -./GdiPlusPen_h.B02E922F_072C_48EE_B4CC_E12339B8DEC4 -./Include/GdiPlusPixelFormats.h -./GdiPlusPixelFormats_h.B1A789EE_7F15_468C_8BC7_FC5508DD0C6B -./Include/GdiPlusRegion.h -./GdiPlusRegion_h.37DE7D1A_222B_43C2_A8B4_38D45D6D87DC -./Include/GdiPlusStringFormat.h -./GdiPlusStringFormat_h.5F78047E_2CA8_4F93_A4E4_EE011D19D5D0 -./Include/GdiPlusTypes.h -./GdiPlusTypes_h.7FC48621_E45D_41D0_A9B6_FA27C3C9022B -./Include/GenLex.h -./GenLex_h.8AA20B42_2869_4911_BA73_922DC7F0FC3B -./Include/gl/GL.h -./GL_h.1FF3A058_137C_4EE6_A446_4D038EA85229 -./Include/gl/GLAux.h -./GLAux_h.1FF3A058_137C_4EE6_A446_4D038EA85229 -./Include/gl/GLU.h -./GLU_h.1FF3A058_137C_4EE6_A446_4D038EA85229 -./Include/GPEdit.h -./GPEdit_h.C805F61A_70D2_46F8_9187_FCBD467C9817 -./Include/gpmgmt.h -./gpmgmt_h.8DBCDC8F_CE68_4AC1_AFB5_A0817625AA29 -./Include/gpmgmt.idl -./gpmgmt_idl.8DBCDC8F_CE68_4AC1_AFB5_A0817625AA29 -./Include/Guiddef.h -./Guiddef_h.56916BE8_D455_4D49_9DFC_2FEBED0586B5 -./Include/h323priv.h -./h323priv_h.4133B579_1652_46DC_BB1E_633ADAFF759D -./Include/HlGuids.h -./HlGuids_h.7757B55F_1419_4CEF_9138_31454101E25D -./Include/HlIface.h -./HlIface_h.8C30A6F6_E93A_48BB_BDE6_0BA489DD7A9D -./Include/HlIface.Idl -./HlIface_Idl.3C685DD0_1974_4020_A972_C781D20282D0 -./Include/HLink.h -./HLink_h.02A7AB86_585E_4F0A_8FE8_31FA312735E1 -./Include/HLink.Idl -./HLink_Idl.9F841B6E_4F67_4786_BB42_8D247CD4FDB2 -./Include/HostInfo.h -./HostInfo_h.5B58ABAE_F131_49B2_99C5_C56A6F6AC62D -./Include/htiface.h -./htiface_h.BA34196B_93C2_42E8_8BBE_6CB05161A4EE -./Include/htiface.idl -./htiface_idl.891F1D76_69BA_4337_BF11_C7C0EF00CB02 -./Include/htiframe.h -./htiframe_h.0B8BDD86_C8DF_42DD_83CC_7BA6CD369CBE -./Include/htiframe.idl -./htiframe_idl.3B144BD7_FB58_4C63_9486_41E50F5B3088 -./Include/HtmlGuid.h -./HtmlGuid_h.DBADB86E_3193_4996_A649_9C63F68604D4 -./Include/HtmlHelp.h -./HtmlHelp_h.28765899_CFA3_44F5_9B75_64D8E4B5DF5B -./Include/http.h -./http_h.C64B5000_332A_4FE7_9AE6_BD480790DB4A -./Include/httprequest.idl -./httprequest_idl.F5133C56_8FC8_41D2_A6F2_D6908874119D -./Include/httprequestid.h -./httprequestid_h.FD0D3BEB_2F7A_4D7E_AC23_908826321340 -./Include/ia64reg.h -./ia64reg_h.17963503_50FB_4B5F_A415_6A2739050599 -./Include/IAccess.h -./IAccess_h.03671896_1296_484F_A651_EE0A79C83B04 -./Include/IAccess.Idl -./IAccess_Idl.0F5F57B8_3F2D_4822_972D_88A6C8C8258D -./Include/Iads.h -./Iads_h.80D25A52_9746_4A8E_A639_8B90121A9486 -./Include/iapplet.idl -./iapplet_idl.26E9D96E_40F5_431E_A8C3_D8B584B5BF2B -./Include/icftypes.h -./icftypes_h.664AF407_A85E_4A4E_BBEB_11F13E794137 -./Include/icftypes.idl -./icftypes_idl.664AF407_A85E_4A4E_BBEB_11F13E794137 -./Include/Icm.h -./Icm_h.DE225CC2_DA5A_460C_B625_500C383AEADA -./Include/IcmpAPI.h -./IcmpAPI_h.8FE23ADA_4940_4CDF_B9C7_FBAB37832421 -./Include/Icmui.Dlg -./Icmui_Dlg.1A9DCDBC_E9A7_43D2_BBBD_090844BA6097 -./Include/icwcfg.h -./icwcfg_h.E66469DB_2060_4A9C_B17D_0A5CED963A26 -./Include/Idf.h -./Idf_h.7AB1E9A9_B3DF_4131_AAD3_047CD651B919 -./Include/IDispIds.h -./IDispIds_h.081284E9_6DD3_47A5_BE9C_39B8405F0C58 -./Include/IEDial.h -./IEDial_h.E0E74EEA_78C8_4E1D_9312_29BC475BBED7 -./Include/ieverp.h -./ieverp_h.4CC54C1E_E4B1_4666_B9FD_019B8E71DE66 -./Include/iextag.h -./iextag_h.AD6E8468_A430_412A_9FE9_EE38B5638120 -./Include/IImgCtx.h -./IImgCtx_h.469FC0EA_A58A_4CEC_8833_28A7D1FD6DD4 -./Include/il21dec.h -./il21dec_h.2F684702_9B5B_4EEC_A9F1_3D4A84E88B39 -./Include/ILS.Idl -./ILS_Idl.157B68EC_CD81_40BA_B808_5D9AE9093736 -./Include/ILSGuid.h -./ILSGuid_h.23FCAC96_B39B_470B_963A_10A1B2407BB8 -./Include/ImageHlp.h -./ImageHlp_h.818BD45D_FA07_4BAE_BA34_12912E7A2D93 -./Include/imapi.h -./imapi_h.DBB40B7E_3A6B_4E85_9622_928A8C5C9FEB -./Include/imapierror.h -./imapierror_h.BD197C19_29FA_41C6_8C6A_7E2CA91B2049 -./Include/Ime.h -./Ime_h.446085C1_7576_4162_80EC_9173E701832E -./Include/IMessage.h -./IMessage_h.84F8DE34_2E1D_496C_822D_041F2B0A7607 -./Include/Imm.h -./Imm_h.AEC0D26D_055B_474B_8EEA_AB4EB231B4D6 -./Include/imnact.idl -./imnact_idl.A582B9C9_C2B8_485D_9360_845E433BA9DC -./Include/imnxport.idl -./imnxport_idl.A582B9C9_C2B8_485D_9360_845E433BA9DC -./Include/IMSConf2.Idl -./IMSConf2_Idl.F60C8D16_F0DF_4F51_9366_21E39144E9A6 -./Include/indexsrv.h -./indexsrv_h.A9BC4940_6127_4886_95CD_39F67E4BF342 -./Include/InetReg.h -./InetReg_h.E54DA96C_2A33_4D0B_97A9_586210E39E79 -./Include/InetSDK.h -./InetSDK_h.73B5CC4A_D858_4B83_BF8B_9F4A02B1AEA5 -./Include/InetSDK.Idl -./InetSDK_Idl.38091F70_26AE_4522_99A9_8A5184C5535D -./Include/INetSDK.Mak -./INetSDK_Mak.6AF22B64_993F_4575_AB56_B0609ACF0152 -./Include/InitGuid.h -./InitGuid_h.1182F75D_EFEE_4B9B_92AD_9242CCD32D88 -./Include/InitOID.h -./InitOID_h.C978FC92_96AE_42A0_ABE7_5167B9D4A729 -./Include/InputScope.h -./InputScope_h.63773E93_8D72_4F18_9B0F_11B9F45EEE3D -./Include/InputScope.idl -./InputScope_idl.458CE5D3_8E77_48FB_B063_5980E91AC0DB -./Include/Instance.h -./Instance_h.0787E551_9AE4_4500_B20A_5B28F5967FED -./Include/interop_msxml.dll -./interop_msxml_dll.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/IntShCut.h -./IntShCut_h.2DA202EB_1D77_456E_A292_EE0479A89696 -./Include/Ioevent.h -./Ioevent_h.40B04065_9EA0_4CFB_BF2D_7B324DBB9C43 -./Include/IPExport.h -./IPExport_h.3BAA492A_8171_46A5_A033_5F0004488ADF -./Include/IPHlpApi.h -./IPHlpApi_h.46FF9DD2_B7E8_4E25_903E_024E4B52B06A -./Include/Ipifcons.h -./Ipifcons_h.00BB28FB_B3F1_4345_B29F_EA5341C9BF95 -./Include/Ipinfoid.h -./Ipinfoid_h.2B8097BF_911B_4CBC_B191_F6673949EDE7 -./Include/iplgxprt.idl -./iplgxprt_idl.26E9D96E_40F5_431E_A8C3_D8B584B5BF2B -./Include/ipmsp.h -./ipmsp_h.48FC8D7B_1C13_4E78_AA09_30A38AF851D6 -./Include/ipmsp.idl -./ipmsp_idl.7BA230D6_8692_459A_AE32_080ED771D632 -./Include/Iprtrmib.h -./Iprtrmib_h.C01F60DD_44F5_4287_AC1A_8A326412D5E6 -./Include/IPTypes.h -./IPTypes_h.53AB19A4_2F28_48E9_8F8E_CF99739098F5 -./Include/IpxConst.h -./IpxConst_h.A5CC044E_5308_4B36_9ED3_3740CEDCCAED -./Include/Ipxrip.h -./Ipxrip_h.E24E8C47_7C1B_4A95_AA4C_3B36D8915D35 -./Include/Ipxrtdef.h -./Ipxrtdef_h.EDA447FF_77C1_4671_A5CE_548034B2C016 -./Include/Ipxsap.h -./Ipxsap_h.5C0A446D_F085_4523_BD2D_2A5D7562F4E7 -./Include/Ipxtfflt.h -./Ipxtfflt_h.390F009F_D3EB_45BB_A295_E1E916A167D2 -./Include/IsGuids.h -./IsGuids_h.6D360A38_CC41_4073_B948_B9E72769CDC7 -./Include/IssPer16.h -./IssPer16_h.AB7EE8DE_85F2_45D5_BA62_337A68444C0F -./Include/IssPErr.h -./IssPErr_h.CC08C62E_668D_4353_B3D2_77105A266FD4 -./Include/ivec.h -./ivec_h.21C4D305_2698_476B_8679_3B8A6FCE88DE -./Include/iwstdec.h -./iwstdec_h.D70E26B6_B934_48B1_A8E3_A7E14561011A -./Include/i_cryptasn1tls.h -./i_cryptasn1tls_h.CC4996B6_2580_4DDA_8447_A964F4907856 -./Include/Ks.h -./Ks_h.7BEAA11E_24C3_427F_B14F_ABE3953A6D4E -./Include/ksamd64.inc -./ksamd64_inc.63494C76_19BE_4BE6_BDE1_3AF85DBFFEC7 -./Include/KsGuid.h -./KsGuid_h.066EAD6C_4623_4AD9_B995_D4500C529470 -./Include/KsMedia.h -./KsMedia_h.F042466B_EA60_4731_A465_69A10DD51485 -./Include/KsProxy.h -./KsProxy_h.68782797_842B_4ACD_B62B_7F985D93A3C2 -./Include/ksuuids.h -./ksuuids_h.6ABAE4DB_24B8_40B2_BB70_E3366B6F8A0F -./Include/kxamd64.inc -./kxamd64_inc.63494C76_19BE_4BE6_BDE1_3AF85DBFFEC7 -./Include/kxia64.h -./kxia64_h.757E8D2F_C1C9_4BCC_BDB0_E8A7D60A2659 -./Include/LM.h -./LM_h.82BA1B10_774B_4610_AAE8_12BD3A5ABE8D -./Include/LMaccess.h -./LMaccess_h.5133FF20_6F58_4AAE_B24B_1274F0A934ED -./Include/LMalert.h -./LMalert_h.E2C62899_F9FD_4315_80DF_5404C933478E -./Include/LMAPIbuf.h -./LMAPIbuf_h.E0E179B8_C0FA_4010_8A87_25F96DCEBA2B -./Include/LMat.h -./LMat_h.62D99692_CEC7_4DA8_9A41_B9566516DDFC -./Include/LMaudit.h -./LMaudit_h.1BDBDBF3_F55C_4611_9AF9_EFCF9D9969AD -./Include/LMConfig.h -./LMConfig_h.5A8E0690_9D88_4246_97EC_709CC7A3910E -./Include/LMCons.h -./LMCons_h.1697AF88_99F6_4191_B666_37693CB09186 -./Include/LMDFS.h -./LMDFS_h.F3AE0998_A58A_4E7A_B05D_260042C07795 -./Include/LMErr.h -./LMErr_h.CF5FE596_A2CE_4AA3_B09F_6AAA2704E209 -./Include/LMErrlog.h -./LMErrlog_h.8AB0A004_9793_40C4_BB91_AC79F34E2D23 -./Include/LMJoin.h -./LMJoin_h.07D8F976_B35B_4460_905E_18F86B2253CD -./Include/LMMsg.h -./LMMsg_h.39D1F778_8DA5_436D_84E3_D6E22F51AC6A -./Include/LMRemUtl.h -./LMRemUtl_h.7E8FDEE0_DA87_4D9E_86CA_A079F13EEB47 -./Include/LMRepl.h -./LMRepl_h.3A6747EB_FE07_4C12_A44A_1CBB92A4DEA4 -./Include/LMServer.h -./LMServer_h.8F3A3014_FA7F_4A93_8DCA_4EA7FE4ADB38 -./Include/LMShare.h -./LMShare_h.F4407203_4F17_42C7_BE4F_C99293A1F5F0 -./Include/LMSName.h -./LMSName_h.FBE9A70B_8DDF_44D2_83A2_78CA15BB7EED -./Include/LMStats.h -./LMStats_h.2002E682_DFB5_4D84_B501_DDDC4C717E05 -./Include/LMSvc.h -./LMSvc_h.CE5D5E2B_3089_498C_86D0_5CB563635172 -./Include/LMUse.h -./LMUse_h.54C17F7C_AA9E_47A0_8D66_5FE6B6ED7B36 -./Include/LMUseFlg.h -./LMUseFlg_h.362A92A6_726C_4011_88AE_17DA5E33FFC3 -./Include/LMWksta.h -./LMWksta_h.9D74B0B5_E319_4D23_AB85_125A4310D849 -./Include/LoadPerf.h -./LoadPerf_h.5856FDE1_FBDF_4E74_BE64_1282C453FE25 -./Include/LpmApi.h -./LpmApi_h.256B8C43_FA1C_4890_97F5_EFB774DB010C -./Include/LZExpand.h -./LZExpand_h.436DF82B_80BE_4B87_B105_6F4C2C8F394D -./Include/macamd64.inc -./macamd64_inc.2E9C905D_99ED_4E19_86F8_9F5324C4B44A -./Include/madcapcl.h -./madcapcl_h.5133FF20_6F58_4AAE_B24B_1274F0A934ED -./Include/Make.Inc -./Make_Inc.55994268_7543_4962_A190_1D36FA6915EE -./Include/MAPI.h -./MAPI_h.0339EA7A_7BA7_4854_94E7_865687DC331E -./Include/MAPICode.h -./MAPICode_h.D4981EAD_7938_4BBC_9A52_3BE89EDC566D -./Include/MAPIDbg.h -./MAPIDbg_h.230DCD2B_2100_4E1F_BAA7_6F9ABF8FC0E3 -./Include/MAPIDefS.h -./MAPIDefS_h.0534CA0C_CFE6_4D44_94EA_229A4D5AF701 -./Include/MAPIForm.h -./MAPIForm_h.53EE381D_3AF6_48D4_8111_73F607C91A69 -./Include/MAPIGuid.h -./MAPIGuid_h.AFAB259E_3CDD_483B_890A_2661873FFC98 -./Include/MAPIHook.h -./MAPIHook_h.41E401CB_92AE_4533_A677_A5B085B762A8 -./Include/MAPINls.h -./MAPINls_h.34D85B4B_AF9E_4FEC_B012_9458A55180AB -./Include/MAPIOID.h -./MAPIOID_h.2D9028F7_1240_432C_9C1E_BCF4F8134B1B -./Include/MAPISPI.h -./MAPISPI_h.946533F8_CABD_4C18_8301_76BD2A566D37 -./Include/MAPITags.h -./MAPITags_h.51938EEB_7726_4FCE_976B_A2AF567414AC -./Include/MAPIUtil.h -./MAPIUtil_h.A676A69E_1AB4_4E83_B768_4CC1FD59DCAA -./Include/MAPIVal.h -./MAPIVal_h.C1070DAB_3CEE_444C_B1B7_B25491BEFDFD -./Include/MAPIWin.h -./MAPIWin_h.76BD2B88_F65E_43D9_94CC_D3372A02805B -./Include/MAPIWz.h -./MAPIWz_h.684C611A_56E9_4178_8D88_FB3D023EDAF0 -./Include/MAPIX.h -./MAPIX_h.CBB6F12C_FE20_4A6E_B548_7336CC11BC7E -./Include/MciAvi.h -./MciAvi_h.3F0A1DE6_69CF_40B5_B498_DBE24ACEB664 -./Include/Mcx.h -./Mcx_h.FC72E1D9_FD10_4B7F_95FB_0FE3FEE71449 -./Include/mdbrole.hxx -./mdbrole_hxx.B21C0F7B_5CC7_4B31_9AE1_21675A3B8B27 -./Include/MDhcp.h -./MDhcp_h.A18AC6F4_8360_4B08_9923_50FB52260EF5 -./Include/mediaerr.h -./mediaerr_h.1B5767D9_636A_4B76_9652_74DF6397F48E -./Include/mediaobj.h -./mediaobj_h.843BA097_797F_4F6E_B8AB_B55E01BF95C5 -./Include/mediaobj.idl -./mediaobj_idl.67787A44_D051_477C_ADCD_23D69A3418A1 -./Include/medparam.h -./medparam_h.6945DE81_5F64_4D70_97AC_F827E7771388 -./Include/medparam.idl -./medparam_idl.D6BD86B7_E451_4463_96DA_CCDF576200AC -./Include/MergeMod.h -./MergeMod_h.0D8E1652_B5FD_4D0C_A37D_4E8A7D805964 -./Include/MethodCo.h -./MethodCo_h.DDA18B35_3F1D_47CF_A71B_2B74DB664D09 -./Include/mfc/AFX.H -./AFX_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFX.INL -./AFX_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXBLD_.H -./AFXBLD__H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCMN.H -./AFXCMN_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCMN.INL -./AFXCMN_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCMN2.INL -./AFXCMN2_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCOLL.H -./AFXCOLL_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCOLL.INL -./AFXCOLL_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCOM_.H -./AFXCOM__H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCONV.H -./AFXCONV_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCTL.H -./AFXCTL_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCTL.INL -./AFXCTL_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCTL.RC -./AFXCTL_RC.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCVIEW.H -./AFXCVIEW_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXCVIEW.INL -./AFXCVIEW_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDAO.H -./AFXDAO_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDAO.INL -./AFXDAO_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDB.H -./AFXDB_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDB.INL -./AFXDB_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDB.RC -./AFXDB_RC.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDB_.H -./AFXDB__H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDD_.H -./AFXDD__H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDISP.H -./AFXDISP_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDLGS.H -./AFXDLGS_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDLGS.INL -./AFXDLGS_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDLLX.H -./AFXDLLX_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDLL_.H -./AFXDLL__H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDOCOB.H -./AFXDOCOB_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDTCTL.H -./AFXDTCTL_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXDTCTL.INL -./AFXDTCTL_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXEXT.H -./AFXEXT_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXEXT.INL -./AFXEXT_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXHELP.HM -./AFXHELP_HM.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXHTML.H -./AFXHTML_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXHTML.INL -./AFXHTML_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXINET.H -./AFXINET_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXINET.INL -./AFXINET_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXISAPI.H -./AFXISAPI_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXISAPI.INL -./AFXISAPI_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXISAPI.RC -./AFXISAPI_RC.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXMT.H -./AFXMT_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXMT.INL -./AFXMT_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXODLGS.H -./AFXODLGS_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXOLE.H -./AFXOLE_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXOLE.INL -./AFXOLE_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXOLECL.RC -./AFXOLECL_RC.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXOLEDB.H -./AFXOLEDB_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXOLESV.RC -./AFXOLESV_RC.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXPLEX_.H -./AFXPLEX__H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXPRINT.RC -./afxprint_rc.2A8B9E91_6C2A_4EAE_9040_B071BE4FCECC -./Include/mfc/AFXPRIV.H -./AFXPRIV_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXPRIV2.H -./AFXPRIV2_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXRES.H -./AFXRES_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXRES.RC -./AFXRES_RC.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXRICH.H -./AFXRICH_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXRICH.INL -./AFXRICH_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXSOCK.H -./AFXSOCK_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXSOCK.INL -./AFXSOCK_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXSTAT_.H -./AFXSTAT__H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/afxtls_.h -./afxtls__h.ED6EF61F_3A71_4C7A_9A90_A66246E14285 -./Include/mfc/AFXVER_.H -./AFXVER__H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXV_CFG.H -./AFXV_CFG_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXV_CPU.H -./AFXV_CPU_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXV_DLL.H -./AFXV_DLL_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXV_W32.H -./AFXV_W32_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXWIN.H -./AFXWIN_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXWIN1.INL -./AFXWIN1_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/AFXWIN2.INL -./AFXWIN2_INL.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/l.chs/AFXCTL.RC -./AFXCTL_RC.E3A3A31F_41C6_4271_91C4_F69ABB9DEEDE -./Include/mfc/l.chs/AFXDB.RC -./AFXDB_RC.E3A3A31F_41C6_4271_91C4_F69ABB9DEEDE -./Include/mfc/l.chs/AFXOLECL.RC -./AFXOLECL_RC.E3A3A31F_41C6_4271_91C4_F69ABB9DEEDE -./Include/mfc/l.chs/AFXOLESV.RC -./AFXOLESV_RC.E3A3A31F_41C6_4271_91C4_F69ABB9DEEDE -./Include/mfc/l.chs/AFXPRINT.RC -./AFXPRINT_RC.E3A3A31F_41C6_4271_91C4_F69ABB9DEEDE -./Include/mfc/l.chs/AFXRES.RC -./AFXRES_RC.E3A3A31F_41C6_4271_91C4_F69ABB9DEEDE -./Include/mfc/l.cht/AFXCTL.RC -./AFXCTL_RC.3C814369_7F63_4D0F_9DFC_9E4243A39B6D -./Include/mfc/l.cht/AFXDB.RC -./AFXDB_RC.3C814369_7F63_4D0F_9DFC_9E4243A39B6D -./Include/mfc/l.cht/AFXOLECL.RC -./AFXOLECL_RC.3C814369_7F63_4D0F_9DFC_9E4243A39B6D -./Include/mfc/l.cht/AFXOLESV.RC -./AFXOLESV_RC.3C814369_7F63_4D0F_9DFC_9E4243A39B6D -./Include/mfc/l.cht/AFXPRINT.RC -./AFXPRINT_RC.3C814369_7F63_4D0F_9DFC_9E4243A39B6D -./Include/mfc/l.cht/AFXRES.RC -./AFXRES_RC.3C814369_7F63_4D0F_9DFC_9E4243A39B6D -./Include/mfc/l.deu/AFXCTL.RC -./AFXCTL_RC.50939389_21A9_405A_9503_76A200EADDA3 -./Include/mfc/l.deu/AFXDB.RC -./AFXDB_RC.50939389_21A9_405A_9503_76A200EADDA3 -./Include/mfc/l.deu/AFXOLECL.RC -./AFXOLECL_RC.50939389_21A9_405A_9503_76A200EADDA3 -./Include/mfc/l.deu/AFXOLESV.RC -./AFXOLESV_RC.50939389_21A9_405A_9503_76A200EADDA3 -./Include/mfc/l.deu/AFXPRINT.RC -./AFXPRINT_RC.50939389_21A9_405A_9503_76A200EADDA3 -./Include/mfc/l.deu/AFXRES.RC -./AFXRES_RC.50939389_21A9_405A_9503_76A200EADDA3 -./Include/mfc/l.esp/AFXCTL.RC -./AFXCTL_RC.537788B1_31FA_4646_9F76_7BDB2C03A887 -./Include/mfc/l.esp/AFXDB.RC -./AFXDB_RC.537788B1_31FA_4646_9F76_7BDB2C03A887 -./Include/mfc/l.esp/AFXOLECL.RC -./AFXOLECL_RC.537788B1_31FA_4646_9F76_7BDB2C03A887 -./Include/mfc/l.esp/AFXOLESV.RC -./AFXOLESV_RC.537788B1_31FA_4646_9F76_7BDB2C03A887 -./Include/mfc/l.esp/AFXPRINT.RC -./AFXPRINT_RC.537788B1_31FA_4646_9F76_7BDB2C03A887 -./Include/mfc/l.esp/AFXRES.RC -./AFXRES_RC.537788B1_31FA_4646_9F76_7BDB2C03A887 -./Include/mfc/l.fra/AFXCTL.RC -./AFXCTL_RC.1EB3F86C_A273_45B5_8B2E_86870AD0CEEC -./Include/mfc/l.fra/AFXDB.RC -./AFXDB_RC.1EB3F86C_A273_45B5_8B2E_86870AD0CEEC -./Include/mfc/l.fra/AFXOLECL.RC -./AFXOLECL_RC.1EB3F86C_A273_45B5_8B2E_86870AD0CEEC -./Include/mfc/l.fra/AFXOLESV.RC -./AFXOLESV_RC.1EB3F86C_A273_45B5_8B2E_86870AD0CEEC -./Include/mfc/l.fra/AFXPRINT.RC -./AFXPRINT_RC.1EB3F86C_A273_45B5_8B2E_86870AD0CEEC -./Include/mfc/l.fra/AFXRES.RC -./AFXRES_RC.1EB3F86C_A273_45B5_8B2E_86870AD0CEEC -./Include/mfc/l.ita/AFXCTL.RC -./AFXCTL_RC.379E2DB2_E21D_41C9_A54C_C0DEA71A1C8A -./Include/mfc/l.ita/AFXDB.RC -./AFXDB_RC.379E2DB2_E21D_41C9_A54C_C0DEA71A1C8A -./Include/mfc/l.ita/AFXOLECL.RC -./AFXOLECL_RC.379E2DB2_E21D_41C9_A54C_C0DEA71A1C8A -./Include/mfc/l.ita/AFXOLESV.RC -./AFXOLESV_RC.379E2DB2_E21D_41C9_A54C_C0DEA71A1C8A -./Include/mfc/l.ita/AFXPRINT.RC -./AFXPRINT_RC.379E2DB2_E21D_41C9_A54C_C0DEA71A1C8A -./Include/mfc/l.ita/AFXRES.RC -./AFXRES_RC.379E2DB2_E21D_41C9_A54C_C0DEA71A1C8A -./Include/mfc/l.jpn/AFXCTL.RC -./AFXCTL_RC.50664591_5CE3_459B_B353_2022D6023EB5 -./Include/mfc/l.jpn/AFXDB.RC -./AFXDB_RC.50664591_5CE3_459B_B353_2022D6023EB5 -./Include/mfc/l.jpn/AFXOLECL.RC -./AFXOLECL_RC.50664591_5CE3_459B_B353_2022D6023EB5 -./Include/mfc/l.jpn/AFXOLESV.RC -./AFXOLESV_RC.50664591_5CE3_459B_B353_2022D6023EB5 -./Include/mfc/l.jpn/AFXPRINT.RC -./AFXPRINT_RC.50664591_5CE3_459B_B353_2022D6023EB5 -./Include/mfc/l.jpn/AFXRES.RC -./AFXRES_RC.50664591_5CE3_459B_B353_2022D6023EB5 -./Include/mfc/l.kor/AFXCTL.RC -./AFXCTL_RC.B7FA0B7E_DD72_40DF_96D1_538F4A803082 -./Include/mfc/l.kor/AFXDB.RC -./AFXDB_RC.B7FA0B7E_DD72_40DF_96D1_538F4A803082 -./Include/mfc/l.kor/AFXOLECL.RC -./AFXOLECL_RC.B7FA0B7E_DD72_40DF_96D1_538F4A803082 -./Include/mfc/l.kor/AFXOLESV.RC -./AFXOLESV_RC.B7FA0B7E_DD72_40DF_96D1_538F4A803082 -./Include/mfc/l.kor/AFXPRINT.RC -./AFXPRINT_RC.B7FA0B7E_DD72_40DF_96D1_538F4A803082 -./Include/mfc/l.kor/AFXRES.RC -./AFXRES_RC.B7FA0B7E_DD72_40DF_96D1_538F4A803082 -./Include/mfc/MFCSAMPS.MAK -./MFCSAMPS_MAK.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/mfc/res/3dcheck.bmp -./_3dcheck_bmp.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/95CHECK.BMP -./_95CHECK_BMP.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/COPY4WAY.CUR -./COPY4WAY_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/HELP.CUR -./HELP_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/HELP.RSC -./HELP_RSC.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/MAGNIFY.CUR -./MAGNIFY_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/MAGNIFY.RSC -./MAGNIFY_RSC.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/MINIFWND.BMP -./MINIFWND_BMP.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/MOVE4WAY.CUR -./MOVE4WAY_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/NODROP.CUR -./NODROP_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/NTCHECK.BMP -./NTCHECK_BMP.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/SARROWS.CUR -./SARROWS_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/SPLIT.RSC -./SPLIT_RSC.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/SPLITH.CUR -./SPLITH_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/SPLITV.CUR -./SPLITV_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/TRCK4WAY.CUR -./TRCK4WAY_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/TRCKNESW.CUR -./TRCKNESW_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/TRCKNS.CUR -./TRCKNS_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/TRCKNWSE.CUR -./TRCKNWSE_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/TRCKWE.CUR -./TRCKWE_CUR.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/res/TRUETYPE.BMP -./TRUETYPE_BMP.89C3BD9D_A47B_4B81_8104_85F1A20AC145 -./Include/mfc/WINRES.H -./WINRES_H.C61C4FD7_52DE_4D49_8479_C23B5510FAB5 -./Include/Mgm.h -./Mgm_h.B188D039_A14F_4D4A_BB83_A3CE8B67E563 -./Include/MgmtAPI.h -./MgmtAPI_h.E8E96562_F2EB_43E8_A00F_F83AF415D3B0 -./Include/microsoft.windowsmediaservices.dll -./microsoft_windowsmediaservices_dll.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/Midles.h -./Midles_h.0DFAFB88_D3C9_4D25_AFD7_9038FED25DFA -./Include/mimedisp.h -./mimedisp_h.C0A5C8BB_1F92_49A7_925E_EED72BE3933B -./Include/MimeInfo.h -./MimeInfo_h.767F7E6D_4897_439F_92E9_1EA883141FA8 -./Include/MimeInfo.Idl -./MimeInfo_Idl.A217FA05_C15C_4BF7_9A82_52BCC5A25573 -./Include/mimeole.idl -./mimeole_idl.A582B9C9_C2B8_485D_9360_845E433BA9DC -./Include/mixerocx.h -./mixerocx_h.934DA7DA_2B20_4191_BED0_DC0F1C5A679F -./Include/mixerocx.idl -./mixerocx_idl.ACBE85D0_DBE7_49E4_AB19_EA5D8D64E20F -./Include/MLang.h -./MLang_h.14EB3C66_8C71_4ED5_9CF3_F04EF8E2198F -./Include/MLang.Idl -./MLang_Idl.5CA764A7_27FF_43C8_A52F_9FD62446C8E8 -./Include/MMC.h -./MMC_h.CA2FAFB9_31A3_4ABD_BCED_770875EC77C4 -./Include/MMC.Idl -./MMC_Idl.007985A4_45C9_4E66_B7E2_CB37E5947C87 -./Include/MMCObj.h -./MMCObj_h.83E52553_6FDF_4FB8_BC9B_91CECD97B637 -./Include/MMCObj.Idl -./MMCObj_Idl.2FDBE396_6E97_4E72_8866_47365EDC196C -./Include/mmintrin.h -./mmintrin_h.E828F002_A3C8_4D93_A1F5_7068CB2A1CB7 -./Include/MMReg.h -./MMReg_h.9D73BF9C_506A_4FEA_AEF5_04C7E58A6C20 -./Include/mmstream.h -./mmstream_h.8D93F17B_6965_4D37_806A_BA7FA23E59B7 -./Include/mmstream.idl -./mmstream_idl.69A3E20E_EF97_4271_9EAC_9171ABABA017 -./Include/MMSystem.h -./MMSystem_h.295C9690_BBB8_4370_A31B_9F8FB19448CF -./Include/Mobsync.h -./Mobsync_h.DBC26BF3_1B67_422A_9836_BE06568B476F -./Include/Mobsync.Idl -./Mobsync_Idl.EB3AA1AC_FB50_4F77_BE12_BD19C780A4B6 -./Include/Moniker.h -./Moniker_h.10F353EA_760F_48F1_B731_16D884E7E332 -./Include/mpconfig.h -./mpconfig_h.7666150D_331D_49ED_84C1_C08FE9F4FE77 -./Include/mpeg2bits.h -./mpeg2bits_h.DA70BDC1_1459_46A8_8E44_C6EEB8D8A13C -./Include/mpeg2data.h -./mpeg2data_h.DC99349A_ACFB_4514_97C5_71DB4BB0BAC6 -./Include/mpeg2data.idl -./mpeg2data_idl.E72B169B_AAA8_4116_B2F0_077960A99754 -./Include/mpeg2error.h -./mpeg2error_h.801DE27E_02E7_47D6_A520_BA21795BCF98 -./Include/Mpeg2Structs.idl -./Mpeg2Structs_idl.9184022E_7724_48F3_BDF8_BA372001CFA9 -./Include/mpegtype.h -./mpegtype_h.0864A0D8_EE14_4FA6_8E81_55A85D7CF184 -./Include/Mprapi.h -./Mprapi_h.36603CC6_1F9B_4BFA_8AF6_F9A28AB610AE -./Include/MprError.h -./MprError_h.16E880D2_9204_4831_B2A9_B806B3BAE03E -./Include/Mq.h -./Mq_h.DACB7E14_17B9_4BDB_9594_CE4A4AEBBBA4 -./Include/MqMail.h -./MqMail_h.EBD11E57_F49E_43FA_ABF0_63C5B2D74ABC -./Include/MqOaI.h -./MqOaI_h.22FBD632_CA76_49B4_AFAB_0357AD52C81E -./Include/MSAAText.h -./MSAAText_h.F51F5217_261B_4A33_8CBD_52CD03AC02F9 -./Include/MSAAText.Idl -./MSAAText_Idl.DE7947AC_C3E0_4B65_8197_E62D7D56F037 -./Include/MSAcm.h -./MSAcm_h.C0BA3222_B43F_4BCC_8DE2_2FDE25FA599A -./Include/MSAcmDlg.Dlg -./MSAcmDlg_Dlg.975CFBB3_3423_418F_8296_826FE736B76A -./Include/MSAcmDlg.h -./MSAcmDlg_h.0D88180D_6060_4209_BA59_F42501113F60 -./Include/msasn1.h -./msasn1_h.23592FCF_590D_4AEE_93C8_AE0C87245DC7 -./Include/msber.h -./msber_h.23592FCF_590D_4AEE_93C8_AE0C87245DC7 -./Include/mscat.h -./mscat_h.C1857A54_866B_4CCA_A04E_15815AB4E068 -./Include/MSChapp.h -./MSChapp_h.2BBACB95_F15F_427A_9067_42C494562752 -./Include/MSClus.h -./MSClus_h.DD398B28_5209_4E88_AC13_D2D4C2728E30 -./Include/MSClus.Idl -./MSClus_Idl.94F46EA8_C82F_4873_9D37_9EF3A49A0B38 -./Include/msctf.h -./msctf_h.43807256_FAEC_4FD8_A450_B7A55D854567 -./Include/msctf.idl -./msctf_idl.E12F57A6_D221_479C_B887_5E1DDD882FF7 -./Include/MSDaIpp.h -./MSDaIpp_h.6CD6AF63_73C3_4980_9B11_8B0995D55463 -./Include/MSDaIppEr.h -./MSDaIppEr_h.6CD6AF63_73C3_4980_9B11_8B0995D55463 -./Include/MSFS.h -./MSFS_h.754B4AD2_ECB0_4717_AF53_FF29E4BDF72C -./Include/MsHtmcid.h -./MsHtmcid_h.D19ABEF4_02B0_417D_AD10_AC8A99071145 -./Include/MsHtmdid.h -./MsHtmdid_h.8C53E4A0_C7F2_4CA5_ADF2_38E80B597838 -./Include/MsHtmHst.h -./MsHtmHst_h.4E0A91CD_127F_4B54_9A8F_3E3B788CCAA1 -./Include/MsHtmHst.Idl -./MsHtmHst_Idl.1259F412_7859_4A1B_BEF5_625BB2FA2715 -./Include/MsHTML.h -./MsHTML_h.A58A4412_2778_4BDA_B292_3A6071042E04 -./Include/MsHTML.Idl -./MsHTML_Idl.CE9E55D2_6927_47D3_A55E_E20A003CC069 -./Include/Mshtmlc.h -./Mshtmlc_h.E175317C_6396_4A5C_9B90_6CDC51F217D6 -./Include/Msi.h -./Msi_h.837527D5_E2D7_4B57_8AC4_3B6F80FED41A -./Include/MsiDefs.h -./MsiDefs_h.A41E3CA1_6D12_4BDC_AC30_97E5FE134E9C -./Include/msident.idl -./msident_idl.A582B9C9_C2B8_485D_9360_845E433BA9DC -./Include/msimcntl.h -./msimcntl_h.59894D74_2C9C_4458_9A41_9F003E0FB8A7 -./Include/msimcsdk.h -./msimcsdk_h.CB063B86_8A66_4A2D_985A_D2FE4DF2A425 -./Include/MsiQuery.h -./MsiQuery_h.9882232D_F238_41C2_B24C_B2C078F25D46 -./Include/msoav.h -./msoav_h.E175317C_6396_4A5C_9B90_6CDC51F217D6 -./Include/msoeapi.idl -./msoeapi_idl.A582B9C9_C2B8_485D_9360_845E433BA9DC -./Include/Msp.h -./Msp_h.6743AB03_DDEA_4A65_8CF0_630D2931A9D4 -./Include/Msp.Idl -./Msp_Idl.A0DFFB38_3668_4A65_8ACF_65CA03B8BD90 -./Include/MSPAB.h -./MSPAB_h.6E00B7E0_C3A6_46F5_8F86_47910D82D6F0 -./Include/MspAddr.h -./MspAddr_h.E26E5445_2B53_47E7_96F8_DC37693B9709 -./Include/MspBase.h -./MspBase_h.30F1334A_4690_427C_A19E_67E60AEBA944 -./Include/MspCall.h -./MspCall_h.97EB792F_6083_4C16_A26F_7BBC7E592200 -./Include/Mspcoll.h -./Mspcoll_h.B6ED6461_1D9B_4576_BD61_829F198AE375 -./Include/MspEnum.h -./MspEnum_h.30F1334A_4690_427C_A19E_67E60AEBA944 -./Include/Msplog.h -./Msplog_h.2E0CBE5B_7B90_4333_B07F_05C0CBC4E1AD -./Include/MSPST.h -./MSPST_h.EAD52161_37C7_4208_B730_8DDEF7CC86C1 -./Include/MspStrm.h -./MspStrm_h.EDF915D7_FA69_4E4A_9B8A_9F707D1D7FD0 -./Include/Mspterm.h -./Mspterm_h.6DDB9044_7671_4B56_A242_82DE69FDFCAF -./Include/Mspthrd.h -./Mspthrd_h.8E79DE3B_E7AE_47BF_ABB4_1EC6BA8DDB18 -./Include/Msptrmac.h -./Msptrmac_h.4E0AD16B_2C14_4DED_AB8F_993C11B90760 -./Include/Msptrmar.h -./Msptrmar_h.E386B0D0_83E6_4E7F_8CB5_8A44A5B79817 -./Include/Msptrmvc.h -./Msptrmvc_h.D547637D_1F10_46AD_8AB9_B423123DA3F8 -./Include/Msputils.h -./Msputils_h.C65FE009_3A66_40EA_9442_3AD43A54E474 -./Include/mssip.h -./mssip_h.4BB5A11A_21C5_4E33_8EC5_A973F8A76FBA -./Include/msstkppg.h -./msstkppg_h.5FF5DEEE_F0DB_499B_8890_55AEB3FBEB53 -./Include/MSTask.h -./MSTask_h.7AB990EA_9ECB_4634_BE8C_C45D4F6F0388 -./Include/MSTask.Idl -./MSTask_Idl.630CC9E0_B577_4E9D_8083_7D157B7954FE -./Include/MSTcpIP.h -./MSTcpIP_h.A9FE1621_3974_4BB9_B728_D98FE04124C1 -./Include/MSTErr.h -./MSTErr_h.83C62642_224B_4CAF_9D20_B32B26889619 -./Include/mstime.h -./mstime_h.C267E1BD_6255_4E22_90B7_E4FFF2280007 -./Include/mstimeid.h -./mstimeid_h.E12F3AA6_26A6_483A_B34A_0DE78ECAAE7D -./Include/msvidctl.h -./msvidctl_h.3B3F95D4_0596_4DC5_8DEA_9BB1F515256F -./Include/msvidctl.idl -./msvidctl_idl.A8CB30FE_609C_4C54_97EA_ABAD78EB3DD5 -./Include/MSWSock.h -./MSWSock_h.2872849B_A878_41F4_A56B_DDA714AEF892 -./Include/MsXml.h -./MsXml_h.AC2EFAFF_0261_4481_BFED_FE8B095D8223 -./Include/MsXml.Idl -./MsXml_Idl.1DB55F7B_BE87_49C9_91E9_A5E1AC85AA0B -./Include/MsXml2.h -./MsXml2_h.FE65544F_258E_4840_AC47_9C42BB2AFE3A -./Include/MsXml2DId.h -./MsXml2DId_h.7127B9D2_6B9A_49D0_A936_5317167D8A4B -./Include/MsXmlDId.h -./MsXmlDId_h.D674D823_3424_4ABF_9CFB_9335594A4999 -./Include/MtsAdmin.h -./MtsAdmin_h.244584B0_1900_4331_B938_BD88FC2E6E0E -./Include/MtsAdmin_i.c -./MtsAdmin_i_c.9DEF3E9A_BD10_444E_AE7B_FC3D0CA82F28 -./Include/MtsEvents.h -./MtsEvents_h.9848A40E_A061_4BF9_9523_CE7B40D52559 -./Include/MtsGrp.h -./TxCtx_h.E3CEB071_B0E3_4710_BC8F_A32DD1C43774 -./Include/Mtx.h -./Mtx_h.2AC80D44_A137_4188_82FC_C5B5D724880E -./Include/MtxAdmin.h -./MtxAdmin_h.26F16C4C_548E_4A6E_ADD9_20BF8B124CCF -./Include/MtxAdmin_i.c -./MtxAdmin_i_c.5F1179BC_C36D_4283_8791_35E81016AAD6 -./Include/MtxAttr.h -./MtxAttr_h.51591BD1_29BC_4597_BEE7_70BEC03882E4 -./Include/Mtxdm.h -./Mtxdm_h.EC3B9C74_61BB_46F6_967D_097401A26750 -./Include/MultiMon.h -./MultiMon_h.7D04B950_36A8_41D1_BF3B_88EBA257D979 -./Include/MultInfo.h -./MultInfo_h.5B58ABAE_F131_49B2_99C5_C56A6F6AC62D -./Include/natupnp.h -./natupnp_h.1958A637_F9BC_4EB1_A3FA_D5AAFD8CBB55 -./Include/natupnp.idl -./natupnp_idl.3D0CF8B6_5D2D_42FA_BF4F_A2358652281C -./Include/Nb30.h -./Nb30_h.9E75484D_29C6_42B0_96A1_AAC55777CA00 -./Include/ndr64types.h -./ndr64types_h.53F89B7F_80F7_4D05_B013_6C1C384ECC3D -./Include/ndrtypes.h -./ndrtypes_h.ABCC34E6_8056_4F05_A332_2070940951AB -./Include/NetCon.h -./NetCon_h.12F6C265_91AE_4F83_B90A_A989D10DC0C9 -./Include/NetCon.Idl -./NetCon_Idl.38C8FF9F_E4F4_4419_B5E0_D68822EBBE64 -./Include/neterr.h -./neterr_h.6E62D5BA_591A_4726_9481_51EFE172338D -./Include/netfw.h -./netfw_h.664AF407_A85E_4A4E_BBEB_11F13E794137 -./Include/netfw.idl -./netfw_idl.664AF407_A85E_4A4E_BBEB_11F13E794137 -./Include/netmeeting.idl -./netmeeting_idl.26E9D96E_40F5_431E_A8C3_D8B584B5BF2B -./Include/netmon.h -./netmon_h.6E62D5BA_591A_4726_9481_51EFE172338D -./Include/netprov.h -./netprov_h.1240AFB7_6526_49DE_B78F_E9DE0CD96A0A -./Include/netprov.idl -./netprov_idl.8F3704BF_8D72_470D_A121_389BEAD387CF -./Include/NetSh.h -./NetSh_h.881E484B_BCAB_43EC_8101_ABB6A7CABF1B -./Include/NewAPIs.h -./NewAPIs_h.9B761DDC_8402_4693_9FDF_3F2E28BBD24E -./Include/nmappstr.h -./nmappstr_h.26E9D96E_40F5_431E_A8C3_D8B584B5BF2B -./Include/nmapptyp.h -./nmapptyp_h.26E9D96E_40F5_431E_A8C3_D8B584B5BF2B -./Include/nmsupp.h -./nmsupp_h.6E62D5BA_591A_4726_9481_51EFE172338D -./Include/NNTPReg.Vbs -./NNTPReg_Vbs.7DBED699_F5B0_4914_9D26_A59D467841B8 -./Include/Npapi.h -./Npapi_h.09AD1491_59E3_4BA7_8E43_1EA637FDC104 -./Include/nserror.h -./nserror_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/NspAPI.h -./NspAPI_h.A22834BF_305B_4213_AB5F_B6CA74256046 -./Include/nsscore.h -./nsscore_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/nsscore.idl -./nsscore_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/NtDDNdis.h -./NtDDNdis_h.E203C8E7_81BA_432F_A2C3_06ED7CA2AD2C -./Include/NtDDPSch.h -./NtDDPSch_h.FA4B0FB9_606A_46EF_A255_0A9024695EEC -./Include/ntddscsi.h -./ntddscsi_h.9404D881_48DB_442A_B7D5_41BA264EB726 -./Include/NtDsAPI.h -./NtDsAPI_h.8FE93977_C65E_4016_B2E8_29E10E8B7B4A -./Include/NtDsBCli.h -./NtDsBCli_h.A00CC38E_482B_4925_9AA3_C3427D3679B1 -./Include/NtDsBMsg.h -./NtDsBMsg_h.B37BA7F9_7E48_43FB_BF22_78F859774136 -./Include/ntgdi.h -./ntgdi_h.794E3F3B_ADEA_4201_9318_AD5F21DC9FA7 -./Include/NtLdap.h -./NtLdap_h.47CA7D74_7F38_4175_9DBF_CE5CFCE47E70 -./Include/NTMSAPI.h -./NTMSAPI_h.7BA6AE7A_1131_406D_915A_D07D88D4025F -./Include/NTMSMli.h -./NTMSMli_h.2A9BDC50_9350_4E71_BDAE_61978783391A -./Include/NTQuery.h -./NTQuery_h.9C69A29C_CE43_4792_B75B_A63E29F28A32 -./Include/NTSDExts.h -./NTSDExts_h.7A24CAB7_71EF_45BC_9AF0_60AA048A88C8 -./Include/NTSecAPI.h -./NTSecAPI_h.7B61077B_D336_43C4_8967_E6F41C0DEF03 -./Include/NTSecPkg.h -./NTSecPkg_h.7B61077B_D336_43C4_8967_E6F41C0DEF03 -./Include/ntstatus.h -./ntstatus_h.EFDE8372_0E90_4D3B_AB7B_B2E109E3FB9A -./Include/ntverp.h -./ntverp_h.7849A3D7_21E8_4E0B_B7A2_E7A37777D290 -./Include/NtWin32.Mak -./W32chico_mk.67AF319B_95A7_4C64_809D_D0A8DAB3F54B -./Include/OAIdl.acf -./OAIdl_acf.F049E6EF_A201_444C_9019_ED019C7C830F -./Include/OAIdl.h -./OAIdl_h.56FF548A_18B4_4A8A_B77D_6909ECE826D8 -./Include/OAIdl.Idl -./OAIdl_Idl.683F21E0_43B8_4908_AE92_90C669E68110 -./Include/ObjBase.h -./ObjBase_h.9AD3F4FF_0EC0_4AD2_8005_B1D00F4EB93C -./Include/ObjError.h -./ObjError_h.FE14CF98_BFF0_4670_AFD0_286F4F696179 -./Include/ObjIdl.h -./ObjIdl_h.6637B60C_458B_4A9D_A46C_A5DF4007C96F -./Include/ObjIdl.Idl -./ObjIdl_Idl.40FBA21F_D7C9_4C0A_A404_7C37A8ACF8F7 -./Include/ObjPath.h -./ObjPath_h.D666ADB7_1F38_44A8_9F60_4E99654A5DFF -./Include/ObjSafe.h -./ObjSafe_h.E4041280_6A8A_431A_96D7_560D0416D0C6 -./Include/ObjSafe.Idl -./ObjSafe_Idl.568C74CC_ECE4_49BD_9152_0E820132E1DB -./Include/ObjSel.h -./ObjSel_h.3E070023_EAEE_458D_8BB8_F8BDFD52C903 -./Include/OCIdl.acf -./OCIdl_acf.B059D702_5370_49DF_A5F7_99DA20AAC22E -./Include/OCIdl.h -./OCIdl_h.98DA6399_D399_44B6_9E2B_6F9F746ECB84 -./Include/OCIdl.Idl -./OCIdl_Idl.3A0BE229_0A31_4910_AE1B_91BAE5765F75 -./Include/ocmm.h -./ocmm_h.176F5BA4_2A87_4CB3_A36F_E882A24DF840 -./Include/ocmm.Idl -./ocmm_Idl.5B0AC5B1_3169_4A73_8631_4710E0207908 -./Include/oerules.idl -./oerules_idl.A582B9C9_C2B8_485D_9360_845E433BA9DC -./Include/ole.h -./ole_h.3F0696CA_EB55_4F6B_8239_C162BF1ACC58 -./Include/Ole2.h -./Ole2_h.D4545A8B_D17E_4E53_9B23_1708DF5AE148 -./Include/Ole2Ver.h -./Ole2Ver_h.C5781570_6814_4C1B_A958_EBE35CFA75A0 -./Include/OleAcc.h -./OleAcc_h.03ACBFA5_1C3E_45E0_8A2A_9A696B291891 -./Include/OleAcc.idl -./OleAcc_idl.03ACBFA5_1C3E_45E0_8A2A_9A696B291891 -./Include/OleAuto.h -./OleAuto_h.F19C0324_8EF7_4314_ABD6_50D225CF0032 -./Include/OleCtl.h -./OleCtl_h.29A01E87_64D0_4C73_AFDB_09EA9FFF79E1 -./Include/OleCtlId.h -./OleCtlId_h.13334242_A839_4A53_BE85_7CAD432EB321 -./Include/OleDlg.Dlg -./OleDlg_Dlg.423F71BA_6E46_4BE4_A9F5_68C7C6AFC570 -./Include/OleDlg.h -./OleDlg_h.2A22AC28_8612_4330_B42A_4E8D6F18E7F2 -./Include/OleIdl.h -./OleIdl_h.6C56CC74_3B2D_4528_AE3A_DE3A0CD48788 -./Include/OleIdl.Idl -./OleIdl_Idl.B90D908E_584B_42FB_91E4_4659FDCDE5EF -./Include/oleTx2xa.h -./oleTx2xa_h.A5BCC85C_55D9_43AF_B515_707F5C092599 -./Include/OPathLex.h -./OPathLex_h.84A209A8_DFF0_4957_9AA6_99E26825BE88 -./Include/p2p.h -./p2p_h.59F4A4BF_9074_42EB_A39D_E722166D0A41 -./Include/parser.h -./parser_h.6E62D5BA_591A_4726_9481_51EFE172338D -./Include/passport.h -./passport_h.C4AD0587_3DA7_46D7_AFCE_A73130A33ADD -./Include/passport.idl -./passport_idl.64880B97_91B4_480A_871A_C810F702BC2D -./Include/PatchApi.h -./PatchApi_h.6AAB2D8B_D1C2_4E3A_85D6_A5ABE59C40DB -./Include/PatchWiz.h -./PatchWiz_h.D079C723_884A_43AE_BAA7_DD8C5708D9EB -./Include/Pbt.h -./Pbt_h.D805CE55_BEF7_422E_844F_DE6F173685EB -./Include/PChannel.h -./PChannel_h.428B0CA1_537B_4F18_B28E_746122ACE87D -./Include/Pcrt32.h -./Pcrt32_h.EEF55C0C_54E6_4207_9CF0_F5B7331BC479 -./Include/Pdh.h -./Pdh_h.A64E1363_790F_48FF_BCF4_B96064C6C2F8 -./Include/PdhMsg.h -./PdhMsg_h.3861474A_9112_476B_BE1A_485C2A22CC77 -./Include/PerHist.h -./PerHist_h.07FF7965_E263_4ADE_9F4F_B7986CBD4192 -./Include/PerHist.Idl -./PerHist_Idl.3F194478_6097_4491_A146_5D6598C3FA10 -./Include/playlist.h -./playlist_h.FAD595FB_B062_4F1D_A7A8_434D1742D41D -./Include/pnrpdef.h -./pnrpdef_h.819F3DEB_AC26_4C4C_B411_6B5C8F6A71A0 -./Include/pnrpns.h -./pnrpns_h.42263231_D9D8_4F54_BC1B_758835F62CC3 -./Include/Polarity.h -./Polarity_h.7C4D3C9E_AB68_4DB9_9D70_91191143B203 -./Include/PopPack.h -./PopPack_h.19BD4592_AD9B_43F0_B748_7FA25EC85E06 -./Include/PostMake.Inc -./PostMake_Inc.93E20086_776F_4937_9D65_D8AC00A5A201 -./Include/powrprof.h -./powrprof_h.1915D48F_93D8_4750_AD18_CC60A44F18D4 -./Include/pre64pra.h -./pre64pra_h.548E2D54_2010_4B9C_8E66_F5037147B227 -./Include/PrnSetup.Dlg -./PrnSetup_Dlg.47EE4A1B_F53A_46FE_8A1B_1E126B3F7B76 -./Include/ProfInfo.h -./ProfInfo_h.6BB75666_19C1_4FE4_B35D_D1E482D8F78B -./Include/PropIdl.h -./PropIdl_h.040E2AAB_4566_4C4F_B11F_3D40589AE5F1 -./Include/PropIdl.Idl -./PropIdl_Idl.8890B223_02F5_4AC0_A583_7E2F67537BE5 -./Include/ProvExce.h -./ProvExce_h.BC3458F0_8BAB_403A_9C4C_565BC326A32B -./Include/Provider.h -./Provider_h.7F536E4F_1B33_4251_A14A_CBCC35C3502E -./Include/PrSht.h -./PrSht_h.389FDE77_9DE0_439F_9701_743EFD6DCD31 -./Include/prsht.idl -./prsht_idl.331E9169_37FE_4AE2_BE25_27BAB37A359D -./Include/Psapi.h -./Psapi_h.9FBFE982_C852_453F_8111_8BDBDD60FF2C -./Include/PshPack1.h -./PshPack1_h.631A73F8_CB5D_4DFA_8E25_88A8E53C8137 -./Include/PshPack2.h -./PshPack2_h.F979C07C_AB30_41B5_B726_8021BC8F0EFE -./Include/PshPack4.h -./PshPack4_h.64CE30CC_18EF_4837_9831_3CFE2C7EF881 -./Include/PshPack8.h -./PshPack8_h.D57ECA9A_804C_4E23_B6EA_726A39544215 -./Include/pstore.h -./pstore_h.184FE88A_81C5_41CD_BE4B_CF1AEC69F5F5 -./Include/qedit.h -./qedit_h.0F96BE00_E34D_4248_B32E_98E197CB6679 -./Include/qedit.idl -./qedit_idl.953824BB_311F_439B_AE44_A5E3B9139859 -./Include/qmgr.h -./qmgr_h.944EE55D_D255_4837_B29D_B827BEDA9141 -./Include/qmgr.idl -./qmgr_idl.944EE55D_D255_4837_B29D_B827BEDA9141 -./Include/qnetwork.h -./qnetwork_h.09D00692_DD32_4D82_A18C_406B938C13D7 -./Include/Qos.h -./Qos_h.551E01A3_4ED5_42F5_AFFF_DD5F366018BF -./Include/QosName.h -./QosName_h.AA9D02AA_D862_4CBE_9119_2F83192E2FA6 -./Include/QosPol.h -./QosPol_h.70956EE4_894C_48A0_9C81_167C8F99C8C9 -./Include/Qossp.h -./Qossp_h.57AB9470_EDF1_45D3_94E7_AA361BB309E6 -./Include/Ras.h -./Ras_h.B780500A_C47F_429D_B150_EE3695900FCA -./Include/RasDlg.h -./RasDlg_h.A8F8F383_178A_4986_A60C_8A812FAAF3A4 -./Include/Raseapif.h -./Raseapif_h.5E119BA6_775F_4E8B_A04C_4DCAE6453CAB -./Include/RasError.h -./RasError_h.2C6211FD_35C3_4332_A78F_EEB794D1AA96 -./Include/Rassapi.h -./Rassapi_h.0ED5C96B_0D6A_405A_A30F_33997D020967 -./Include/RassHost.h -./RassHost_h.5D295E36_A9A4_4402_83DE_C7966807B241 -./Include/Ratings.h -./Ratings_h.0B5310B2_1EA8_4C24_BE24_DC6A03F2E667 -./Include/Reason.h -./Reason_h.55F66060_F010_4CE4_9F3E_515A84A83F6F -./Include/RecGuids.h -./RecGuids_h.B68A3AE6_8938_4A7E_AC62_6B74A1CF043F -./Include/Reconcil.h -./Reconcil_h.803E5A61_2029_4798_B006_FA1041C24B18 -./Include/RefPtrCo.h -./RefPtrCo_h.248031EF_2C1F_4F75_9334_B15FD0257EC5 -./Include/regbag.h -./regbag_h.73738F8B_A801_402D_A037_14DDB150BF56 -./Include/regbag.idl -./regbag_idl.C5314BF1_A51F_4D8A_8BE6_5A41A2B405C8 -./Include/regpiatypelib.vbs -./regpiatypelib_vbs.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/RegStr.h -./RegStr_h.57D4A211_4EB0_4F88_B255_FDFDA00B4F68 -./Include/REND.h -./REND_h.5999ADEC_6135_49FE_8FEB_80CAA855260C -./Include/Rend.Idl -./Rend_Idl.F230096A_2BF0_483C_AA8E_0E930D961DD2 -./Include/Resapi.h -./Resapi_h.444BB2FF_FC68_4023_990D_634E16F21E7A -./Include/Richedit.h -./Richedit_h.B0624E57_A883_4C4D_A265_D1142B4970DB -./Include/RichOle.h -./RichOle_h.1EBD477A_AEE4_42AC_9AC6_5FA6868DEB97 -./Include/rkeysvcc.h -./rkeysvcc_h.B9495D5F_1F18_4CBB_8199_48765A03CA6D -./Include/RNDErr.h -./RNDErr_h.43D37602_1648_45BC_92A4_EDA8837EACE9 -./Include/Routprot.h -./Routprot_h.C8989A14_1B00_4729_B0DE_03C6A87272B7 -./Include/Rpc.h -./Rpc_h.686E96C3_BD4A_45BA_8AF6_19E7ABD1A56C -./Include/RpcAsync.h -./RpcAsync_h.6676D74E_393F_4189_B787_21973FBED734 -./Include/RpcDce.h -./RpcDce_h.84D855AA_091A_4BD6_A1C3_F7A082BEE269 -./Include/RpcDceP.h -./RpcDceP_h.83370D9F_671B_4F5C_B828_EC68A2BB8E57 -./Include/RpcNdr.h -./RpcNdr_h.C259E63A_1C45_4AD6_A5ED_C4B48DA56880 -./Include/RpcNsi.h -./RpcNsi_h.01BED11A_593A_4830_B10D_49B9251101C3 -./Include/RpcNsip.h -./RpcNsip_h.D7F23C28_1E0F_40C8_9464_9F935B18D207 -./Include/RpcNtErr.h -./RpcNtErr_h.6705B765_05EA_46F3_8850_6E2FD0161CCE -./Include/RpcProxy.h -./RpcProxy_h.B3E6BC74_C7EE_4A6D_98E0_3D201CFB7B7C -./Include/rpcssl.h -./rpcssl_h.686E96C3_BD4A_45BA_8AF6_19E7ABD1A56C -./Include/RrasCfg.h -./RrasCfg_h.ABED1E8B_FC54_42C7_AA70_D5AE38871834 -./Include/RrasCfg.Idl -./RrasCfg_Idl.29AEDE29_BA7C_4E46_9E49_6622FDACFD98 -./Include/rtccore.h -./rtccore_h.4737EAC9_2A94_410B_985A_E1BB842138C5 -./Include/rtccore.idl -./rtccore_idl.B2265044_637A_4309_A7FC_8C8D7605680A -./Include/rtcerr.h -./rtcerr_h.30C11CFB_5C7E_4637_980A_9B105CEEB5E0 -./Include/RTInfo.h -./RTInfo_h.21D004CD_6F78_4955_A16B_659DCF5D6A23 -./Include/Rtm.h -./Rtm_h.21D004CD_6F78_4955_A16B_659DCF5D6A23 -./Include/RtmV2.h -./RtmV2_h.EAB9A09C_3691_4DA9_8BAE_051E85F686D3 -./Include/Rtutils.h -./Rtutils_h.65C4D4EB_149E_428A_ADD9_F2EB116E3ECD -./Include/sbe.h -./sbe_h.8285784E_7B88_4352_BF47_00D17345C9F0 -./Include/sbe.idl -./sbe_idl.7A52FA73_1A38_4FEB_9FEC_CA35A4B5658C -./Include/SCardDat.h -./SCardDat_h.1C0971A6_91F9_4E2E_B4C2_87B836DB15C6 -./Include/SCardDat.Idl -./SCardDat_Idl.1C0971A6_91F9_4E2E_B4C2_87B836DB15C6 -./Include/SCardDat.Tlb -./SCardDat_Tlb.1C0971A6_91F9_4E2E_B4C2_87B836DB15C6 -./Include/SCardErr.h -./SCardErr_h.EB147806_BF8F_42A1_9A2E_0A8E80BFDDF0 -./Include/SCardMgr.h -./SCardMgr_h.4BFA143D_8CBD_415B_9E87_D9340C468078 -./Include/SCardMgr.Idl -./SCardMgr_Idl.4BFA143D_8CBD_415B_9E87_D9340C468078 -./Include/SCardMgr.Tlb -./SCardMgr_Tlb.4BFA143D_8CBD_415B_9E87_D9340C468078 -./Include/SCardSrv.h -./SCardSrv_h.C11D6AC0_F377_4DD6_9E2B_3C50276B001D -./Include/SCardSrv.Idl -./SCardSrv_Idl.C11D6AC0_F377_4DD6_9E2B_3C50276B001D -./Include/SCardSrv.Tlb -./SCardSrv_Tlb.C11D6AC0_F377_4DD6_9E2B_3C50276B001D -./Include/SCardSsp.h -./SCardSsp_h.7E97E4DA_D811_44DA_A3E4_900089E14442 -./Include/SCardSsp.Idl -./SCardSsp_Idl.7E97E4DA_D811_44DA_A3E4_900089E14442 -./Include/SCardSsp_i.c -./SCardSsp_i_c.7E97E4DA_D811_44DA_A3E4_900089E14442 -./Include/SCardSsp_p.c -./SCardSsp_p_c.7E97E4DA_D811_44DA_A3E4_900089E14442 -./Include/scesvc.h -./scesvc_h.8ABD08CF_25A8_4240_A4B3_74C3A4E14C9D -./Include/schannel.h -./schannel_h.13BD3CAA_12BF_4FA4_894E_EC64B0C933C5 -./Include/Schedule.h -./Schedule_h.36076E46_D6D2_4BCB_956F_4C4294AEA174 -./Include/Schemadef.h -./Schemadef_h.1B2C8CDA_BB0E_42F3_AF19_BC43431264CD -./Include/schnlsp.h -./schnlsp_h.13BD3CAA_12BF_4FA4_894E_EC64B0C933C5 -./Include/SCode.h -./SCode_h.6275A519_5B6F_44D8_8373_8046D9DCF7AD -./Include/ScrnSave.h -./ScrnSave_h.5CD1471F_7D93_447B_A22B_137ECC2C86D2 -./Include/ScrptIDs.h -./ScrptIDs_h.516563C5_C229_47C4_BF2F_4A52EA370FEF -./Include/Sddl.h -./Sddl_h.616129E9_CC4C_46DC_BD10_2A979A9DCD5E -./Include/SDKBld.Mak -./SDKBld_Mak.F285FE09_02D5_46A6_AE80_3D56F0F07252 -./Include/SDKPropBld.Mak -./SDKPropBld_Mak.BBA55E64_0A14_4ABA_9F09_EC69DE4A1FD8 -./Include/sdoias.h -./sdoias_h.8271E530_7B95_43BC_B2F7_F1888105ADAE -./Include/sdoias.idl -./sdoias_idl.F2D79E13_6598_4B16_81DE_E2EB15D31760 -./Include/SDPBLB.h -./SDPBLB_h.0C7F31F1_7FB5_42D5_B196_FA07A3007263 -./Include/SDPErr.h -./SDPErr_h.D17CF40D_83CD_4525_BD0F_98E4F60C4145 -./Include/SecExt.h -./SecExt_h.D2C02339_8750_446F_9C0A_A153999CC073 -./Include/Security.h -./Security_h.E141334F_2FA2_45C5_91C6_21CB4F4CBCD2 -./Include/segment.h -./segment_h.1D0DB362_AEC4_41F1_82EC_4F03329C0E3E -./Include/segment.idl -./segment_idl.E5FDEB9E_E907_4B41_A04A_A56ADF588F59 -./Include/SehMap.h -./SehMap_h.9F3E8D6F_E932_47F2_A900_D4D8E4E62DEF -./Include/Sens.h -./Sens_h.6B70B7E1_3524_44D1_A4C5_7E2A28EEF7C3 -./Include/SensAPI.h -./SensAPI_h.8A4BC635_6371_44DA_BA65_CF25B0218B3D -./Include/SensEvts.h -./SensEvts_h.7D561D43_98C0_4925_977E_9DDDB367637C -./Include/SensEvts.Idl -./SensEvts_Idl.3F76AC7E_0EF7_4CEC_8211_D1313231BE87 -./Include/ServProv.h -./ServProv_h.67101666_13C0_4C31_9077_B2522BEE9F32 -./Include/ServProv.Idl -./ServProv_Idl.6D6236DB_080D_4614_BB14_FD1F3C81D825 -./Include/SetupAPI.h -./SetupAPI_h.EEE32654_8257_443C_9E1A_FD6073F33F32 -./Include/SetupDD.h -./SetupDD_h.1A70767D_4FD6_4A04_B8DF_D2C962DDCD12 -./Include/Sfc.h -./Sfc_h.C7974167_BBEB_4A53_8427_12237BA4ED57 -./Include/shappmgr.h -./shappmgr_h.25B3537C_424A_48D3_90E0_E3D9A6C7CDFA -./Include/shappmgr.idl -./shappmgr_idl.25B3537C_424A_48D3_90E0_E3D9A6C7CDFA -./Include/shdispid.h -./shdispid_h.7EBBA489_EFB2_473F_A439_4AAE0A03B949 -./Include/ShellAPI.h -./ShellAPI_h.69FD2028_CD30_413B_B266_2A66819863FE -./Include/ShFolder.h -./ShFolder_h.136C54C6_210F_4971_968F_ACEC0E44E357 -./Include/ShImgData.h -./ShImgData_h.6AE73A34_6DD2_4B57_8C56_72F4B243EB14 -./Include/ShImgData.idl -./ShImgData_idl.8365C328_5258_495B_9DE6_0556B312BCA6 -./Include/ShlDisp.h -./ShlDisp_h.988E7584_FADA_46D3_A5F2_F9EB14F09E23 -./Include/shldisp.idl -./shldisp_idl.B27B7B3B_CE20_48ED_AD5E_AA57BB12D0DF -./Include/ShlGuid.h -./ShlGuid_h.6DB9B2B2_23E2_4441_B3B7_CDE87F8C8E94 -./Include/ShlObj.h -./ShlObj_h.A84C2D95_C48E_4249_91F2_06215F795BE8 -./Include/Shlwapi.h -./Shlwapi_h.B1B8D58D_ABEE_4B49_9B15_394BB367F2B2 -./Include/ShObjIdl.h -./ShObjIdl_h.ED64C791_3CBF_4CFA_B31F_68E1FD718652 -./Include/ShObjIdl.idl -./ShObjIdl_idl.331E9169_37FE_4AE2_BE25_27BAB37A359D -./Include/ShTypes.h -./ShTypes_h.9886548B_F360_4DD9_9B0A_D482DA83FDE5 -./Include/ShTypes.Idl -./ShTypes_Idl.9F7B319F_1B5E_4295_A328_55812980E890 -./Include/simpdc.h -./simpdc_h.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/SipBase.h -./SipBase_h.492027F4_C6EA_4BE3_BF6D_D197B1740EA5 -./Include/sisbkup.h -./sisbkup_h.AF835D7F_0104_457E_ABCF_C320A9BBEE46 -./Include/SMPAB.h -./SMPAB_h.A87D9A93_47E5_44C8_BBB5_75AF2524ED62 -./Include/SMPMS.h -./SMPMS_h.49789C15_7036_4178_8AEA_F5287027047E -./Include/SMPXP.h -./SMPXP_h.C505618A_4B69_4F5A_BE7E_99A990ACFA95 -./Include/SMTPReg.Vbs -./SMTPReg_Vbs.609DD8F3_FB25_494F_92A7_681987B32247 -./Include/Smx.h -./Smx_h.637CE459_BF68_407F_B818_8A55ED6033D6 -./Include/Snmp.h -./Snmp_h.9A7BF3ED_9C60_4713_82EB_BB0A1AA54F29 -./Include/SoftPub.h -./SoftPub_h.AB491E8B_8482_4123_855C_DDF5CB1E430E -./Include/specstrings.h -./specstrings_h.A7E4A9D6_09A4_4DF2_ACD6_FDA88EE001F0 -./Include/SpOrder.h -./SpOrder_h.9B6E488A_F6AD_4278_898D_9F02735977FE -./Include/Sql_1.h -./Sql_1_h.5290A828_110C_41CE_BD60_B97DF179F443 -./Include/SrRestorePtApi.h -./SrRestorePtApi_h.BCA2370E_0B43_4F8C_9817_61CC344CC489 -./Include/SspGuid.h -./SspGuid_h.221CC243_6A2B_4D8C_BC77_51D35968B074 -./Include/Sspi.h -./Sspi_h.516F8C44_FB8C_45FF_A1E2_8751FEB8D6C3 -./Include/SspsErr.h -./SspsErr_h.3AF11FAB_F267_4805_83CF_9B1A637B3A4A -./Include/SspsIdl.h -./SspsIdl_h.0380A336_EF59_4095_B4D5_C68327CF8DBC -./Include/SspsIdl.Idl -./SspsIdl_Idl.0380A336_EF59_4095_B4D5_C68327CF8DBC -./Include/Sti.h -./Sti_h.20464414_274D_4B84_BBD8_7BA0159B34AB -./Include/Stierr.h -./Stierr_h.8C8246BA_DB46_46F1_A643_B013BF70B6B5 -./Include/Stireg.h -./Stireg_h.E8E72B0E_E6AE_4286_8BB4_11956499EAE2 -./Include/StlLock.h -./StlLock_h.5290A828_110C_41CE_BD60_B97DF179F443 -./Include/Stm.h -./Stm_h.70A27E5F_FF75_42CA_9D5A_F2B4355533B7 -./Include/Storage.h -./Storage_h.16ABCD01_36AD_4A60_A153_DBCA2272FA71 -./Include/storprop.h -./storprop_h.C8C8B1B4_8072_4DD4_BF7A_CCED7D692960 -./Include/StrAlign.h -./StrAlign_h.A1552497_0C9D_4771_B7E4_7D4E10809242 -./Include/streamcache.h -./streamcache_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/streamcache.idl -./streamcache_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/streamdescription.h -./streamdescription_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/streamdescription.idl -./streamdescription_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/strmif.h -./strmif_h.3AADE802_E842_41DB_8CC2_A5515534B320 -./Include/strmif.idl -./strmif_idl.6F815396_566D_486D_B928_172D4A943671 -./Include/strsafe.h -./strsafe_h.99B75D06_8146_460D_9C06_CC9FF72BA757 -./Include/SubAuth.h -./SubAuth_h.3CCC2DFA_E410_42CF_B234_6ED96F1484B1 -./Include/SubsMgr.h -./SubsMgr_h.D773667D_FF5C_4066_9459_DBEAFAF01681 -./Include/SubsMgr.Idl -./SubsMgr_Idl.0A592170_B96F_4FE4_8476_CE56BB861CF8 -./Include/SvcGuid.h -./SvcGuid_h.4504448E_241E_448D_BB0F_EBB4C99247E9 -./Include/SvrAPI.h -./SvrAPI_h.29CDDC33_7599_41B9_AE7B_0FEE1A799AED -./Include/Tapi.h -./Tapi_h.B919B4DC_4012_46C4_8648_A8A09AB4F174 -./Include/Tapi3.h -./Tapi3_h.3874C7E0_1C3B_4996_8AE9_B70DE540FB3F -./Include/Tapi3cc.h -./Tapi3cc_h.72F07100_42BA_4F7F_A4BC_D2B2C63E9D11 -./Include/Tapi3cc.Idl -./Tapi3cc_Idl.7EE32FB6_4981_4922_8409_851D1C150CAF -./Include/Tapi3ds.h -./Tapi3ds_h.8954E1A9_AB36_4649_A32C_D8B945D6BC0A -./Include/Tapi3ds.Idl -./Tapi3ds_Idl.67C0E12E_EEE6_4851_A14C_2BF761EA4178 -./Include/Tapi3Err.h -./Tapi3Err_h.6EAECF84_CBEF_4959_B935_2C5F7D4926D4 -./Include/Tapi3if.h -./Tapi3if_h.248AFE10_42F6_4CBD_A8F7_7EBC322832ED -./Include/Tapi3if.Idl -./Tapi3if_Idl.45307D66_587A_4128_9EE4_BAF24A065735 -./Include/TCError.h -./TCError_h.480D22A4_2211_4115_A92E_706E9F9FB7CF -./Include/TCGuid.h -./TCGuid_h.B3BCDF07_218A_4FE8_89BB_3DE4B36168AA -./Include/tcpioctl.h -./tcpioctl_h.46FB67C8_70DD_430F_88F9_F9701E0557DB -./Include/TermMgr.h -./TermMgr_h.BF7BADA3_4499_42FB_A843_BB351ED4883A -./Include/TermMgr.Idl -./TermMgr_Idl.D31339EF_9B9F_4E43_8984_53EC0AE2919D -./Include/TextServ.h -./TextServ_h.775ABBA7_F8C6_4E0D_8FEF_E308FC215B13 -./Include/TextStor.h -./TextStor_h.DBB9FF29_2C5C_490C_8523_108976F8D732 -./Include/TextStor.idl -./TextStor_idl.F4BB4DE7_5876_4E61_950D_F0F69EF39705 -./Include/ThrdBase.h -./ThrdBase_h.00F30509_4929_432E_8BD1_E7F85A715823 -./Include/TimeProv.h -./TimeProv_h.0F9B3271_E3D9_4A6E_828F_31392FD0B9C2 -./Include/TlHelp32.h -./TlHelp32_h.E897C532_4CE8_484B_AA1C_1B16AB7E36EF -./Include/tlogstg.h -./tlogstg_h.68DE44EB_BE83_418A_8593_F060377F08D6 -./Include/tlogstg.idl -./tlogstg_idl.68DE44EB_BE83_418A_8593_F060377F08D6 -./Include/Tmschema.h -./Tmschema_h.C946715B_1375_41BB_A55D_4CFD47BFE17A -./Include/TNEF.h -./TNEF_h.7AB5EC44_6C7E_4532_91A5_1290978B0A95 -./Include/TOM.h -./TOM_h.B5B3C5B6_AF73_4236_A512_B06F80092815 -./Include/Traffic.h -./Traffic_h.16066953_79AB_46D1_B785_81630262751F -./Include/Transact.h -./Transact_h.2374BD40_5007_46F1_97FB_DE70308ADE75 -./Include/triedcid.h -./triedcid_h.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/triediid.h -./triediid_h.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/triedit.h -./triedit_h.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/triedit.idl -./triedit_idl.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/tsattrs.h -./tsattrs_h.3FAB8599_F5E3_4099_AA7D_00DADBBB7B32 -./Include/TSPI.h -./TSPI_h.6EF704EB_E96A_434F_A9FC_FFDFC64A3F67 -./Include/tsuserex.h -./tsuserex_h.C1DAE510_7E0C_413C_BCAE_26C4362567E2 -./Include/tsuserex_i.c -./tsuserex_i_c.FA282DBB_64C7_4113_8AB1_F99E8075F728 -./Include/tune.h -./tune_h.2663DB6E_72C2_4E12_A7C1_BBD0636CE639 -./Include/tuner.h -./tuner_h.D7EBA75E_B740_4AA7_A3ED_3A3803FD0086 -./Include/tuner.idl -./tuner_idl.9AB22E0A_19C5_4855_ADD0_FD19795F887F -./Include/Tvout.h -./Tvout_h.9408A6E9_FFEB_45CD_A421_518A1C078ECA -./Include/tvratings.h -./tvratings_h.72E1BCC8_7119_4737_9219_3D6F76603F2D -./Include/tvratings.idl -./tvratings_idl.10A41012_52F3_42F5_AFC1_4B446368A163 -./Include/TxCoord.h -./TxCoord_h.C743DE82_2591_4093_8CAA_8DEACD874A20 -./Include/TxCtx.h -./TxCtx_h.E3CEB071_B0E3_4710_BC8F_A32DD1C43774 -./Include/TxDtc.h -./TxDtc_h.C719189C_D834_4A8E_A37A_276B2F8C3E45 -./Include/UaStrFnc.h -./UaStrFnc_h.5FA45208_827C_4027_B7B9_361026D9029E -./Include/Umx.h -./Umx_h.12220205_1E6A_4490_ACE1_BAC25CB86047 -./Include/unexposeenums2managed.h -./unexposeenums2managed_h.D32E8ADF_A27B_4376_9ECC_04FB1D59CF8B -./Include/Unknwn.h -./Unknwn_h.29FFD2D8_B228_4964_BF48_03B36D4054A1 -./Include/Unknwn.Idl -./Unknwn_Idl.4C59733F_E214_45DE_9321_D7291B452605 -./Include/UPnP.h -./UPnP_h.F8442D34_BD20_478B_A3F4_486D729F44D1 -./Include/UPnP.Idl -./UPnP_Idl.9798F88F_DCC5_43F8_84C8_85F64B511789 -./Include/upnphost.h -./upnphost_h.F8442D34_BD20_478B_A3F4_486D729F44D1 -./Include/upnphost.idl -./upnphost_idl.F8442D34_BD20_478B_A3F4_486D729F44D1 -./Include/UrlHist.h -./UrlHist_h.DF004D08_D087_4369_BBB2_EE77A489A5FA -./Include/UrlHist.Idl -./UrlHist_Idl.B319085D_1AF0_434A_9E11_FFE80FFB9F84 -./Include/UrlMon.h -./UrlMon_h.FF5B5E62_FF21_4387_A017_EC838646AA8F -./Include/UrlMon.Idl -./UrlMon_Idl.22BF75B6_BBF9_4D4D_9AE0_764D3E8E656E -./Include/UserEnv.h -./UserEnv_h.ACCF379D_140D_434C_8E0A_CC7AD7B5FAE5 -./Include/usp10.h -./usp10_h.F5C8460F_6ACA_48C9_8D1F_81892C5BCF74 -./Include/UtilLib.h -./UtilLib_h.8C59EE30_5554_4669_B761_3B6E3F316D3E -./Include/uuids.h -./uuids_h.3AADE802_E842_41DB_8CC2_A5515534B320 -./Include/Uxtheme.h -./Uxtheme_h.8660B580_8880_4CB5_9A96_A0F643B97218 -./Include/vbinterf.h -./vbinterf_h.2296FBEF_95EB_45BB_B4C6_C875400D5EF7 -./Include/Vcr.h -./Vcr_h.1292D5BF_1715_4AE2_9371_993777FB6ACB -./Include/VdmDbg.h -./VdmDbg_h.2EDE5ECB_1490_4344_984C_EFF1A9189C22 -./Include/VerInfo.Ver -./VerInfo_Ver.0DC0FE49_F19A_46CE_8C81_AE6B5670F715 -./Include/Vfw.h -./Vfw_h.679B6ADA_8C6B_4896_8BC1_0571858F7803 -./Include/vfwmsgs.h -./vfwmsgs_h.BA35D56B_4623_4B06_B6E5_4241A88EDB54 -./Include/vidcap.h -./vidcap_h.8111C2C1_5692_45A4_AB7E_EB40EF913FBA -./Include/vidcap.idl -./vidcap_idl.D1BCA148_DDD0_49D4_8B16_7D4CDF0061C4 -./Include/videoacc.h -./videoacc_h.8199C354_9222_49E9_AB4B_FB1152845978 -./Include/videoacc.idl -./videoacc_idl.062A7D03_1BB1_41E4_9941_20A55D08911B -./Include/vmr9.h -./vmr9_h.4A99AC3D_110A_4791_B087_697F7FED4175 -./Include/vmr9.idl -./vmr9_idl.35898D57_7DB3_46B6_9D08_20EFA783300A -./Include/vmrender.idl -./vmrender_idl.9C2C4627_15D1_4903_AE44_DE6FE43862DC -./Include/vpconfig.h -./vpconfig_h.CA508B0A_AC4A_4562_8A72_4A739C5B5EBA -./Include/vpnotify.h -./vpnotify_h.448F933A_5AD0_4765_AC3B_DE9AC06352F7 -./Include/vptype.h -./vptype_h.E49D7F9C_6392_486D_BEB2_3DA6356B1C60 -./Include/W32chico.mk -./W32chico_mk.67AF319B_95A7_4C64_809D_D0A8DAB3F54B -./Include/Wab.h -./Wab_h.1F9915CD_04E0_461D_ACD5_9DE3C6AC3870 -./Include/WabApi.h -./WabApi_h.814D267B_97E2_41F7_B3D9_A9E44B4E82C3 -./Include/WabCode.h -./WabCode_h.E3D1A1E3_0070_43CE_9D66_8A9DAE55B33B -./Include/WabDefs.h -./WabDefs_h.9093150B_9A24_47FE_B765_D4F83EBB7FD9 -./Include/WabIab.h -./WabIab_h.0FC2491D_8588_4E93_A011_5D8AE0DB13DA -./Include/WabMem.h -./WabMem_h.50C7E724_CD9C_4A14_AD4B_9CAEF2D91126 -./Include/WabNot.h -./WabNot_h.0233511A_3F4D_4980_8DB9_D0798A958D44 -./Include/WabTags.h -./WabTags_h.CD3409EB_F674_4D82_8D67_DE9B6140A1A2 -./Include/WabUtil.h -./WabUtil_h.88C7C6A7_67A4_4935_BC82_E54B2A38114F -./Include/WbemAds.h -./WbemAds_h.3B6C3C2D_78CF_4749_B73D_1AC85D7FADEC -./Include/WbemAds.Idl -./WbemAds_Idl.14005787_9CD6_4599_8500_C65D18EF4249 -./Include/WbemCli.h -./WbemCli_h.0D619B5A_B3B2_4F21_89A2_DFCA7283852A -./Include/WbemCli.Idl -./WbemCli_Idl.CCE3F436_2AE1_4716_A1A6_F806348F5A38 -./Include/WbemDisp.h -./WbemDisp_h.A2AAA253_CED9_4C8A_936D_8E6076B97CC4 -./Include/WbemDisp.Idl -./WbemDisp_Idl.049653D7_200E_4E72_BA24_C05590804DF7 -./Include/WbemGlue.h -./WbemGlue_h.F41116F6_1A71_475D_9C4B_C72EBAC7F1B8 -./Include/WbemIdl.h -./WbemIdl_h.E088A32F_5299_4DD8_8C36_AF75F1810C7E -./Include/WbemProv.h -./WbemProv_h.05FFBB7D_FE1B_46D0_BB7B_EA53D9294F54 -./Include/WbemProv.Idl -./WbemProv_Idl.5CA1D41A_8EC1_41C2_8303_275D2AD376EB -./Include/WbemTime.h -./WbemTime_h.3B2A8984_A911_427E_889E_F2C26706C1C4 -./Include/WbemTran.h -./WbemTran_h.0F715259_B6FE_4587_A7FB_7CD7970E887C -./Include/WbemTran.Idl -./WbemTran_Idl.EF06FB62_2043_4FC4_98CD_16892911EF99 -./Include/wdigest.h -./wdigest_h.87444149_3C25_4020_9220_66D89C616C38 -./Include/WFExt.h -./WFExt_h.4046170D_A6E3_431A_B672_167DA8BB2DD6 -./Include/Wia.h -./Wia_h.F5185231_8DDF_4283_A640_8E40ABDD3B8E -./Include/WiaDef.h -./WiaDef_h.F5185231_8DDF_4283_A640_8E40ABDD3B8E -./Include/WiaDevD.h -./WiaDevD_h.A131ECC5_124A_4A54_938F_F24444626079 -./Include/WiaVideo.h -./WiaVideo_h.FE491F65_ED04_461D_AD59_78A8FA81165D -./Include/Win32.Mak -./Win32_Mak.32CC3E31_83F0_4225_A559_1529850FBE22 -./Include/WinAble.h -./WinAble_h.5754CDF1_A401_4532_B665_952B5F5C7FFC -./Include/WinBase.h -./WinBase_h.98FEB1D2_3B2B_4CD3_BB79_CD15228A5129 -./Include/WinBase.Inl -./WinBase_Inl.36381470_9072_4963_A182_EDBAC7C4BB47 -./Include/WinBer.h -./WinBer_h.AACBE31D_20E4_4E0E_989A_9C73A685A186 -./Include/WinCon.h -./WinCon_h.520BC5A5_BEDB_416C_86CA_112BE4DCEF3E -./Include/wincred.h -./wincred_h.49744C78_1148_4A1F_A2D7_1FA6A8345933 -./Include/WinCrypt.h -./WinCrypt_h.C6E443DD_58DD_4490_B595_C1E7BE0B598D -./Include/WinDef.h -./WinDef_h.4E5056AB_9C4E_4C98_8F0D_3E096C589151 -./Include/WinDNS.h -./WinDNS_h.A8C333C4_852D_47D1_A113_D0A48EC3B477 -./Include/Windows.h -./Windows_h.28582AD5_027C_4A81_B0D5_D8CBD0B318EC -./Include/WindowsX.h -./WindowsX_h.5FBB1A44_E68C_4B79_A7D0_79F719E56FE2 -./Include/Windowsx.h16 -./Windowsx_h16.9B3CF5CD_E7B2_4AC4_92CB_4E4D7384753A -./Include/WinEFS.h -./WinEFS_h.A8C333C4_852D_47D1_A113_D0A48EC3B477 -./Include/WinError.h -./WinError_h.609CB3A1_4CD9_44B6_91C9_B1247F3182A4 -./Include/WinFax.h -./WinFax_h.8128B6C9_91E6_439A_BA7F_4F59C0BE6DF1 -./Include/WinGDI.h -./WinGDI_h.F5C8460F_6ACA_48C9_8D1F_81892C5BCF74 -./Include/winhttp.h -./winhttp_h.F5133C56_8FC8_41D2_A6F2_D6908874119D -./Include/WinInet.h -./WinInet_h.2E446360_59B1_493D_95C5_89B0B2E7036B -./Include/WinIoCtl.h -./WinIoCtl_h.AB7EF0F8_E722_46A9_BD7C_84D0C4FAC37C -./Include/Winldap.h -./Winldap_h.47CA7D74_7F38_4175_9DBF_CE5CFCE47E70 -./Include/WinNetWk.h -./WinNetWk_h.5EE18030_718A_4794_A5A8_7A4FED9B024A -./Include/WinNls.h -./WinNls_h.B4F7CED1_2696_4AA1_B6A5_3AC624A7D266 -./Include/WinNls32.h -./WinNls32_h.34C54F59_BC74_4516_AE93_6FB4D1CD8670 -./Include/WinNT.h -./WinNT_h.32234913_5E7B_4D0B_8433_96531AF0C513 -./Include/WinNT.rh -./WinNT_rh.B7E118AC_F736_46A7_99EE_C1BDB7AC2206 -./Include/WinPerf.h -./WinPerf_h.838008B8_D8A2_454B_B57A_5FC783ADCE27 -./Include/WinReg.h -./WinReg_h.33A89CA4_AFBA_4352_85BD_7B4BF3DE1538 -./Include/WinResrc.h -./WinResrc_h.E2B07E3C_D396_4498_B02D_281236B0E9EE -./Include/winsafer.h -./winsafer_h.C0F7A7C4_F5A5_4226_9C91_CC1E6764897F -./Include/WinSCard.h -./WinSCard_h.48F96F95_938E_4F50_AD05_A46ACE1FEC49 -./Include/WinSmCrd.h -./WinSmCrd_h.1359F694_26C9_4747_BE5D_0AD98737FEAD -./Include/WinSnmp.h -./WinSnmp_h.DD111F2F_C1BD_4C30_89D9_27DF2C7361F9 -./Include/WinSock.h -./WinSock_h.4775E2BA_6838_4D56_B6FB_8ECCADE487F6 -./Include/WinSock2.h -./WinSock2_h.103B9608_3EFE_4377_813B_D790EC6D950C -./Include/WinSpool.h -./WinSpool_h.D587E440_91BD_4546_AF25_6736A5B3C9F2 -./Include/WinSvc.h -./WinSvc_h.852E9034_6AF3_4CB5_899B_C3736A1356CB -./Include/winternl.h -./winternl_h.98FEB1D2_3B2B_4CD3_BB79_CD15228A5129 -./Include/WinTrust.h -./WinTrust_h.66B7FD4F_7910_4084_BD92_621489148889 -./Include/WinUser.h -./WinUser_h.A91E985D_2676_4981_A4AC_EEFEACBC7ECF -./Include/WinUser.Inl -./WinUser_Inl.11E24A77_AFEE_4E4B_AA6A_ACC92E0CBE0A -./Include/WinUser.rh -./WinUser_rh.54C20B60_1461_4CAD_A667_DB71413909AD -./Include/WinVer.h -./WinVer_h.BB8A24ED_88B1_4CA0_840A_25BB555557C7 -./Include/WinWlx.h -./WinWlx_h.11136E1A_61F6_4146_8032_C228B3222859 -./Include/Wmistr.h -./Wmistr_h.EB11C6D9_1296_41FC_9D91_04FC97A948F7 -./Include/WMIUtils.h -./WMIUtils_h.54CC0E71_AAF5_4790_9556_697438943CD1 -./Include/WMIUtils.Idl -./WMIUtils_Idl.81AE6D89_A17C_4EFF_9AA9_6F4743427874 -./Include/wmsbasicplugin.h -./wmsbasicplugin_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/WMSBasicPlugin.idl -./WMSBasicPlugin_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsbuffer.h -./wmsbuffer_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsbuffer.idl -./wmsbuffer_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmscatid.h -./wmscatid_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmscontext.h -./wmscontext_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmscontext.idl -./wmscontext_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsContextNames.h -./wmsContextNames_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsdatapath.h -./wmsdatapath_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsdatapath.idl -./wmsdatapath_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsdefs.h -./wmsdefs_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsevent.h -./wmsevent_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsevent.idl -./wmsevent_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmseventlog.h -./wmseventlog_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmseventlog.idl -./wmseventlog_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsheaderline.h -./wmsheaderline_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsHeaderline.idl -./wmsHeaderline_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsincomingcounters.h -./wmsincomingcounters_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsincomingcounters.idl -./wmsincomingcounters_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsnamedvalues.h -./wmsnamedvalues_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsnamedvalues.idl -./wmsnamedvalues_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmspacket.h -./wmspacket_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmspacket.idl -./wmspacket_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsplaylistparser.h -./wmsplaylistparser_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/WMSPlaylistParser.idl -./WMSPlaylistParser_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsplugin.h -./wmsplugin_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsplugin.idl -./wmsplugin_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsproxy.h -./wmsproxy_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsproxy.idl -./wmsproxy_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsserver.h -./wmsserver_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsserver.idl -./wmsserver_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/WMSServerTypeLib.dll -./WMSServerTypeLib_dll.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsxmldomextensions.h -./wmsxmldomextensions_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/wmsXMLDOMExtensions.idl -./wmsXMLDOMExtensions_idl.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/WowNT16.h -./WowNT16_h.DEC9183D_2F17_4F9A_BDB0_31D2D7C357C6 -./Include/WowNT32.h -./WowNT32_h.C2AF23C8_1712_4691_BAB3_DA701D8364D0 -./Include/WPApi.h -./WPApi_h.812A531C_87B6_42B5_A165_2BCE700E2AF3 -./Include/WPApiMsg.h -./WPApiMsg_h.91A4B0E1_9F0E_4924_B763_5A1E2A8F7C92 -./Include/WPCrsMsg.h -./WPCrsMsg_h.E326575F_A5B3_475A_A76F_BABF3F895F11 -./Include/WPFtpMsg.h -./WPFtpMsg_h.ED2324EE_4229_44A3_866A_3E0B68D2C7D0 -./Include/WPObj.Idl -./WPObj_Idl.BFFC9932_25E2_49B4_981C_D2507CB010E1 -./Include/WPPstMsg.h -./WPPstMsg_h.1644EF3F_238D_4B90_8865_879BE9F547D8 -./Include/WPSpi.Idl -./WPSpi_Idl.5A7493DC_D4DD_433D_863C_208BB280C8D6 -./Include/WPSpiHlp.h -./WPSpiHlp_h.E03EFDF1_D9C5_479C_88FD_84FD532FB5F0 -./Include/wptypes.h -./wptypes_h.88DEFDE2_EA2D_45A9_AA02_C9687EF61D83 -./Include/WPWizMsg.h -./WPWizMsg_h.9B9C2555_5CBA_4AD8_ABBC_1B4152E4330A -./Include/WS2atm.h -./WS2atm_h.13B34B03_17DF_4676_9A0D_92ED5D9E4CA8 -./Include/ws2bth.h -./ws2bth_h.251FFCE3_D561_4089_9F89_E9DEB07FA35B -./Include/WS2dnet.h -./WS2dnet_h.4D0848D2_6BB2_4053_BC04_92750E8939F4 -./Include/WS2spi.h -./WS2spi_h.289F6E25_5761_47A9_8EDF_453B11BA35A9 -./Include/WS2tcpip.h -./WS2tcpip_h.4DD0212E_A8BD_484D_BE03_0AD3D6F54DE3 -./Include/WShisotp.h -./WShisotp_h.80FC65EB_7FF4_46E9_8936_D799FB01EE1B -./Include/wsipv6ok.h -./wsipv6ok_h.FA5A89C6_E25E_4CF9_9FFA_A77AA2D61785 -./Include/WSipx.h -./WSipx_h.13C78969_D41D_4ABE_A6FF_116EE77578C2 -./Include/WSnetbs.h -./WSnetbs_h.D7C31035_44E3_4CFA_A8A4_F8CB1CC87404 -./Include/WSNwLink.h -./WSNwLink_h.5DE51140_B483_45AF_8177_D6989858DBD9 -./Include/WSPiApi.h -./WSPiApi_h.BEFA7ED6_FC39_4146_9EB2_5C95E14F137E -./Include/wsrm.h -./wsrm_h.7BBE1837_FC5C_4083_93A2_E7823DFFB0B2 -./Include/WSvns.h -./WSvns_h.3CCC2DFA_E410_42CF_B234_6ED96F1484B1 -./Include/WtsApi32.h -./WtsApi32_h.1B223AAF_BC94_4BF9_B843_EF75BBF8DFF8 -./Include/WTypes.h -./WTypes_h.ECC4D2C4_2FC9_47C4_96ED_E6BF3923D561 -./Include/WTypes.Idl -./WTypes_Idl.FB36E427_62AF_41F8_AD24_25EFF7DCE79C -./Include/wuapi.h -./wuapi_h.D8BAB654_276B_464C_AB60_4287E66587F8 -./Include/wuapi.idl -./wuapi_idl.0D30EBE9_A053_43E5_8903_BCF057F39584 -./Include/wuerror.h -./wuerror_h.2A651221_9DA4_4FF5_80AB_19011BFA3022 -./Include/xa.h -./xa_h.347A116E_2A2B_4B3A_8D38_B65119978278 -./Include/XCMC.h -./XCMC_h.C2A30016_81F6_48EC_9250_B7857EB09446 -./Include/XCMCExt.h -./XCMCExt_h.BE2E7F86_ACF8_4596_B4A7_A19CC8CC1484 -./Include/XCMCMSX2.h -./XCMCMSX2_h.56ECF8A0_8D04_4505_AC98_FCF6A541CB8C -./Include/XCMCMSXT.h -./XCMCMSXT_h.0B38CB3F_5F0A_49CF_AA61_8ED566DDD627 -./Include/xenroll.h -./xenroll_h.3EC2F34E_A4EB_4F7B_BC3F_92AE9A24634F -./Include/xmldom.h -./xmldom_h.DDD934DA_AA2F_45E0_942F_24B79477F5AF -./Include/XmlDom.Idl -./XmlDom_Idl.9C80BF6B_6483_4E4F_A5DE_6F9D928D0B0A -./Include/XmlDomDid.h -./XmlDomDid_h.19B17D86_F027_4043_A576_0557D5F64435 -./Include/XmlDso.Idl -./XmlDso_Idl.A1452C9C_2610_4C2B_9CF9_2A1F8CAFB09D -./Include/XmlDsodid.h -./XmlDsodid_h.C9A4FCFF_3432_4FB7_ABEB_0FA74A21C426 -./Include/XMLTrnsF.h -./XMLTrnsF_h.61A721A5_B08A_4EE4_B81D_AEFCCEDF72D5 -./Include/XMLTrnsF.Idl -./XMLTrnsF_Idl.80728B11_7B2B_4DE6_9B3C_D8F80B25AB56 -./Include/xmmintrin.h -./xmmintrin_h.1C6C3797_206B_47D5_96AE_B46EE72E2290 -./Include/xoleHlp.h -./xoleHlp_h.4116419D_F6D4_4172_B340_389389809A2C -./Include/xprtdefs.h -./xprtdefs_h.277EC9DC_FFBE_4492_B28C_75E8ECB772DF -./Include/zmouse.h -./zmouse_h.DA7A9A5A_DA68_478A_833A_F4FC31868A1C -./Include/_dbdao.h -./_dbdao_h.231C3B04_E959_439A_86C4_B9DD9BAF6414 -./Lib/AclUI.Lib -./AclUI_Lib.9A15A36F_8A8C_4898_833C_C5DA38AB7068 -./Lib/ActiveDS.Lib -./ActiveDS_Lib.AEEC69F0_7F97_4EC7_ADAC_11B582264202 -./Lib/Ad1.Lib -./Ad1_Lib.6F6C857F_5B22_4FBE_BF3C_4BFA324FB0E2 -./Lib/Adptif.Lib -./Adptif_Lib.4618B0D6_CD10_4684_8D00_39B0C11C49B3 -./Lib/ADSIid.Lib -./ADSIid_Lib.16DA5533_8F0C_4A7B_8DAE_AF81A91DAE2D -./Lib/AdvAPI32.Lib -./AdvAPI32_Lib.0CD78343_1C13_4859_8E6E_6D1188DD4561 -./Lib/AMD64/amstrmid.lib -./strmiids_lib.C064EC07_DFB3_41F3_8B67_CFED1A5774F0 -./Lib/AMD64/AuthZ.Lib -./AuthZ_Lib.02431FC6_DF7A_45CA_BF1C_A61A2825CBF7 -./Lib/AMD64/clfsw32.lib -./clfsw32_lib.73F64881_4A87_4A4F_BA4E_D096B0982E10 -./Lib/AMD64/dmoguids.lib -./dmoguids_lib.E1CF6DD7_C7D1_4E82_99E4_667053F23791 -./Lib/AMD64/FrameDyD.Lib -./FrameDyD_Lib.D5508E7B_3C44_48D8_A0AD_892930BB42B4 -./Lib/AMD64/FrameDyn.Lib -./FrameDyn_Lib.6FA4B0BA_8526_465C_A418_AA71A5076667 -./Lib/AMD64/irprops.lib -./irprops_lib.19C26F36_08C9_44CA_9D92_175E47BE34D6 -./Lib/AMD64/msdmo.lib -./msdmo_lib.E3C16984_3568_44CF_B567_F27BE9576A8E -./Lib/AMD64/Msi.Lib -./Msi_Lib.A1E07DC9_A3D6_41FF_938A_5600B250C0BE -./Lib/AMD64/p2p.lib -./p2p_lib.AC11103C_7DAE_43F2_A541_31B493E291CA -./Lib/AMD64/p2pgraph.lib -./p2pgraph_lib.271F53C4_20A3_455B_9EDA_99C2C405E7F9 -./Lib/AMD64/quartz.lib -./quartz_lib.74B50B64_F2E5_45D0_83A6_428724419EFC -./Lib/AMD64/strmiids.lib -./strmiids_lib.C064EC07_DFB3_41F3_8B67_CFED1A5774F0 -./Lib/AMD64/WbemUuid.Lib -./WbemUuid_Lib.CB6803C1_B2CF_4EC9_916C_CE73214B3D59 -./Lib/AMD64/WinFax.Lib -./WinFax_Lib.0A31F126_D8AC_4CEE_8313_88694B86616C -./Lib/AMD64/wmiutils.lib -./wmiutils_lib.014FFE1B_99A9_42FD_83D3_CFD1201113FC -./Lib/AMD64/wuguid.lib -./wuguid_lib.4139E85B_BFCE_4628_A127_14A7C3CAF266 -./Lib/amstrmid.lib -./strmiids_lib.0DB203F5_D714_4EDC_BB66_5C04C287593A -./Lib/ASycFilt.Lib -./ASycFilt_Lib.C1F353E4_23AD_40AB_9B28_953F002CACDF -./Lib/atlsd.pdb -./atlsd_pdb.E09F1B9F_A836_4595_80BB_1095F46C1D07 -./Lib/AuthZ.Lib -./AuthZ_Lib.F067DB96_7635_4501_97D8_13FA0E787648 -./Lib/bhsupp.lib -./bhsupp_lib.F4AF8576_361F_4294_A151_6152486CDB43 -./Lib/Bits.Lib -./Bits_Lib.FFCFFD01_01B3_4741_B42C_D9CD593867E6 -./Lib/bufferoverflowu.lib -./bufferoverflowu_lib.80541E77_F628_4FAD_B1B2_8B79E9987352 -./Lib/Cabinet.Lib -./Cabinet_Lib.24F0A612_9E3E_4EED_ACAB_0EACCF0CF28A -./Lib/Cap.Lib -./Cap_Lib.916C6B9F_3653_45D3_BA92_381B9EDC5F9C -./Lib/cdoex.tlb -./cdoex_tlb.FE314838_0827_4DA3_ABF1_65F3C78D3C10 -./Lib/cdoexm.tlb -./cdoexm_tlb.F92DE74A_5F57_481B_ADA4_A41DD86B05CE -./Lib/CDOSys.Tlb -./CDOSys_Tlb.16BBD390_1C48_4286_881F_2BC54FA44ACE -./Lib/certadm.lib -./certadm_lib.7D2B5BC3_6D79_4A17_8A44_9F7E8AD2F656 -./Lib/certidl.lib -./certidl_lib.7D2B5BC3_6D79_4A17_8A44_9F7E8AD2F656 -./Lib/CiUuid.Lib -./CiUuid_Lib.CC9681FB_1CB2_48CA_8985_0755BD87ABED -./Lib/clfsw32.lib -./clfsw32_lib.9AF3D907_9FA7_4857_B163_F59603D89F61 -./Lib/ClusApi.Lib -./ClusApi_Lib.11AB98BA_3E0A_456E_89FB_3C334E95F9BA -./Lib/ComCtl32.Lib -./ComCtl32_Lib.8FFE832C_F04C_4C28_A6B8_7E7FBF7C629C -./Lib/ComDlg32.Lib -./ComDlg32_Lib.A526F3F6_F952_43C7_93BC_6D84BDF7D9A6 -./Lib/ComMode.Obj -./ComMode_Obj.2EA33CC1_3539_4E80_A72B_FEF56B43D9EA -./Lib/ComSvcs.Lib -./ComSvcs_Lib.3D8CF04C_306E_4CFC_B87B_75227675F26D -./Lib/credui.lib -./credui_lib.BB90E752_F1C6_4AF0_91A9_C6A033274773 -./Lib/Crypt32.Lib -./Crypt32_Lib.20163454_1762_49EF_B8BD_91F0C396DFCE -./Lib/CryptNet.Lib -./CryptNet_Lib.505BA3BE_ECE3_4371_8DD9_8D69FA86088C -./Lib/cryptui.lib -./cryptui_lib.F64BCB34_CA8D_4E75_A28E_16F26B85EDDA -./Lib/d3d8thk.lib -./d3d8thk_lib.B5870F76_AA76_4F54_9DAF_6B259592563B -./Lib/daouuid.lib -./daouuid_lib.A0CF24DE_9DE9_427A_ABE0_E1D5A4DAC06E -./Lib/DbgEng.Lib -./DbgEng_Lib.F2F687FA_3908_4C6A_9885_10CC1176BA7D -./Lib/DbgHelp.Lib -./DbgHelp_Lib.9632CD46_E9EC_418A_B71A_96145D5E6EB2 -./Lib/dciman32.lib -./dciman32_lib.4CA404D6_C317_4C53_9D27_F808A783201B -./Lib/ddao35.lib -./ddao35_lib.81BD4D37_BA60_4C6C_8E3E_513C269F5F26 -./Lib/ddao35d.lib -./ddao35d_lib.5B422C2E_6710_4456_BAD1_A899856EF7FD -./Lib/ddao35u.lib -./ddao35u_lib.16516F51_73F4_4A73_BC78_7DDDB26973A3 -./Lib/ddao35ud.lib -./ddao35ud_lib.F1A17DBC_BC2D_4177_A820_A16EB7EBC835 -./Lib/DhcpCSvc.Lib -./DhcpCSvc_Lib.78034C53_7EBA_4EE4_A1D6_234C0380B6D2 -./Lib/dhcpsapi.lib -./dhcpsapi_lib.B078BD2F_593F_4258_A218_E80AF5AB6AC1 -./Lib/DlcAPI.Lib -./DlcAPI_Lib.A451EBCF_9D55_4AD6_858C_0B998963B109 -./Lib/dmoguids.lib -./dmoguids_lib.0323C054_642D_44EB_9F25_78316D700E20 -./Lib/DnsAPI.Lib -./DnsAPI_Lib.3F010595_2C0B_4787_9107_A2F5C84EA3FE -./Lib/DSProp.Lib -./DSProp_Lib.03116C90_2554_4543_A5F1_E9979E73C3A8 -./Lib/DSUIExt.Lib -./DSUIExt_Lib.49D2B62F_28F4_4C2A_8361_DFC1B041A4F7 -./Lib/DtcHelp.Lib -./DtcHelp_Lib.F3540DF1_46E6_4686_A04A_63A12C61F5C4 -./Lib/encapi.lib -./encapi_lib.5DB86A2F_D54F_45C0_9221_F7101D152817 -./Lib/esebcli2.lib -./esebcli2_lib.35FD9A9C_F0E9_439E_BBEB_C23A439ACB09 -./Lib/Esent.Lib -./Esent_Lib.F0A54786_DB52_4315_9FA5_B80DC9D66313 -./Lib/exevtsnk.tlb -./exevtsnk_tlb.5DA3BCCE_05E5_46F2_B7AF_7D2330821965 -./Lib/FaultRep.Lib -./FaultRep_Lib.344CE5CC_5C49_4374_A7BB_C875DF3F389C -./Lib/Fci.Lib -./Fci_Lib.85D4EF0A_7CF1_4E45_A3E7_AD03F4519998 -./Lib/Fdi.Lib -./Fdi_Lib.2FCDE2D4_A1FB_4BB4_B957_F0FAF39A2AFF -./Lib/FrameDyD.Lib -./FrameDyD_Lib.F8560B5B_F431_4D2A_9FB5_9F87169B04FC -./Lib/FrameDyn.Lib -./FrameDyn_Lib.CC2BEF0B_70DE_4F5C_A69F_7AB77C20DD30 -./Lib/Gdi32.Lib -./Gdi32_Lib.0D632DC3_BB1F_4E2D_ABF7_8491468D50BE -./Lib/GdiPlus.lib -./GdiPlus_lib.EE97B0F6_1FE7_4542_890E_EBD631ADC199 -./Lib/GlAux.Lib -./GlAux_Lib.E2F48DBA_DC60_47DF_A09F_518D5B301A79 -./Lib/GlU32.Lib -./GlU32_Lib.03AC33CE_35E0_4F59_8105_AFB0FBFAD34F -./Lib/GPEdit.Lib -./GPEdit_Lib.42AAB786_65B6_4D59_BE71_DB6DEB5CF2D1 -./Lib/gpmuuid.lib -./gpmuuid_lib.5CAAE8C3_6BFD_4777_8FCE_2A4946CD2BAA -./Lib/HelpCenterInterfaces.tlb -./HelpCenterInterfaces_tlb.6B2EDAAC_34DF_4763_9B5D_C6C24FA9ED4E -./Lib/HelpServiceInterfaces.tlb -./HelpServiceInterfaces_tlb.09FB54EC_E4F2_49CB_9496_11B8FFE93EA3 -./Lib/HLink.Lib -./HLink_Lib.383AC439_340C_4A4E_861A_99D4CAA369AF -./Lib/Htmlhelp.Lib -./Htmlhelp_Lib.5E1F2358_3DC1_46C7_BFB0_EC70C0BCACEE -./Lib/httpapi.lib -./httpapi_lib.E86A0C57_4744_488F_B781_BA6BFBB4155B -./Lib/IA64/amstrmid.lib -./strmiids_lib.52F1CDE7_9DDB_4AB4_AFCF_463CD2608C9D -./Lib/IA64/AuthZ.Lib -./AuthZ_Lib.D93A5E28_3F45_4660_AE5B_1C78C81DD7C9 -./Lib/IA64/clfsw32.lib -./clfsw32_lib.0004A60C_157F_4A1C_AD8E_476D26B1649E -./Lib/IA64/dmoguids.lib -./dmoguids_lib.EE0200CA_470C_4AF7_ABE1_93B3340EE47C -./Lib/IA64/FrameDyD.Lib -./FrameDyD_Lib.815A2736_25DA_48F4_B2AA_61FEF5635762 -./Lib/IA64/FrameDyn.Lib -./FrameDyn_Lib.4E0AFA9B_6AD0_4087_AA56_E017784968CE -./Lib/IA64/irprops.lib -./irprops_lib.A549EE51_6C57_469A_815C_818023F9B560 -./Lib/IA64/msdmo.lib -./msdmo_lib.C308405B_70B6_462F_868E_185ECDDD119C -./Lib/IA64/Msi.Lib -./Msi_Lib.CD051EAF_49FE_415F_AB48_2E229C8DF261 -./Lib/IA64/p2p.lib -./p2p_lib.CD80BF42_3527_4C83_83C3_A1D9E182A0A3 -./Lib/IA64/p2pgraph.lib -./p2pgraph_lib.CA91CED1_C766_44BC_A36A_1AEF39F3B89C -./Lib/IA64/quartz.lib -./quartz_lib.B11F6138_FD79_4072_B1D6_6D714E5FC9F8 -./Lib/IA64/strmiids.lib -./strmiids_lib.52F1CDE7_9DDB_4AB4_AFCF_463CD2608C9D -./Lib/IA64/WbemUuid.Lib -./WbemUuid_Lib.8E7EA6E4_06D2_4687_B10A_FB265A50FA4B -./Lib/IA64/WinFax.Lib -./WinFax_Lib.96D024FA_D730_483E_B212_8E9B52D863D9 -./Lib/IA64/wmiutils.lib -./wmiutils_lib.E4BAA10C_C5BB_4135_B1E7_05061545C38E -./Lib/IA64/wuguid.lib -./wuguid_lib.9917994D_2824_4BD0_9D52_7DAD3DFC82F2 -./Lib/Icm32.Lib -./Icm32_Lib.9F4D73CC_ED71_4634_A33B_5C9DEC62074D -./Lib/Icmui.Lib -./Icmui_Lib.5FA51D8B_3D44_4DBF_809F_B05F76496189 -./Lib/ImageHlp.Lib -./ImageHlp_Lib.368D4A34_7E69_4A3C_B987_F56FFF784590 -./Lib/Imm32.Lib -./Imm32_Lib.2FD92C77_BAF0_4DBE_9AA8_1523DECEF10F -./Lib/IPHlpApi.Lib -./IPHlpApi_Lib.3FE06992_9558_443B_9BDB_7B52F64CD274 -./Lib/Iprop.Lib -./Iprop_Lib.534FA736_8D92_409D_8699_7BE1A1F4F555 -./Lib/irprops.lib -./irprops_lib.1973B836_9EAC_4700_897C_DB35115C892C -./Lib/Kernel32.Lib -./Kernel32_Lib.A9BCE7E5_14B7_4059_874F_75389CCE54B7 -./Lib/KSGuid.Lib -./KSGuid_Lib.A6888BC0_CCA1_40A3_A3D5_B4C992D84B2C -./Lib/KSProxy.Lib -./KSProxy_Lib.E4591F72_1F54_44B1_94CC_75BB6779C240 -./Lib/ksuser.lib -./ksuser_lib.64FB2349_E73B_4A40_8662_EF514EB189DE -./Lib/libcp.lib -./libcp_lib.A17F9274_1A32_41B6_AFC8_54B37630E973 -./Lib/LoadPerf.Lib -./LoadPerf_Lib.AED813E8_50E1_48E2_A916_584D6097BC35 -./Lib/Lz32.Lib -./Lz32_Lib.5C7E3FE3_E15D_46AF_9C86_D55D254C80C6 -./Lib/MAPI.Lib -./MAPI_Lib.86F82B90_A89B_4770_AB9D_5C60E04AFE7F -./Lib/MAPI32.Lib -./MAPI32_Lib.E961A89C_2243_4F06_BB90_8E95D6AC466A -./Lib/MgmtAPI.Lib -./MgmtAPI_Lib.C5EC3B13_4A8A_49A7_96EE_2E0358ECBA39 -./Lib/MiniDump.Lib -./MiniDump_Lib.2E77CDEF_5864_462F_BB96_3A042C9EEA5E -./Lib/MMC.Lib -./MMC_Lib.AEF68E07_B3EF_49B9_ACEC_A9B62E61EE89 -./Lib/mmcutil.lib -./mmcutil_lib.E18E150D_2A78_4F3B_BE60_5A8EB37DFF9C -./Lib/MobSync.Lib -./MobSync_Lib.81B50CA5_D5A5_40BF_9243_DD648DDC0783 -./Lib/Mpr.Lib -./Mpr_Lib.289B440E_9D42_4BB1_B874_40E440E311F9 -./Lib/Mprapi.Lib -./Mprapi_Lib.61A3426E_5130_449C_9437_5831AD0D5C16 -./Lib/MqOA.Lib -./MqOA_Lib.2578C743_8666_4818_B79A_60E516FF351D -./Lib/MqOA.Tlb -./MqOA_Tlb.64EB45FB_C2C0_4A5E_AACB_036309D1BB90 -./Lib/MqOA10.Tlb -./MqOA10_Tlb.FBE8D3ED_66D2_4CA7_89AF_9DD5A6EA9FA8 -./Lib/MqOA20.Tlb -./MqOA20_Tlb.2C57A5CB_DB76_47C9_8300_90EBBA70B9F6 -./Lib/MqRt.Lib -./MqRt_Lib.80BCBAD7_1D21_4553_A86A_7AC7B7B3F5DF -./Lib/MSAcm32.Lib -./MSAcm32_Lib.CF850E44_96BD_471E_96D4_6B23581E4AE0 -./Lib/MSClus.Tlb -./MSClus_Tlb.2175AEC2_8049_4FD8_B4CF_76F878EA6E25 -./Lib/Mscms.Lib -./Mscms_Lib.33DCF768_5B9C_4E15_A2FB_6935D7C9C02F -./Lib/mscoree.lib -./mscoree_lib.E0E1D8FD_BA26_4312_AA3E_A4170BBF8695 -./Lib/msdmo.lib -./msdmo_lib.1E32782E_A0BF_4712_AE4F_255251BF7CA0 -./Lib/Msi.Lib -./Msi_Lib.67084657_30A9_4EFF_B197_B11DCD485A0F -./Lib/MSImg32.Lib -./MSImg32_Lib.42A082C8_1D43_4B12_BF92_66B6AB8FE0C0 -./Lib/MsPatchC.lib -./MsPatchC_lib.918CCAE6_8D3B_4E0B_84EA_E8F0E3BA6221 -./Lib/MSRating.Lib -./MSRating_Lib.1662590C_E0D2_45D7_9803_F851DCC4FE73 -./Lib/MSTask.Lib -./MSTask_Lib.050DA632_4030_44EB_B574_879FB8B1E841 -./Lib/msvidctl.tlb -./msvidctl_tlb.A06015DC_CDFF_4C99_8E1C_2A3865483580 -./Lib/MsWSock.Lib -./MsWSock_Lib.469B101C_2360_4B3A_B3C9_0E5558B6046F -./Lib/MsXml.Tlb -./MsXml_Tlb.82963235_CF3C_44A0_B8C5_F8DAAC9A3AE1 -./Lib/MsXml2.Lib -./MsXml2_Lib.9EDC55D1_9BCC_447B_8702_0BF14996C03F -./Lib/Mtx.Lib -./Mtx_Lib.3A3BDFED_9B85_40E9_9F9A_F8E7DF03E962 -./Lib/mtxdm.lib -./mtxdm_lib.F55F560D_7F6B_4A6A_B066_589546F975D4 -./Lib/NetAPI32.Lib -./NetAPI32_Lib.92FE6B31_5B2E_41C9_8A9F_02F9D635F3A5 -./Lib/NetSh.Lib -./NetSh_Lib.D55E9B11_6D01_4790_9B41_AF658643381B -./Lib/nmapi.lib -./nmapi_lib.6DBB88FE_06BC_4A47_90C7_17C56415295D -./Lib/NMSupp.Lib -./NMSupp_Lib.D60D98A3_D6FC_4840_BE91_4FAE2EFA76C8 -./Lib/normaliz.lib -./normaliz_lib.6BD4CCC7_ABE9_477A_9E7A_7B4E901E5B0A -./Lib/npptools.lib -./npptools_lib.B4A415FA_3843_49A9_B323_364EAB2CC100 -./Lib/NtDsAPI.Lib -./NtDsAPI_Lib.D7349744_C6DF_4EA6_811D_48EE52DCBA9A -./Lib/NtDsBCli.Lib -./NtDsBCli_Lib.25D50058_43DF_4155_84C4_5BE0D17A521A -./Lib/NTMSAPI.Lib -./NTMSAPI_Lib.EC495AE3_1256_4642_8C8C_9364488BDFFE -./Lib/NtQuery.Lib -./NtQuery_Lib.DF456C15_8F6B_433D_BCC4_E89AE3C6C943 -./Lib/Ole32.Lib -./Ole32_Lib.DA843F44_7115_435F_80DB_242BAC6E912F -./Lib/OleAcc.Lib -./OleAcc_Lib.A62926F7_8D12_4B14_AB10_108E281A6BC9 -./Lib/OleAut32.Lib -./OleAut32_Lib.26836FE1_E3FC_4A1B_913A_6F946F2DFC15 -./Lib/OleDlg.Lib -./OleDlg_Lib.A74B7DE4_5C86_4A5E_A437_F93B6EB4CB2A -./Lib/OlePro32.Lib -./OlePro32_Lib.D736CB1B_E847_41C5_95E4_6CDDE306BC73 -./Lib/OpenGL32.Lib -./OpenGL32_Lib.3DF9DD3A_BB1E_4181_9A5C_8CCA2F338824 -./Lib/p2p.lib -./p2p_lib.8B601DD2_E333_4CB4_9025_3F58C40B7DA7 -./Lib/p2pgraph.lib -./p2pgraph_lib.F9C0C721_F1BF_487B_8875_4E43667557F1 -./Lib/parser.lib -./parser_lib.BF46AAF9_7F39_4611_B52E_AF5D78129257 -./Lib/PatchWiz.lib -./PatchWiz_lib.2297E45B_2AF3_4B86_9264_6C41FA560BE6 -./Lib/Pdh.Lib -./Pdh_Lib.2D665DCE_03FF_4EFB_A4A3_5BD60C3A5647 -./Lib/PEnter.Lib -./PEnter_Lib.66191BD5_685B_49EE_A3BE_43D25A37A329 -./Lib/powrprof.lib -./powrprof_lib.5DA8AB9E_F3DB_4579_AA04_09145CB2EF4C -./Lib/Psapi.Lib -./Psapi_Lib.28C32E8C_CFFF_434F_B495_9997F2F639DB -./Lib/QosName.Lib -./QosName_Lib.E41563C4_0C4C_453F_98EF_6B5BE01BB7DB -./Lib/quartz.lib -./quartz_lib.635DCB23_9E81_4F16_90C5_3403A6D70263 -./Lib/RASAPI32.Lib -./RASAPI32_Lib.66954DC1_0C82_4A2B_B85A_5EBBBF3D95B1 -./Lib/RASDlg.Lib -./RASDlg_Lib.556530FF_DC51_4561_8F55_3857B18B3030 -./Lib/RASsAPI.Lib -./RASsAPI_Lib.94DC5BC9_CB86_436C_AFC6_03D8A1F7F20C -./Lib/ResUtils.Lib -./ResUtils_Lib.98CA52CC_6B9A_49A0_8916_53A0799FEB0E -./Lib/RichEd20.Lib -./RichEd20_Lib.CCD09395_F01D_4F00_994E_46F9FDEF7A65 -./Lib/RpcNdr.Lib -./RpcNdr_Lib.33E78590_00C3_42A5_AB30_DCD0D440E28A -./Lib/Rpcns4.Lib -./Rpcns4_Lib.07F81972_6359_424D_BE25_3EEA9E73DE6D -./Lib/RpcRT4.Lib -./RpcRT4_Lib.F3A09BF3_691E_4FD2_8DD1_8966554A1A2F -./Lib/Rtm.Lib -./Rtm_Lib.2BE85D76_63FC_45BA_BE1D_9A90AA5ECA00 -./Lib/Rtutils.Lib -./Rtutils_Lib.EF519131_F4D6_4B9A_809B_8D0188EEB016 -./Lib/SCardDlg.Lib -./SCardDlg_Lib.EBB53095_8B4A_419F_9788_A611616455C3 -./Lib/SCardSsp.Tlb -./SCardSsp_Tlb.C8B36CCC_270B_4720_B103_A7516C9FFD36 -./Lib/ScrnSave.Lib -./ScrnSave_Lib.F0CFB5D3_4AE4_4804_84EF_7B2533567F71 -./Lib/ScrnSavW.Lib -./ScrnSavW_Lib.F1DE5EAF_5FEC_4D8A_A9F1_8315321D3884 -./Lib/Secur32.Lib -./Secur32_Lib.7D8D711E_A160_4977_9C73_A30B4E554075 -./Lib/sehprolg.obj -./sehprolg_obj.2F3CEF2E_8AE4_4ADE_A4AF_A408E1CA7A61 -./Lib/SensAPI.Lib -./SensAPI_Lib.21A554E1_0BB2_48A9_AE8D_F606CC7843FB -./Lib/SensEvts.Tlb -./SensEvts_Tlb.133800EC_4095_46CE_AE89_5DD70E8A6AD4 -./Lib/SetupAPI.Lib -./SetupAPI_Lib.D8281416_2CE0_4C89_8BDC_B23428130A33 -./Lib/Sfc.Lib -./Sfc_Lib.8623014B_DC77_4661_BC86_3573E4FCF214 -./Lib/Shell32.Lib -./Shell32_Lib.41AAC18D_5C4B_446A_B46A_BA0D403C825D -./Lib/ShFolder.Lib -./ShFolder_Lib.CFC19A2C_7F20_407D_96ED_AC3A5B50C6DA -./Lib/ShLwApi.Lib -./ShLwApi_Lib.5F1B7162_E01E_4899_9F77_E3DF32164040 -./Lib/sisbkup.lib -./sisbkup_lib.805AE76E_EF0F_4947_A5F8_891DD9246671 -./Lib/SnmpAPI.Lib -./SnmpAPI_Lib.3944F76B_66F5_40E5_BB20_6084DAD98D4D -./Lib/SpOrder.Lib -./SpOrder_Lib.02B27258_E8D0_4FBE_B75D_79AA14B7A186 -./Lib/SrClient.lib -./SrClient_lib.05E0BBF9_0CA4_4F1A_8BD1_B5B0709DCE3F -./Lib/StdOle2.Tlb -./StdOle2_Tlb.9108CD20_8C71_4EB8_991F_9813CDB77AE6 -./Lib/StdOle32.Tlb -./StdOle32_Tlb.5C3E3978_6F4B_4545_9911_59168CF3C6DD -./Lib/Sti.Lib -./Sti_Lib.2266B54A_8F4B_4FD9_B640_49040122B797 -./Lib/strmiids.lib -./strmiids_lib.0DB203F5_D714_4EDC_BB66_5C04C287593A -./Lib/strsafe.lib -./strsafe_lib.805AE76E_EF0F_4947_A5F8_891DD9246671 -./Lib/Svcguid.Lib -./Svcguid_Lib.932567CC_D8D1_4670_B830_39FD8E055926 -./Lib/Tapi32.Lib -./Tapi32_Lib.A4073DE6_B509_4B4A_86A1_4BA9CB1DCA4F -./Lib/Thunk32.Lib -./Thunk32_Lib.301FF4C4_4C83_4408_91C4_7114F79D1E10 -./Lib/Traffic.Lib -./Traffic_Lib.3A322E29_3581_4337_8CDC_1CFA3D35985E -./Lib/tsuserex.tlb -./tsuserex_tlb.89ECCD8D_A533_4AE3_8AE8_79C3B9E36F2F -./Lib/tuner.tlb -./tuner_tlb.D4545203_3F85_4A28_B3C6_EAC6DF7260BF -./Lib/unicows.lib -./unicows_lib.ACFDC68E_01BC_4053_B76C_94B767BE9E7C -./Lib/Url.Lib -./Url_Lib.E56CCB00_4F01_470C_AEBA_6EFFC1A7E131 -./Lib/Urlmon.Lib -./Urlmon_Lib.FA9B8CB6_6D46_4D89_BDA8_98BF76224A33 -./Lib/User32.Lib -./User32_Lib.BF17B2A2_33E9_4EA4_9074_789953369A35 -./Lib/UserEnv.Lib -./UserEnv_Lib.88838305_19E3_4C68_8D12_BE6A880E5EBD -./Lib/USP10.Lib -./USP10_Lib.F2B34FA4_3F7B_4650_A54D_CC91F30CDA0F -./Lib/Uuid.Lib -./Uuid_Lib.D81E361C_01D3_4860_B25C_49C6BE57EF4D -./Lib/Uxtheme.lib -./Uxtheme_lib.183FDE5E_921A_47B6_8179_074E3447D308 -./Lib/VdmDbg.Lib -./VdmDbg_Lib.07125EEB_83BC_4622_A39C_C9092C90DCA6 -./Lib/Version.Lib -./Version_Lib.BFC67761_1208_43DE_90BF_379553C01674 -./Lib/Vfw32.Lib -./Vfw32_Lib.E27E59E8_61B4_44A4_8326_B96CAE35E28F -./Lib/WbemUuid.Lib -./WbemUuid_Lib.DEA7F2C6_8D83_4D4C_AEC3_ECAC4967A6D4 -./Lib/WebPost.Lib -./WebPost_Lib.2E2559BF_540E_426E_9168_1731F59F4A86 -./Lib/WiaGuid.Lib -./WiaGuid_Lib.3F17949E_5982_42CA_97D3_08A4BAB4984B -./Lib/WiaScr.Tlb -./WiaScr_Tlb.97A6B7DC_7FCC_4892_99CE_3CF112FBABED -./Lib/Win95/MfcUIa32.Lib -./MfcUIa32_Lib.29977AFB_C62A_4C2E_A477_D69D66CF2DDC -./Lib/Win95/Pkpd32.Lib -./Pkpd32_Lib.49B9EF8D_D702_4DBF_BC06_3AEF7401AC59 -./Lib/Win95/SvrAPI.Lib -./SvrAPI_Lib.6C95A398_509D_4643_BA5D_2B39D5305475 -./Lib/Win95/TH32.Lib -./TH32_Lib.28F997B6_6FE1_4DD7_8191_EA1F7A6B1D51 -./Lib/WinFax.Lib -./WinFax_Lib.EF9F7132_C56A_4D28_A97A_F78C8212767D -./Lib/winhttp.lib -./winhttp_lib.6559BAA9_79CE_48B7_A1F1_431B3CF69D19 -./Lib/WinInet.Lib -./WinInet_Lib.1DA37F1C_12A0_4DA6_8CE2_B78AEC842AD9 -./Lib/WinMM.Lib -./WinMM_Lib.C406CE37_5769_41C6_A699_558DDFC104FE -./Lib/WinSCard.Lib -./WinSCard_Lib.BF6751D8_0981_4E8E_B193_6502A2CC108B -./Lib/WinSpool.Lib -./WinSpool_Lib.3C5F33C9_AB6F_42E1_B02D_F80CC22ABFB9 -./Lib/WinStrm.Lib -./WinStrm_Lib.ED3E95D0_3B13_402F_A4B1_2A60B68B96E0 -./Lib/WinTrust.Lib -./WinTrust_Lib.4108E20E_2433_4F6A_9DF4_5E15A9D48829 -./Lib/Wldap32.Lib -./Wldap32_Lib.BAB4B052_B301_4A12_8313_336E8B180B4F -./Lib/wmiutils.lib -./wmiutils_lib.60937378_0F12_4612_8BF1_C757D7554624 -./Lib/Wow32.Lib -./Wow32_Lib.7A51B477_4136_4C1C_8C5B_B847036F6BF3 -./Lib/WS2_32.Lib -./WS2_32_Lib.B198A824_2582_48FE_8FA1_4401C9ED6AE1 -./Lib/WSnmp32.Lib -./WSnmp32_Lib.6373F81C_538E_4C03_BA73_D15454348E6F -./Lib/WSock32.Lib -./WSock32_Lib.D53A91D7_C344_453E_A80E_C91A8E3CB7C8 -./Lib/Wst.Lib -./Wst_Lib.B6F56B19_6D8C_4D19_A438_0BA8AD04692D -./Lib/WtsApi32.Lib -./WtsApi32_Lib.36F2240E_FA3C_4C6F_A2FD_0550BB23EB9D -./Lib/wuguid.lib -./wuguid_lib.D333901D_E84A_4E7D_B544_3B47C59BC8FC -./Lib/xaSwitch.Lib -./xaSwitch_Lib.92487B6B_AD50_45D7_BBE4_0BFA29BDD613 -./Lib/xoleHlp.Lib -./xoleHlp_Lib.2F857097_12F1_443D_A21A_ADC3F4563502 -./License/License.htm -./License_htm.9887FB35_5374_45FA_A711_2319AFA78483 -./License/Redist.Txt -./Redist_Txt.5B1BBCBA_B610_4527_8813_F9752C4293DB -./misc/Include Updates/exdisp.idl -./exdisp_idl.2B6A4E41_704F_4E5C_95E6_BE84F50D20A4 -./misc/Include Updates/ReadMe.txt -./ReadMe_txt.2B6A4E41_704F_4E5C_95E6_BE84F50D20A4 -./misc/Include Updates/ShDeprecated.h -./ShDeprecated_h.2B6A4E41_704F_4E5C_95E6_BE84F50D20A4 -./misc/Include Updates/ShDeprecated.idl -./ShDeprecated_idl.2B6A4E41_704F_4E5C_95E6_BE84F50D20A4 -./misc/WMI/Schema.Txt -./Schema_Txt.0F08FA77_3015_4C2C_9B40_818571A1735C -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1213.Txt -./Rfc1213_Txt.2D4567BA_DDCC_4CFD_AD65_114102478F0A -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1229.Txt -./Rfc1229_Txt.FCB7C73F_05BA_4BBF_9ED6_775D6E546E51 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1230.Txt -./Rfc1230_Txt.AE4B1666_9478_4626_B928_533A56763CFD -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1231.Txt -./Rfc1231_Txt.DA9B6BF3_42BA_4355_AC63_D107AAFA7046 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1238.Txt -./Rfc1238_Txt.1D6FA0A5_3ABA_45B3_B692_4D0FECEF7D42 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1253.Txt -./Rfc1253_Txt.75CDCD33_48E1_42BF_B3B8_4F6D952933A2 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1269.Txt -./Rfc1269_Txt.9AA7180F_2755_421A_99C2_5CC596EBF297 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1271.Txt -./Rfc1271_Txt.26F02B91_841B_4A3A_92C5_5ADDCCEA27D6 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1285.Txt -./Rfc1285_Txt.835DFB40_61DA_4211_B6C8_49CE94179E46 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1304.Txt -./Rfc1304_Txt.0C005360_5FCB_4BD2_8013_2CAE56ABA3FA -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1315.Txt -./Rfc1315_Txt.1C0C58BC_AF8C_40E2_B628_0BF3844B5955 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1316.Txt -./Rfc1316_Txt.9FC47225_89BD_433F_9308_D4C20CD4B7E1 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1317.Txt -./Rfc1317_Txt.4A6C9040_D28E_4A57_A7D2_F77024F0A2EE -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1318.Txt -./Rfc1318_Txt.F8AAAB54_5DFB_47F9_A3D0_5246B4A01DA4 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1354.Txt -./Rfc1354_Txt.FFA1C1B9_BB9E_472B_8CC5_7D3799CC0070 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1381.Txt -./Rfc1381_Txt.DB1330FB_A198_4D48_B817_1D94156A4587 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1382.Txt -./Rfc1382_Txt.C55180F7_C83C_4F2B_AADD_F582F352FE64 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1389.Txt -./Rfc1389_Txt.22A12DDD_4F95_4CCA_9FF0_698CBB10FAC3 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1398.Txt -./Rfc1398_Txt.61418C3E_2FB7_4FD6_9701_7C157F786B0B -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1406.Txt -./Rfc1406_Txt.A2FC9AE9_38BC_41B4_9D26_6F68C5378408 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1407.Txt -./Rfc1407_Txt.DB52F953_84CC_4656_8A1D_4815CA3A37D9 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1414.Txt -./Rfc1414_Txt.DF6BE755_0360_4577_B662_7311E0CD834C -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1461.Txt -./Rfc1461_Txt.860F2B0C_06E0_4B3D_AE2F_9474B06E5883 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1471.Txt -./Rfc1471_Txt.C2C1F222_F12C_4F0B_B7AB_0337DEE73062 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1472.Txt -./Rfc1472_Txt.C4C3650A_674D_4C41_BC44_F1295D970FFC -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1473.Txt -./Rfc1473_Txt.D49BC855_B3E7_47D4_8B9E_0E591C5439AF -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1474.Txt -./Rfc1474_Txt.6C561344_5A56_4329_8894_2C3D5DD387AE -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1493.Txt -./Rfc1493_Txt.402BCF82_ECD2_48E3_A1C4_9281BC4D61AF -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1512.Txt -./Rfc1512_Txt.FEF62AD5_08B0_4251_8178_6FA2068CBADD -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1513.Txt -./Rfc1513_Txt.0957C208_17FF_417F_B325_4A46EC630A29 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1514.Txt -./Rfc1514_Txt.2B2F792D_F5A8_4057_B900_61B122589CC3 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1515.Txt -./Rfc1515_Txt.465D403B_2C7F_427B_923B_B68DC9D57209 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1516.Txt -./Rfc1516_Txt.E6106030_66BF_49FE_B6B9_011D7F194CBD -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1525.Txt -./Rfc1525_Txt.6C2FE650_9318_420D_A214_4D3D30C7BF7E -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1559.Txt -./Rfc1559_Txt.FAD98094_6D57_4536_AB8E_7F1EBF122FAC -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1593.Txt -./Rfc1593_Txt.D4963087_02FD_4D69_8E6F_99013105CA32 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1742.Txt -./Rfc1742_Txt.338E584B_A3F9_4C3E_B5FB_02E6C3B92B16 -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1757.Txt -./Rfc1757_Txt.19FD971D_EC9A_43F2_90DE_10AC399DA21E -./misc/WMI/SNMP/MIBS/SNMPV1/RFCs/Rfc1792.Txt -./Rfc1792_Txt.460528CE_7755_4000_8728_68C13E1DABEB -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1213.Mof -./Rfc1213_Mof.3EB277DC_DF53_4187_917C_539FE652C383 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1229.Mof -./Rfc1229_Mof.58FAD9AF_9E9A_4B7F_8FB1_FCB3967D8547 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1230.Mof -./Rfc1230_Mof.23629C7A_2508_4CB0_BFF0_1D6D9386E026 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1231.Mof -./Rfc1231_Mof.82BDC0CD_315A_46DC_8619_594B7C253A74 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1238.Mof -./Rfc1238_Mof.FDF76E60_0888_4D96_A325_6A5A50F15C83 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1253.Mof -./Rfc1253_Mof.E1C8C086_D62A_499F_B1D3_78AFE29363F6 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1269.Mof -./Rfc1269_Mof.70875F27_897C_4330_AC6A_1D801E8B1B9A -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1271.Mof -./Rfc1271_Mof.A66D2763_9CF5_422B_969E_5B9820D708A1 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1285.Mof -./Rfc1285_Mof.C6231CEE_8981_4D6F_855C_74835523FAEB -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1304.Mof -./Rfc1304_Mof.E6AE99DE_DCA4_45FD_8AFD_A90931C2B67A -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1315.Mof -./Rfc1315_Mof.3E742107_508B_438C_8882_56CB1736445B -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1316.Mof -./Rfc1316_Mof.6A075F01_592F_427C_80B8_535FA313989C -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1317.Mof -./Rfc1317_Mof.98B51F6F_FA80_4EA5_BF6C_BAED3A334612 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1318.Mof -./Rfc1318_Mof.C56E4080_FEB2_4072_8381_D7C3C874CACE -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1354.Mof -./Rfc1354_Mof.D7096037_610A_47CA_8ED8_5366ED4BB308 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1381.Mof -./Rfc1381_Mof.9526F02F_E95A_4440_B41A_4ECF928DF973 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1382.Mof -./Rfc1382_Mof.C4BDCAE3_60FE_4450_8449_CA5EE496B8CA -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1389.Mof -./Rfc1389_Mof.F5B2920E_8344_4F8D_BE77_7D48A6789A33 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1398.Mof -./Rfc1398_Mof.BA42D037_2EE2_4F60_93B5_B40179D0EFBB -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1406.Mof -./Rfc1406_Mof.5A5B57A9_793E_4964_B2C6_4C6F8445AD5C -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1407.Mof -./Rfc1407_Mof.AFB7FF54_DE53_4F34_B598_47C0B3E2B7E5 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1414.Mof -./Rfc1414_Mof.FF0D3249_2135_403E_A89F_A3808C5A66F7 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1461.Mof -./Rfc1461_Mof.C5F4976B_A274_44BB_B146_316882974014 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1471.Mof -./Rfc1471_Mof.EE7E2FDF_9779_4954_AB5C_7F6437E90EB9 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1472.Mof -./Rfc1472_Mof.D345FAB0_E25E_4FB7_B949_3373CAEB71AA -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1473.Mof -./Rfc1473_Mof.271A95D6_529C_4C70_8DBD_EC30EAE2CF54 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1474.Mof -./Rfc1474_Mof.1BB2732F_55C9_49E8_87D8_5F40922C3AD2 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1493.Mof -./Rfc1493_Mof.75CF82ED_1B7E_43CC_AC27_F616134B957D -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1512.Mof -./Rfc1512_Mof.997ACB47_908E_4A68_8ACA_FE90D4BA39DA -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1513.Mof -./Rfc1513_Mof.F2326119_44AF_478F_A10B_245AA0CA54AD -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1514.Mof -./Rfc1514_Mof.6C25DA9D_4F6D_4F68_AD8C_FF828B50545F -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1515.Mof -./Rfc1515_Mof.3989A670_8987_479B_9A21_5830A5CB3B13 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1516.Mof -./Rfc1516_Mof.81CF8CA6_DAA7_4091_BABA_DDDDDAC5E7BD -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1525.Mof -./Rfc1525_Mof.D56E66C2_C214_40E6_A243_4D04A7CADD32 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1559.Mof -./Rfc1559_Mof.A10850F8_32F6_43E8_A4C4_1B4F56CB7185 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1593.Mof -./Rfc1593_Mof.3A09E0BA_69FA_425D_94CC_651E80BC8E62 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1742.Mof -./Rfc1742_Mof.DFD5EB87_DEE3_4820_83BC_19419BF187FB -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1757.Mof -./Rfc1757_Mof.5403E9A8_01BA_4C08_BD2E_5C2372469B25 -./misc/WMI/SNMP/MOFS/SNMPV1/RFCs/Rfc1792.Mof -./Rfc1792_Mof.3A511978_08E7_41F8_B484_0C60AD1ABB69 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1213.Mof -./Rfc1213_Mof.33A62C66_47C3_48C9_B8FA_0CBCDA383A41 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1229.Mof -./Rfc1229_Mof.0DAE491D_E62B_4A1F_AB27_51B55B6E620C -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1230.Mof -./Rfc1230_Mof.92BA16E9_ADCC_478C_BF91_54E3D0F8F1F9 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1231.Mof -./Rfc1231_Mof.6EDDCEEB_3B3F_4CB2_B3F6_CADEE7E61491 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1238.Mof -./Rfc1238_Mof.C4FBEAC9_2FB2_4432_A239_E6D1AE4CA496 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1253.Mof -./Rfc1253_Mof.552F82B0_57E2_4AF7_8281_2FA0831885BA -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1269.Mof -./Rfc1269_Mof.665808BA_3A8D_4268_8524_896B0DB97300 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1271.Mof -./Rfc1271_Mof.F869A964_A897_4A44_B520_D7248C27EB54 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1285.Mof -./Rfc1285_Mof.556C966B_1CA6_4955_8723_60314CBD094B -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1304.Mof -./Rfc1304_Mof.7F93703A_A500_44B0_904F_568C522815CD -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1315.Mof -./Rfc1315_Mof.75603B43_D008_4E78_970F_B6FE6F536493 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1316.Mof -./Rfc1316_Mof.8D088613_D5F7_4D4D_B644_DE36E2A1BB54 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1317.Mof -./Rfc1317_Mof.2B4DC7DB_6F11_4F2B_82C1_7DA9FA899462 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1318.Mof -./Rfc1318_Mof.C8616C59_DA59_4AE8_A3F8_51F7C7DA96FF -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1354.Mof -./Rfc1354_Mof.56E44714_AA09_4483_95FF_77F7D4229314 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1381.Mof -./Rfc1381_Mof.C05BCB7B_4AFF_431A_BE2D_0F7ED4D3C596 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1382.Mof -./Rfc1382_Mof.A9D213EC_8EBE_4DA3_9629_4056AAD58612 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1389.Mof -./Rfc1389_Mof.7D838E9C_5A64_409C_944C_7E92746AF58C -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1398.Mof -./Rfc1398_Mof.689F1765_7901_46AE_987F_41816AD6D866 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1406.Mof -./Rfc1406_Mof.32886393_4BEF_4260_847E_C7699D3404E3 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1407.Mof -./Rfc1407_Mof.6B5A5092_08B8_4551_92CC_F417D6014904 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1414.Mof -./Rfc1414_Mof.5CBBE172_7D1A_4B35_A4D8_783F19C7527A -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1461.Mof -./Rfc1461_Mof.A6359471_0073_4D01_8E5B_9B43D9ED596B -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1471.Mof -./Rfc1471_Mof.F03F08E2_D78C_4C85_A4CD_FB50E7E7C4FF -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1472.Mof -./Rfc1472_Mof.98F7E2D3_29CA_4154_BF11_26C17D1713C4 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1473.Mof -./Rfc1473_Mof.EE87CE7F_4B8C_412D_B5B6_D6ACF1F8218E -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1474.Mof -./Rfc1474_Mof.C6608AE2_B981_4D42_AB21_CEBB0BF99ED5 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1493.Mof -./Rfc1493_Mof.A7D7F0CB_9C8D_4959_B117_15DF76BA5FB6 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1512.Mof -./Rfc1512_Mof.AEAE60B6_08C8_45F4_9FE4_B4ADF36C980E -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1513.Mof -./Rfc1513_Mof.4F84025C_F110_4DBB_BFA9_7F9D64CE0A86 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1514.Mof -./Rfc1514_Mof.ED551775_05BB_4F74_9004_B1D82D185A18 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1515.Mof -./Rfc1515_Mof.2BC31FC7_6761_4EE4_A762_C077B819A96A -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1516.Mof -./Rfc1516_Mof.0AB0D69D_D303_48B5_857A_43D7D0949675 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1525.Mof -./Rfc1525_Mof.3EAE0682_96DF_407F_8943_9ED39580CE0C -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1559.Mof -./Rfc1559_Mof.6AF09E1C_12D7_46BB_BDEA_EA579219A119 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1593.Mof -./Rfc1593_Mof.6CE623EE_1546_49EE_B47C_902EBAC6531E -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1742.Mof -./Rfc1742_Mof.CBD26CBD_35DD_458B_8406_92D6C111B5B1 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1757.Mof -./Rfc1757_Mof.74A8375A_19A8_4C5F_9A4B_F11DD3704B05 -./misc/WMI/SNMP/SMIR_MOFS/SNMPV1/RFCs/Rfc1792.Mof -./Rfc1792_Mof.1363C821_E13F_48FF_A06B_4369872CDA67 -./redist/CAPICOM/license.txt -./license_txt.8325A2B3_232F_44CE_9877_8F568416FE5C -./redist/CAPICOM/readme.txt -./readme_txt.8325A2B3_232F_44CE_9877_8F568416FE5C -./redist/CAPICOM/Redist.txt -./Redist_txt.496436CC_D054_4979_A8C1_DD6D0F4C47F3 -./redist/CAPICOM/x86/CapiCom.Dll -./CapiCom_Dll.13AD387D_B77D_4B96_83F6_8314EC63F226 -./redist/readme.txt -./readme_txt.6778A002_F469_42B7_8EAD_47BA9D0A1885 -./ReleaseNotes.Htm -./ReleaseNotes_Htm.2E494322_3849_4926_B4AA_190C82A6503F diff --git a/pkgs/development/mobile/androidenv/androidsdk.nix b/pkgs/development/mobile/androidenv/androidsdk.nix index aa009cb301a..08b15181be4 100644 --- a/pkgs/development/mobile/androidenv/androidsdk.nix +++ b/pkgs/development/mobile/androidenv/androidsdk.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { for i in emulator64-arm emulator64-mips emulator64-x86 do patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 $i - patchelf --set-rpath ${stdenv.cc.cc}/lib64 $i + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64 $i done ''} diff --git a/pkgs/development/python-modules/buildout-nix/default.nix b/pkgs/development/python-modules/buildout-nix/default.nix index d12702d98ca..b450814b852 100644 --- a/pkgs/development/python-modules/buildout-nix/default.nix +++ b/pkgs/development/python-modules/buildout-nix/default.nix @@ -4,7 +4,7 @@ buildPythonPackage { name = "zc.buildout-nix-2.5.0"; src = fetchurl { - url = "https://pypi.python.org/packages/source/z/zc.buildout/zc.buildout-2.5.0.tar.gz"; + url = "mirror://pypi/z/zc.buildout/zc.buildout-2.5.0.tar.gz"; sha256 = "721bd2231a9f01f2d5c14f3adccb3385f85b093ee05b18d15d0ff2b9f1f1bd02"; }; diff --git a/pkgs/development/python-modules/graph-tool/2.x.x.nix b/pkgs/development/python-modules/graph-tool/2.x.x.nix index be1592f864f..4f39d1097b1 100644 --- a/pkgs/development/python-modules/graph-tool/2.x.x.nix +++ b/pkgs/development/python-modules/graph-tool/2.x.x.nix @@ -3,7 +3,7 @@ pkgconfig, boost, expat, scipy, numpy, cgal, gmp, mpfr, lndir, gobjectIntrospection, pygobject3, gtk3, matplotlib }: stdenv.mkDerivation rec { - version = "2.12"; + version = "2.16"; name = "${python.libPrefix}-graph-tool-${version}"; meta = with stdenv.lib; { @@ -15,8 +15,8 @@ stdenv.mkDerivation rec { }; src = fetchurl { - url = "https://github.com/count0/graph-tool/archive/release-${version}.tar.gz"; - sha256 = "12w58djyx6nn00wixqnxnxby9ksabhzdkkvynl8b89parfvfbpwl"; + url = "https://downloads.skewed.de/graph-tool/graph-tool-${version}.tar.bz2"; + sha256 = "03b1pmh2gvsgyq491gvskx8fwgqy9k942faymdnhwpbbbfhx911p"; }; configureFlags = [ diff --git a/pkgs/development/python-modules/h5py/default.nix b/pkgs/development/python-modules/h5py/default.nix index 9775b2f70a2..5b1ca192790 100644 --- a/pkgs/development/python-modules/h5py/default.nix +++ b/pkgs/development/python-modules/h5py/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { version = "2.5.0"; src = fetchurl { - url = "https://pypi.python.org/packages/source/h/h5py/${name}.tar.gz"; + url = "mirror://pypi/h/h5py/${name}.tar.gz"; sha256 = "9833df8a679e108b561670b245bcf9f3a827b10ccb3a5fa1341523852cfac2f6"; }; diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix index 1ebba52ff6f..c60ee54bec8 100644 --- a/pkgs/development/python-modules/matplotlib/default.nix +++ b/pkgs/development/python-modules/matplotlib/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { version = "1.5.1"; src = fetchurl { - url = "https://pypi.python.org/packages/source/m/matplotlib/${name}.tar.gz"; + url = "mirror://pypi/m/matplotlib/${name}.tar.gz"; sha256 = "3ab8d968eac602145642d0db63dd8d67c85e9a5444ce0e2ecb2a8fedc7224d40"; }; diff --git a/pkgs/development/python-modules/pyatspi/default.nix b/pkgs/development/python-modules/pyatspi/default.nix index 636126ea74a..598056a0c36 100644 --- a/pkgs/development/python-modules/pyatspi/default.nix +++ b/pkgs/development/python-modules/pyatspi/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, python3, python3Packages, at_spi2_core }: +{ stdenv, fetchurl, pkgconfig, at_spi2_core, pythonPackages }: stdenv.mkDerivation rec { version = "2.18.0"; @@ -9,8 +9,13 @@ stdenv.mkDerivation rec { sha256 = "0imbyk2v6c11da7pkwz91313pkkldxs8zfg81zb2ql6h0nnh6vzq"; }; + broken = true; + buildInputs = [ - pkgconfig python3 python3Packages.pygobject3 at_spi2_core + at_spi2_core + pkgconfig + pythonPackages.python + pythonPackages.pygobject3 ]; meta = with stdenv.lib; { diff --git a/pkgs/development/python-modules/pycairo/default.nix b/pkgs/development/python-modules/pycairo/default.nix index 84dfdd32a10..433eb9d6b2a 100644 --- a/pkgs/development/python-modules/pycairo/default.nix +++ b/pkgs/development/python-modules/pycairo/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, fetchpatch, python, pkgconfig, cairo, xlibsWrapper, isPyPy, isPy35 }: -if (isPyPy || isPy35) then throw "pycairo not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec { +if (isPyPy) then throw "pycairo not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec { version = "1.10.0"; name = "${python.libPrefix}-pycairo-${version}"; src = if python.is_py3k or false @@ -23,6 +23,8 @@ if (isPyPy || isPy35) then throw "pycairo not supported for interpreter ${python sha256 = "0xfl1i9dips2nykyg91f5h5r3xpk2hp1js1gq5z0hwjr0in55id4"; }; + patch_waf-py3_5 = ./waf-py3_5.patch; + buildInputs = [ python pkgconfig cairo xlibsWrapper ]; configurePhase = '' @@ -30,6 +32,7 @@ if (isPyPy || isPy35) then throw "pycairo not supported for interpreter ${python cd $(${python.executable} waf unpack) pwd patch -p1 < ${patch_waf} + ${stdenv.lib.optionalString isPy35 "patch -p1 < ${patch_waf-py3_5}"} ) ${python.executable} waf configure --prefix=$out diff --git a/pkgs/development/python-modules/pycairo/waf-py3_5.patch b/pkgs/development/python-modules/pycairo/waf-py3_5.patch new file mode 100644 index 00000000000..dcfdbea2fbd --- /dev/null +++ b/pkgs/development/python-modules/pycairo/waf-py3_5.patch @@ -0,0 +1,10 @@ +--- a/waflib/Build.py ++++ b/waflib/Build.py +@@ -151,6 +151,7 @@ class BuildContext(Context.Context): + f.close() + self.init_dirs() + def store(self): ++ return + data={} + for x in SAVED_ATTRS: + data[x]=getattr(self,x) diff --git a/pkgs/development/python-modules/pycrypto/default.nix b/pkgs/development/python-modules/pycrypto/default.nix index 4faaf20d29c..0cbe4491d67 100644 --- a/pkgs/development/python-modules/pycrypto/default.nix +++ b/pkgs/development/python-modules/pycrypto/default.nix @@ -5,7 +5,7 @@ buildPythonPackage rec { namePrefix = ""; src = fetchurl { - url = "http://pypi.python.org/packages/source/p/pycrypto/${name}.tar.gz"; + url = "mirror://pypi/p/pycrypto/${name}.tar.gz"; sha256 = "0g0ayql5b9mkjam8hym6zyg6bv77lbh66rv1fyvgqb17kfc1xkpj"; }; diff --git a/pkgs/development/python-modules/pygobject/3.nix b/pkgs/development/python-modules/pygobject/3.nix index b8082890299..6a58550e7c5 100644 --- a/pkgs/development/python-modules/pygobject/3.nix +++ b/pkgs/development/python-modules/pygobject/3.nix @@ -1,11 +1,13 @@ { stdenv, fetchurl, python, pkgconfig, glib, gobjectIntrospection, pycairo, cairo }: stdenv.mkDerivation rec { - name = "pygobject-3.18.2"; + major = "3.20"; + minor = "0"; + name = "pygobject-${major}.${minor}"; src = fetchurl { - url = "mirror://gnome/sources/pygobject/3.18/${name}.tar.xz"; - sha256 = "0prc3ky7g50ixmfxbc7zf43fw6in4hw2q07667hp8swi2wassg1a"; + url = "mirror://gnome/sources/pygobject/${major}/${name}.tar.xz"; + sha256 = "0ikzh3l7g1gjh8jj8vg6mdvrb25svp63gxcam4m0i404yh0lgari"; }; buildInputs = [ python pkgconfig glib gobjectIntrospection ]; diff --git a/pkgs/development/python-modules/pygobject/default.nix b/pkgs/development/python-modules/pygobject/default.nix index 897210a4046..fb2df329fbc 100644 --- a/pkgs/development/python-modules/pygobject/default.nix +++ b/pkgs/development/python-modules/pygobject/default.nix @@ -10,6 +10,12 @@ stdenv.mkDerivation rec { outputs = [ "out" "docdev" ]; + patches = [ + # Fix warning spam + ./pygobject-2.28.6-set_qdata.patch + ./pygobject-2.28.6-gio-types-2.32.patch + ]; + configureFlags = "--disable-introspection"; buildInputs = [ python pkgconfig glib ]; diff --git a/pkgs/development/python-modules/pygobject/pygobject-2.28.6-gio-types-2.32.patch b/pkgs/development/python-modules/pygobject/pygobject-2.28.6-gio-types-2.32.patch new file mode 100644 index 00000000000..fa0adf54ad0 --- /dev/null +++ b/pkgs/development/python-modules/pygobject/pygobject-2.28.6-gio-types-2.32.patch @@ -0,0 +1,50 @@ +From 42d01f060c5d764baa881d13c103d68897163a49 Mon Sep 17 00:00:00 2001 +From: Ryan Lortie +Date: Mon, 12 Mar 2012 16:44:14 -0400 +Subject: [PATCH] gio-types.defs: change some enums to flags + +These flags types were originally incorrectly handled in glib as being +enums. That bug was fixed, but they're still enums here, leading to +warnings about the mismatch. + +Change them to flags. + +https://bugzilla.gnome.org/show_bug.cgi?id=668522 +--- + gio/gio-types.defs | 6 +++--- + 1 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/gio/gio-types.defs b/gio/gio-types.defs +index 331e0bc..7eee5c8 100644 +--- a/gio/gio-types.defs ++++ b/gio/gio-types.defs +@@ -526,7 +526,7 @@ + ) + ) + +-(define-enum MountMountFlags ++(define-flags MountMountFlags + (in-module "gio") + (c-name "GMountMountFlags") + (gtype-id "G_TYPE_MOUNT_MOUNT_FLAGS") +@@ -545,7 +545,7 @@ + ) + ) + +-(define-enum DriveStartFlags ++(define-flags DriveStartFlags + (in-module "gio") + (c-name "GDriveStartFlags") + (gtype-id "G_TYPE_DRIVE_START_FLAGS") +@@ -770,7 +770,7 @@ + ) + ) + +-(define-enum SocketMsgFlags ++(define-flags SocketMsgFlags + (in-module "gio") + (c-name "GSocketMsgFlags") + (gtype-id "G_TYPE_SOCKET_MSG_FLAGS") +-- +1.7.8.5 + diff --git a/pkgs/development/python-modules/pygobject/pygobject-2.28.6-set_qdata.patch b/pkgs/development/python-modules/pygobject/pygobject-2.28.6-set_qdata.patch new file mode 100644 index 00000000000..55376b59d82 --- /dev/null +++ b/pkgs/development/python-modules/pygobject/pygobject-2.28.6-set_qdata.patch @@ -0,0 +1,28 @@ +From 42d871eb0b08ee6d55e95cc7e4b90844919555b9 Mon Sep 17 00:00:00 2001 +From: Ivan Stankovic +Date: Tue, 21 Feb 2012 12:24:58 +0100 +Subject: [PATCH] Fix set_qdata warning on accessing NULL gobject property + +https://bugzilla.gnome.org/show_bug.cgi?id=661155 +--- + gobject/pygobject.c | 4 +++- + 1 files changed, 3 insertions(+), 1 deletions(-) + +diff --git a/gobject/pygobject.c b/gobject/pygobject.c +index 6c2f06c..70dc89a 100644 +--- a/gobject/pygobject.c ++++ b/gobject/pygobject.c +@@ -991,7 +991,9 @@ pygobject_new(GObject *obj) + PyObject * + pygobject_new_sunk(GObject *obj) + { +- g_object_set_qdata (obj, pygobject_ref_sunk_key, GINT_TO_POINTER (1)); ++ if (obj) ++ g_object_set_qdata (obj, pygobject_ref_sunk_key, GINT_TO_POINTER (1)); ++ + return pygobject_new_full(obj, TRUE, NULL); + } + +-- +1.7.8.5 + diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix index b11e87fe1d9..0e5f5604a98 100644 --- a/pkgs/development/python-modules/pyqt/5.x.nix +++ b/pkgs/development/python-modules/pyqt/5.x.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, python, pkgconfig, qtbase, qtsvg, qtwebkit, sip, pythonDBus -, lndir, makeWrapper }: +, lndir, makeWrapper, qmakeHook }: let version = "5.5.1"; @@ -21,13 +21,12 @@ in stdenv.mkDerivation { buildInputs = [ python pkgconfig makeWrapper lndir - qtbase qtsvg qtwebkit + qtbase qtsvg qtwebkit qmakeHook ]; propagatedBuildInputs = [ sip ]; configurePhase = '' - runHook preConfigure mkdir -p $out lndir ${pythonDBus} $out @@ -45,7 +44,6 @@ in stdenv.mkDerivation { --destdir=$out/lib/${python.libPrefix}/site-packages \ --sipdir=$out/share/sip \ --designer-plugindir=$out/plugins/designer - runHook postConfigure ''; postInstall = '' diff --git a/pkgs/development/python-modules/pyuv-external-libuv.patch b/pkgs/development/python-modules/pyuv-external-libuv.patch index 33539d9b4b2..41e169acd5f 100644 --- a/pkgs/development/python-modules/pyuv-external-libuv.patch +++ b/pkgs/development/python-modules/pyuv-external-libuv.patch @@ -1,27 +1,25 @@ diff --git a/setup.py b/setup.py -index ec0caac..2c1fdb6 100644 +index 5071c3b..4b4a176 100644 --- a/setup.py +++ b/setup.py -@@ -6,7 +6,6 @@ try: +@@ -7,7 +7,6 @@ try: from setuptools import setup, Extension except ImportError: from distutils.core import setup, Extension -from setup_libuv import libuv_build_ext, libuv_sdist - - - __version__ = "0.11.5" -@@ -32,12 +31,11 @@ setup(name = "pyuv", + + + def get_version(): +@@ -35,11 +34,10 @@ setup(name = "pyuv", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4" ], - cmdclass = {'build_ext': libuv_build_ext, - 'sdist' : libuv_sdist}, - ext_modules = [Extension('pyuv', + packages = ['pyuv'], + ext_modules = [Extension('pyuv._cpyuv', sources = ['src/pyuv.c'], -+ libraries = ['uv'], - define_macros=[('MODULE_VERSION', __version__), -- ('LIBUV_REVISION', libuv_build_ext.libuv_revision)] -+ ('LIBUV_REVISION', 'unknown')] ++ libraries = ['uv'] )] ) - + diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix index a924a1f3b85..f40974263fa 100644 --- a/pkgs/development/python-modules/setuptools/default.nix +++ b/pkgs/development/python-modules/setuptools/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { version = "19.4"; # 18.4 and up breaks python34Packages.characteristic and many others src = fetchurl { - url = "https://pypi.python.org/packages/source/s/setuptools/${shortName}.tar.gz"; + url = "mirror://pypi/s/setuptools/${shortName}.tar.gz"; sha256 = "214bf29933f47cf25e6faa569f710731728a07a19cae91ea64f826051f68a8cf"; }; diff --git a/pkgs/development/python-modules/tables/default.nix b/pkgs/development/python-modules/tables/default.nix index 3dcf00e9b8c..b3003dfa954 100644 --- a/pkgs/development/python-modules/tables/default.nix +++ b/pkgs/development/python-modules/tables/default.nix @@ -6,7 +6,7 @@ buildPythonPackage rec { name = "tables-${version}"; src = fetchurl { - url = "https://pypi.python.org/packages/source/t/tables/${name}.tar.gz"; + url = "mirror://pypi/t/tables/${name}.tar.gz"; sha256 = "3564b351a71ec1737b503b001eb7ceae1f65d5d6e3ffe1ea75aafba10f37fa84"; }; diff --git a/pkgs/development/python-modules/yolk/default.nix b/pkgs/development/python-modules/yolk/default.nix index 7cfcb1e0f0d..33e9cfeab3a 100644 --- a/pkgs/development/python-modules/yolk/default.nix +++ b/pkgs/development/python-modules/yolk/default.nix @@ -7,7 +7,7 @@ buildPythonApplication rec { version = "0.4.3"; src = fetchurl { - url = "https://pypi.python.org/packages/source/y/yolk/yolk-${version}.tar.gz"; + url = "mirror://pypi/y/yolk/yolk-${version}.tar.gz"; sha256 = "1f6xwx210jnl5nq0m3agh2p1cxmaizawaf3fwq43q4yw050fn1qw"; }; diff --git a/pkgs/development/qtcreator/default.nix b/pkgs/development/qtcreator/default.nix index a5dde0a580b..18e06cb8126 100644 --- a/pkgs/development/qtcreator/default.nix +++ b/pkgs/development/qtcreator/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper -, qtbase, qtquickcontrols, qtscript, qtdeclarative +, qtbase, makeQtWrapper, qtquickcontrols, qtscript, qtdeclarative, qmakeHook , withDocumentation ? false }: @@ -21,18 +21,15 @@ stdenv.mkDerivation rec { buildInputs = [ makeWrapper qtbase qtscript qtquickcontrols qtdeclarative ]; + nativeBuildInputs = [ qmakeHook makeQtWrapper ]; + doCheck = false; enableParallelBuilding = true; - preConfigure = '' - qmake -spec linux-g++ qtcreator.pro - ''; + buildFlags = optional withDocumentation "docs"; - buildFlags = optionalString withDocumentation " docs"; - - installFlags = "INSTALL_ROOT=$(out)" - + optionalString withDocumentation " install_docs"; + installFlags = [ "INSTALL_ROOT=$(out)" ] ++ optional withDocumentation "install_docs"; postInstall = '' # Install desktop file @@ -47,13 +44,7 @@ stdenv.mkDerivation rec { Type=Application Categories=Qt;Development;IDE; __EOF__ - # Wrap the qtcreator binary - 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" \ - --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" + wrapQtProgram $out/bin/qtcreator ''; meta = { diff --git a/pkgs/development/ruby-modules/bundix/default.nix b/pkgs/development/ruby-modules/bundix/default.nix index ac3abcdcdf7..378f148ca6a 100644 --- a/pkgs/development/ruby-modules/bundix/default.nix +++ b/pkgs/development/ruby-modules/bundix/default.nix @@ -15,13 +15,13 @@ buildRubyGem rec { substituteInPlace $GEM_HOME/gems/${gemName}-${version}/lib/bundix.rb \ --replace \ "'nix-instantiate'" \ - "'${nix}/bin/nix-instantiate'" \ + "'${nix.out}/bin/nix-instantiate'" \ --replace \ "'nix-hash'" \ - "'${nix}/bin/nix-hash'" \ + "'${nix.out}/bin/nix-hash'" \ --replace \ "'nix-prefetch-url'" \ - "'${nix}/bin/nix-prefetch-url'" \ + "'${nix.out}/bin/nix-prefetch-url'" \ --replace \ "'nix-prefetch-git'" \ "'${nix-prefetch-git}/bin/nix-prefetch-git'" diff --git a/pkgs/development/tools/analysis/egypt/default.nix b/pkgs/development/tools/analysis/egypt/default.nix index fc63247468c..572e2f74471 100644 --- a/pkgs/development/tools/analysis/egypt/default.nix +++ b/pkgs/development/tools/analysis/egypt/default.nix @@ -9,6 +9,8 @@ buildPerlPackage rec { url = "http://www.gson.org/egypt/download/${name}.tar.gz"; }; + outputs = [ "out" ]; + enableParallelBuilding = true; doCheck = true; diff --git a/pkgs/development/tools/analysis/valkyrie/default.nix b/pkgs/development/tools/analysis/valkyrie/default.nix index 76becca74cf..1da6c6a1e86 100644 --- a/pkgs/development/tools/analysis/valkyrie/default.nix +++ b/pkgs/development/tools/analysis/valkyrie/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4 }: +{ stdenv, fetchurl, qt4, qmake4Hook }: stdenv.mkDerivation rec { name = "valkyrie-2.0.0"; @@ -9,8 +9,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ qt4 ]; - - configurePhase = "qmake PREFIX=$out"; + nativeBuildInputs = [ qmake4Hook ]; meta = { homepage = http://www.valgrind.org/; diff --git a/pkgs/development/tools/build-managers/buildbot-slave/default.nix b/pkgs/development/tools/build-managers/buildbot-slave/default.nix index 30fbe056926..a5f86d105c3 100644 --- a/pkgs/development/tools/build-managers/buildbot-slave/default.nix +++ b/pkgs/development/tools/build-managers/buildbot-slave/default.nix @@ -5,7 +5,7 @@ buildPythonApplication (rec { namePrefix = ""; src = fetchurl { - url = "https://pypi.python.org/packages/source/b/buildbot-slave/${name}.tar.gz"; + url = "mirror://pypi/b/buildbot-slave/${name}.tar.gz"; sha256 = "09pncw44c7vqrl7zyn1nvfismiqi9s51axk9cqxn9gq7jhj38mpg"; }; diff --git a/pkgs/development/tools/build-managers/buildbot/default.nix b/pkgs/development/tools/build-managers/buildbot/default.nix index a246044d6f1..94d9008a4f3 100644 --- a/pkgs/development/tools/build-managers/buildbot/default.nix +++ b/pkgs/development/tools/build-managers/buildbot/default.nix @@ -13,7 +13,7 @@ buildPythonApplication (rec { namePrefix = ""; src = fetchurl { - url = "https://pypi.python.org/packages/source/b/buildbot/${name}.tar.gz"; + url = "mirror://pypi/b/buildbot/${name}.tar.gz"; sha256 = "1mn4h04sp6smr3ahqfflys15cpn13q9mfkapcs2jc4ppvxv6kdn6"; }; diff --git a/pkgs/development/tools/build-managers/cargo/common.nix b/pkgs/development/tools/build-managers/cargo/common.nix index 110956ebf85..64966479319 100644 --- a/pkgs/development/tools/build-managers/cargo/common.nix +++ b/pkgs/development/tools/build-managers/cargo/common.nix @@ -31,8 +31,8 @@ meta = with stdenv.lib; { homepage = http://crates.io; description = "Downloads your Rust project's dependencies and builds your project"; - maintainers = with maintainers; [ wizeman ]; + maintainers = with maintainers; [ wizeman retrry ]; license = [ licenses.mit licenses.asl20 ]; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/development/tools/build-managers/cargo/default.nix b/pkgs/development/tools/build-managers/cargo/default.nix index e0094b4350a..2d7cdc36504 100644 --- a/pkgs/development/tools/build-managers/cargo/default.nix +++ b/pkgs/development/tools/build-managers/cargo/default.nix @@ -1,11 +1,13 @@ -{ stdenv, fetchgit, rustPlatform, file, curl, python, pkgconfig, openssl -, cmake, zlib, makeWrapper }: +{ stdenv, lib, cacert, fetchgit, rustPlatform, file, curl, python, pkgconfig, openssl +, cmake, zlib, makeWrapper +# Darwin dependencies +, libiconv }: with rustPlatform; with ((import ./common.nix) { inherit stdenv rustc; - version = "0.8.0"; + version = "0.9.0"; }); buildRustPackage rec { @@ -15,12 +17,13 @@ buildRustPackage rec { src = fetchgit { url = "git://github.com/rust-lang/cargo"; rev = "refs/tags/${version}"; - sha256 = "02z0b6hpygjjfbskg22ggrhdv2nasrgf8x1fd8y0qzg4krx2czlh"; + sha256 = "0d3n2jdhaz06yhilvmw3m2avxv501da1hdhljc9mwkz3l5bkv2jv"; }; - depsSha256 = "1gwc5ygs3h8jxs506xmbj1xzaqpb3kmg3pkxg9j9yqy616jw6rcn"; + depsSha256 = "1x2m7ww2z8nl5ic2nds85p7ma8x0zp654jg7ay905ia95daiabzg"; - buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ]; + buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ] + ++ lib.optional stdenv.isDarwin libiconv; configurePhase = '' ./configure --enable-optimize --prefix=$out --local-cargo=${cargo}/bin/cargo @@ -28,8 +31,15 @@ buildRustPackage rec { buildPhase = "make"; - # Disable check phase as there are lots of failures (some probably due to - # trying to access the network). + checkPhase = '' + # Export SSL_CERT_FILE as without it one test fails with SSL verification error + export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt + # Disable cross compilation tests + export CFG_DISABLE_CROSS_TESTS=1 + cargo test + ''; + + # Disable check phase as there are failures (author_prefers_cargo test fails) doCheck = false; installPhase = '' diff --git a/pkgs/development/tools/build-managers/cargo/snapshot.nix b/pkgs/development/tools/build-managers/cargo/snapshot.nix index c01ba2b5386..62539c2c732 100644 --- a/pkgs/development/tools/build-managers/cargo/snapshot.nix +++ b/pkgs/development/tools/build-managers/cargo/snapshot.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation { ./install.sh "--prefix=$out" '' + (if stdenv.isLinux then '' patchelf --interpreter "${stdenv.glibc.out}/lib/${stdenv.cc.dynamicLinker}" \ - --set-rpath "${stdenv.cc.cc}/lib/:${stdenv.cc.cc}/lib64/:${zlib.out}/lib" \ + --set-rpath "${stdenv.cc.cc.lib}/lib/:${stdenv.cc.cc.lib}/lib64/:${zlib.out}/lib" \ "$out/bin/cargo" '' else "") + postInstall; } diff --git a/pkgs/development/tools/build-managers/cmake/setup-hook.sh b/pkgs/development/tools/build-managers/cmake/setup-hook.sh index b14e9984bc3..eaabb37f498 100755 --- a/pkgs/development/tools/build-managers/cmake/setup-hook.sh +++ b/pkgs/development/tools/build-managers/cmake/setup-hook.sh @@ -44,6 +44,8 @@ cmakeConfigurePhase() { # executable. This flag makes the shared library accessible from its # nix/store directory. cmakeFlags="-DCMAKE_INSTALL_NAME_DIR=$prefix/lib $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_LIBDIR=${!outputLib}/lib $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_INCLUDEDIR=${!outputDev}/include $cmakeFlags" # Avoid cmake resetting the rpath of binaries, on make install # And build always Release, to ensure optimisation flags diff --git a/pkgs/development/tools/build-managers/rake/Gemfile b/pkgs/development/tools/build-managers/rake/Gemfile new file mode 100644 index 00000000000..bd1ff6faa65 --- /dev/null +++ b/pkgs/development/tools/build-managers/rake/Gemfile @@ -0,0 +1,2 @@ +source 'https://rubygems.org' +gem 'rake' diff --git a/pkgs/development/tools/build-managers/rake/Gemfile.lock b/pkgs/development/tools/build-managers/rake/Gemfile.lock new file mode 100644 index 00000000000..cbea90ab1a9 --- /dev/null +++ b/pkgs/development/tools/build-managers/rake/Gemfile.lock @@ -0,0 +1,13 @@ +GEM + remote: https://rubygems.org/ + specs: + rake (11.1.1) + +PLATFORMS + ruby + +DEPENDENCIES + rake + +BUNDLED WITH + 1.10.5 diff --git a/pkgs/development/tools/build-managers/rake/default.nix b/pkgs/development/tools/build-managers/rake/default.nix new file mode 100644 index 00000000000..3cf85b5fcb5 --- /dev/null +++ b/pkgs/development/tools/build-managers/rake/default.nix @@ -0,0 +1,17 @@ +{ lib, bundlerEnv, ruby }: + +bundlerEnv { + name = "rake-11.1.1"; + + inherit ruby; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + + meta = with lib; { + description = "A software task management and build automation tool"; + homepage = https://github.com/ruby/rake; + license = with licenses; mit; + platforms = platforms.unix; + }; +} diff --git a/pkgs/development/tools/build-managers/rake/gemset.nix b/pkgs/development/tools/build-managers/rake/gemset.nix new file mode 100644 index 00000000000..efea7a79dbb --- /dev/null +++ b/pkgs/development/tools/build-managers/rake/gemset.nix @@ -0,0 +1,9 @@ +{ + "rake" = { + version = "11.1.1"; + source = { + type = "gem"; + sha256 = "0h8wcic2xh3lv7yvs05pqnfqb80jyl488f7136lgxmajb0s1rqhg"; + }; + }; +} \ No newline at end of file diff --git a/pkgs/development/tools/build-managers/rebar3/default.nix b/pkgs/development/tools/build-managers/rebar3/default.nix index ac3a5ac9e40..d8938e2d468 100644 --- a/pkgs/development/tools/build-managers/rebar3/default.nix +++ b/pkgs/development/tools/build-managers/rebar3/default.nix @@ -1,73 +1,62 @@ { stdenv, writeText, callPackage, fetchurl, - fetchHex, erlang, hermeticRebar3 ? true, rebar3-nix-bootstrap, tree, fetchFromGitHub }: - + fetchHex, erlang, hermeticRebar3 ? true, + tree, fetchFromGitHub, hexRegistrySnapshot }: let - version = "3.0.0-beta.4"; - registrySnapshot = callPackage ./registrySnapshot.nix { }; + version = "3.1.0"; + + bootstrapper = ./rebar3-nix-bootstrap; - # 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"; + version = "0.19.0"; + sha256 = "1gfsy9bbhjb94c5ghff2niamn93x2x08lnklh6pp7sfr5i0gkgsv"; }; - # {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"; + version = "0.4.0"; + sha256 = "04bnvsbssdcf6b9h9bfglflds7j0gx6q5igl1xxhx6fnwaz37hhw"; }; - # {providers, "1.5.0"}, providers = fetchHex { pkg = "providers"; - version = "1.5.0"; - sha256 = "1hc8sp2l1mmx9dfpmh1f8j9hayfg7541rmx05wb9cmvxvih7zyvf"; + version = "1.6.0"; + sha256 = "0byfa1h57n46jilz4q132j0vk3iqc0v1vip89li38gb1k997cs0g"; }; - # {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"; + version = "3.17.0"; + sha256 = "1xjybi93m8gj9f9z3lkc7xbg3k5cw56yl78rcz5qfirr0223sby2"; }; - # {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"; + version = "1.2.2"; + sha256 = "0kb9v4998liwyidpjkhcg1nin6djjzxcx6b313pbjicbp4r58n3p"; }; - # {eunit_formatters, "0.2.0"} eunit_formatters = fetchHex { pkg = "eunit_formatters"; - version = "0.2.0"; - sha256 = "03kiszlbgzscfd2ns7na6bzbfzmcqdb5cx3p6qy3657jk2fai332"; + version = "0.3.1"; + sha256 = "0cg9dasv60v09q3q4wja76pld0546mhmlpb0khagyylv890hg934"; }; - # {eunit_formatters, "0.2.0"} rebar3_hex = fetchHex { pkg = "rebar3_hex"; version = "1.12.0"; @@ -81,19 +70,21 @@ stdenv.mkDerivation { src = fetchurl { url = "https://github.com/rebar/rebar3/archive/${version}.tar.gz"; - sha256 = "0px66scjdia9aaa5z36qzxb848r56m0k98g0bxw065a2narsh4xy"; + sha256 = "0r4wpnpi81ha4iirv9hcif3vrgc82qd51kah7rnhvpym55wcy9ml"; }; + inherit bootstrapper; + patches = if hermeticRebar3 == true then [ ./hermetic-bootstrap.patch ./hermetic-rebar3.patch ] else []; buildInputs = [ erlang tree ]; - propagatedBuildInputs = [ registrySnapshot rebar3-nix-bootstrap ]; + propagatedBuildInputs = [ hexRegistrySnapshot ]; postPatch = '' echo postPatch - rebar3-nix-bootstrap registry-only + ${erlang}/bin/escript ${bootstrapper} registry-only echo "$ERL_LIBS" mkdir -p _build/default/lib/ mkdir -p _build/default/plugins diff --git a/pkgs/development/tools/build-managers/rebar3/hermetic-bootstrap.patch b/pkgs/development/tools/build-managers/rebar3/hermetic-bootstrap.patch index 13d60fdcc91..40f430a558b 100644 --- a/pkgs/development/tools/build-managers/rebar3/hermetic-bootstrap.patch +++ b/pkgs/development/tools/build-managers/rebar3/hermetic-bootstrap.patch @@ -1,39 +1,61 @@ diff --git a/bootstrap b/bootstrap -index 25bd658..b2a986b 100755 +index 35759b0..939c838 100755 --- a/bootstrap +++ b/bootstrap -@@ -8,9 +8,6 @@ main(_Args) -> +@@ -7,9 +7,11 @@ main(_) -> application:start(asn1), application:start(public_key), application:start(ssl), - inets:start(), - inets:start(httpc, [{profile, rebar}]), - set_httpc_options(), - ++ %% Removed for hermeticity on Nix ++ %% ++ %% 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) -> +@@ -74,12 +76,12 @@ default_registry_file() -> + filename:join([CacheDir, "hex", "default", "registry"]). + + fetch_and_compile({Name, ErlFirstFiles}, Deps) -> +- case lists:keyfind(Name, 1, Deps) of +- {Name, Vsn} -> +- ok = fetch({pkg, atom_to_binary(Name, utf8), list_to_binary(Vsn)}, Name); +- {Name, _, Source} -> +- ok = fetch(Source, Name) +- end, ++ %% case lists:keyfind(Name, 1, Deps) of ++ %% {Name, Vsn} -> ++ %% ok = fetch({pkg, atom_to_binary(Name, utf8), list_to_binary(Vsn)}, Name); ++ %% {Name, _, Source} -> ++ %% ok = fetch(Source, Name) ++ %% end, + + %% Hack: erlware_commons depends on a .script file to check if it is being built with + %% rebar2 or rebar3. But since rebar3 isn't built yet it can't get the vsn with get_key. +@@ -88,63 +90,63 @@ fetch_and_compile({Name, ErlFirstFiles}, Deps) -> + compile(Name, ErlFirstFiles). - - fetch({pkg, Name, Vsn}, App) -> + +-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]) +- case filelib:is_dir(Dir) of +- false -> +- 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; +- true -> +- io:format("Dependency ~s already exists~n", [Name]) - end. - -extract(Binary) -> @@ -51,14 +73,17 @@ index 25bd658..b2a986b 100755 - Error -> - Error - end. -+ ok. - - get_rebar_config() -> - {ok, [[Home]]} = init:get_argument(home), -@@ -109,20 +79,6 @@ get_rebar_config() -> - [] - end. - +- +-get_rebar_config() -> +- {ok, [[Home]]} = init:get_argument(home), +- ConfDir = filename:join(Home, ".config/rebar3"), +- case file:consult(filename:join(ConfDir, "rebar.config")) of +- {ok, Config} -> +- Config; +- _ -> +- [] +- end. +- -get_http_vars(Scheme) -> - proplists:get_value(Scheme, get_rebar_config(), []). - @@ -72,7 +97,63 @@ index 25bd658..b2a986b 100755 -set_httpc_options(Scheme, Proxy) -> - {ok, {_, _, Host, Port, _, _}} = http_uri:parse(Proxy), - httpc:set_options([{Scheme, {{Host, Port}, []}}], rebar). -- ++%% fetch({pkg, Name, Vsn}, App) -> ++%% Dir = filename:join([filename:absname("_build/default/lib/"), App]), ++%% case filelib:is_dir(Dir) of ++%% false -> ++%% 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; ++%% true -> ++%% io:format("Dependency ~s already exists~n", [Name]) ++%% 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. ++ ++%% get_rebar_config() -> ++%% {ok, [[Home]]} = init:get_argument(home), ++%% ConfDir = filename:join(Home, ".config/rebar3"), ++%% case file:consult(filename:join(ConfDir, "rebar.config")) of ++%% {ok, Config} -> ++%% 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/hermetic-rebar3.patch b/pkgs/development/tools/build-managers/rebar3/hermetic-rebar3.patch index 8da323ab823..634dda8c45a 100644 --- a/pkgs/development/tools/build-managers/rebar3/hermetic-rebar3.patch +++ b/pkgs/development/tools/build-managers/rebar3/hermetic-rebar3.patch @@ -1,8 +1,8 @@ -diff --git a/src/rebar3.erl b/src/rebar3.erl -index 2b73844..af1d871 100644 +diff a/src/rebar3.erl b/src/rebar3.erl +index c1a1ae4..1bf1ea0 100644 --- a/src/rebar3.erl +++ b/src/rebar3.erl -@@ -282,9 +282,11 @@ start_and_load_apps(Caller) -> +@@ -294,9 +294,11 @@ start_and_load_apps(Caller) -> ensure_running(crypto, Caller), ensure_running(asn1, Caller), ensure_running(public_key, Caller), @@ -10,21 +10,14 @@ index 2b73844..af1d871 100644 - inets:start(), - inets:start(httpc, [{profile, rebar}]). + ensure_running(ssl, Caller). -+%% Removed due to the hermicity requirements of Nix ++%% Removed due to the hermicity requirements of Nix +%% +%% inets:start(), +%% inets:start(httpc, [{profile, rebar}]). - + ensure_running(App, Caller) -> case application:start(App) of -@@ -339,4 +341,4 @@ safe_define_test_macro(Opts) -> - test_defined([{d, 'TEST'}|_]) -> true; - test_defined([{d, 'TEST', true}|_]) -> true; - test_defined([_|Rest]) -> test_defined(Rest); --test_defined([]) -> false. -\ No newline at end of file -+test_defined([]) -> false. -diff --git a/src/rebar_hermicity.erl b/src/rebar_hermicity.erl +diff a/src/rebar_hermicity.erl b/src/rebar_hermicity.erl new file mode 100644 index 0000000..d814e2a --- /dev/null @@ -72,37 +65,29 @@ index 0000000..d814e2a + "are as follows:", []), + ?ERROR("Requesnt: ~p ~s", [Method, Url]), + erlang:halt(1). -diff --git a/src/rebar_pkg_resource.erl b/src/rebar_pkg_resource.erl -index 4f55ad1..f76fd5d 100644 +diff a/src/rebar_pkg_resource.erl b/src/rebar_pkg_resource.erl +index ec7e09d..03be343 100644 --- a/src/rebar_pkg_resource.erl +++ b/src/rebar_pkg_resource.erl -@@ -100,10 +100,10 @@ make_vsn(_) -> +@@ -104,7 +104,7 @@ make_vsn(_) -> {error, "Replacing version of type pkg not supported."}. - + request(Url, ETag) -> -- case httpc:request(get, {Url, [{"if-none-match", ETag} || ETag =/= false]}, -- [{ssl, ssl_opts(Url)}, {relaxed, true}], -- [{body_format, binary}], -- rebar) of -+ case rebar_hermicity:request(get, {Url, [{"if-none-match", ETag} || ETag =/= false]}, -+ [{ssl, ssl_opts(Url)}, {relaxed, true}], -+ [{body_format, binary}], -+ rebar) of - {ok, {{_Version, 200, _Reason}, Headers, Body}} -> - ?DEBUG("Successfully downloaded ~s", [Url]), - {"etag", ETag1} = lists:keyfind("etag", 1, Headers), -diff --git a/src/rebar_prv_update.erl b/src/rebar_prv_update.erl -index 6637ebe..d82c1d8 100644 +- case httpc:request(get, {Url, [{"if-none-match", ETag} || ETag =/= false]++[{"User-Agent", rebar_utils:user_agent()}]}, ++ case rebar_hermicity:request(get, {Url, [{"if-none-match", ETag} || ETag =/= false]++[{"User-Agent", rebar_utils:user_agent()}]}, + [{ssl, ssl_opts(Url)}, {relaxed, true}], + [{body_format, binary}], + rebar) of +diff a/src/rebar_prv_update.erl b/src/rebar_prv_update.erl +index 5e1e253..ea25b9e 100644 --- a/src/rebar_prv_update.erl +++ b/src/rebar_prv_update.erl -@@ -44,8 +44,8 @@ do(State) -> - TmpFile = filename:join(TmpDir, "packages.gz"), - - Url = rebar_state:get(State, rebar_packages_cdn, ?DEFAULT_HEX_REGISTRY), -- case httpc:request(get, {Url, []}, -- [], [{stream, TmpFile}, {sync, true}], -+ case rebar_hermicity:request(get, {Url, []}, -+ [], [{stream, TmpFile}, {sync, true}], - rebar) of - {ok, saved_to_file} -> - {ok, Data} = file:read_file(TmpFile), +@@ -52,7 +52,7 @@ do(State) -> + case rebar_utils:url_append_path(CDN, ?REMOTE_REGISTRY_FILE) of + {ok, Url} -> + ?DEBUG("Fetching registry from ~p", [Url]), +- case httpc:request(get, {Url, [{"User-Agent", rebar_utils:user_agent()}]}, ++ case rebar_hermicity:request(get, {Url, [{"User-Agent", rebar_utils:user_agent()}]}, + [], [{stream, TmpFile}, {sync, true}], + rebar) of + {ok, saved_to_file} -> diff --git a/pkgs/development/tools/build-managers/rebar3/rebar3-nix-bootstrap b/pkgs/development/tools/build-managers/rebar3/rebar3-nix-bootstrap new file mode 100755 index 00000000000..4784f2224cc --- /dev/null +++ b/pkgs/development/tools/build-managers/rebar3/rebar3-nix-bootstrap @@ -0,0 +1,255 @@ +#!/usr/bin/env escript +%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*- +%%! -smp enable +%%% --------------------------------------------------------------------------- +%%% @doc +%%% The purpose of this command is to prepare a rebar3 project so that +%%% rebar3 understands that the dependencies are all already +%%% installed. If you want a hygienic build on nix then you must run +%%% this command before running rebar3. I suggest that you add a +%%% `Makefile` to your project and have the bootstrap command be a +%%% dependency of the build commands. See the nix documentation for +%%% more information. +%%% +%%% This command designed to have as few dependencies as possible so +%%% that it can be a dependency of root level packages like rebar3. To +%%% that end it does many things in a fairly simplistic way. That is +%%% by design. +%%% +%%% ### Assumptions +%%% +%%% This command makes the following assumptions: +%%% +%%% * It is run in a nix-shell or nix-build environment +%%% * that all dependencies have been added to the ERL_LIBS +%%% Environment Variable + +-record(data, {version + , registry_only = false + , compile_ports + , erl_libs + , plugins + , root + , name + , registry_snapshot}). + +-define(HEX_REGISTRY_PATH, ".cache/rebar3/hex/default/registry"). + +main(Args) -> + {ok, ArgData} = parse_args(Args), + {ok, RequiredData} = gather_required_data_from_the_environment(ArgData), + do_the_bootstrap(RequiredData). + +%% @doc There are two modes 'registery_only' where the register is +%% created from hex and everything else. +-spec do_the_bootstrap(#data{}) -> ok. +do_the_bootstrap(RequiredData = #data{registry_only = true}) -> + ok = bootstrap_registry(RequiredData); +do_the_bootstrap(RequiredData) -> + ok = bootstrap_registry(RequiredData), + ok = bootstrap_configs(RequiredData), + ok = bootstrap_plugins(RequiredData), + ok = bootstrap_libs(RequiredData). + +%% @doc +%% Argument parsing is super simple only because we want to keep the +%% dependencies minimal. For now there can be two entries on the +%% command line, "registery-only" +-spec parse_args([string()]) -> #data{}. +parse_args(["registry-only"]) -> + {ok, #data{registry_only = true}}; +parse_args([]) -> + {ok, #data{registry_only = false}}; +parse_args(Args) -> + io:format("Unexpected command line arguments passed in: ~p~n", [Args]), + erlang:halt(120). + +-spec bootstrap_configs(#data{}) -> ok. +bootstrap_configs(RequiredData)-> + io:format("Boostrapping app and rebar configurations~n"), + ok = if_single_app_project_update_app_src_version(RequiredData), + ok = if_compile_ports_add_pc_plugin(RequiredData). + +-spec bootstrap_plugins(#data{}) -> ok. +bootstrap_plugins(#data{plugins = Plugins}) -> + io:format("Bootstrapping rebar3 plugins~n"), + Target = "_build/default/plugins/", + Paths = string:tokens(Plugins, " "), + CopiableFiles = + lists:foldl(fun(Path, Acc) -> + gather_dependency(Path) ++ Acc + end, [], Paths), + lists:foreach(fun (Path) -> + ok = link_app(Path, Target) + end, CopiableFiles). + +-spec bootstrap_libs(#data{}) -> ok. +bootstrap_libs(#data{erl_libs = ErlLibs}) -> + io:format("Bootstrapping dependent librariesXXXX~n"), + Target = "_build/default/lib/", + Paths = string:tokens(ErlLibs, ":"), + CopiableFiles = + lists:foldl(fun(Path, Acc) -> + gather_directory_contents(Path) ++ Acc + end, [], Paths), + lists:foreach(fun (Path) -> + ok = link_app(Path, Target) + end, CopiableFiles). + +-spec gather_dependency(string()) -> [{string(), string()}]. +gather_dependency(Path) -> + FullLibrary = filename:join(Path, "lib/erlang/lib/"), + case filelib:is_dir(FullLibrary) of + true -> + gather_directory_contents(FullLibrary); + false -> + [raw_hex(Path)] + end. + +-spec raw_hex(string()) -> {string(), string()}. +raw_hex(Path) -> + [_, Name] = re:split(Path, "-hex-source-"), + {Path, erlang:binary_to_list(Name)}. + +-spec gather_directory_contents(string()) -> [{string(), string()}]. +gather_directory_contents(Path) -> + {ok, Names} = file:list_dir(Path), + lists:map(fun(AppName) -> + {filename:join(Path, AppName), fixup_app_name(AppName)} + end, Names). + +%% @doc +%% Makes a symlink from the directory pointed at by Path to a +%% directory of the same name in Target. So if we had a Path of +%% {`foo/bar/baz/bash`, `baz`} and a Target of `faz/foo/foos`, the symlink +%% would be `faz/foo/foos/baz`. +-spec link_app({string(), string()}, string()) -> ok. +link_app({Path, TargetFile}, TargetDir) -> + Target = filename:join(TargetDir, TargetFile), + make_symlink(Path, Target). + +-spec make_symlink(string(), string()) -> ok. +make_symlink(Path, TargetFile) -> + file:delete(TargetFile), + ok = filelib:ensure_dir(TargetFile), + io:format("Making symlink from ~s to ~s~n", [Path, TargetFile]), + ok = file:make_symlink(Path, TargetFile). + +%% @doc +%% This takes an app name in the standard OTP - format +%% and returns just the app name. Why? because rebar is doesn't +%% respect OTP conventions in some cases. +-spec fixup_app_name(string()) -> string(). +fixup_app_name(FileName) -> + case string:tokens(FileName, "-") of + [Name] -> Name; + [Name, _Version] -> Name + end. + +-spec bootstrap_registry(#data{}) -> ok. +bootstrap_registry(#data{registry_snapshot = RegistrySnapshot}) -> + io:format("Bootstrapping Hex Registry for Rebar~n"), + make_sure_registry_snapshot_exists(RegistrySnapshot), + filelib:ensure_dir(?HEX_REGISTRY_PATH), + ok = case filelib:is_file(?HEX_REGISTRY_PATH) of + true -> + file:delete(?HEX_REGISTRY_PATH); + false -> + ok + end, + ok = file:make_symlink(RegistrySnapshot, + ?HEX_REGISTRY_PATH). + +-spec make_sure_registry_snapshot_exists(string()) -> ok. +make_sure_registry_snapshot_exists(RegistrySnapshot) -> + case filelib:is_file(RegistrySnapshot) of + true -> + ok; + false -> + stderr("Registry snapshot (~s) does not exist!", [RegistrySnapshot]), + erlang:halt(1) + end. + +-spec gather_required_data_from_the_environment(#data{}) -> {ok, map()}. +gather_required_data_from_the_environment(ArgData) -> + {ok, ArgData#data{ version = guard_env("version") + , erl_libs = os:getenv("ERL_LIBS", []) + , plugins = os:getenv("buildPlugins", []) + , root = code:root_dir() + , name = guard_env("name") + , compile_ports = nix2bool(os:getenv("compilePorts", "")) + , registry_snapshot = guard_env("HEX_REGISTRY_SNAPSHOT")}}. + +-spec nix2bool(any()) -> boolean(). +nix2bool("1") -> + true; +nix2bool("") -> + false. + +-spec guard_env(string()) -> string(). +guard_env(Name) -> + case os:getenv(Name) of + false -> + stderr("Expected Environment variable ~s! Are you sure you are " + "running in a Nix environment? Either a nix-build, " + "nix-shell, etc?~n", [Name]), + erlang:halt(1); + Variable -> + Variable + end. + +%% @doc +%% If the compile ports flag is set, rewrite the rebar config to +%% include the 'pc' plugin. +-spec if_compile_ports_add_pc_plugin(#data{}) -> ok. +if_compile_ports_add_pc_plugin(#data{compile_ports = true}) -> + ConfigTerms = add_pc_to_plugins(read_rebar_config()), + Text = lists:map(fun(Term) -> io_lib:format("~tp.~n", [Term]) end, + ConfigTerms), + file:write_file("rebar.config", Text); +if_compile_ports_add_pc_plugin(_) -> + ok. + +-spec add_pc_to_plugins([term()]) -> [term()]. +add_pc_to_plugins(Config) -> + PluginList = case lists:keysearch(plugins, 1, Config) of + {ok, {plugins, ExistingPluginList}} -> ExistingPluginList; + _ -> [] + end, + lists:keystore(plugins, 1, Config, {plugins, [pc | PluginList]}). + +-spec read_rebar_config() -> [term()]. +read_rebar_config() -> + case file:consult("rebar.config") of + {ok, Terms} -> + Terms; + _ -> + stderr("Unable to read rebar config!", []), + erlang:halt(1) + end. + + +-spec if_single_app_project_update_app_src_version(#data{}) -> ok. +if_single_app_project_update_app_src_version(#data{name = Name, + version = Version}) -> + SrcFile = filename:join("src", + lists:concat([Name, ".app.src"])), + + case filelib:is_file(SrcFile) of + true -> + update_app_src_with_version(SrcFile, Version); + false -> + ok + end. + +-spec update_app_src_with_version(string(), string()) -> ok. +update_app_src_with_version(SrcFile, Version) -> + {ok, [{application, Name, Details}]} = file:consult(SrcFile), + NewDetails = lists:keyreplace(vsn, 1, Details, {vsn, Version}), + ok = file:write_file(SrcFile, io_lib:fwrite("~p.\n", [{application, Name, NewDetails}])). + +%% @doc +%% Write the result of the format string out to stderr. +-spec stderr(string(), [term()]) -> ok. +stderr(FormatStr, Args) -> + io:put_chars(standard_error, io_lib:format(FormatStr, Args)). diff --git a/pkgs/development/tools/casperjs/default.nix b/pkgs/development/tools/casperjs/default.nix index bd63a0e68ee..a4b9f23c5eb 100644 --- a/pkgs/development/tools/casperjs/default.nix +++ b/pkgs/development/tools/casperjs/default.nix @@ -1,40 +1,49 @@ -{ stdenv, fetchgit, python, phantomjs }: +{ stdenv, fetchFromGitHub, fontsConf, phantomjs2, python, nodePackages }: -stdenv.mkDerivation rec { - name = "casperjs-1.0.0-RC5"; +let version = "1.1.1"; - src = fetchgit { - url = "git://github.com/n1k0/casperjs.git"; - rev = "refs/tags/1.0.0-RC5"; - sha256 = "e7fd6b94b4b304416159196208dea7f6e8841a667df102eb378a698a92f0f2c7"; +in stdenv.mkDerivation rec { + + name = "casperjs-${version}"; + + src = fetchFromGitHub { + owner = "casperjs"; + repo = "casperjs"; + rev = version; + sha256 = "187prrm728xpn0nx9kxfxa4fwd7w25z78nsxfk6a6kl7c5656jpz"; }; + buildInputs = [ phantomjs2 python nodePackages.eslint ]; + patchPhase = '' substituteInPlace bin/casperjs --replace "/usr/bin/env python" "${python}/bin/python" \ - --replace "'phantomjs'" "'${phantomjs}/bin/phantomjs'" + --replace "'phantomjs'" "'${phantomjs2}/bin/phantomjs'" ''; + dontBuild = true; + + doCheck = true; + checkPhase = '' + export FONTCONFIG_FILE=${fontsConf} + make test + ''; + + installPhase = '' - mkdir -p $out/share/casperjs $out/bin - cp -a . $out/share/casperjs/. - ln -s $out/share/casperjs/bin/casperjs $out/bin + mv $PWD $out ''; meta = { - description = "Navigation scripting & testing utility for PhantomJS"; + + description = '' + Navigation scripting & testing utility for PhantomJS and SlimerJS + ''; + longDescription = '' - CasperJS is a navigation scripting & testing utility for PhantomJS. - It eases the process of defining a full navigation scenario and provides useful high-level - functions, methods & syntaxic sugar for doing common tasks such as: - - defining & ordering navigation steps - - filling forms - - clicking links - - capturing screenshots of a page (or an area) - - making assertions on remote DOM - - logging & events - - downloading base64 encoded resources, even binary ones - - catching errors and react accordingly - - writing functional test suites, exporting results as JUnit XML (xUnit) + CasperJS is a navigation scripting & testing utility for PhantomJS and + SlimerJS (still experimental). It eases the process of defining a full + navigation scenario and provides useful high-level functions, methods & + syntactic sugar for doing common tasks. ''; homepage = http://casperjs.org; diff --git a/pkgs/development/tools/devpi-client/default.nix b/pkgs/development/tools/devpi-client/default.nix index bcad521ed52..1e848e5d611 100644 --- a/pkgs/development/tools/devpi-client/default.nix +++ b/pkgs/development/tools/devpi-client/default.nix @@ -5,7 +5,7 @@ pythonPackages.buildPythonApplication rec { version = "2.3.2"; src = fetchurl { - url = "https://pypi.python.org/packages/source/d/devpi-client/devpi-client-${version}.tar.gz"; + url = "mirror://pypi/d/devpi-client/devpi-client-${version}.tar.gz"; md5= "bfc8cd768f983fd0585c347bca00c8bb"; }; diff --git a/pkgs/development/tools/electron/default.nix b/pkgs/development/tools/electron/default.nix index d7d338f7f60..a3afc235a6c 100644 --- a/pkgs/development/tools/electron/default.nix +++ b/pkgs/development/tools/electron/default.nix @@ -1,10 +1,6 @@ -{ stdenv, callPackage, fetchurl, unzip -, ... -} @ args: +{ stdenv, lib, callPackage, fetchurl, unzip, atomEnv }: -let - atomEnv = callPackage ./env-atom.nix (args); -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "electron-${version}"; version = "0.36.2"; @@ -14,23 +10,19 @@ in stdenv.mkDerivation rec { name = "${name}.zip"; }; - buildInputs = [ atomEnv unzip ]; + buildInputs = [ unzip ]; - phases = [ "installPhase" "fixupPhase" ]; + buildCommand = '' + mkdir -p $out/lib/electron $out/bin + unzip -d $out/lib/electron $src + ln -s $out/lib/electron/electron $out/bin - unpackCmd = "unzip"; + fixupPhase - installPhase = '' - mkdir -p $out/bin - unzip -d $out/bin $src - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - $out/bin/electron - ''; - - postFixup = '' patchelf \ - --set-rpath "${atomEnv}/lib:${atomEnv}/lib64:$out/bin:$(patchelf --print-rpath $out/bin/electron)" \ - $out/bin/electron + --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath "${atomEnv.libPath}:$out/lib/electron" \ + $out/lib/electron/electron ''; meta = with stdenv.lib; { diff --git a/pkgs/development/tools/electron/env-atom.nix b/pkgs/development/tools/electron/env-atom.nix deleted file mode 100644 index 6c69b2e52cc..00000000000 --- a/pkgs/development/tools/electron/env-atom.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ stdenv, buildEnv, zlib, glib, alsaLib -, dbus, gtk, atk, pango, freetype, fontconfig, libgnome_keyring3, gdk_pixbuf -, cairo, cups, expat, libgpgerror, nspr, gconf, nss, xorg, libcap -, systemd, libnotify -, ... -}: - -buildEnv { - name = "env-atom"; - paths = [ - stdenv.cc.cc zlib glib dbus gtk atk pango freetype libgnome_keyring3 - fontconfig gdk_pixbuf cairo cups expat libgpgerror alsaLib nspr gconf nss - xorg.libXrender xorg.libX11 xorg.libXext xorg.libXdamage xorg.libXtst - xorg.libXcomposite xorg.libXi xorg.libXfixes xorg.libXrandr - xorg.libXcursor libcap systemd libnotify - ]; -} diff --git a/pkgs/development/tools/erlang/cuter/default.nix b/pkgs/development/tools/erlang/cuter/default.nix index a8806127d35..7d05a56bfdf 100644 --- a/pkgs/development/tools/erlang/cuter/default.nix +++ b/pkgs/development/tools/erlang/cuter/default.nix @@ -1,5 +1,5 @@ {stdenv, autoconf, which, writeText, makeWrapper, fetchFromGitHub, erlang, - erlangPackages, z3, python27 }: + beamPackages, z3, python27 }: stdenv.mkDerivation rec { name = "cuter"; @@ -13,9 +13,9 @@ stdenv.mkDerivation rec { }; setupHook = writeText "setupHook.sh" '' - addToSearchPath ERL_LIBS "$1/lib/erlang/lib/" + addToSearchPath ERL_LIBS "$1/lib/erlang/lib/" ''; - buildInputs = with erlangPackages; [ autoconf erlang z3 python27 makeWrapper which ]; + buildInputs = with beamPackages; [ autoconf erlang z3 python27 makeWrapper which ]; buildFlags = "PWD=$(out)/lib/erlang/lib/cuter-${version} cuter_target"; configurePhase = '' diff --git a/pkgs/development/tools/erlang/hex2nix/default.nix b/pkgs/development/tools/erlang/hex2nix/default.nix index e7d237cfea2..982bda41cde 100644 --- a/pkgs/development/tools/erlang/hex2nix/default.nix +++ b/pkgs/development/tools/erlang/hex2nix/default.nix @@ -2,16 +2,16 @@ buildRebar3 rec { name = "hex2nix"; - version = "0.0.3"; + version = "0.0.5"; src = fetchFromGitHub { - owner = "erlang-nix"; - repo = "hex2nix"; - rev = "${version}"; - sha256 = "1snlcb60al7fz3z4c4rqrb9gqdyihyhsrr90n40v9rdm98csry3k"; - }; + owner = "erlang-nix"; + repo = "hex2nix"; + rev = "${version}"; + sha256 = "07bk18nib4xms8q1i4sv53drvlyllm47map4c95669lsh0j08sax"; + }; - erlangDeps = [ ibrowse jsx erlware_commons getopt ]; + beamDeps = [ ibrowse jsx erlware_commons getopt ]; DEBUG=1; diff --git a/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix b/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix deleted file mode 100644 index ed38d573abf..00000000000 --- a/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{stdenv, fetchFromGitHub, erlang }: - -stdenv.mkDerivation rec { - name = "rebar3-nix-bootstrap"; - version = "0.0.3"; - - src = fetchFromGitHub { - owner = "erlang-nix"; - repo = "rebar3-nix-bootstrap"; - rev = "${version}"; - sha256 = "01yyaz104jj3mxx8k10q3rwpn2rh13q1ja5r0iq37qyjmg8xflhq"; - }; - - buildInputs = [ erlang ]; - - installFlags = "PREFIX=$(out)"; - - meta = { - description = "Shim command to help bootstrap a rebar3 project on Nix"; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/erlang-nix/rebar3-nix-bootstrap"; - maintainers = with stdenv.lib.maintainers; [ ericbmerritt ]; - }; -} diff --git a/pkgs/development/tools/erlang/relx-exe/default.nix b/pkgs/development/tools/erlang/relx-exe/default.nix new file mode 100644 index 00000000000..8b2bee8ad4f --- /dev/null +++ b/pkgs/development/tools/erlang/relx-exe/default.nix @@ -0,0 +1,38 @@ +{ stdenv, beamPackages, makeWrapper, fetchHex, erlang }: + beamPackages.buildRebar3 { + name = "relx-exe"; + version = "3.18.0"; + src = fetchHex { + pkg = "relx"; + version = "3.18.0"; + sha256 = + "e76e0446b8d1b113f2b7dcc713f032ccdf1dbda33d76edfeb19c2b6b686dcad7"; + }; + + buildInputs = [ makeWrapper erlang ]; + + beamDeps = with beamPackages; [ + providers_1_6_0 + getopt_0_8_2 + erlware_commons_0_19_0 + cf_0_2_1 + bbmustache_1_0_4 + ]; + + postBuild = '' + HOME=. rebar3 escriptize + ''; + + postInstall = '' + mkdir -p "$out/bin" + cp -r "_build/default/bin/relx" "$out/bin/relx" + ''; + + meta = { + description = "Executable command for Relx"; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/erlware/relx"; + maintainers = with stdenv.lib.maintainers; [ ericbmerritt ]; + }; + + } diff --git a/pkgs/development/tools/haskell/tinc/default.nix b/pkgs/development/tools/haskell/tinc/default.nix new file mode 100644 index 00000000000..44491fa0ef9 --- /dev/null +++ b/pkgs/development/tools/haskell/tinc/default.nix @@ -0,0 +1,41 @@ +{ mkDerivation, aeson, base, bytestring, Cabal, containers +, directory, exceptions, filelock, filepath, gitrev, graph-wrapper +, hpack, hspec, HUnit, language-dot, mockery, parsec, process +, QuickCheck, safe, stdenv, temporary, time, transformers, unix +, unix-compat, with-location, yaml, fetchFromGitHub +, ghc, cabal2nix, cabal-install, makeWrapper +}: +mkDerivation { + pname = "tinc"; + version = "20160419"; + src = fetchFromGitHub { + owner = "sol"; + repo = "tinc"; + rev = "b9f7cc1076098b1f99f20655052c9fd34598d891"; + sha256 = "1f0k7a4vxdd2cd2h5qwska9hfw7ig6q2rx87d09fg2xlix96g81r"; + }; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base bytestring Cabal containers directory exceptions + filelock filepath gitrev graph-wrapper hpack language-dot parsec + process temporary time transformers unix-compat with-location yaml + ]; + testHaskellDepends = [ + aeson base bytestring Cabal containers directory exceptions + filelock filepath gitrev graph-wrapper hpack hspec HUnit + language-dot mockery parsec process QuickCheck safe temporary time + transformers unix unix-compat with-location yaml + ]; + postInstall = '' + source ${makeWrapper}/nix-support/setup-hook + wrapProgram $out/bin/tinc \ + --prefix PATH : '${ghc}/bin' \ + --prefix PATH : '${cabal2nix}/bin' \ + --prefix PATH : '${cabal-install}/bin' + ''; + description = "A dependency manager for Haskell"; + homepage = "https://github.com/sol/tinc#readme"; + license = stdenv.lib.licenses.mit; + maintainers = [ stdenv.lib.maintainers.robbinch ]; +} diff --git a/pkgs/development/tools/imatix_gsl/default.nix b/pkgs/development/tools/imatix_gsl/default.nix new file mode 100644 index 00000000000..629ddf69c4e --- /dev/null +++ b/pkgs/development/tools/imatix_gsl/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchFromGitHub, pcre } : + +stdenv.mkDerivation rec { + name = "imatix_gsl"; + version = "4.1"; + + src = fetchFromGitHub { + owner = "imatix"; + repo = "gsl"; + rev = "72192d0d9de17de08d9379602d6482b4e5d402d0"; + sha256 = "1apy11avgqc27xlczyjh15y10qjdyqsqab1wrl2067qgpdiy58w7"; + }; + + buildInputs = [ pcre ]; + + postPatch = "sed -e 's,/usr/bin/install,install,g' -i src/Makefile"; + preBuild = "cd src"; + installFlags = "DESTDIR=$(out)"; + + meta = with stdenv.lib; { + license = licenses.gpl3Plus; + homepage = https://github.com/imatix/gsl/; + description = "A universal code generator"; + platforms = platforms.unix; + maintainer = [ maintainers.moosingin3space ]; + }; +} diff --git a/pkgs/development/tools/misc/autoconf/2.64.nix b/pkgs/development/tools/misc/autoconf/2.64.nix new file mode 100644 index 00000000000..9e70833e008 --- /dev/null +++ b/pkgs/development/tools/misc/autoconf/2.64.nix @@ -0,0 +1,49 @@ +{ stdenv, fetchurl, m4, perl }: + +stdenv.mkDerivation rec { + name = "autoconf-2.64"; + + src = fetchurl { + url = "mirror://gnu/autoconf/${name}.tar.xz"; + sha256 = "0j3jdjpf5ly39dlp0bg70h72nzqr059k0x8iqxvaxf106chpgn9j"; + }; + + buildInputs = [ m4 perl ]; + + # Work around a known issue in Cygwin. See + # http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6822 for + # details. + # There are many test failures on `i386-pc-solaris2.11'. + #doCheck = ((!stdenv.isCygwin) && (!stdenv.isSunOS)); + doCheck = false; + + # Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the + # "fixed" path in generated files! + dontPatchShebangs = true; + + enableParallelBuilding = true; + + preCheck = + # Make the Autotest test suite run in parallel. + '' export TESTSUITEFLAGS="-j$NIX_BUILD_CORES" + ''; + + meta = { + homepage = http://www.gnu.org/software/autoconf/; + description = "Part of the GNU Build System"; + + longDescription = '' + GNU Autoconf is an extensible package of M4 macros that produce + shell scripts to automatically configure software source code + packages. These scripts can adapt the packages to many kinds of + UNIX-like systems without manual user intervention. Autoconf + creates a configuration script for a package from a template + file that lists the operating system features that the package + can use, in the form of M4 macro calls. + ''; + + license = stdenv.lib.licenses.gpl2Plus; + + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/development/tools/misc/avrdude/default.nix b/pkgs/development/tools/misc/avrdude/default.nix index 2026e0ad2c8..e7d5aaceb2b 100644 --- a/pkgs/development/tools/misc/avrdude/default.nix +++ b/pkgs/development/tools/misc/avrdude/default.nix @@ -6,11 +6,11 @@ assert docSupport -> texLive != null && texinfo != null && texi2html != null; stdenv.mkDerivation rec { - name = "avrdude-6.1"; + name = "avrdude-6.3"; src = fetchurl { url = "mirror://savannah/avrdude/${name}.tar.gz"; - sha256 = "0frxg0q09nrm95z7ymzddx7ysl77ilfbdix1m81d9jjpiv5bm64y"; + sha256 = "15m1w1qad3dj7r8n5ng1qqcaiyx1gyd6hnc3p2apgjllccdp77qg"; }; configureFlags = stdenv.lib.optionalString docSupport "--enable-doc"; diff --git a/pkgs/development/tools/misc/kconfig-frontends/default.nix b/pkgs/development/tools/misc/kconfig-frontends/default.nix new file mode 100644 index 00000000000..13e02fb9272 --- /dev/null +++ b/pkgs/development/tools/misc/kconfig-frontends/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, pkgconfig, bison, flex, gperf, ncurses }: + +stdenv.mkDerivation rec { + basename = "kconfig-frontends"; + version = "3.12.0.0"; + name = "${basename}-${version}"; + + src = fetchurl { + sha256 = "01zlph9bq2xzznlpmfpn0zrmhf2iqw02yh1q7g7adgkl5jk1a9pa"; + url = "http://ymorin.is-a-geek.org/download/${basename}/${name}.tar.xz"; + }; + + buildInputs = [ bison flex gperf ncurses pkgconfig ]; + + configureFlags = [ + "--enable-frontends=conf,mconf,nconf" + ]; + + meta = with stdenv.lib; { + description = "Out of Linux tree packaging of the kconfig infrastructure"; + longDescription = '' + Configuration language and system for the Linux kernel and other + projects. Features simple syntax and grammar, limited yet adequate option + types, simple organization of options, and direct and reverse + dependencies. + ''; + homepage = http://ymorin.is-a-geek.org/projects/kconfig-frontends; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = with maintainers; [ mbe ]; + }; +} diff --git a/pkgs/development/tools/misc/lsof/default.nix b/pkgs/development/tools/misc/lsof/default.nix index 2e93c71d801..ab43184a725 100644 --- a/pkgs/development/tools/misc/lsof/default.nix +++ b/pkgs/development/tools/misc/lsof/default.nix @@ -16,13 +16,15 @@ stdenv.mkDerivation rec { }; unpackPhase = "tar xvjf $src; cd lsof_*; tar xvf lsof_*.tar; sourceRoot=$( echo lsof_*/); "; - + preBuild = "sed -i Makefile -e 's/^CFGF=/& -DHASIPv6=1/;';"; - - configurePhase = if stdenv.isDarwin - then "./Configure -n darwin;" - else "./Configure -n linux;"; - + + configurePhase = '' + # Stop build scripts from searching global include paths + export LSOF_INCLUDE=/$(md5sum <(echo $name) | awk '{print $1}') + ./Configure -n ${if stdenv.isDarwin then "darwin" else "linux"} + ''; + installPhase = '' mkdir -p $out/bin $out/man/man8 cp lsof.8 $out/man/man8/ diff --git a/pkgs/development/tools/misc/saleae-logic/default.nix b/pkgs/development/tools/misc/saleae-logic/default.nix index 8e8909ee7d0..53020671d17 100644 --- a/pkgs/development/tools/misc/saleae-logic/default.nix +++ b/pkgs/development/tools/misc/saleae-logic/default.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { # Patch it patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$out/Logic" - patchelf --set-rpath "${stdenv.cc.cc}/lib:${stdenv.cc.cc}/lib64:${libPath}:\$ORIGIN/Analyzers:\$ORIGIN" "$out/Logic" + patchelf --set-rpath "${stdenv.cc.cc.lib}/lib:${stdenv.cc.cc.lib}/lib64:${libPath}:\$ORIGIN/Analyzers:\$ORIGIN" "$out/Logic" # Build the LD_PRELOAD library that makes Logic work from a read-only directory mkdir -p "$out/lib" diff --git a/pkgs/development/tools/misc/yodl/default.nix b/pkgs/development/tools/misc/yodl/default.nix index aa76d991966..69270f8a518 100644 --- a/pkgs/development/tools/misc/yodl/default.nix +++ b/pkgs/development/tools/misc/yodl/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "yodl-${version}"; - version = "3.06.00"; + version = "3.08.00"; buildInputs = [ perl icmake ]; src = fetchFromGitHub { - sha256 = "03n03bxc5lh3v9yzdikqrzzdvrna8zf98mlg2dhnn5z5sb5jhyzc"; + sha256 = "107jhywx0xdyp7yll1c5zwngzjl3yvg1b4yan8wl2acnbrv6hwa4"; rev = version; repo = "yodl"; owner = "fbb-git"; diff --git a/pkgs/development/tools/node-webkit/nw12.nix b/pkgs/development/tools/node-webkit/nw12.nix index 4cacc75d777..f0ede1e5237 100644 --- a/pkgs/development/tools/node-webkit/nw12.nix +++ b/pkgs/development/tools/node-webkit/nw12.nix @@ -11,10 +11,12 @@ let paths = [ xorg.libX11 xorg.libXrender glib gtk atk pango cairo gdk_pixbuf freetype fontconfig xorg.libXcomposite alsaLib xorg.libXdamage - xorg.libXext xorg.libXfixes nss nspr gconf expat dbus stdenv.cc + xorg.libXext xorg.libXfixes nss nspr gconf expat dbus xorg.libXtst xorg.libXi xorg.libXcursor xorg.libXrandr libcap libnotify ]; + + extraOutputsToInstall = [ "lib" "out" ]; }; in stdenv.mkDerivation rec { @@ -39,7 +41,7 @@ in stdenv.mkDerivation rec { ln -s ${libudev.out}/lib/libudev.so $out/share/nwjs/libudev.so.0 - patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:$out/share/nwjs" $out/share/nwjs/nw + patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:${stdenv.lib.makeLibraryPath [ stdenv.cc.cc ]}:$out/share/nwjs" $out/share/nwjs/nw patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:$out/share/nwjs" $out/share/nwjs/nwjc mkdir -p $out/bin diff --git a/pkgs/development/tools/parsing/lemon/default.nix b/pkgs/development/tools/parsing/lemon/default.nix index 46aaa830512..480ee5b88f6 100644 --- a/pkgs/development/tools/parsing/lemon/default.nix +++ b/pkgs/development/tools/parsing/lemon/default.nix @@ -4,20 +4,20 @@ let srcs = { lemon = fetchurl { - sha256 = "1grm95m2cnc61zim332g7z8nchmcy91ljf50k13lm421v0ygyyv6"; - url = "http://www.sqlite.org/src/raw/tool/lemon.c?name=039f813b520b9395740c52f9cbf36c90b5d8df03"; + sha256 = "1c5pk2hz7j9hix5mpc38rwnm8dnlr2jqswf4lan6v78ccbyqzkjx"; + url = "http://www.sqlite.org/src/raw/tool/lemon.c?name=680980c7935bfa1edec20c804c9e5ba4b1dd96f5"; name = "lemon.c"; }; lempar = fetchurl { - sha256 = "09nki0cwc5zrm365g6plhjxz3byhl9w117ab3yvrpds43ks1j85z"; - url = "http://www.sqlite.org/src/raw/tool/lempar.c?name=3617143ddb9b176c3605defe6a9c798793280120"; + sha256 = "1ba13a6yh9j2cs1aw2fh4dxqvgf399gxq1gpp4sh8q0f2w6qiw3i"; + url = "http://www.sqlite.org/src/raw/tool/lempar.c?name=01ca97f87610d1dac6d8cd96ab109ab1130e76dc"; name = "lempar.c"; }; }; in stdenv.mkDerivation rec { name = "lemon-${version}"; - version = "1.0"; + version = "1.69"; phases = [ "buildPhase" "installPhase" ]; diff --git a/pkgs/development/tools/rtags/default.nix b/pkgs/development/tools/rtags/default.nix index 208445c3ec5..2e2332f20f2 100644 --- a/pkgs/development/tools/rtags/default.nix +++ b/pkgs/development/tools/rtags/default.nix @@ -1,30 +1,22 @@ -{ stdenv, fetchgit, cmake, llvm, openssl, clang, writeScript, bash }: +{ stdenv, fetchgit, cmake, llvmPackages, openssl, writeScript, bash, emacs }: -let llvm-config-wrapper = writeScript "llvm-config" '' - #! ${bash}/bin/bash - if [[ "$1" = "--cxxflags" ]]; then - echo $(${llvm}/bin/llvm-config "$@") -isystem ${clang.cc}/include - else - ${llvm}/bin/llvm-config "$@" - fi - ''; - -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "rtags-${version}"; - rev = "9fed420d20935faf55770765591fc2de02eeee28"; - version = "${stdenv.lib.strings.substring 0 7 rev}"; + version = "git-2016-04-29"; + rev = "233543d343bf86fa31c35ee21242fa2da3a965ab"; - buildInputs = [ cmake llvm openssl clang ]; + buildInputs = [ cmake llvmPackages.llvm openssl llvmPackages.clang emacs ]; preConfigure = '' - export LIBCLANG_LLVM_CONFIG_EXECUTABLE=${llvm-config-wrapper} + export LIBCLANG_CXXFLAGS="-isystem ${llvmPackages.clang.cc}/include $(llvm-config --cxxflags)" \ + LIBCLANG_LIBDIR="${llvmPackages.clang.cc}/lib" ''; src = fetchgit { inherit rev; fetchSubmodules = true; url = "https://github.com/andersbakken/rtags.git"; - sha256 = "1sb6wfknhvrgirqp65paz7kihv4zgg8g5f7a7i14i10sysalxbif"; + sha256 = "1jzmpbkx1z8dnpr0ndclb6c3dxnf90ifr8j1nzz4j8cvzdpc3lzc"; }; meta = { diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix index 55e721306ce..0fad7290df3 100644 --- a/pkgs/development/tools/rust/rustfmt/default.nix +++ b/pkgs/development/tools/rust/rustfmt/default.nix @@ -4,16 +4,16 @@ with rustPlatform; buildRustPackage rec { name = "rustfmt-${version}"; - version = "2016-03-22"; + version = "0.4"; src = fetchFromGitHub { owner = "rust-lang-nursery"; repo = "rustfmt"; - rev = "ca757183fedf8e89286372b91ca074c11d99c4f4"; - sha256 = "0ngg5m002hwwmsqy9wr50dj3l3zgwk39701wzszm3nrhz6x13dmj"; + rev = "19768da5c97c108a05e6f545b73ba4b76d1b1788"; + sha256 = "0f2m0gvlqlybcjl2xqwxlp5hjkhd30kx25dq56k5x0r3808ijksg"; }; - depsSha256 = "0mg4z197iiwjlgqs5izacld25cr11qi3bcrqq204f0jzrnj3y8ag"; + depsSha256 = "1lbcpvp7xhyl96w7jfd18w6py60nwllr93jna5j33zvnip61cpf5"; meta = with stdenv.lib; { description = "A tool for formatting Rust code according to style guidelines"; diff --git a/pkgs/development/tools/selenium/chromedriver/default.nix b/pkgs/development/tools/selenium/chromedriver/default.nix index dd6d75771a3..1f2153bf337 100644 --- a/pkgs/development/tools/selenium/chromedriver/default.nix +++ b/pkgs/development/tools/selenium/chromedriver/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { mv chromedriver $out/bin patchelf --set-interpreter ${glibc.out}/lib/ld-linux-x86-64.so.2 $out/bin/chromedriver wrapProgram "$out/bin/chromedriver" \ - --prefix LD_LIBRARY_PATH : "$(cat ${stdenv.cc}/nix-support/orig-cc)/lib64:${stdenv.lib.makeLibraryPath [ cairo fontconfig freetype gdk_pixbuf glib gtk libX11 nspr nss pango libXrender gconf libXext libXi ]}:\$LD_LIBRARY_PATH" + --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc.lib cairo fontconfig freetype gdk_pixbuf glib gtk libX11 nspr nss pango libXrender gconf libXext libXi ]}:\$LD_LIBRARY_PATH" ''; meta = with stdenv.lib; { diff --git a/pkgs/development/tools/selenium/server/default.nix b/pkgs/development/tools/selenium/server/default.nix index 66d9668fe82..fe8bf2b13b5 100644 --- a/pkgs/development/tools/selenium/server/default.nix +++ b/pkgs/development/tools/selenium/server/default.nix @@ -10,30 +10,17 @@ let in stdenv.mkDerivation rec { name = "selenium-server-standalone-${version}"; - version = "2.45.0"; + version = "2.53.0"; src = fetchurl { - url = "http://selenium-release.storage.googleapis.com/2.45/selenium-server-standalone-2.45.0.jar"; - sha256 = "0yvmmngqff3k5si1js8v87nx3whlsx7q4p78v6ybqhsbv6idywhi"; + url = "http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-${version}.jar"; + sha256 = "0dp0n5chl1frjy9pcyjvpcdgv1f4dkslh2bpydpxwc5isfzqrf37"; }; unpackPhase = "true"; buildInputs = [ jre makeWrapper ]; - # Patch launcher binaries for opera - patchPhase = optionalString (arch!="") '' - cp $src $TMPDIR/${name}.jar - export src=$TMPDIR/${name}.jar - - ${jdk}/bin/jar xf $src launchers/launcher-linux-amd64 - patchelf \ - --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${gcc.cc}/lib/:${gcc.cc}/lib64:${xorg.libX11.out}/lib" \ - launchers/launcher-linux-${arch} - ${jdk}/bin/jar uf $src launchers/launcher-linux-${arch} - ''; - installPhase = '' mkdir -p $out/share/lib/${name} cp $src $out/share/lib/${name}/${name}.jar diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix new file mode 100644 index 00000000000..a04a0ed971b --- /dev/null +++ b/pkgs/development/web/nodejs/nodejs.nix @@ -0,0 +1,59 @@ +{ stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser +, pkgconfig, runCommand, which, libtool +, version +, src +, ... +}: + +assert stdenv.system != "armv5tel-linux"; + +let + + deps = { + inherit openssl zlib libuv; + } // (stdenv.lib.optionalAttrs (!stdenv.isDarwin) { + inherit http-parser; + }); + + sharedConfigureFlags = name: [ + "--shared-${name}" + "--shared-${name}-includes=${builtins.getAttr name deps}/include" + "--shared-${name}-libpath=${builtins.getAttr name deps}/lib" + ]; + + inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms; + +in stdenv.mkDerivation { + + inherit version; + + inherit src; + + name = "nodejs-${version}"; + + configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; + dontDisableStatic = true; + prePatch = '' + patchShebangs . + sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' tools/gyp/pylib/gyp/xcode_emulation.py + ''; + + patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode.patch ]; + + buildInputs = [ python which zlib libuv openssl python ] + ++ optionals stdenv.isLinux [ utillinux http-parser ] + ++ optionals stdenv.isDarwin [ pkgconfig openssl libtool ]; + setupHook = ./setup-hook.sh; + + enableParallelBuilding = true; + + passthru.interpreterName = "nodejs"; + + meta = { + description = "Event-driven I/O framework for the V8 JavaScript engine"; + homepage = http://nodejs.org; + license = licenses.mit; + maintainers = [ maintainers.goibhniu maintainers.havvy maintainers.gilligan ]; + platforms = platforms.linux ++ platforms.darwin; + }; +} diff --git a/pkgs/development/web/nodejs/v4.nix b/pkgs/development/web/nodejs/v4.nix index ccb52817367..4332dca2dae 100644 --- a/pkgs/development/web/nodejs/v4.nix +++ b/pkgs/development/web/nodejs/v4.nix @@ -1,67 +1,12 @@ { stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser , pkgconfig, runCommand, which, libtool -}: +, callPackage +}@args: -# nodejs 0.12 can't be built on armv5tel. Armv6 with FPU, minimum I think. -# Related post: http://zo0ok.com/techfindings/archives/1820 -assert stdenv.system != "armv5tel-linux"; - -let +import ./nodejs.nix (args // rec { version = "4.3.1"; - - deps = { - inherit openssl zlib libuv; - - # disabled system v8 because v8 3.14 no longer receives security fixes - # we fall back to nodejs' internal v8 copy which receives backports for now - # inherit v8 - } // (stdenv.lib.optionalAttrs (!stdenv.isDarwin) { - inherit http-parser; - }); - - sharedConfigureFlags = name: [ - "--shared-${name}" - "--shared-${name}-includes=${builtins.getAttr name deps}/include" - "--shared-${name}-libpath=${builtins.getAttr name deps}/lib" - ]; - - inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms; -in stdenv.mkDerivation { - name = "nodejs-${version}"; - src = fetchurl { url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz"; sha256 = "0wzf5sirbph5kaik3pm9i2dxbjwqh5qlnqn71azrsv0vhs7dbqk1"; }; - - configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; - dontDisableStatic = true; - prePatch = '' - patchShebangs . - sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' tools/gyp/pylib/gyp/xcode_emulation.py - ''; - - patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode.patch ]; - - buildInputs = [ python zlib libuv openssl python ] - ++ optionals stdenv.isLinux [ utillinux http-parser ]; - nativeBuildInputs = [ pkgconfig ] - ++ optional stdenv.isDarwin libtool; - - postFixup = '' - sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' $out/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py - ''; - setupHook = ./setup-hook.sh; - - enableParallelBuilding = true; - - passthru.interpreterName = "nodejs"; - - meta = { - description = "Event-driven I/O framework for the V8 JavaScript engine"; - homepage = http://nodejs.org; - license = licenses.mit; - maintainers = [ maintainers.havvy ]; - platforms = platforms.linux ++ platforms.darwin; - }; -} +}) diff --git a/pkgs/development/web/nodejs/v5.nix b/pkgs/development/web/nodejs/v5.nix index 5cb87ecc076..02a7ba3ef4b 100644 --- a/pkgs/development/web/nodejs/v5.nix +++ b/pkgs/development/web/nodejs/v5.nix @@ -1,61 +1,12 @@ { stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser , pkgconfig, runCommand, which, libtool -}: - -# nodejs 5.0.0 can't be built on armv5tel. Armv6 with FPU, minimum I think. -assert stdenv.system != "armv5tel-linux"; - -let - version = "5.10.1"; - - deps = { - inherit openssl zlib libuv; - - # disabled system v8 because v8 3.14 no longer receives security fixes - # we fall back to nodejs' internal v8 copy which receives backports for now - # inherit v8 - } // (stdenv.lib.optionalAttrs (!stdenv.isDarwin) { - inherit http-parser; - }); - - sharedConfigureFlags = name: [ - "--shared-${name}" - "--shared-${name}-includes=${builtins.getAttr name deps}/include" - "--shared-${name}-libpath=${builtins.getAttr name deps}/lib" - ]; - - inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms; -in stdenv.mkDerivation { - name = "nodejs-${version}"; +, callPackage +}@args: +import ./nodejs.nix (args // rec { + version = "5.11.0"; src = fetchurl { url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz"; - sha256 = "1kdaahq3h89c7mz2qbqx43qdigsswl1i8ll5vw6j8g5m2av7iqn6"; + sha256 = "14ayv5rgagc6lj7fil0bdbzwj2qxj5picw802rfmmpj9kqdb0hgg"; }; - - configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; - dontDisableStatic = true; - prePatch = '' - patchShebangs . - sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' tools/gyp/pylib/gyp/xcode_emulation.py - ''; - - patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode.patch ]; - - buildInputs = [ python which zlib libuv openssl python ] - ++ optionals stdenv.isLinux [ utillinux http-parser ] - ++ optionals stdenv.isDarwin [ pkgconfig openssl libtool ]; - setupHook = ./setup-hook.sh; - - enableParallelBuilding = true; - - passthru.interpreterName = "nodejs"; - - meta = { - description = "Event-driven I/O framework for the V8 JavaScript engine"; - homepage = http://nodejs.org; - license = licenses.mit; - maintainers = [ maintainers.goibhniu maintainers.havvy ]; - platforms = platforms.linux ++ platforms.darwin; - }; -} +}) diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix new file mode 100644 index 00000000000..ffb25f0ed59 --- /dev/null +++ b/pkgs/development/web/nodejs/v6.nix @@ -0,0 +1,12 @@ +{ stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser +, pkgconfig, runCommand, which, libtool +, callPackage +}@args: + +import ./nodejs.nix (args // rec { + version = "6.0.0"; + src = fetchurl { + url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.gz"; + sha256 = "0cpw7ng193jgfbw2g1fd0kcglmjjkbj4xb89g00z8zz0lj0nvdbd"; + }; +}) diff --git a/pkgs/development/web/wml/default.nix b/pkgs/development/web/wml/default.nix index be53724636b..58336c80e04 100644 --- a/pkgs/development/web/wml/default.nix +++ b/pkgs/development/web/wml/default.nix @@ -8,6 +8,8 @@ perlPackages.buildPerlPackage rec { sha256 = "0jjxpq91x7y2mgixz7ghqp01m24qa37wl3zz515rrzv7x8cyy4cf"; }; + setOutputFlags = false; + # Getting lots of Non-ASCII character errors from pod2man. # Inserting =encoding utf8 before the first =head occurrence. # Wasn't able to fix mp4h. diff --git a/pkgs/games/0ad/data.nix b/pkgs/games/0ad/data.nix index f2f5a9e9b21..aea36d211aa 100644 --- a/pkgs/games/0ad/data.nix +++ b/pkgs/games/0ad/data.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://releases.wildfiregames.com/0ad-${version}-${releaseType}-unix-data.tar.xz"; - sha256 = "0f406ynz2fbg3hwavh52xh4f7kqm4mzhz59kkvb6dpsax5agalwk"; + sha256 = "1lzl8chfqbgs1n9vpn0xaqd70kpwiibfk196iblyq6qkms3v6pnv"; }; patchPhase = '' diff --git a/pkgs/games/0ad/default.nix b/pkgs/games/0ad/default.nix index e854af58865..485feb53a89 100644 --- a/pkgs/games/0ad/default.nix +++ b/pkgs/games/0ad/default.nix @@ -9,7 +9,7 @@ assert withEditor -> wxGTK != null; let - version = "0.0.19"; + version = "0.0.20"; releaseType = "alpha"; @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://releases.wildfiregames.com/0ad-${version}-${releaseType}-unix-build.tar.xz"; - sha256 = "1cwvhg30i6axm7y5b62qyjwf1j8gwa5fgc13xsga3gzdphmjchrd"; + sha256 = "13n61xhjsawda3kl7112la41bqkbqmq4yhr3slydsz856z5xb5m3"; }; buildInputs = [ diff --git a/pkgs/games/andyetitmoves/default.nix b/pkgs/games/andyetitmoves/default.nix index 897e4202b80..092f0773708 100644 --- a/pkgs/games/andyetitmoves/default.nix +++ b/pkgs/games/andyetitmoves/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { mkdir -p $out/{opt/andyetitmoves,bin} cp -r * $out/opt/andyetitmoves/ - fullPath=${stdenv.cc.cc}/lib64 + fullPath=${stdenv.cc.cc.lib}/lib64 for i in $nativeBuildInputs; do fullPath=$fullPath''${fullPath:+:}$i/lib done diff --git a/pkgs/games/angband/default.nix b/pkgs/games/angband/default.nix new file mode 100644 index 00000000000..c0445811f39 --- /dev/null +++ b/pkgs/games/angband/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, ncurses }: + +stdenv.mkDerivation rec { + version = "4.0.5"; + name = "angband-${version}"; + + src = fetchFromGitHub { + owner = "angband"; + repo = "angband"; + rev = version; + sha256 = "1l7ybqmsxpsijm7iqiqjpa7lhjafxml743q4crxn8wnwrbjzbi86"; + }; + + nativeBuildInputs = [ autoreconfHook ]; + buildInputs = [ ncurses ]; + installFlags = "bindir=$(out)/bin"; + + meta = with stdenv.lib; { + homepage = http://rephial.org/; + description = "A single-player roguelike dungeon exploration game"; + maintainers = [ maintainers.chattered ]; + license = licenses.gpl2; + }; +} diff --git a/pkgs/games/chessx/default.nix b/pkgs/games/chessx/default.nix index 39ec3670e54..63a1adb7155 100644 --- a/pkgs/games/chessx/default.nix +++ b/pkgs/games/chessx/default.nix @@ -1,4 +1,4 @@ -{ stdenv, pkgconfig, zlib, qtbase, qtsvg, qttools, qtmultimedia, fetchurl }: +{ stdenv, pkgconfig, zlib, qtbase, qtsvg, qttools, qtmultimedia, qmakeHook, fetchurl }: stdenv.mkDerivation rec { name = "chessx-${version}"; version = "1.3.2"; @@ -6,9 +6,6 @@ stdenv.mkDerivation rec { url = "mirror://sourceforge/chessx/chessx-${version}.tgz"; sha256 = "b136cf56d37d34867cdb9538176e1703b14f61b3384885b6f100580d0af0a3ff"; }; - preConfigure = '' - qmake -spec linux-g++ chessx.pro - ''; buildInputs = [ stdenv pkgconfig @@ -17,6 +14,7 @@ stdenv.mkDerivation rec { qttools qtmultimedia zlib + qmakeHook ]; enableParallelBuilding = true; diff --git a/pkgs/games/dwarf-fortress/dfhack/default.nix b/pkgs/games/dwarf-fortress/dfhack/default.nix index aaed6b8fd2d..12072739684 100644 --- a/pkgs/games/dwarf-fortress/dfhack/default.nix +++ b/pkgs/games/dwarf-fortress/dfhack/default.nix @@ -5,9 +5,11 @@ }: let - rev = "5e2fc5662115499c10bfcd8a6105a1efe4de081c"; - xmlRev = "f371e293002f8f6d1e4704cc5869ca07ccf6c4d5"; dfVersion = "0.42.06"; + version = "${dfVersion}-r1"; + rev = "refs/tags/${version}"; + # revision of library/xml submodule + xmlRev = "98cc1e01886aaea161d651cf97229ad08e9782b0"; fakegit = writeScriptBin "git" '' #! ${stdenv.shell} @@ -28,13 +30,12 @@ let in stdenv.mkDerivation rec { name = "dfhack-${version}"; - version = "2016-03-03"; # Beware of submodules src = fetchgit { url = "https://github.com/DFHack/dfhack"; inherit rev; - sha256 = "143zkx6hqpqxjhjd1bllg2kfia215x63zifkhgzycg49kw4wkxi5"; + sha256 = "0h9y9z4d9lirgpcvj5r2znmfi2avdrgrffi9p63gxp1a3mv9fdm1"; }; patches = [ ./use-system-libraries.patch ]; @@ -49,7 +50,7 @@ in stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Memory hacking library for Dwarf Fortress and a set of tools that use it"; - homepage = https://github.com/DFHack/dfhack/; + homepage = "https://github.com/DFHack/dfhack/"; license = licenses.zlib; platforms = [ "i686-linux" ]; maintainers = with maintainers; [ robbinch a1russell abbradar ]; diff --git a/pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch b/pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch index 2ae3620fff6..b6ff92398a5 100644 --- a/pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch +++ b/pkgs/games/dwarf-fortress/dfhack/use-system-libraries.patch @@ -1,22 +1,8 @@ -From 1196fcb987b6aadb49075d817b3615bf8a6d7d51 Mon Sep 17 00:00:00 2001 -From: Nikolay Amiantov -Date: Wed, 6 Jan 2016 03:07:20 +0300 -Subject: [PATCH 2/2] Use as much system libraries as possible - ---- - CMakeLists.txt | 5 ----- - depends/CMakeLists.txt | 3 --- - library/CMakeLists.txt | 10 +++++----- - plugins/CMakeLists.txt | 4 ++-- - plugins/mapexport/CMakeLists.txt | 4 ++-- - plugins/stockpiles/CMakeLists.txt | 4 ++-- - 6 files changed, 11 insertions(+), 19 deletions(-) - diff --git a/CMakeLists.txt b/CMakeLists.txt -index 1933390..d871df4 100644 +index 46fd565..254c3c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -152,8 +152,6 @@ ELSEIF(MSVC) +@@ -160,8 +160,6 @@ ELSEIF(MSVC) SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /Od") ENDIF() @@ -25,9 +11,9 @@ index 1933390..d871df4 100644 ADD_DEFINITIONS(-DLUA_BUILD_AS_DLL) if(APPLE) -@@ -173,11 +171,8 @@ if(NOT UNIX) +@@ -182,11 +180,8 @@ else() + set(ZLIB_ROOT /usr/lib/i386-linux-gnu) endif() - set(ZLIB_ROOT /usr/lib/i386-linux-gnu) find_package(ZLIB REQUIRED) -include_directories(depends/protobuf) include_directories(depends/lua/include) @@ -53,10 +39,10 @@ index bf0345b..2a1a852 100644 OPTION(CLSOCKET_SHARED "Build clsocket lib as shared." OFF) OPTION(CLSOCKET_DEP_ONLY "Build for use inside other CMake projects as dependency." ON) diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt -index 5071d9e..d346d1e 100644 +index 54300ec..128bfd1 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt -@@ -203,10 +203,10 @@ LIST(APPEND PROJECT_SOURCES ${PROJECT_PROTO_SRCS}) +@@ -223,10 +223,10 @@ LIST(APPEND PROJECT_SOURCES ${PROJECT_PROTO_SRCS}) ADD_CUSTOM_COMMAND( OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} @@ -69,7 +55,7 @@ index 5071d9e..d346d1e 100644 ) # Merge headers into sources -@@ -249,12 +249,12 @@ IF(UNIX) +@@ -269,12 +269,12 @@ IF(UNIX) ENDIF() IF(APPLE) @@ -86,10 +72,10 @@ index 5071d9e..d346d1e 100644 ADD_LIBRARY(dfhack-version STATIC DFHackVersion.cpp) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt -index 9781401..ece508c 100644 +index dd1c634..7bd8c17 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt -@@ -69,11 +69,11 @@ STRING(REPLACE ".proto" ".pb.h" PROJECT_PROTO_HDRS "${PROJECT_PROTOS}") +@@ -47,11 +47,11 @@ STRING(REPLACE ".proto" ".pb.h" PROJECT_PROTO_HDRS "${PROJECT_PROTOS}") ADD_CUSTOM_COMMAND( OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} @@ -103,21 +89,6 @@ index 9781401..ece508c 100644 ) add_custom_target(generate_proto DEPENDS ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS}) -diff --git a/plugins/mapexport/CMakeLists.txt b/plugins/mapexport/CMakeLists.txt -index 429507a..7e2390a 100644 ---- a/plugins/mapexport/CMakeLists.txt -+++ b/plugins/mapexport/CMakeLists.txt -@@ -32,8 +32,8 @@ LIST(APPEND PROJECT_SRCS ${PROJECT_HDRS}) - #Generate sources from our proto files and store them in the source tree - ADD_CUSTOM_COMMAND( - OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS} --COMMAND protoc-bin -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ${PROJECT_PROTOS} --DEPENDS protoc-bin ${PROJECT_PROTOS} -+COMMAND protoc -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ${PROJECT_PROTOS} -+DEPENDS ${PROJECT_PROTOS} - ) - - IF(WIN32) diff --git a/plugins/stockpiles/CMakeLists.txt b/plugins/stockpiles/CMakeLists.txt index 713c3d6..dd2d4cb 100644 --- a/plugins/stockpiles/CMakeLists.txt @@ -133,6 +104,3 @@ index 713c3d6..dd2d4cb 100644 ) IF(WIN32) --- -2.6.3 - diff --git a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix index 65eb7d49771..37eab6d077a 100644 --- a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix +++ b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix @@ -1,10 +1,8 @@ -{ stdenv, fetchFromGitHub, coreutils, qtbase, qtdeclarative, texlive }: +{ stdenv, fetchFromGitHub, coreutils, qtbase, qtdeclarative, qmakeHook, texlive }: -let - version = "37.0.0"; -in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "dwarf-therapist-original-${version}"; + version = "37.0.0"; src = fetchFromGitHub { owner = "splintermind"; @@ -15,14 +13,10 @@ stdenv.mkDerivation { outputs = [ "out" "layouts" ]; buildInputs = [ qtbase qtdeclarative ]; - nativeBuildInputs = [ texlive ]; + nativeBuildInputs = [ texlive qmakeHook ]; enableParallelBuilding = false; - configurePhase = '' - $QMAKE PREFIX=$out - ''; - # Move layout files so they cannot be found by Therapist postInstall = '' mkdir -p $layouts diff --git a/pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix b/pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix index a16c1284a67..cbc8d31e675 100644 --- a/pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix +++ b/pkgs/games/dwarf-fortress/dwarf-therapist/wrapper.nix @@ -1,4 +1,4 @@ -{ buildEnv, lib, dwarf-therapist-original, dwarf-fortress-original, makeWrapper }: +{ symlinkJoin, lib, dwarf-therapist-original, dwarf-fortress-original, makeWrapper }: let df = dwarf-fortress-original; @@ -6,8 +6,8 @@ let inifile = "linux/v0${df.baseVersion}.${df.patchVersion}.ini"; dfHashFile = "${df}/hash.md5"; -in buildEnv { - name = "dwarf-therapist-${lib.getVersion dt}"; +in symlinkJoin { + name = "dwarf-therapist-${dt.version}"; paths = [ dt ]; @@ -16,22 +16,10 @@ in buildEnv { postBuild = '' # DwarfTherapist assumes it's run in $out/share/dwarftherapist and # therefore uses many relative paths. - rm $out/bin - mkdir $out/bin - makeWrapper ${dt}/bin/DwarfTherapist $out/bin/DwarfTherapist \ + wrapProgram $out/bin/DwarfTherapist \ --run "cd $out/share/dwarftherapist" - # Fix checksum of memory access directives. We really need #4621 fixed! - recreate_dir() { - rm "$out/$1" - mkdir -p "$out/$1" - for i in "${dt}/$1/"*; do - ln -s "$i" "$out/$1" - done - } - - recreate_dir share - recreate_dir share/dwarftherapist + rm -rf $out/share/dwarftherapist/memory_layouts/linux mkdir -p $out/share/dwarftherapist/memory_layouts/linux origmd5=$(cat "${dfHashFile}.orig" | cut -c1-8) patchedmd5=$(cat "${dfHashFile}" | cut -c1-8) diff --git a/pkgs/games/dwarf-fortress/themes/cla.nix b/pkgs/games/dwarf-fortress/themes/cla.nix index 39b7e5d2a4c..b1a27c7e47b 100644 --- a/pkgs/games/dwarf-fortress/themes/cla.nix +++ b/pkgs/games/dwarf-fortress/themes/cla.nix @@ -3,14 +3,15 @@ # On upgrade check https://github.com/DFgraphics/CLA/blob/master/manifest.json # for compatibility information. -stdenv.mkDerivation { - name = "cla-theme-20160128"; +stdenv.mkDerivation rec { + name = "cla-theme-${version}"; + version = "42.06-v22"; src = fetchFromGitHub { owner = "DFgraphics"; repo = "CLA"; - rev = "94088b778ed6f91cbddcd3e33aa1e5efa67f3101"; - sha256 = "0rx1375x9s791k9wzvj7sxcrv4xaggibxymzirayznvavr7zcsv1"; + rev = version; + sha256 = "1rr52j1wns17axc27fab0wn0338axzwkqp7cpa690kb3bl1y0pf5"; }; installPhase = '' diff --git a/pkgs/games/dwarf-fortress/themes/phoebus.nix b/pkgs/games/dwarf-fortress/themes/phoebus.nix index 8fd9a7dbf04..0022f9dc1c7 100644 --- a/pkgs/games/dwarf-fortress/themes/phoebus.nix +++ b/pkgs/games/dwarf-fortress/themes/phoebus.nix @@ -3,14 +3,15 @@ # On upgrade check https://github.com/DFgraphics/Phoebus/blob/master/manifest.json # for compatibility information. -stdenv.mkDerivation { - name = "phoebus-theme-20160128"; +stdenv.mkDerivation rec { + name = "phoebus-theme-${version}"; + version = "42.06a"; src = fetchFromGitHub { owner = "DFgraphics"; repo = "Phoebus"; - rev = "52b19b69c7323f9002ad195ecd68ac02ff0099a2"; - sha256 = "1pw5l5v7l1bvxzjf4fivmagpmghffvz0wlws2ksc7d5vy48ybcmg"; + rev = version; + sha256 = "1mkj882mf1lvjs2b7jxfazym9fl1y20slbfi1lgqzbp1872aaxi0"; }; installPhase = '' diff --git a/pkgs/games/dwarf-fortress/unfuck.nix b/pkgs/games/dwarf-fortress/unfuck.nix index 57b0e458cc2..1d6ea1196da 100644 --- a/pkgs/games/dwarf-fortress/unfuck.nix +++ b/pkgs/games/dwarf-fortress/unfuck.nix @@ -1,16 +1,16 @@ { stdenv, fetchFromGitHub, cmake -, mesa, SDL, SDL_image, SDL_ttf, glew, openalSoft -, ncurses, glib, gtk2, libsndfile +, mesa_noglu, SDL, SDL_image, SDL_ttf, glew, openalSoft +, ncurses, glib, gtk2, libsndfile, zlib }: stdenv.mkDerivation { - name = "dwarf_fortress_unfuck-2016-02-11"; + name = "dwarf_fortress_unfuck-2016-04-22"; src = fetchFromGitHub { owner = "svenstaro"; repo = "dwarf_fortress_unfuck"; - rev = "2ba59c87bb63bea598825a73bdc896b0e041e2d5"; - sha256 = "0q2rhigvaabdknmb2c84gg71qz7xncmx04npzx4bki9avyxsrpcl"; + rev = "dde40a2c619eac119b6db1bcd0c8d8612472f866"; + sha256 = "12bqh3k4wsk1c0bz2zly8h0ilbsdmsbwr9cdjc6i7liwg9906g7i"; }; cmakeFlags = [ @@ -20,8 +20,8 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake ]; buildInputs = [ - mesa SDL SDL_image SDL_ttf glew openalSoft - ncurses gtk2 libsndfile + SDL SDL_image SDL_ttf glew openalSoft + ncurses gtk2 libsndfile zlib mesa_noglu ]; installPhase = '' diff --git a/pkgs/games/factorio/fetch.nix b/pkgs/games/factorio/fetch.nix index 03dc786492a..78c7faf018c 100644 --- a/pkgs/games/factorio/fetch.nix +++ b/pkgs/games/factorio/fetch.nix @@ -1,4 +1,4 @@ -{ stdenv, curl +{ stdenv, curl, cacert # Begin download parameters , username ? "" , password ? "" @@ -20,7 +20,7 @@ stdenv.mkDerivation { buildInputs = [ curl ]; - inherit url loginUrl username password; + inherit url loginUrl username password cacert; builder = ./fetch.sh; diff --git a/pkgs/games/factorio/fetch.sh b/pkgs/games/factorio/fetch.sh index ad976673686..d6549c0a676 100644 --- a/pkgs/games/factorio/fetch.sh +++ b/pkgs/games/factorio/fetch.sh @@ -8,7 +8,7 @@ source $stdenv/setup curl="curl \ --max-redirs 20 \ --retry 3 \ - --cacert /etc/ssl/certs/ca-bundle.crt \ + --cacert $cacert/etc/ssl/certs/ca-bundle.crt \ $curlOpts \ $NIX_CURL_FLAGS" diff --git a/pkgs/games/freeciv/default.nix b/pkgs/games/freeciv/default.nix index 4d7bc4eb4a6..af785d0e4a9 100644 --- a/pkgs/games/freeciv/default.nix +++ b/pkgs/games/freeciv/default.nix @@ -10,16 +10,14 @@ let gtkName = if gtkClient then "-gtk" else ""; name = "freeciv"; - version = "2.5.0"; + version = "2.5.3"; in stdenv.mkDerivation { name = "${name}${sdlName}${gtkName}-${version}"; src = fetchurl { url = "mirror://sourceforge/freeciv/${name}-${version}.tar.bz2"; - sha256 = "bd9f7523ea79b8d2806d0c1844a9f48506ccd18276330580319913c43051210b"; - # sha1 = "477b60e02606e47b31a019b065353c1a6da6c305"; - # md5 = "8a61ecd986853200326711446c573f1b"; + sha256 = "0p40bpkhbldsnlqdvfn3qd2vzadxfrfsf1r57x1akwabqs0h62s8"; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/games/freeorion/92455f9.patch b/pkgs/games/freeorion/92455f9.patch new file mode 100644 index 00000000000..e40ee78de6d --- /dev/null +++ b/pkgs/games/freeorion/92455f9.patch @@ -0,0 +1,19 @@ +diff -Naur GG/src/Font.cpp +--- /GG/src/Font.cpp ++++ /GG/src/Font.cpp +@@ -1586,8 +1586,13 @@ + using boost::lexical_cast; + FT_UInt index = FT_Get_Char_Index(face, ch); + if (index) { +- if (FT_Load_Glyph(face, index, FT_LOAD_DEFAULT)) +- ThrowBadGlyph("GG::Font::GetGlyphBitmap : Freetype could not load the glyph for character '%1%'", ch); ++ if (FT_Load_Glyph(face, index, FT_LOAD_DEFAULT)) { ++ // loading of a glpyh failed so we replace it with ++ // the 'Replacement Character' at codepoint 0xFFFD ++ FT_UInt tmp_index = FT_Get_Char_Index(face, 0xFFFD); ++ if (FT_Load_Glyph(face, tmp_index, FT_LOAD_DEFAULT)) ++ ThrowBadGlyph("GG::Font::GetGlyphBitmap : Freetype could not load the glyph for character '%1%'", ch); ++ } + + FT_GlyphSlot glyph = face->glyph; + diff --git a/pkgs/games/freeorion/default.nix b/pkgs/games/freeorion/default.nix new file mode 100644 index 00000000000..e143b6ebcf3 --- /dev/null +++ b/pkgs/games/freeorion/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchurl, cmake, boost, SDL2, python2, freetype, openal, libogg, libvorbis, zlib, libpng, libtiff, libjpeg, mesa, glew, doxygen +, libxslt, makeWrapper }: + +stdenv.mkDerivation rec { + version = "0.4.5"; + name = "freeorion-${version}"; + + src = fetchurl { + url = "https://github.com/freeorion/freeorion/releases/download/v0.4.5/FreeOrion_v0.4.5_2015-09-01.f203162_Source.tar.gz"; + sha256 = "3b99b92eeac72bd059566dbabfab54368989ba83f72e769bc94eb8dd4fe414c0"; + }; + + buildInputs = [ cmake boost SDL2 python2 freetype openal libogg libvorbis zlib libpng libtiff libjpeg mesa glew doxygen makeWrapper ]; + + # cherry pick for acceptable performance https://github.com/freeorion/freeorion/commit/92455f97c28055e296718230d2e3744eccd738ec + patches = [ ./92455f9.patch ]; + + enableParallelBuilding = true; + + postInstall = '' + mkdir -p $out/fixpaths + # We need final slashes for XSLT replace to work properly + substitute ${./fix-paths.xslt} $out/fixpaths/fix-paths.xslt \ + --subst-var-by nixStore "$NIX_STORE/" \ + --subst-var-by out "$out/" + substitute ${./fix-paths.sh} $out/fixpaths/fix-paths \ + --subst-var-by libxsltBin ${libxslt.bin} \ + --subst-var out + chmod +x $out/fixpaths/fix-paths + + wrapProgram $out/bin/freeorion \ + --run $out/fixpaths/fix-paths + ''; + + meta = with stdenv.lib; { + description = "A free, open source, turn-based space empire and galactic conquest (4X) computer game"; + homepage = "http://www.freeorion.org"; + license = [ licenses.gpl2 licenses.cc-by-sa-30 ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/games/freeorion/fix-paths.sh b/pkgs/games/freeorion/fix-paths.sh new file mode 100644 index 00000000000..cd6f381de25 --- /dev/null +++ b/pkgs/games/freeorion/fix-paths.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +if [ -e ~/.freeorion/config.xml ]; then + @libxsltBin@/bin/xsltproc -o ~/.freeorion/config.xml @out@/fixpaths/fix-paths.xslt ~/.freeorion/config.xml +fi +exit 0 diff --git a/pkgs/games/freeorion/fix-paths.xslt b/pkgs/games/freeorion/fix-paths.xslt new file mode 100644 index 00000000000..f0db646b81a --- /dev/null +++ b/pkgs/games/freeorion/fix-paths.xslt @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/pkgs/games/instead/default.nix b/pkgs/games/instead/default.nix index 3dbda395dd6..e3fd6ccb2f7 100644 --- a/pkgs/games/instead/default.nix +++ b/pkgs/games/instead/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, SDL, SDL_ttf, SDL_image, SDL_mixer, pkgconfig, lua, zlib, unzip }: let - version = "2.4.0"; + version = "2.4.1"; # I took several games at random from http://instead.syscall.ru/games/ games = [ @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://sourceforge/project/instead/instead/${version}/instead_${version}.tar.gz"; - sha256 = "1xxga3ppgjshxzd0p53vsbaqkpzmjnm4vw0j1v7qbqzjgi3r44ix"; + sha256 = "1i69b10jfb980d5zhmvh1i789hh982vxiwgqna82b84pdf3y7kgw"; }; NIX_LDFLAGS = "-llua -lgcc_s"; diff --git a/pkgs/games/minecraft/default.nix b/pkgs/games/minecraft/default.nix index 6f3093585b4..f3a8a34fa3b 100644 --- a/pkgs/games/minecraft/default.nix +++ b/pkgs/games/minecraft/default.nix @@ -2,6 +2,7 @@ , jre, libX11, libXext, libXcursor, libXrandr, libXxf86vm , mesa, openal , useAlsa ? false, alsaOss ? null }: +with stdenv.lib; assert useAlsa -> alsaOss != null; @@ -39,8 +40,7 @@ in stdenv.mkDerivation { cat > $out/bin/minecraft << EOF #!${stdenv.shell} - # wrapper for minecraft - export LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:${libX11}/lib/:${libXext}/lib/:${libXcursor}/lib/:${libXrandr}/lib/:${libXxf86vm}/lib/:${mesa}/lib/:${openal}/lib/ + export LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:${makeLibraryPath [ libX11 libXext libXcursor libXrandr libXxf86vm mesa openal ]} ${if useAlsa then "${alsaOss}/bin/aoss" else "" } \ ${jre}/bin/java -jar $out/minecraft.jar EOF diff --git a/pkgs/games/mudlet/default.nix b/pkgs/games/mudlet/default.nix index 8b51d617403..d684cc22c38 100644 --- a/pkgs/games/mudlet/default.nix +++ b/pkgs/games/mudlet/default.nix @@ -1,5 +1,5 @@ -{ fetchurl, pkgs, stdenv, makeWrapper, qtbase, yajl, libzip, hunspell -, boost, lua5_1, luafilesystem, luazip, lrexlib, luasqlite3 }: +{ fetchurl, unzip, stdenv, makeWrapper, qtbase, yajl, libzip, hunspell +, boost, lua5_1, luafilesystem, luazip, lrexlib, luasqlite3, qmakeHook }: stdenv.mkDerivation rec { name = "mudlet-${version}"; @@ -11,11 +11,11 @@ stdenv.mkDerivation rec { }; buildInputs = [ - pkgs.unzip qtbase lua5_1 hunspell libzip yajl boost makeWrapper - luafilesystem luazip lrexlib luasqlite3 + unzip qtbase lua5_1 hunspell libzip yajl boost makeWrapper + luafilesystem luazip lrexlib luasqlite3 qmakeHook ]; - configurePhase = "cd src && qmake"; + preConfigure = "cd src"; installPhase = let luaZipPath = "${luazip}/lib/lua/5.1/?.so"; diff --git a/pkgs/games/oilrush/default.nix b/pkgs/games/oilrush/default.nix index ec9c928b798..7a23c4dc966 100644 --- a/pkgs/games/oilrush/default.nix +++ b/pkgs/games/oilrush/default.nix @@ -27,25 +27,25 @@ stdenv.mkDerivation { do patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $f done - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ launcher_$arch - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib\ libNetwork_$arch.so - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib\ libQtCoreUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ libQtGuiUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib\ libQtNetworkUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ libQtWebKitUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib\ libQtXmlUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib\ libRakNet_$arch.so - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXinerama libXrandr ]}\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXinerama libXrandr ]}\ libUnigine_$arch.so - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXinerama libXrandr ]}\ + patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXinerama libXrandr ]}\ OilRush_$arch ''; installPhase = '' diff --git a/pkgs/games/opendungeons/cmakepaths.patch b/pkgs/games/opendungeons/cmakepaths.patch new file mode 100644 index 00000000000..bcffd7a22bc --- /dev/null +++ b/pkgs/games/opendungeons/cmakepaths.patch @@ -0,0 +1,17 @@ +--- ../CMakeLists.txt ++++ ../CMakeLists.txt +@@ -31,12 +31,12 @@ + set(OD_PLUGINS_CFG_PATH ".") + else() + # Set binary and data install locations if we want to use the installer +- set(OD_BIN_PATH ${CMAKE_INSTALL_PREFIX}/games CACHE PATH "Absolute path to the game binary directory") ++ set(OD_BIN_PATH ${CMAKE_INSTALL_PREFIX}/bin CACHE PATH "Absolute path to the game binary directory") + set(OD_DATA_PATH ${CMAKE_INSTALL_PREFIX}/share/games/${PROJECT_NAME} CACHE PATH "Absolute path to the game data directory") + set(OD_SHARE_PATH ${CMAKE_INSTALL_PREFIX}/share CACHE PATH "Absolute path to the shared data directory (desktop file, icons, etc.)") + # Set the plugins.cfg file path to a common but architecture-dependent location. + # Because the plugins.cfg Ogre plugins path path may vary depending on the architecture used. +- set(OD_PLUGINS_CFG_PATH /etc/${PROJECT_NAME} CACHE PATH "Absolute path to the Ogre plugins.cfg file") ++ set(OD_PLUGINS_CFG_PATH ${CMAKE_INSTALL_PREFIX}/etc/${PROJECT_NAME} CACHE PATH "Absolute path to the Ogre plugins.cfg file") + endif() + + if(NOT MSVC) diff --git a/pkgs/games/opendungeons/default.nix b/pkgs/games/opendungeons/default.nix new file mode 100644 index 00000000000..fe3a381c7f5 --- /dev/null +++ b/pkgs/games/opendungeons/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, ogre, cegui, boost, sfml, openal, cmake, ois }: + +stdenv.mkDerivation rec { + name = "opendungeons-${version}"; + version = "0.6.0"; + + src = fetchurl { + url = "ftp://download.tuxfamily.org/opendungeons/${version}/${name}.tar.xz"; + sha256 = "1g0sjh732794h26cbkr0p96i3c0avm0mx9ip5zbvb2y3sbpjcbib"; + }; + + patches = [ ./cmakepaths.patch ]; + + buildInputs = [ cmake ogre cegui boost sfml openal ois ]; + + meta = with stdenv.lib; { + description = "An open source, real time strategy game sharing game elements with the Dungeon Keeper series and Evil Genius."; + homepage = "https://opendungeons.github.io"; + license = [ licenses.gpl3Plus licenses.zlib licenses.mit licenses.cc-by-sa-30 licenses.cc0 licenses.ofl licenses.cc-by-30 ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/games/openra/default.nix b/pkgs/games/openra/default.nix index c79c0680410..de4858e70c7 100644 --- a/pkgs/games/openra/default.nix +++ b/pkgs/games/openra/default.nix @@ -1,15 +1,17 @@ { stdenv, fetchurl, mono, makeWrapper, lua -, SDL2, freetype, openal, systemd, pkgconfig +, SDL2, freetype, openal, systemd, pkgconfig, + dotnetPackages, gnome3 }: let - version = "20141029"; + version = "20151224"; in stdenv.mkDerivation rec { name = "openra-${version}"; meta = with stdenv.lib; { description = "Real Time Strategy game engine recreates the C&C titles"; homepage = "http://www.open-ra.org/"; + maintainers = [ maintainers.rardiol ]; license = licenses.gpl3; platforms = platforms.linux; }; @@ -17,17 +19,20 @@ in stdenv.mkDerivation rec { src = fetchurl { name = "${name}.tar.gz"; url = "https://github.com/OpenRA/OpenRA/archive/release-${version}.tar.gz"; - sha256 = "082rwcy866k636s4qhbry3ja2p81mdz58bh1dw2mic5mv2q6p67r"; + sha256 = "0dgaxy1my5r3sr3l3gw79v89dsc7179pasj2bibswlv03wsjgqbi"; }; dontStrip = true; - buildInputs = [ lua ]; + buildInputs = with dotnetPackages; + [ NUnit NewtonsoftJson MonoNat FuzzyLogicLibrary SmartIrc4net SharpZipLib MaxMindGeoIP2 MaxMindDb SharpFont StyleCopMSBuild StyleCopPlusMSBuild RestSharp ] + ++ [ lua gnome3.zenity ]; nativeBuildInputs = [ mono makeWrapper lua pkgconfig ]; patchPhase = '' sed -i 's/^VERSION.*/VERSION = release-${version}/g' Makefile - substituteInPlace configure --replace /bin/bash "$shell" --replace /usr/local/lib "${lua}/lib" + substituteInPlace thirdparty/configure-native-deps.sh --replace "locations=\"" "locations=\"${lua}/lib " + substituteInPlace Makefile --replace "@./thirdparty/fetch-geoip-db.sh" "" ''; preConfigure = '' @@ -35,6 +40,51 @@ in stdenv.mkDerivation rec { make version ''; + preBuild = let dotnetPackagesDlls = with dotnetPackages; [ + "${MonoNat}/lib/dotnet/Mono.Nat/net40/Mono.Nat.dll" + "${FuzzyLogicLibrary}/lib/dotnet/FuzzyLogicLibrary/Release/FuzzyLogicLibrary.dll" + "${SmartIrc4net}/lib/dotnet/SmartIrc4net/net40/SmarIrc4net*" + "${SharpZipLib}/lib/dotnet/SharpZipLib/20/ICSharpCode.SharpZipLib.dll" + "${MaxMindGeoIP2}/lib/dotnet/MaxMind.GeoIP2/net40/MaxMind.GeoIP2*" + "${MaxMindDb}/lib/dotnet/MaxMind.Db/net40/MaxMind.Db.*" + "${SharpFont}/lib/dotnet/SharpFont/net20/SharpFont.dll" + "${SharpFont}/lib/dotnet/SharpFont/SharpFont.dll.config" + "${StyleCopMSBuild}/lib/dotnet/StyleCop.MSBuild/StyleCop*.dll" + "${StyleCopPlusMSBuild}/lib/dotnet/StyleCopPlus.MSBuild/StyleCopPlus.dll" + "${RestSharp}/lib/dotnet/RestSharp/net4-client/RestSharp.dll" + "${NUnit}/lib/dotnet/NUnit/nunit.framework.*" + "${NewtonsoftJson}/lib/dotnet/Newtonsoft.Json/Newtonsoft.Json.dll" + ]; + movePackages = [ + ( let filename = "Eluant.dll"; in { origin = fetchurl { + url = "https://github.com/OpenRA/Eluant/releases/download/20140425/${filename}"; + sha256 = "1c20whz7dzfhg3szd62rvb79745x5iwrd5pp62j3bbj1q9wpddmb"; + }; target = filename; }) + + ( let filename = "SDL2-CS.dll"; in { origin = fetchurl { + url = "https://github.com/OpenRA/SDL2-CS/releases/download/20150709/${filename}"; + sha256 = "0ms75w9w0x3dzpg5g1ym5nb1id7pmagbzqx0am7h8fq4m0cqddmc"; + }; target = filename; }) + + ( let filename = "GeoLite2-Country.mmdb.gz"; in { origin = fetchurl { + url = "http://geolite.maxmind.com/download/geoip/database/${filename}"; + sha256 = "0lr978pipk5q2z3x011ps4fx5nfc3hsal7jb77fc60aa6iscr05m"; + }; target = filename; }) + ]; + in '' + mkdir thirdparty/download/ + + ${stdenv.lib.concatMapStringsSep "\n" (from: "cp ${from} thirdparty/download") dotnetPackagesDlls} + ${stdenv.lib.concatMapStringsSep "\n" ({origin, target}: "cp ${origin} thirdparty/download/${target}") movePackages} + + make dependencies + ''; + + #todo: man-page + buildFlags = [ "DEBUG=false" "default" ]; + + installTargets = [ "install" "install-linux-icons" "install-linux-desktop" "install-linux-appdata" "install-linux-mime" ]; + postInstall = with stdenv.lib; let runtime = makeLibraryPath [ SDL2 freetype openal systemd lua ]; in '' @@ -42,9 +92,9 @@ in stdenv.mkDerivation rec { --prefix PATH : "${mono}/bin" \ --set PWD $out/lib/openra/ \ --prefix LD_LIBRARY_PATH : "${runtime}" - + mkdir -p $out/bin - echo "cd $out/lib/openra && $out/lib/openra/launch-game.sh" > $out/bin/openra + echo -e "#!${stdenv.shell}\ncd $out/lib/openra && $out/lib/openra/launch-game.sh" > $out/bin/openra chmod +x $out/bin/openra ''; } diff --git a/pkgs/games/quake3/ioquake/default.nix b/pkgs/games/quake3/ioquake/default.nix index 3067b5cefea..2fff7e7a026 100644 --- a/pkgs/games/quake3/ioquake/default.nix +++ b/pkgs/games/quake3/ioquake/default.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { name = "ioquake3-git-${version}"; - version = "2016-03-15"; + version = "2016-04-05"; src = fetchFromGitHub { owner = "ioquake"; repo = "ioq3"; - rev = "f911e32bb059f714dfc49dc2296bc6f27c442e4c"; - sha256 = "0l60snxlgvwxbpv31nwshy0rddyyxmcvqg6xqj9ifzr1gj4np5r8"; + rev = "1f6703821f11be9c711c6ee42371ab290dd12776"; + sha256 = "0jbn4lv85khfcmn1dc3mrx7zxldj3p4cggx85hdfpiwmnsjl4w67"; }; nativeBuildInputs = [ which pkgconfig ]; diff --git a/pkgs/games/sdlmame/default.nix b/pkgs/games/sdlmame/default.nix index 5e52a92e621..947e52e1f13 100644 --- a/pkgs/games/sdlmame/default.nix +++ b/pkgs/games/sdlmame/default.nix @@ -8,11 +8,11 @@ stdenv.mkDerivation rec { src = if stdenv.system == "x86_64-linux" then fetchurl { - url = "ftp://ftp.archlinux.org/community/os/x86_64/${name}-x86_64.pkg.tar.xz"; + url = "http://seblu.net/a/archive/packages/s/sdlmame/${name}-x86_64.pkg.tar.xz"; sha256 = "1j9vjxhrhsskrlk5wr7al4wk2hh3983kcva42mqal09bmc8qg3m9"; } else fetchurl { - url = "ftp://ftp.archlinux.org/community/os/i686/${name}-i686.pkg.tar.xz"; + url = "http://seblu.net/a/archive/packages/s/sdlmame/${name}-i686.pkg.tar.xz"; sha256 = "1i38j9ml66pyxzm0zzf1fv4lb40f6w47cdgaw846q91pzakkkqn7"; }; @@ -40,6 +40,5 @@ stdenv.mkDerivation rec { license = "MAME"; maintainers = with maintainers; [ lovek323 ]; platforms = platforms.linux; - broken = true; # URL doesn't work anymore }; } diff --git a/pkgs/games/sgt-puzzles/default.nix b/pkgs/games/sgt-puzzles/default.nix index e23801b2220..40f1d1d4145 100644 --- a/pkgs/games/sgt-puzzles/default.nix +++ b/pkgs/games/sgt-puzzles/default.nix @@ -1,15 +1,14 @@ -{stdenv, gtk, pkgconfig, libX11, perl, fetchsvn}: +{stdenv, gtk3, pkgconfig, libX11, perl, fetchurl, automake114x, autoconf}: let - version = "10286"; + version = "20160410.9d15092"; buildInputs = [ - gtk pkgconfig libX11 perl + gtk3 pkgconfig libX11 perl automake114x autoconf ]; in stdenv.mkDerivation { - src = fetchsvn { - url = svn://svn.tartarus.org/sgt/puzzles; - rev = version; - sha256 = "1mp1s33hjikby7jy6bcjwyzkdwlw1bw9dcc4cg5d80wmzkb0sqv0"; + src = fetchurl { + url = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${version}.tar.gz"; + sha256 = "184n29mfgj56alp5853mya878rlxf5zxy0r3zfhi9h2yfqiwszi4"; }; name = "sgt-puzzles-r" + version; inherit buildInputs; @@ -31,5 +30,6 @@ stdenv.mkDerivation { license = stdenv.lib.licenses.mit ; maintainers = [stdenv.lib.maintainers.raskin]; platforms = stdenv.lib.platforms.linux; + homepage = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/"; }; } diff --git a/pkgs/games/sgt-puzzles/default.upstream b/pkgs/games/sgt-puzzles/default.upstream new file mode 100644 index 00000000000..b6d048b68ae --- /dev/null +++ b/pkgs/games/sgt-puzzles/default.upstream @@ -0,0 +1,5 @@ +minimize_overwrite +url http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles.tar.gz +redirect +NEED_TO_CHOOSE_URL= +version '.*[-_.]([0-9]{8}[.][^.]+)[.]tar[.].*' '\1' diff --git a/pkgs/games/spring/default.nix b/pkgs/games/spring/default.nix index fe764c90b4b..525adbc0a12 100644 --- a/pkgs/games/spring/default.nix +++ b/pkgs/games/spring/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram "$out/bin/spring" \ - --prefix LD_LIBRARY_PATH : "${stdenv.cc.cc}/lib::${systemd}/lib" + --prefix LD_LIBRARY_PATH : "${stdenv.cc.cc.lib}/lib::${systemd}/lib" ''; meta = with stdenv.lib; { diff --git a/pkgs/games/the-powder-toy/default.nix b/pkgs/games/the-powder-toy/default.nix index f79d31c7c5c..14f05f8f1a8 100644 --- a/pkgs/games/the-powder-toy/default.nix +++ b/pkgs/games/the-powder-toy/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, scons, pkgconfig, SDL, lua, fftwFloat }: -let version = "90.2.322"; +let version = "91.3.328"; in stdenv.mkDerivation rec { name = "the-powder-toy-${version}"; @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { owner = "simtr"; repo = "The-Powder-Toy"; rev = "v${version}"; - sha256 = "1rlxnk8icymalnr3j4bgpklq1dhhs0rpsyjx97isqqcwm2ys03q3"; + sha256 = "0krg4d2m8cnfabm5qq7wr1y53h21i49xjcggzg98xjd0972zvfrk"; }; patches = [ ./fix-env.patch ]; diff --git a/pkgs/games/the-powder-toy/fix-env.patch b/pkgs/games/the-powder-toy/fix-env.patch index 79d2bb2a2e0..b09fd4dcbe9 100644 --- a/pkgs/games/the-powder-toy/fix-env.patch +++ b/pkgs/games/the-powder-toy/fix-env.patch @@ -1,16 +1,11 @@ -diff --git a/SConscript b/SConscript -index fd08935..4d879b2 100644 --- a/SConscript +++ b/SConscript -@@ -93,9 +93,9 @@ if msvc and platform != "Windows": - - #Create SCons Environment - if platform == "Windows" and not GetOption('msvc'): -- env = Environment(tools = ['mingw'], ENV = {'PATH' : os.environ['PATH']}) -+ env = Environment(tools = ['mingw'], ENV = os.environ) - else: -- env = Environment(tools = ['default'], ENV = {'PATH' : os.environ['PATH']}) -+ env = Environment(tools = ['default'], ENV = os.environ) - - #attempt to automatically find cross compiler - if not tool and compilePlatform == "Linux" and compilePlatform != platform: +@@ -99,7 +99,7 @@ + elif platform == "Windows" and not GetOption('msvc'): + env = Environment(tools=['mingw'], ENV={'PATH' : os.environ['PATH']}) + else: +- env = Environment(tools=['default'], ENV={'PATH' : os.environ['PATH']}) ++ env = Environment(tools=['default'], ENV = os.environ) + + #attempt to automatically find cross compiler + if not tool and compilePlatform == "Linux" and compilePlatform != platform: diff --git a/pkgs/games/tibia/default.nix b/pkgs/games/tibia/default.nix index 1af750f462a..26b1f9c9da2 100644 --- a/pkgs/games/tibia/default.nix +++ b/pkgs/games/tibia/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { cp -r * $out/res patchelf --set-interpreter ${glibc.out}/lib/ld-linux.so.2 \ - --set-rpath ${stdenv.cc.cc}/lib:${libX11}/lib:${mesa}/lib \ + --set-rpath ${stdenv.cc.cc.lib}/lib:${libX11}/lib:${mesa}/lib \ "$out/res/Tibia" # We've patchelf'd the files. The main ‘Tibia’ binary is a bit diff --git a/pkgs/games/typespeed/default.nix b/pkgs/games/typespeed/default.nix index 4e99eff0065..55ebcc699a3 100644 --- a/pkgs/games/typespeed/default.nix +++ b/pkgs/games/typespeed/default.nix @@ -12,10 +12,11 @@ stdenv.mkDerivation { configureFlags = "--datadir=\${out}/share/"; - meta = { + meta = with stdenv.lib; { description = "A curses based typing game"; homepage = http://typespeed.sourceforge.net/; - license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.auntie ]; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = [ maintainers.auntie ]; }; } diff --git a/pkgs/misc/drivers/epson-escpr/default.nix b/pkgs/misc/drivers/epson-escpr/default.nix index faf13d4bcc3..2f126a9cfe4 100644 --- a/pkgs/misc/drivers/epson-escpr/default.nix +++ b/pkgs/misc/drivers/epson-escpr/default.nix @@ -1,15 +1,15 @@ { stdenv, fetchurl, cups }: let - version = "1.6.4"; + version = "1.6.5"; in stdenv.mkDerivation { name = "epson-escpr-${version}"; src = fetchurl { - url = "https://download3.ebz.epson.net/dsc/f/03/00/04/37/97/88177bc0dc7025905eae4a0da1e841408f82e33c/epson-inkjet-printer-escpr-1.6.4-1lsb3.2.tar.gz"; - sha256 = "76c66461a30be82b9cc37d663147a72f488fe060ef54578120602bb87a3f7754"; + url = "https://download3.ebz.epson.net/dsc/f/03/00/04/54/27/b73564748bfde7b7ce625e20d4a3257d447bec79/epson-inkjet-printer-escpr-1.6.5-1lsb3.2.tar.gz"; + sha256 = "1cd9e0506bf181e1476bd8305f1c6b8dbc4354eab9415d0d5529850856129e4c"; }; patches = [ ./cups-filter-ppd-dirs.patch ]; @@ -17,7 +17,7 @@ in buildInputs = [ cups ]; meta = with stdenv.lib; { - homepage = https://github.com/artuuge/NixOS-files/; + homepage = "http://download.ebz.epson.net/dsc/search/01/search/"; description = "ESC/P-R Driver (generic driver)"; longDescription = '' Epson Inkjet Printer Driver (ESC/P-R) for Linux and the diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix index cd8e906c817..3b39a685a2d 100644 --- a/pkgs/misc/drivers/hplip/default.nix +++ b/pkgs/misc/drivers/hplip/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, substituteAll , pkgconfig , cups, zlib, libjpeg, libusb1, pythonPackages, sane-backends, dbus, usbutils -, net_snmp, polkit +, net_snmp, openssl, polkit , bash, coreutils, utillinux , qtSupport ? true, qt4, pyqt4 , withPlugin ? false @@ -10,16 +10,16 @@ let name = "hplip-${version}"; - version = "3.15.11"; + version = "3.16.3"; src = fetchurl { url = "mirror://sourceforge/hplip/${name}.tar.gz"; - sha256 = "0vbw815a3wffp6l5m7j6f78xwp9pl1vn43ppyf0lp8q4vqdp3i1k"; + sha256 = "1501qdnkjp1ybgagy5188fmf6cgmj5555ygjl3543nlbwcp31lj2"; }; plugin = fetchurl { url = "http://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/${name}-plugin.run"; - sha256 = "00ii36y3914jd8zz4h6rn3xrf1w8szh1z8fngbl2qvs3qr9cm1m9"; + sha256 = "03q730w0kbh8i55i95vfb59yc0kjxz01hjpb3l05w2jw3hmfzvdp"; }; hplipState = @@ -59,6 +59,7 @@ stdenv.mkDerivation { sane-backends dbus net_snmp + openssl ] ++ stdenv.lib.optionals qtSupport [ qt4 ]; diff --git a/pkgs/misc/emulators/dosbox/default.nix b/pkgs/misc/emulators/dosbox/default.nix index d57ef5ae16d..53588cfd70b 100644 --- a/pkgs/misc/emulators/dosbox/default.nix +++ b/pkgs/misc/emulators/dosbox/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, SDL, makeDesktopItem }: +{ stdenv, fetchurl, SDL, makeDesktopItem, mesa }: stdenv.mkDerivation rec { name = "dosbox-0.74"; @@ -18,10 +18,10 @@ stdenv.mkDerivation rec { patchFlags = "-p0"; - buildInputs = [ SDL ]; - hardeningDisable = [ "format" ]; + buildInputs = [ SDL mesa ]; + desktopItem = makeDesktopItem { name = "dosbox"; exec = "dosbox"; diff --git a/pkgs/misc/emulators/ppsspp/default.nix b/pkgs/misc/emulators/ppsspp/default.nix index 439566de0ca..87ae977c7cc 100644 --- a/pkgs/misc/emulators/ppsspp/default.nix +++ b/pkgs/misc/emulators/ppsspp/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, zlib, libpng, qt4, pkgconfig +{ stdenv, fetchgit, zlib, libpng, qt4, qmake4Hook, pkgconfig , withGamepads ? true, SDL # SDL is used for gamepad functionality }: @@ -19,10 +19,10 @@ stdenv.mkDerivation rec{ sha256 = "71dfa0be045f31969b1d6ab4f1adf6a208f9ef4834d708bc7bf6d9195efb5f80"; }; - buildInputs = [ zlib libpng pkgconfig qt4 ] + buildInputs = [ zlib libpng pkgconfig qt4 qmake4Hook ] ++ (if withGamepads then [ SDL ] else [ ]); - configurePhase = "cd Qt && qmake PPSSPPQt.pro"; + preConfigure = "cd Qt"; installPhase = "mkdir -p $out/bin && cp ppsspp $out/bin"; meta = { diff --git a/pkgs/misc/emulators/wine/base.nix b/pkgs/misc/emulators/wine/base.nix index 804eb0bb304..60fb8e11391 100644 --- a/pkgs/misc/emulators/wine/base.nix +++ b/pkgs/misc/emulators/wine/base.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) { NIX_LDFLAGS = map (path: "-rpath " + path) ( map (x: "${x}/lib") ([ stdenv.cc.cc ] ++ (map (x: x.lib or x.out) buildInputs)) # libpulsecommon.so is linked but not found otherwise - ++ lib.optionals pulseaudioSupport (map (x: "${x}/lib/pulseaudio") (toBuildInputs pkgArches (pkgs: [ pkgs.libpulseaudio ]))) + ++ lib.optionals pulseaudioSupport (map (x: "${x.lib or x.out}/lib/pulseaudio") (toBuildInputs pkgArches (pkgs: [ pkgs.libpulseaudio ]))) ); # Don't shrink the ELF RPATHs in order to keep the extra RPATH diff --git a/pkgs/misc/ghostscript/default.nix b/pkgs/misc/ghostscript/default.nix index 06ffc45cecf..93e83a375a4 100644 --- a/pkgs/misc/ghostscript/default.nix +++ b/pkgs/misc/ghostscript/default.nix @@ -126,6 +126,8 @@ stdenv.mkDerivation rec { install_name_tool -change libgs.dylib.${version} $out/lib/libgs.dylib.${version} $out/bin/gs ''; + passthru = { inherit version; }; + meta = { homepage = "http://www.ghostscript.com/"; description = "PostScript interpreter (mainline version)"; diff --git a/pkgs/misc/seafile-shared/default.nix b/pkgs/misc/seafile-shared/default.nix index 2b3b05ceda1..16464ab27e3 100644 --- a/pkgs/misc/seafile-shared/default.nix +++ b/pkgs/misc/seafile-shared/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { - version = "4.4.2"; + version = "5.0.7"; name = "seafile-shared-${version}"; src = fetchurl { url = "https://github.com/haiwen/seafile/archive/v${version}.tar.gz"; - sha256 = "00sflvyap3nw38qblpagp2japgp83sqc5s4r336mi6475grgmnyi"; + sha256 = "ec166c86a41e7ab3b1ae97a56326ab4a2b1ec38686486b956c3d153b8023c670"; }; buildInputs = [ which automake autoconf pkgconfig libtool vala python intltool fuse ]; diff --git a/pkgs/misc/themes/vertex/default.nix b/pkgs/misc/themes/vertex/default.nix index ea79426d47e..7c6778a40d5 100644 --- a/pkgs/misc/themes/vertex/default.nix +++ b/pkgs/misc/themes/vertex/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "theme-vertex-${version}"; - version = "20150923"; + version = "20160329"; src = fetchFromGitHub { owner = "horst3180"; repo = "Vertex-theme"; rev = version; - sha256 = "0jsdnrw7sgrb7s4byv80y9c782gd6vbq0xsrrhwkflfnxcldvz4r"; + sha256 = "1zafnbxn9hgi4lmi254iw9jyhifcqijxa7cymwjpyy0jfa6sm1qj"; }; buildInputs = [ autoreconfHook gtk3 pkgconfig ]; diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 0ad4db97635..e30073339fd 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1,8 +1,8 @@ # TODO check that no license information gets lost { fetchurl, bash, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip -, which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip +, which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages_38, zip , vim_configurable, vimPlugins, xkb_switch, git -, Cocoa +, Cocoa ? null }: let @@ -453,12 +453,12 @@ rec { }; - vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2016-04-15"; + vim-go = buildVimPluginFrom2Nix { + name = "vim-go-2016-05-01"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "b3fddb60fdab980d1fc339fbcbc879abd6cbf524"; - sha256 = "1ggjisbc187kyzdizqffkicjdkz67mhgpxmqjcvzaq2wc2w44aja"; + rev = "91ffc410832d0b027f2258c7a91dbbfa378bf71a"; + sha256 = "00793ick6vralihvmmx8np7japxrd3jkbn5ggqzq0ymgr508gxj4"; }; dependencies = []; @@ -938,17 +938,17 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2016-04-10"; + name = "youcompleteme-2016-04-28"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "f67033c990ff5d37ef91ba02da94f6d7409e1c5a"; - sha256 = "0hwpbj5hr9d26xdcjfxbssyrsl4926c8g999jzpah0sls1r3y2f0"; + rev = "cb5756943fdd3ba062f101a5aba34acdd34d1356"; + sha256 = "1fg85mf4x48g6jpn9idjp0k2nz1i34lrx1bxbvp0189ph1xfq7jj"; }; dependencies = []; buildInputs = [ python go cmake - (if stdenv.isDarwin then llvmPackages.clang else llvmPackages.clang-unwrapped) - llvmPackages.llvm + (if stdenv.isDarwin then llvmPackages_38.clang else llvmPackages_38.clang-unwrapped) + llvmPackages_38.llvm ] ++ stdenv.lib.optional stdenv.isDarwin Cocoa; buildPhase = '' @@ -1682,4 +1682,25 @@ rec { }; + vim-pandoc-after = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-pandoc-after-2015-06-01"; + src = fetchgit { + url = "git://github.com/vim-pandoc/vim-pandoc-after"; + rev = "4377665e5c98f29ea838deb3b942200b8dd096ef"; + sha256 = "1di82bgi7sjn7lmma7g9zbdraamsy9c6g7ms6jgglfvynbbvmgg0"; + }; + dependencies = []; + + }; + + vimpreviewpandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vimpreviewpandoc-2016-03-03"; + src = fetchgit { + url = "git://github.com/tex/vimpreviewpandoc"; + rev = "7c05b4a7bf55a361c7ac33e6e05f7965daed5889"; + sha256 = "12xnnsvdsl2wc7fy537pdk6s3nfxw46g1l4xqr0fxzhz712nczk5"; + }; + dependencies = []; + + }; } diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 5102d6cde1c..2b8d71b8760 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -68,6 +68,7 @@ "github:shougo/vimshell.vim" "github:sjl/gundo.vim" "github:takac/vim-hardtime" +"github:tex/vimpreviewpandoc" "github:thinca/vim-quickrun" "github:tomasr/molokai" "github:tpope/vim-eunuch" @@ -77,6 +78,7 @@ "github:vim-airline/vim-airline-themes" "github:vim-pandoc/vim-pandoc" "github:vim-pandoc/vim-pandoc-syntax" +"github:vim-pandoc/vim-pandoc-after" "github:vim-scripts/Colour-Sampler-Pack" "github:vim-scripts/a.vim" "github:vim-scripts/align" diff --git a/pkgs/os-specific/darwin/apple-sdk/default.nix b/pkgs/os-specific/darwin/apple-sdk/default.nix index c18d3f6cc6d..c1e09c20111 100644 --- a/pkgs/os-specific/darwin/apple-sdk/default.nix +++ b/pkgs/os-specific/darwin/apple-sdk/default.nix @@ -66,7 +66,18 @@ let mkdir -p "$dest" pushd "$dest" >/dev/null - cp -R "${sdk}/Library/Frameworks/$path/Versions/$current/Headers" . + # Keep track of if this is a child or a child rescue as with + # ApplicationServices in the 10.9 SDK + local isChild + + if [ -d "${sdk}/Library/Frameworks/$path/Versions/$current/Headers" ]; then + isChild=1 + cp -R "${sdk}/Library/Frameworks/$path/Versions/$current/Headers" . + else + isChild=0 + current="$(readlink "/System/Library/Frameworks/$name.framework/Versions/Current")" + cp -R "${sdk}/Library/Frameworks/$name.framework/Versions/$current/Headers" . + fi ln -s -L "/System/Library/Frameworks/$path/Versions/$current/$name" ln -s -L "/System/Library/Frameworks/$path/Versions/$current/Resources" @@ -74,8 +85,17 @@ let ln -s "/System/Library/Frameworks/$path/module.map" fi - pushd "${sdk}/Library/Frameworks/$path/Versions/$current" >/dev/null + if [ $isChild -eq 1 ]; then + pushd "${sdk}/Library/Frameworks/$path/Versions/$current" >/dev/null + else + pushd "${sdk}/Library/Frameworks/$name.framework/Versions/$current" >/dev/null + fi local children=$(echo Frameworks/*.framework) + if [ "$name" == "ApplicationServices" ]; then + # Fixing up ApplicationServices which is missing + # CoreGraphics in the 10.9 SDK + children="$children Frameworks/CoreGraphics.framework" + fi popd >/dev/null for child in $children; do diff --git a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix index 750adfe3cbf..3ecb3511422 100644 --- a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix +++ b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix @@ -48,7 +48,7 @@ with frameworks; with libs; { ForceFeedback = [ CF IOKit ]; Foundation = [ CF libobjc Security ApplicationServices SystemConfiguration ]; GLKit = [ CF ]; - GLUT = [ GL OpenGL ]; + GLUT = [ OpenGL ]; GSS = []; GameController = []; GameKit = [ Foundation ]; diff --git a/pkgs/os-specific/darwin/cf-private/setup-hook.sh b/pkgs/os-specific/darwin/cf-private/setup-hook.sh index 7594c07977b..ae9ed5d1584 100644 --- a/pkgs/os-specific/darwin/cf-private/setup-hook.sh +++ b/pkgs/os-specific/darwin/cf-private/setup-hook.sh @@ -1,5 +1,5 @@ prependSearchPath() { - NIX_CFLAGS_COMPILE="-F@out@/Library/Frameworks ${NIX_CFLAGS_COMPILE/"-F@out@/Library/Frameworks"/}" + NIX_CFLAGS_COMPILE="-F@out@/Library/Frameworks ${NIX_CFLAGS_COMPILE}" } linkWithRealCF() { diff --git a/pkgs/os-specific/linux/acpid/default.nix b/pkgs/os-specific/linux/acpid/default.nix index 1746c938444..aa8b25560e6 100644 --- a/pkgs/os-specific/linux/acpid/default.nix +++ b/pkgs/os-specific/linux/acpid/default.nix @@ -1,21 +1,18 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "acpid-2.0.25"; + name = "acpid-2.0.27"; src = fetchurl { url = "mirror://sourceforge/acpid2/${name}.tar.xz"; - sha256 = "0s2wg84x6pnrkf7i7lpzw2rilq4mj50vwb7p2b2n5hdyfa00lw0b"; + sha256 = "05m6scbdzi2fb8zzi01c11a10pr0qb1gzccz4bbxj4fcacz24342"; }; - preBuild = '' - makeFlagsArray=(BINDIR=$out/bin SBINDIR=$out/sbin MAN8DIR=$out/share/man/man8) - ''; - - meta = { + meta = with stdenv.lib; { homepage = http://tedfelix.com/linux/acpid-netlink.html; description = "A daemon for delivering ACPI events to userspace programs"; - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; }; } diff --git a/pkgs/os-specific/linux/android-udev-rules/default.nix b/pkgs/os-specific/linux/android-udev-rules/default.nix index 5e3fb1c2ba0..be2b8026817 100644 --- a/pkgs/os-specific/linux/android-udev-rules/default.nix +++ b/pkgs/os-specific/linux/android-udev-rules/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "android-udev-rules-${version}"; - version = "2016-03-03"; + version = "2016-04-26"; src = fetchFromGitHub { owner = "M0Rf30"; repo = "android-udev-rules"; - rev = "a6ec1239173bfbe2082211261528e834af9fbb64"; - sha256 = "11g7m8jjxxzyrbsd9g7cbk6bwy3c4f76pdy4lvdx68xrbsl2rvmj"; + rev = "9af6e552016392db35191142b599a5199cf8a9fa"; + sha256 = "1lvh7md6qz91q8jy9phnfxlb19s104lvsk75a5r07d8bjc4w9pxb"; }; installPhase = '' diff --git a/pkgs/os-specific/linux/blktrace/default.nix b/pkgs/os-specific/linux/blktrace/default.nix new file mode 100644 index 00000000000..3871630758c --- /dev/null +++ b/pkgs/os-specific/linux/blktrace/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, libaio }: + +stdenv.mkDerivation { + name = "blktrace-1.1.0"; + + # Official source + # "git://git.kernel.org/pub/scm/linux/kernel/git/axboe/blktrace.git" + src = fetchurl { + url = "http://brick.kernel.dk/snaps/blktrace-1.1.0.tar.bz2"; + sha256 = "15cj9aki7z5i5y6bnchqry6yp40r4lmgmam6ar5gslnx0smgm8jl"; + }; + + buildInputs = [ libaio ]; + + preConfigure = '' + sed s,/usr/local,$out, -i Makefile + ''; + + meta = { + description = "Block layer IO tracing mechanism"; + license = stdenv.lib.licenses.gpl2; + }; +} diff --git a/pkgs/os-specific/linux/consoletools/default.nix b/pkgs/os-specific/linux/consoletools/default.nix index 0a799775551..b9f1ee90fe9 100644 --- a/pkgs/os-specific/linux/consoletools/default.nix +++ b/pkgs/os-specific/linux/consoletools/default.nix @@ -10,14 +10,17 @@ stdenv.mkDerivation rec { }; buildInputs = [ SDL ]; + makeFlags = [ "DESTDIR=$(out)"]; + installFlags = ''PREFIX=""''; + meta = with stdenv.lib; { homepage = https://sourceforge.net/projects/linuxconsole/; description = "A set of tools for joysticks and serial peripherals"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ pSub ]; + maintainers = with maintainers; [ pSub ebzzry ]; longDescription = '' The included tools are: diff --git a/pkgs/os-specific/linux/dietlibc/builder.sh b/pkgs/os-specific/linux/dietlibc/builder.sh deleted file mode 100644 index ee0cb2b7522..00000000000 --- a/pkgs/os-specific/linux/dietlibc/builder.sh +++ /dev/null @@ -1,36 +0,0 @@ -source $stdenv/setup - -makeFlags="prefix=$out" -installFlags="prefix=$out" - -postInstall() { - (cd $out && ln -s lib-* lib) - (cd $out/lib && ln -s start.o crt1.o) - - # Fake crti.o and crtn.o. - touch empty.c - gcc -c empty.c -o $out/lib/crti.o - gcc -c empty.c -o $out/lib/crtn.o - - # Copy from Glibc; binutils wants it. - cp $glibc/include/sys/user.h $out/include/sys/ - - # Remove , it makes some packages think we can load - # dynamic libraries. - rm $out/include/dlfcn.h - - # Dietlibc has a asm include directory, whose presence makes the - # asm directory of kernel-headers unreachable. So make symlinks - # from the dietlibc asm to the kernel-headers asm. - ln -s $kernelHeaders/include/asm/* $out/include/asm/ || true - - # Make asm-x86_64 etc. available. - for i in $kernelHeaders/include/asm-*; do - ln -s $i $out/include/ - done - - # Idem for include/linux. - ln -s $kernelHeaders/include/linux/* $out/include/linux/ || true -} - -genericBuild diff --git a/pkgs/os-specific/linux/dietlibc/default.nix b/pkgs/os-specific/linux/dietlibc/default.nix deleted file mode 100644 index 12ffbfbc5ce..00000000000 --- a/pkgs/os-specific/linux/dietlibc/default.nix +++ /dev/null @@ -1,46 +0,0 @@ -{stdenv, fetchurl, glibc}: - -assert stdenv.isLinux; - -stdenv.mkDerivation { - name = "dietlibc-0.30"; - src = fetchurl { - url = mirror://kernel/linux/libs/dietlibc/dietlibc-0.30.tar.bz2; - md5 = "2465d652fff6f1fad3da3b98e60e83c9"; - }; - builder = ./builder.sh; - - inherit glibc; - kernelHeaders = glibc.linuxHeaders; - - hardeningDisable = [ "stackprotector" ] - ++ stdenv.lib.optional stdenv.isi686 "pic"; - - patches = [ - - # dietlibc's sigcontext.h provides a macro called PC(), which is - # rather intrusive (e.g., binutils fails to compile because of - # it). Rename it. - ./pc.patch - - # wchar.h declares lots of functions that don't actually exist. - # Remove them. - ./no-wchar.patch - - # Fix to get DNS resolution to work on 64-bit platforms. Taken - # from 0.31 CVS. - ./dns64.patch - - # Get lseek64 working on x86_64. From - # http://svn.annvix.org/cgi-bin/viewvc.cgi/packages/releases/2.0-CURRENT/dietlibc/SOURCES - ./x86_64-lseek64.patch - #./x86_64-stat64.patch - - ]; - - meta = { - homepage = http://www.fefe.de/dietlibc/; - description = "A small implementation of the C library"; - license = "GPL"; - }; -} diff --git a/pkgs/os-specific/linux/dietlibc/dns64.patch b/pkgs/os-specific/linux/dietlibc/dns64.patch deleted file mode 100644 index 47d54d1d16b..00000000000 --- a/pkgs/os-specific/linux/dietlibc/dns64.patch +++ /dev/null @@ -1,109 +0,0 @@ -Only in dietlibc-0.30: CHANGES.orig -diff -rc dietlibc-0.30-orig/libcruft/dnscruft2.c dietlibc-0.30/libcruft/dnscruft2.c -*** dietlibc-0.30-orig/libcruft/dnscruft2.c 2005-05-01 22:08:25.000000000 +0200 ---- dietlibc-0.30/libcruft/dnscruft2.c 2007-01-22 15:32:18.000000000 +0100 -*************** -*** 5,11 **** - #include - #include - #include -- #include - #include - #include - #include ---- 5,10 ---- -diff -rc dietlibc-0.30-orig/libcruft/dnscruft.c dietlibc-0.30/libcruft/dnscruft.c -*** dietlibc-0.30-orig/libcruft/dnscruft.c 2006-06-18 20:32:35.000000000 +0200 ---- dietlibc-0.30/libcruft/dnscruft.c 2007-01-22 15:32:18.000000000 +0100 -*************** -*** 45,53 **** - tmp=socket(PF_INET6,SOCK_DGRAM,IPPROTO_UDP); - if (tmp<0) return; - fcntl(tmp,F_SETFD,FD_CLOEXEC); - si.sin6_family=AF_INET6; -- si.sin6_port=0; -- memset(&si.sin6_addr,0,16); - if (bind(tmp,(struct sockaddr*)&si,sizeof(si))) return; - __dns_fd6=tmp; - } ---- 45,52 ---- - tmp=socket(PF_INET6,SOCK_DGRAM,IPPROTO_UDP); - if (tmp<0) return; - fcntl(tmp,F_SETFD,FD_CLOEXEC); -+ memset(&si,0,sizeof(si)); - si.sin6_family=AF_INET6; - if (bind(tmp,(struct sockaddr*)&si,sizeof(si))) return; - __dns_fd6=tmp; - } -diff -rc dietlibc-0.30-orig/libcruft/res_mkquery.c dietlibc-0.30/libcruft/res_mkquery.c -*** dietlibc-0.30-orig/libcruft/res_mkquery.c 2004-11-10 18:45:17.000000000 +0100 ---- dietlibc-0.30/libcruft/res_mkquery.c 2007-01-22 15:32:18.000000000 +0100 -*************** -*** 42,51 **** - int res_mkquery(int op, const char *dname, int class, int type, char* data, - int datalen, const unsigned char* newrr, char* buf, int buflen) { - unsigned char packet[512]; -! unsigned long len=0; -! memmove(packet,dnspacket,12); - if ((_res.options&RES_RECURSE)==0) packet[2]=0; -- *(unsigned short*)packet=rand(); - { - unsigned char* x; - const char* y,* tmp; ---- 42,55 ---- - int res_mkquery(int op, const char *dname, int class, int type, char* data, - int datalen, const unsigned char* newrr, char* buf, int buflen) { - unsigned char packet[512]; -! unsigned long len; -! -! memcpy(packet,dnspacket,12); -! len=rand(); -! packet[0]=len; -! packet[1]=len>>8; -! len=0; - if ((_res.options&RES_RECURSE)==0) packet[2]=0; - { - unsigned char* x; - const char* y,* tmp; -diff -rc dietlibc-0.30-orig/libcruft/res_query.c dietlibc-0.30/libcruft/res_query.c -*** dietlibc-0.30-orig/libcruft/res_query.c 2005-10-14 17:37:59.000000000 +0200 ---- dietlibc-0.30/libcruft/res_query.c 2007-01-22 15:32:18.000000000 +0100 -*************** -*** 99,105 **** - duh[1].fd=pnpfd; - } else { - duh[1].fd=-1; -! duh[1].revents=0; - } - - #endif ---- 99,105 ---- - duh[1].fd=pnpfd; - } else { - duh[1].fd=-1; -! duh[1].events=0; - } - - #endif -diff -rc dietlibc-0.30-orig/syscalls.s/__guard.S dietlibc-0.30/syscalls.s/__guard.S -*** dietlibc-0.30-orig/syscalls.s/__guard.S 2006-04-07 17:33:20.000000000 +0200 ---- dietlibc-0.30/syscalls.s/__guard.S 2007-01-22 15:32:18.000000000 +0100 -*************** -*** 1,3 **** ---- 1,4 ---- -+ #include - .data - .type __guard,@object - .global __guard -*************** -*** 5,9 **** ---- 6,14 ---- - .global __stack_chk_guard - __guard: - __stack_chk_guard: -+ #if __WORDSIZE == 64 -+ .quad 0xaff00 -+ #else - .long 0xaff00 -+ #endif - diff --git a/pkgs/os-specific/linux/dietlibc/no-wchar.patch b/pkgs/os-specific/linux/dietlibc/no-wchar.patch deleted file mode 100644 index 92be2cd2fea..00000000000 --- a/pkgs/os-specific/linux/dietlibc/no-wchar.patch +++ /dev/null @@ -1,77 +0,0 @@ -diff -rc dietlibc-0.30-orig/include/wchar.h dietlibc-0.30/include/wchar.h -*** dietlibc-0.30-orig/include/wchar.h 2005-09-21 09:33:08.000000000 +0200 ---- dietlibc-0.30/include/wchar.h 2006-10-20 15:04:04.000000000 +0200 -*************** -*** 30,99 **** - unsigned long sofar; - } mbstate_t; - -- wint_t btowc(int); -- wint_t fgetwc(FILE *); -- wchar_t* fgetws(wchar_t *__restrict__, int, FILE *__restrict__); -- wint_t fputwc(wchar_t, FILE *); -- int fputws(const wchar_t *__restrict__, FILE *__restrict__); -- int fwide(FILE *, int); -- int fwprintf(FILE *__restrict__, const wchar_t *__restrict__, ...); -- int fwscanf(FILE *__restrict__, const wchar_t *__restrict__, ...); -- wint_t getwc(FILE *); -- wint_t getwchar(void); -- -- size_t mbrlen(const char *__restrict__, size_t, mbstate_t *__restrict__); -- size_t mbrtowc(wchar_t *__restrict__, const char *__restrict__, size_t, mbstate_t *__restrict__); -- int mbsinit(const mbstate_t *); -- size_t mbsrtowcs(wchar_t *__restrict__, const char **__restrict__, size_t, mbstate_t *__restrict__); -- wint_t putwc(wchar_t, FILE *); -- wint_t putwchar(wchar_t); -- int swprintf(wchar_t *__restrict__, size_t, const wchar_t *__restrict__, ...); -- int swscanf(const wchar_t *__restrict__, const wchar_t *__restrict__, ...); -- -- wint_t ungetwc(wint_t, FILE *); -- int vfwprintf(FILE *__restrict__, const wchar_t *__restrict__, va_list); -- int vfwscanf(FILE *__restrict__, const wchar_t *__restrict__, va_list); -- int vwprintf(const wchar_t *__restrict__, va_list); -- int vswprintf(wchar_t *__restrict__, size_t, const wchar_t *__restrict__, va_list); -- int vswscanf(const wchar_t *__restrict__, const wchar_t *__restrict__, va_list); -- int vwscanf(const wchar_t *__restrict__, va_list); -- size_t wcrtomb(char *__restrict__, wchar_t, mbstate_t *__restrict__); -- wchar_t *wcscat(wchar_t *__restrict__, const wchar_t *__restrict__); -- wchar_t *wcschr(const wchar_t *, wchar_t); -- int wcscmp(const wchar_t *, const wchar_t *); -- int wcscoll(const wchar_t *, const wchar_t *); -- wchar_t* wcscpy(wchar_t *__restrict__, const wchar_t *__restrict__); -- size_t wcscspn(const wchar_t *, const wchar_t *); -- size_t wcsftime(wchar_t *__restrict__, size_t, const wchar_t *__restrict__, const struct tm *__restrict__); -- size_t wcslen(const wchar_t *) __pure; -- wchar_t *wcsncat(wchar_t *__restrict__, const wchar_t *__restrict__, size_t); -- int wcsncmp(const wchar_t *, const wchar_t *, size_t); -- wchar_t *wcsncpy(wchar_t *__restrict__, const wchar_t *__restrict__, size_t); -- wchar_t *wcspbrk(const wchar_t *, const wchar_t *); -- wchar_t *wcsrchr(const wchar_t *, wchar_t); -- size_t wcsrtombs(char *__restrict__, const wchar_t **__restrict__, size_t, mbstate_t *__restrict__); -- size_t wcsspn(const wchar_t *, const wchar_t *); -- wchar_t *wcsstr(const wchar_t *__restrict__, const wchar_t *__restrict__); -- double wcstod(const wchar_t *__restrict__, wchar_t **__restrict__); -- float wcstof(const wchar_t *__restrict__, wchar_t **__restrict__); -- wchar_t *wcstok(wchar_t *__restrict__, const wchar_t *__restrict__, wchar_t **__restrict__); -- long wcstol(const wchar_t *__restrict__, wchar_t **__restrict__, int); -- long double wcstold(const wchar_t *__restrict__, wchar_t **__restrict__); -- long long wcstoll(const wchar_t *__restrict__, wchar_t **__restrict__, int); -- unsigned long wcstoul(const wchar_t *__restrict__, wchar_t **__restrict__, int); -- unsigned long long wcstoull(const wchar_t *__restrict__, wchar_t **__restrict__, int); -- -- size_t wcsxfrm(wchar_t *__restrict__, const wchar_t *__restrict__, size_t); -- int wctob(wint_t); -- -- wchar_t *wmemchr(const wchar_t *, wchar_t, size_t); -- int wmemcmp(const wchar_t *, const wchar_t *, size_t); -- wchar_t *wmemcpy(wchar_t *__restrict__, const wchar_t *__restrict__, size_t); -- wchar_t *wmemmove(wchar_t *, const wchar_t *, size_t); -- wchar_t *wmemset(wchar_t *, wchar_t, size_t); -- int wprintf(const wchar_t *__restrict__, ...); -- int wscanf(const wchar_t *__restrict__, ...); -- - __END_DECLS - - #endif ---- 30,35 ---- -Only in dietlibc-0.30/include: wchar.h~ diff --git a/pkgs/os-specific/linux/dietlibc/pc.patch b/pkgs/os-specific/linux/dietlibc/pc.patch deleted file mode 100644 index fd274d24f03..00000000000 --- a/pkgs/os-specific/linux/dietlibc/pc.patch +++ /dev/null @@ -1,78 +0,0 @@ -diff -rc dietlibc-0.30-orig/include/asm/arm-sigcontext.h dietlibc-0.30/include/asm/arm-sigcontext.h -*** dietlibc-0.30-orig/include/asm/arm-sigcontext.h 2002-05-09 03:05:10.000000000 +0200 ---- dietlibc-0.30/include/asm/arm-sigcontext.h 2006-10-19 12:40:30.000000000 +0200 -*************** -*** 1,5 **** - -! #define PC(ctx) (ctx.arm_pc) - - /* - * Signal context structure - contains all info to do with the state ---- 1,5 ---- - -! #define __DIETLIBC_PC(ctx) (ctx.arm_pc) - - /* - * Signal context structure - contains all info to do with the state -diff -rc dietlibc-0.30-orig/include/asm/i386-sigcontext.h dietlibc-0.30/include/asm/i386-sigcontext.h -*** dietlibc-0.30-orig/include/asm/i386-sigcontext.h 2005-09-21 09:33:08.000000000 +0200 ---- dietlibc-0.30/include/asm/i386-sigcontext.h 2006-10-19 12:40:41.000000000 +0200 -*************** -*** 38,44 **** - }; - - #define X86_FXSR_MAGIC 0x0000 -! #define PC(ctx) (ctx.eip) - - struct sigcontext { - __u16 gs, __gsh; ---- 38,44 ---- - }; - - #define X86_FXSR_MAGIC 0x0000 -! #define __DIETLIBC_PC(ctx) (ctx.eip) - - struct sigcontext { - __u16 gs, __gsh; -diff -rc dietlibc-0.30-orig/include/asm/ia64-sigcontext.h dietlibc-0.30/include/asm/ia64-sigcontext.h -*** dietlibc-0.30-orig/include/asm/ia64-sigcontext.h 2002-07-20 18:47:48.000000000 +0200 ---- dietlibc-0.30/include/asm/ia64-sigcontext.h 2006-10-19 12:39:40.000000000 +0200 -*************** -*** 1,6 **** - #include - -! #define PC(ctx) (ctx.sc_ip) - - struct sigcontext { - unsigned long sc_flags; ---- 1,6 ---- - #include - -! #define __DIETLIBC_PC(ctx) (ctx.sc_ip) - - struct sigcontext { - unsigned long sc_flags; -diff -rc dietlibc-0.30-orig/profiling/profil.c dietlibc-0.30/profiling/profil.c -*** dietlibc-0.30-orig/profiling/profil.c 2002-04-08 00:13:53.000000000 +0200 ---- dietlibc-0.30/profiling/profil.c 2006-10-19 12:40:58.000000000 +0200 -*************** -*** 43,51 **** - static void - profiler (int signal, struct sigcontext ctx) - { -! size_t s = PC(ctx)-low_pc; - (void)signal; -! if ((PC(ctx)) < low_pc) return; - s >>= 1; - if (s < maxhits) - ++buffer[s]; ---- 43,51 ---- - static void - profiler (int signal, struct sigcontext ctx) - { -! size_t s = __DIETLIBC_PC(ctx)-low_pc; - (void)signal; -! if ((__DIETLIBC_PC(ctx)) < low_pc) return; - s >>= 1; - if (s < maxhits) - ++buffer[s]; diff --git a/pkgs/os-specific/linux/dietlibc/x86_64-lseek64.patch b/pkgs/os-specific/linux/dietlibc/x86_64-lseek64.patch deleted file mode 100644 index 47187a310d2..00000000000 --- a/pkgs/os-specific/linux/dietlibc/x86_64-lseek64.patch +++ /dev/null @@ -1,6 +0,0 @@ ---- dietlibc-0.27/x86_64/lseek64.S.x86_64-lseek64 2005-03-29 08:46:09.074515293 -0500 -+++ dietlibc-0.27/x86_64/lseek64.S 2005-03-29 08:46:09.074515293 -0500 -@@ -0,0 +1,3 @@ -+#include "syscalls.h" -+ -+syscall_weak(lseek,lseek64,__libc_lseek64) diff --git a/pkgs/os-specific/linux/dpdk/default.nix b/pkgs/os-specific/linux/dpdk/default.nix new file mode 100644 index 00000000000..7ca71a695e0 --- /dev/null +++ b/pkgs/os-specific/linux/dpdk/default.nix @@ -0,0 +1,41 @@ +{ stdenv, lib, kernel, fetchurl }: + +assert lib.versionAtLeast kernel.version "3.18"; + +stdenv.mkDerivation rec { + name = "dpdk-${version}-${kernel.version}"; + version = "16.04"; + + src = fetchurl { + url = "http://dpdk.org/browse/dpdk/snapshot/dpdk-${version}.tar.gz"; + sha256 = "0yrz3nnhv65v2jzz726bjswkn8ffqc1sr699qypc9m78qrdljcfn"; + }; + + RTE_KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"; + RTE_TARGET = "x86_64-native-linuxapp-gcc"; + + enableParallelBuilding = true; + outputs = [ "out" "examples" ]; + + buildPhase = '' + make T=x86_64-native-linuxapp-gcc config + make T=x86_64-native-linuxapp-gcc install + make T=x86_64-native-linuxapp-gcc examples + ''; + + installPhase = '' + mkdir $out + cp -pr x86_64-native-linuxapp-gcc/{app,lib,include,kmod} $out/ + + mkdir $examples + cp -pr examples/* $examples/ + ''; + + meta = with stdenv.lib; { + description = "Set of libraries and drivers for fast packet processing"; + homepage = http://dpdk.org/; + license = with licenses; [ lgpl21 gpl2 bsd2 ]; + platforms = [ "x86_64-linux" ]; + maintainers = [ maintainers.iElectric ]; + }; +} diff --git a/pkgs/os-specific/linux/e3cfsprogs/builder.sh b/pkgs/os-specific/linux/e3cfsprogs/builder.sh deleted file mode 100755 index c3352ec84ae..00000000000 --- a/pkgs/os-specific/linux/e3cfsprogs/builder.sh +++ /dev/null @@ -1,14 +0,0 @@ -source $stdenv/setup - -tar -zxvf $src -cd e3cfsprogs*/ - -mkdir build; -cd build; -../configure --prefix=$out -make -#make check #almost all checks fail... maybe they have to be done on a ext3cow fs ??? -make install - -#we must rename according to the manual of e3cfprogs -cp misc/mke2fs $out/sbin/mkfs.ext3cow diff --git a/pkgs/os-specific/linux/e3cfsprogs/default.nix b/pkgs/os-specific/linux/e3cfsprogs/default.nix deleted file mode 100644 index ef25d59a9df..00000000000 --- a/pkgs/os-specific/linux/e3cfsprogs/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{stdenv, fetchurl, gettext}: - -stdenv.mkDerivation { - name = "e3cfsprogs-1.39"; - builder = ./builder.sh; - - patches = [ ./e3cfsprogs-1.39_bin_links.patch ./e3cfsprogs-1.39_etc.patch ]; - - src = fetchurl { - url = http://ext3cow.com/e3cfsprogs/e3cfsprogs-1.39.tgz; - sha256 = "8dd3de546aeb1ae42fb05409aeb724a145fe9aa1dbe1115441c2297c9d48cf31"; - }; - - configureFlags ="--enable-dynamic-e2fsck --enable-elf-shlibs"; - buildInputs = [gettext]; - preInstall = "installFlagsArray=('LN=ln -s')"; - postInstall = "make install-libs"; -} - -#note that ext3cow requires the ext3cow kernel patch !!!! diff --git a/pkgs/os-specific/linux/e3cfsprogs/e3cfsprogs-1.39_bin_links.patch b/pkgs/os-specific/linux/e3cfsprogs/e3cfsprogs-1.39_bin_links.patch deleted file mode 100644 index cf8c819c97a..00000000000 --- a/pkgs/os-specific/linux/e3cfsprogs/e3cfsprogs-1.39_bin_links.patch +++ /dev/null @@ -1,111 +0,0 @@ -diff -Naur e3cfsprogs-1.39/config/config.guess e3cfsprogs-1.39_mod/config/config.guess ---- e3cfsprogs-1.39/config/config.guess 2006-04-10 00:34:21.000000000 +0200 -+++ e3cfsprogs-1.39_mod/config/config.guess 2007-07-20 16:28:58.000000000 +0200 -@@ -319,7 +319,7 @@ - echo sparc-icl-nx6 - exit ;; - DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) -- case `/usr/bin/uname -p` in -+ case `uname -p` in - sparc) echo sparc-icl-nx7; exit ;; - esac ;; - sun4H:SunOS:5.*:*) -@@ -460,7 +460,7 @@ - exit ;; - AViiON:dgux:*:*) - # DG/UX returns AViiON for all architectures -- UNAME_PROCESSOR=`/usr/bin/uname -p` -+ UNAME_PROCESSOR=`uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] - then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ -@@ -1054,7 +1054,7 @@ - exit ;; - i*86:*:5:[678]*) - # UnixWare 7.x, OpenUNIX and OpenServer 6. -- case `/bin/uname -X | grep "^Machine"` in -+ case `uname -X | grep "^Machine"` in - *486*) UNAME_MACHINE=i486 ;; - *Pentium) UNAME_MACHINE=i586 ;; - *Pent*|*Celeron) UNAME_MACHINE=i686 ;; -@@ -1065,14 +1065,14 @@ - if test -f /usr/options/cb.name; then - UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then -- UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` -- (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 -- (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ -+ elif uname -X 2>/dev/null >/dev/null ; then -+ UNAME_REL=`(uname -X|grep Release|sed -e 's/.*= //')` -+ (uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 -+ (uname -X|grep '^Machine.*Pentium' >/dev/null) \ - && UNAME_MACHINE=i586 -- (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ -+ (uname -X|grep '^Machine.*Pent *II' >/dev/null) \ - && UNAME_MACHINE=i686 -- (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ -+ (uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ - && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL - else -@@ -1114,12 +1114,12 @@ - OS_REL='' - test -r /etc/.relid \ - && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` -- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ -+ uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } -- /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ -+ uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; - 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) -- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ -+ uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4; exit; } ;; - m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} -@@ -1471,8 +1471,8 @@ - uname -s = `(uname -s) 2>/dev/null || echo unknown` - uname -v = `(uname -v) 2>/dev/null || echo unknown` - --/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` --/bin/uname -X = `(/bin/uname -X) 2>/dev/null` -+uname -p = `(uname -p) 2>/dev/null` -+uname -X = `(uname -X) 2>/dev/null` - - hostinfo = `(hostinfo) 2>/dev/null` - /bin/universe = `(/bin/universe) 2>/dev/null` -diff -Naur e3cfsprogs-1.39/lib/blkid/test_probe.in e3cfsprogs-1.39_mod/lib/blkid/test_probe.in ---- e3cfsprogs-1.39/lib/blkid/test_probe.in 2005-09-10 20:08:42.000000000 +0200 -+++ e3cfsprogs-1.39_mod/lib/blkid/test_probe.in 2007-07-20 16:26:02.000000000 +0200 -@@ -21,7 +21,7 @@ - fi - bunzip2 < $SRCDIR/tests/$i.img.bz2 > /tmp/test.img.$$ - ./tst_probe /tmp/test.img.$$ > tests/$i.out -- /bin/rm -f /tmp/test.img.$$ tests/$i.ok tests/$i.failed -+ rm -f /tmp/test.img.$$ tests/$i.ok tests/$i.failed - cmp -s tests/$i.out $SRCDIR/tests/$i.results - if [ $? = 0 ]; then - echo ok -diff -Naur e3cfsprogs-1.39/tests/defaults/e_script e3cfsprogs-1.39_mod/tests/defaults/e_script ---- e3cfsprogs-1.39/tests/defaults/e_script 2005-09-06 11:40:14.000000000 +0200 -+++ e3cfsprogs-1.39_mod/tests/defaults/e_script 2007-07-20 16:26:26.000000000 +0200 -@@ -25,7 +25,7 @@ - elif [ "$class" = icount ]; then - TEST_PROG=$TEST_ICOUNT - else -- TEST_PROG=/bin/cat -+ TEST_PROG=cat - fi - - cat $SRCDIR/progs/test_data/$instance.setup $SRCDIR/progs/test_data/test.$class \ -diff -Naur e3cfsprogs-1.39/util/gcc-wall-cleanup e3cfsprogs-1.39_mod/util/gcc-wall-cleanup ---- e3cfsprogs-1.39/util/gcc-wall-cleanup 2005-09-06 11:40:15.000000000 +0200 -+++ e3cfsprogs-1.39_mod/util/gcc-wall-cleanup 2007-07-20 16:30:04.000000000 +0200 -@@ -1,4 +1,4 @@ --#!/bin/sed -f -+#!sed -f - # - # This script filters out gcc-wall crud that we're not interested in seeing. - # diff --git a/pkgs/os-specific/linux/e3cfsprogs/e3cfsprogs-1.39_etc.patch b/pkgs/os-specific/linux/e3cfsprogs/e3cfsprogs-1.39_etc.patch deleted file mode 100644 index 5997d431f4c..00000000000 --- a/pkgs/os-specific/linux/e3cfsprogs/e3cfsprogs-1.39_etc.patch +++ /dev/null @@ -1,27 +0,0 @@ -diff -Naur e3cfsprogs-1.39/misc/Makefile.in e3cfsprogs-1.39_path_mod/misc/Makefile.in ---- e3cfsprogs-1.39/misc/Makefile.in 2006-03-27 07:58:10.000000000 +0200 -+++ e3cfsprogs-1.39_path_mod/misc/Makefile.in 2007-07-20 16:45:04.000000000 +0200 -@@ -223,12 +223,12 @@ - @$(SUBSTITUTE_UPTIME) $(srcdir)/filefrag.8.in filefrag.8 - - installdirs: -- @echo " MKINSTALLDIRS $(sbindir) $(root_sbindir) $(bindir) $(man1dir) $(man8dir) $(libdir)" -+ @echo " MKINSTALLDIRS $(sbindir) $(root_sbindir) $(bindir) $(man1dir) $(man8dir) $(libdir) $(root_sysconfdir)" - @$(MKINSTALLDIRS) $(DESTDIR)$(sbindir) \ - $(DESTDIR)$(root_sbindir) $(DESTDIR)$(bindir) \ - $(DESTDIR)$(man1dir) $(DESTDIR)$(man8dir) \ - $(DESTDIR)$(man1dir) $(DESTDIR)$(man5dir) \ -- $(DESTDIR)$(libdir) $(DESTDIR)/etc -+ $(DESTDIR)$(libdir) $(DESTDIR)$(root_sysconfdir)/etc - - install: all $(SMANPAGES) $(UMANPAGES) installdirs - @for i in $(SPROGS); do \ -@@ -291,7 +291,7 @@ - @if ! test -f $(DESTDIR)/etc/mke2fs.conf; then \ - echo " INSTALL_DATA /etc/mke2fs.conf"; \ - $(INSTALL_DATA) $(srcdir)/mke2fs.conf \ -- $(DESTDIR)/etc/mke2fs.conf; \ -+ $(DESTDIR)$(root_sysconfdir)/mke2fs.conf; \ - fi - - install-strip: install diff --git a/pkgs/os-specific/linux/fatrace/default.nix b/pkgs/os-specific/linux/fatrace/default.nix index ca864091d4b..09da891a175 100644 --- a/pkgs/os-specific/linux/fatrace/default.nix +++ b/pkgs/os-specific/linux/fatrace/default.nix @@ -1,12 +1,12 @@ -{ stdenv, fetchurl, python3, which }: +{ stdenv, fetchurl, fetchpatch, python3, which }: stdenv.mkDerivation rec { name = "fatrace-${version}"; - version = "0.11"; + version = "0.12"; src = fetchurl { url = "http://launchpad.net/fatrace/trunk/${version}/+download/${name}.tar.bz2"; - sha256 = "1f77v222nlfbf8fv7d28cnpm7x8xz0mhxavgz19c2jc51pjlv84s"; + sha256 = "0szn86rbbvmjcw192vjhhgc3v99s5lm2kg93gk1yzm6ay831grsh"; }; buildInputs = [ python3 which ]; diff --git a/pkgs/os-specific/linux/firmware/rtl8723bs-firmware/default.nix b/pkgs/os-specific/linux/firmware/rtl8723bs-firmware/default.nix new file mode 100644 index 00000000000..dd30003aa40 --- /dev/null +++ b/pkgs/os-specific/linux/firmware/rtl8723bs-firmware/default.nix @@ -0,0 +1,21 @@ +{ stdenv, linuxPackages }: +with stdenv.lib; +stdenv.mkDerivation { + name = "rtl8723bs-firmware-${linuxPackages.rtl8723bs.rev}"; + inherit (linuxPackages.rtl8723bs) src; + + phases = [ "unpackPhase" "installPhase" ]; + + installPhase = '' + mkdir -p "$out/lib/firmware/rtlwifi" + cp rtl8723bs_nic.bin "$out/lib/firmware/rtlwifi" + cp rtl8723bs_wowlan.bin "$out/lib/firmware/rtlwifi" + ''; + + meta = with stdenv.lib; { + description = "Firmware for RealTek 8723bs"; + homepage = https://github.com/hadess/rtl8723bs; + license = licenses.unfreeRedistributableFirmware; + maintainers = with maintainers; [ elitak ]; + }; +} diff --git a/pkgs/os-specific/linux/i7z/default.nix b/pkgs/os-specific/linux/i7z/default.nix index 1fe1f48f4ef..1ca200a1121 100644 --- a/pkgs/os-specific/linux/i7z/default.nix +++ b/pkgs/os-specific/linux/i7z/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4, ncurses}: +{ stdenv, fetchurl, qt4, ncurses }: stdenv.mkDerivation rec { name = "i7z-0.27.2"; @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "1wa7ix6m75wl3k2n88sz0x8cckvlzqklja2gvzqfw5rcfdjjvxx7"; }; - buildInputs = [qt4 ncurses]; + buildInputs = [ qt4 ncurses ]; buildPhase = '' make diff --git a/pkgs/os-specific/linux/ifplugd/interface.patch b/pkgs/os-specific/linux/ifplugd/interface.patch deleted file mode 100644 index 9c2de464bbd..00000000000 --- a/pkgs/os-specific/linux/ifplugd/interface.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- src/interface.c 2004/12/19 00:08:01 114 -+++ src/interface.c 2006/03/07 13:15:11 133 -@@ -22,9 +22,9 @@ - #include - #endif - -+#include - #include - #include --#include - #include - #include - #include diff --git a/pkgs/os-specific/linux/kernel-headers-cross/builder.sh b/pkgs/os-specific/linux/kernel-headers-cross/builder.sh deleted file mode 100644 index 3bc4abc9233..00000000000 --- a/pkgs/os-specific/linux/kernel-headers-cross/builder.sh +++ /dev/null @@ -1,31 +0,0 @@ -source $stdenv/setup - - -buildPhase() { - make include/linux/version.h -} - - -installPhase() { - mkdir $out - mkdir $out/include - #cd $out/include - #ln -s asm-arm asm - if test $cross = "arm-linux"; then - arch=arm - elif test $cross = "mips-linux"; then - arch=mips - elif test $cross = "sparc-linux"; then - arch=sparc - elif test $cross = "powerpc-linux"; then - arch=ppc - elif test $cross = "ppc-linux"; then - arch=ppc - fi - make include/asm ARCH=$arch - cp -prvd include/linux include/asm include/asm-$arch include/asm-generic $out/include - echo -n > $out/include/linux/autoconf.h -} - - -genericBuild diff --git a/pkgs/os-specific/linux/kernel-headers-cross/default.nix b/pkgs/os-specific/linux/kernel-headers-cross/default.nix deleted file mode 100644 index e2d4dedf799..00000000000 --- a/pkgs/os-specific/linux/kernel-headers-cross/default.nix +++ /dev/null @@ -1,13 +0,0 @@ -{stdenv, fetchurl, cross}: - -assert stdenv.system == "i686-linux"; - -stdenv.mkDerivation { - name = "linux-headers-2.6.14.5"; - builder = ./builder.sh; - src = fetchurl { - url = mirror://kernel/linux/kernel/v2.6/linux-2.6.14.5.tar.bz2; - md5 = "9f057e3bd31c50dc48553def01bc8037"; - }; - inherit cross; -} diff --git a/pkgs/os-specific/linux/kernel-headers/default.nix b/pkgs/os-specific/linux/kernel-headers/default.nix index a33d24fc847..da9f3009474 100644 --- a/pkgs/os-specific/linux/kernel-headers/default.nix +++ b/pkgs/os-specific/linux/kernel-headers/default.nix @@ -1,5 +1,7 @@ { stdenv, kernel, perl }: +assert (!(kernel.features.grsecurity or false)); + let baseBuildFlags = [ "INSTALL_HDR_PATH=$(out)" "headers_install" ]; in stdenv.mkDerivation { diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 6ba1234673b..485cdd76f6a 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -496,6 +496,9 @@ with stdenv.lib; BINFMT_SCRIPT y ''} + # For systemd-binfmt + BINFMT_MISC? y + # Enable the 9P cache to speed up NixOS VM tests. 9P_FSCACHE? y 9P_FS_POSIX_ACL? y diff --git a/pkgs/os-specific/linux/kernel/grsecurity-path-4.5.patch b/pkgs/os-specific/linux/kernel/grsecurity-path-4.5.patch new file mode 100644 index 00000000000..e0430a69c95 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/grsecurity-path-4.5.patch @@ -0,0 +1,14 @@ +diff -ru a/kernel/kmod.c b/kernel/kmod.c +--- a/kernel/kmod.c 2016-04-21 17:06:09.882281660 +0200 ++++ b/kernel/kmod.c 2016-04-21 17:08:17.458949309 +0200 +@@ -294,7 +294,9 @@ + strncmp(sub_info->path, "/lib/", 5) && strncmp(sub_info->path, "/lib64/", 7) && + strncmp(sub_info->path, "/usr/libexec/", 13) && strncmp(sub_info->path, "/usr/bin/", 9) && + strncmp(sub_info->path, "/usr/sbin/", 10) && strcmp(sub_info->path, "/bin/false") && +- strcmp(sub_info->path, "/usr/share/apport/apport")) || strstr(sub_info->path, "..")) { ++ strcmp(sub_info->path, "/usr/share/apport/apport") && ++ strncmp(sub_info->path, "/nix/store/", 11) && ++ strncmp(sub_info->path, "/run/current-system/systemd/lib/", 32)) || strstr(sub_info->path, "..")) { + printk(KERN_ALERT "grsec: denied exec of usermode helper binary %.950s located outside of permitted system paths\n", sub_info->path); + retval = -EPERM; + goto out; diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix index c6dfb693523..6b997943d7c 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.4.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.4.7"; + version = "4.4.8"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "00nkh0klk9b777fvhgf10wsrc7h8ycchgazwirk2926wmisjhl8q"; + sha256 = "02gf7dkdibhxv8n4qfnyqh645d102g9z7pdid8pcq4jhd99sg9yj"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/linux-4.5.nix b/pkgs/os-specific/linux/kernel/linux-4.5.nix index 14ae13c320d..267d0d58de4 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.5.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.5.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.5.1"; + version = "4.5.2"; extraMeta.branch = "4.5"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0q6qkp7w5hy1ai13zgvj2982kjk81rfzd8ff7ixp3slq8bmsz07i"; + sha256 = "17r063zx880ka3ayv9cf1yjfilvxlifhja1rhw5z3w35hgdkj8z3"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix similarity index 78% rename from pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix rename to pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix index 4359f4586c5..267d0d58de4 100644 --- a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.1.7"; - extraMeta.branch = "4.1"; + version = "4.5.2"; + extraMeta.branch = "4.5"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0g1dnvak0pd03d4miy1025bw64wq71w29a058dzspdr6jcf9qwbn"; + sha256 = "17r063zx880ka3ayv9cf1yjfilvxlifhja1rhw5z3w35hgdkj8z3"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index ea9eb4d551b..9a948a68c4c 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.6-rc3"; - modDirVersion = "4.6.0-rc3"; + version = "4.6-rc6"; + modDirVersion = "4.6.0-rc6"; extraMeta.branch = "4.6"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "1vhvhbldk5pvwxhdndyzvyqy5mscpnlz09sfyh2c9rk6wc1hc8xv"; + sha256 = "040sk87zdgqsbma5sk1hk4graga8yafh4rn89vkznkwzdlwa3gyx"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 707ebb544bf..14b0692dbad 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -96,14 +96,6 @@ rec { sha256 = "1sp1gwa7ahzflq7ayb51bg52abrn5zx1hb3pff3axpjqq7vfai6f"; }; - grsecurity_4_1 = grsecPatch - { kernel = pkgs.grsecurity_base_linux_4_1; - patches = [ grsecurity_fix_path_3_14 ]; - kversion = "4.1.7"; - revision = "201509201149"; - sha256 = "1agv8c3c4vmh5algbzmrq2f6vwk72rikrlcbm4h7jbrb9js6fxk4"; - }; - grsecurity_4_4 = grsecPatch { kernel = pkgs.grsecurity_base_linux_4_4; patches = [ grsecurity_fix_path_4_4 ]; @@ -112,7 +104,15 @@ rec { sha256 = "04k4nhshl6r5n41ha5620s7cd70dmmmvyf9mnn5359jr1720kxpf"; }; - grsecurity_latest = grsecurity_4_4; + grsecurity_4_5 = grsecPatch + { kernel = pkgs.grsecurity_base_linux_4_5; + patches = [ grsecurity_fix_path_4_5 ]; + kversion = "4.5.2"; + revision = "201604290633"; + sha256 = "0qrs4fk6lyqngq3fnsmrv0y3yp1lrbiwadfc6v7hy4lyv77wz107"; + }; + + grsecurity_latest = grsecurity_4_5; grsecurity_fix_path_3_14 = { name = "grsecurity-fix-path-3.14"; @@ -124,6 +124,11 @@ rec { patch = ./grsecurity-path-4.4.patch; }; + grsecurity_fix_path_4_5 = + { name = "grsecurity-fix-path-4.5"; + patch = ./grsecurity-path-4.5.patch; + }; + crc_regression = { name = "crc-backport-regression"; patch = ./crc-regression.patch; diff --git a/pkgs/os-specific/linux/klibc/default.nix b/pkgs/os-specific/linux/klibc/default.nix index ffa381d0f29..6ab837fd0a7 100644 --- a/pkgs/os-specific/linux/klibc/default.nix +++ b/pkgs/os-specific/linux/klibc/default.nix @@ -1,16 +1,15 @@ -{ stdenv, fetchurl, kernelHeaders, kernel, perl }: +{ stdenv, fetchurl, linuxHeaders, perl }: let - version = "2.0.4"; - commonMakeFlags = [ "prefix=$(out)" "SHLIBDIR=$(out)/lib" ]; in -stdenv.mkDerivation { - name = "klibc-${version}-${kernel.version}"; +stdenv.mkDerivation rec { + name = "klibc-${version}"; + version = "2.0.4"; src = fetchurl { url = "mirror://kernel/linux/libs/klibc/2.0/klibc-${version}.tar.xz"; @@ -25,13 +24,13 @@ stdenv.mkDerivation { makeFlags = commonMakeFlags ++ [ "KLIBCARCH=${stdenv.platform.kernelArch}" - "KLIBCKERNELSRC=${kernelHeaders}" + "KLIBCKERNELSRC=${linuxHeaders}" ] ++ stdenv.lib.optional (stdenv.platform.kernelArch == "arm") "CONFIG_AEABI=y"; crossAttrs = { makeFlags = commonMakeFlags ++ [ "KLIBCARCH=${stdenv.cross.platform.kernelArch}" - "KLIBCKERNELSRC=${kernelHeaders.crossDrv}" + "KLIBCKERNELSRC=${linuxHeaders.crossDrv}" "CROSS_COMPILE=${stdenv.cross.config}-" ] ++ stdenv.lib.optional (stdenv.cross.platform.kernelArch == "arm") "CONFIG_AEABI=y"; }; @@ -43,7 +42,7 @@ stdenv.mkDerivation { cp $(find $(find . -name static) -type f ! -name "*.g" -a ! -name ".*") $dir/ cp usr/dash/sh $dir/ - for file in ${kernelHeaders}/include/*; do + for file in ${linuxHeaders}/include/*; do ln -sv $file $out/lib/klibc/include done ''; diff --git a/pkgs/os-specific/linux/lsb-release/default.nix b/pkgs/os-specific/linux/lsb-release/default.nix new file mode 100644 index 00000000000..9715f77f9e4 --- /dev/null +++ b/pkgs/os-specific/linux/lsb-release/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl, perl, getopt }: + +stdenv.mkDerivation rec { + version = "1.4"; + name = "lsb-release-${version}"; + + src = fetchurl { + url = "mirror://sourceforge/lsb/${name}.tar.gz"; + sha256 = "0wkiy7ymfi3fh2an2g30raw6yxh6rzf6nz2v90fplbnnz2414clr"; + }; + + preConfigure = '' + substituteInPlace help2man \ + --replace /usr/bin/perl ${perl}/bin/perl + ''; + + installFlags = [ "prefix=$(out)" ]; + + buildInputs = [ perl getopt ]; + + meta = { + description = "Prints certain LSB (Linux Standard Base) and Distribution information"; + homepage = http://www.linuxfoundation.org/collaborate/workgroups/lsb; + license = [ stdenv.lib.licenses.gpl2Plus stdenv.lib.licenses.gpl3Plus ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/os-specific/linux/module-init-tools/default.nix b/pkgs/os-specific/linux/module-init-tools/default.nix deleted file mode 100644 index ded6e77e43b..00000000000 --- a/pkgs/os-specific/linux/module-init-tools/default.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ stdenv, fetchurl, docbook2x, docbook_sgml_dtd_41 }: - -assert (stdenv.lib.elem stdenv.system stdenv.lib.platforms.linux); - -stdenv.mkDerivation { - name = "module-init-tools-3.16"; - - src = [ - (fetchurl { - url = http://ftp.be.debian.org/pub/linux/utils/kernel/module-init-tools/module-init-tools-3.16.tar.bz2; - sha256 = "0jxnz9ahfic79rp93l5wxcbgh4pkv85mwnjlbv1gz3jawv5cvwp1"; - }) - - # Upstream forgot to include the generated manpages. Thankfully - # the Gentoo people fixed this for us :-) - (fetchurl { - urls = [ - mirror://gentoo/distfiles/module-init-tools-3.16-man.tar.bz2 - http://mirror.meleeweb.net/pub/linux/gentoo/distfiles/module-init-tools-3.16-man.tar.bz2 - ]; - sha256 = "1j1nzi87kgsh4scl645fhwhjvljxj83cmdasa4n4p5krhasgw358"; - }) - ]; - - buildInputs = [ stdenv.glibc.dev stdenv.glibc.static ]; - - SGML_CATALOG_FILES = "${docbook_sgml_dtd_41}/sgml/dtd/docbook-4.1/docbook.cat"; - - patches = [ ./module-dir.patch ./docbook2man.patch ]; - - postInstall = "rm $out/sbin/insmod.static"; # don't need it - - meta = { - homepage = http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/; - description = "Tools for loading and managing Linux kernel modules"; - platforms = stdenv.lib.platforms.linux; - }; -} diff --git a/pkgs/os-specific/linux/module-init-tools/docbook2man.patch b/pkgs/os-specific/linux/module-init-tools/docbook2man.patch deleted file mode 100644 index 4de07b658a9..00000000000 --- a/pkgs/os-specific/linux/module-init-tools/docbook2man.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur module-init-tools-3.16-orig/Makefile.in module-init-tools-3.16/Makefile.in ---- module-init-tools-3.16-orig/Makefile.in 2011-06-02 13:56:45.000000000 -0400 -+++ module-init-tools-3.16/Makefile.in 2011-10-01 23:59:30.584443193 -0400 -@@ -174,7 +174,7 @@ - CYGPATH_W = @CYGPATH_W@ - DEFS = @DEFS@ - DEPDIR = @DEPDIR@ --DOCBOOKTOMAN = @DOCBOOKTOMAN@ -+DOCBOOKTOMAN = @DOCBOOKTOMAN@ --sgml - ECHO_C = @ECHO_C@ - ECHO_N = @ECHO_N@ - ECHO_T = @ECHO_T@ diff --git a/pkgs/os-specific/linux/module-init-tools/module-dir.patch b/pkgs/os-specific/linux/module-init-tools/module-dir.patch deleted file mode 100644 index 95c7559604d..00000000000 --- a/pkgs/os-specific/linux/module-init-tools/module-dir.patch +++ /dev/null @@ -1,161 +0,0 @@ -commit cf2c95edb7918bc658f6cae93793c1949fc9cb6e -Author: David Guibert -Date: Fri Aug 5 14:20:12 2011 +0200 - - introduce module-dir - -diff --git a/depmod.c b/depmod.c -index a1d2f8c..9362a35 100644 ---- a/depmod.c -+++ b/depmod.c -@@ -48,9 +48,6 @@ - - #include "testing.h" - --#ifndef MODULE_DIR --#define MODULE_DIR "/lib/modules/" --#endif - - #ifndef MODULE_BUILTIN_KEY - #define MODULE_BUILTIN_KEY "built-in" -@@ -1516,6 +1513,7 @@ static int parse_config_file(const char *filename, - char *line; - unsigned int linenum = 0; - FILE *cfile; -+ char *module_dir; - - cfile = fopen(filename, "r"); - if (!cfile) { -@@ -1525,6 +1523,10 @@ static int parse_config_file(const char *filename, - return 0; - } - -+ if((module_dir = getenv("MODULE_DIR")) == NULL) { -+ module_dir = "/lib/modules/"; -+ } -+ - while ((line = getline_wrapped(cfile, &linenum)) != NULL) { - char *ptr = line; - char *cmd, *modname; -@@ -1550,7 +1552,7 @@ static int parse_config_file(const char *filename, - continue; - } - nofail_asprintf(&dirname, "%s%s%s/%s", basedir, -- MODULE_DIR, kernelversion, search_path); -+ module_dir, kernelversion, search_path); - len = strlen(dirname); - *search = add_search(dirname, len, *search); - free(dirname); -@@ -1565,7 +1567,7 @@ static int parse_config_file(const char *filename, - continue; - - nofail_asprintf(&pathname, "%s%s%s/%s/%s.ko", basedir, -- MODULE_DIR, kernelversion, subdir, modname); -+ module_dir, kernelversion, subdir, modname); - - *overrides = add_override(pathname, *overrides); - free(pathname); -@@ -1737,6 +1739,7 @@ int main(int argc, char *argv[]) - char *basedir = "", *dirname, *version; - char *system_map = NULL, *module_symvers = NULL; - int i; -+ char *module_dir; - const char *config = NULL; - - if (native_endianness() == 0) -@@ -1832,7 +1835,11 @@ int main(int argc, char *argv[]) - if (optind == argc) - all = 1; - -- nofail_asprintf(&dirname, "%s%s%s", basedir, MODULE_DIR, version); -+ if((module_dir = getenv("MODULE_DIR")) == NULL) { -+ module_dir = "/lib/modules/"; -+ } -+ -+ nofail_asprintf(&dirname, "%s%s%s", basedir, module_dir, version); - - if (maybe_all) { - if (!doing_stdout && !depfile_out_of_date(dirname)) -@@ -1850,7 +1857,7 @@ int main(int argc, char *argv[]) - size_t len; - - nofail_asprintf(&dirname, "%s%s%s/updates", basedir, -- MODULE_DIR, version); -+ module_dir, version); - len = strlen(dirname); - search = add_search(dirname, len, search); - } -diff --git a/modinfo.c b/modinfo.c -index 1dd8469..67b1041 100644 ---- a/modinfo.c -+++ b/modinfo.c -@@ -19,9 +19,6 @@ - #include "zlibsupport.h" - #include "testing.h" - --#ifndef MODULE_DIR --#define MODULE_DIR "/lib/modules" --#endif - - struct param - { -@@ -193,6 +190,11 @@ static struct elf_file *grab_module(const char *name, - struct utsname buf; - char *depname, *p, *moddir; - struct elf_file *module; -+ char *module_dir; -+ -+ if((module_dir = getenv("MODULE_DIR")) == NULL) { -+ module_dir = "/lib/modules/"; -+ } - - if (strchr(name, '.') || strchr(name, '/')) { - module = grab_elf_file(name); -@@ -207,9 +209,9 @@ static struct elf_file *grab_module(const char *name, - kernel = buf.release; - } - if (strlen(basedir)) -- nofail_asprintf(&moddir, "%s/%s/%s", basedir, MODULE_DIR, kernel); -+ nofail_asprintf(&moddir, "%s/%s/%s", basedir, module_dir, kernel); - else -- nofail_asprintf(&moddir, "%s/%s", MODULE_DIR, kernel); -+ nofail_asprintf(&moddir, "%s/%s", module_dir, kernel); - - /* Search for it in modules.dep. */ - nofail_asprintf(&depname, "%s/%s", moddir, "modules.dep"); -diff --git a/modprobe.c b/modprobe.c -index 5464f45..d9fbf9d 100644 ---- a/modprobe.c -+++ b/modprobe.c -@@ -86,10 +86,6 @@ typedef enum - - } modprobe_flags_t; - --#ifndef MODULE_DIR --#define MODULE_DIR "/lib/modules" --#endif -- - /** - * print_usage - output the prefered program usage - * -@@ -2136,6 +2132,7 @@ int main(int argc, char *argv[]) - struct modprobe_conf conf = {}; - - recursion_depth = 0; -+ char *module_dir = NULL; - - /* Prepend options from environment. */ - argv = merge_args(getenv("MODPROBE_OPTIONS"), argv, &argc); -@@ -2233,7 +2230,11 @@ int main(int argc, char *argv[]) - if (argc < optind + 1 && !dump_config && !list_only) - print_usage(argv[0]); - -- nofail_asprintf(&dirname, "%s%s/%s", basedir, MODULE_DIR, buf.release); -+ if((module_dir = getenv("MODULE_DIR")) == NULL) { -+ module_dir = "/lib/modules"; -+ } -+ -+ nofail_asprintf(&dirname, "%s%s/%s", basedir, module_dir, buf.release); - - /* Old-style -t xxx wildcard? Only with -l. */ - if (list_only) { diff --git a/pkgs/os-specific/linux/open-iscsi/default.nix b/pkgs/os-specific/linux/open-iscsi/default.nix index d004328a10b..48055431304 100644 --- a/pkgs/os-specific/linux/open-iscsi/default.nix +++ b/pkgs/os-specific/linux/open-iscsi/default.nix @@ -1,36 +1,36 @@ -{ stdenv, fetchurl, nukeReferences }: -let - pname = "open-iscsi-2.0-873"; -in stdenv.mkDerivation { - name = pname; - outputs = [ "out" "iscsistart" ]; +{ stdenv, fetchFromGitHub, automake, autoconf, libtool, gettext, utillinux, openisns, openssl, kmod }: +stdenv.mkDerivation rec { + name = "open-iscsi-${version}"; + version = "2.0-873-${stdenv.lib.substring 0 7 src.rev}"; - buildInputs = [ nukeReferences ]; + buildInputs = [ automake autoconf libtool gettext utillinux openisns.lib openssl kmod ]; - src = fetchurl { - urls = [ - "http://www.open-iscsi.org/bits/${pname}.tar.gz" - "http://pkgs.fedoraproject.org/repo/pkgs/iscsi-initiator-utils/${pname}.tar.gz/8b8316d7c9469149a6cc6234478347f7/${pname}.tar.gz" - ]; - sha256 = "1nbwmj48xzy45h52917jbvyqpsfg9zm49nm8941mc5x4gpwz5nbx"; + src = fetchFromGitHub { + owner = "open-iscsi"; + repo = "open-iscsi"; + rev = "4c1f2d90ef1c73e33d9f1e4ae9c206ffe015a8f9"; + sha256 = "0h030zk4zih3l8z5662b3kcifdxlakbwwkz1afb7yf0cicds7va8"; }; DESTDIR = "$(out)"; + NIX_LDFLAGS = "-lkmod"; + NIX_CFLAGS_COMPILE = "-DUSE_KMOD"; + preConfigure = '' - sed -i 's|/usr/|/|' Makefile + sed -i 's|/usr|/|' Makefile ''; postInstall = '' - mkdir -pv $iscsistart/bin/ - cp -v usr/iscsistart $iscsistart/bin/ - nuke-refs $iscsistart/bin/iscsistart + cp usr/iscsistart $out/sbin/ + $out/sbin/iscsistart -v ''; meta = with stdenv.lib; { description = "A high performance, transport independent, multi-platform implementation of RFC3720"; license = licenses.gpl2Plus; - homepage = http://www.open-iscsi.org; + homepage = http://www.open-iscsi.com; platforms = platforms.linux; + maintainers = with maintainers; [ cleverca22 ]; }; } diff --git a/pkgs/os-specific/linux/open-isns/default.nix b/pkgs/os-specific/linux/open-isns/default.nix new file mode 100644 index 00000000000..2ef08cd13ce --- /dev/null +++ b/pkgs/os-specific/linux/open-isns/default.nix @@ -0,0 +1,25 @@ +{ stdenv, openssl, fetchFromGitHub }: +stdenv.mkDerivation rec { + name = "open-isns-${version}"; + version = "0.95"; + + src = fetchFromGitHub { + owner = "gonzoleeman"; + repo = "open-isns"; + rev = "v${version}"; + sha256 = "1c2x3yf9806gbjsw4xi805rfhyxk353a3whqvpccz8dwas6jajwh"; + }; + + propagatedBuildInputs = [ openssl ]; + outputs = ["out" "lib" ]; + outputInclude = "lib"; + + installFlags = "etcdir=$(out)/etc vardir=$(out)/var/lib/isns"; + installTargets = "install install_hdrs install_lib"; + + meta = { + description = "iSNS server and client for Linux"; + license = stdenv.lib.licenses.lgpl21; + homepage = https://github.com/gonzoleeman/open-isns; + }; +} diff --git a/pkgs/os-specific/linux/pam_devperm/default.nix b/pkgs/os-specific/linux/pam_devperm/default.nix deleted file mode 100644 index 1e5a7095e04..00000000000 --- a/pkgs/os-specific/linux/pam_devperm/default.nix +++ /dev/null @@ -1,12 +0,0 @@ -{stdenv, fetchurl, pam}: - -stdenv.mkDerivation { - name = "pam_devperm-1.6"; - - src = fetchurl { - url = http://ftp.suse.com/pub/people/kukuk/pam/pam_devperm/pam_devperm-1.6.tar.bz2; - sha256 = "0rvndh6yvcgmjnkqxv24pjy3ayy4p8r29w25xscwjfzqmrdyfbpw"; - }; - - buildInputs = [pam]; -} diff --git a/pkgs/os-specific/linux/pcmciautils/default.nix b/pkgs/os-specific/linux/pcmciautils/default.nix index ce5814965ef..3e41df9465f 100644 --- a/pkgs/os-specific/linux/pcmciautils/default.nix +++ b/pkgs/os-specific/linux/pcmciautils/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl , yacc, flex -, sysfsutils, module_init_tools, udev +, sysfsutils, kmod, udev , firmware # Special pcmcia cards. , config # Special hardware (map memory & port & irq) , lib # used to generate postInstall script. @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { sha256 = "5d8e2efad8a7f692129610603da232f2144851753d8d49a70eeb8eb1be6f6bc3"; }; - buildInputs = [udev yacc sysfsutils module_init_tools flex]; + buildInputs = [udev yacc sysfsutils kmod flex]; patchPhase = '' sed -i " - s,/sbin/modprobe,${module_init_tools}&,; + s,/sbin/modprobe,${kmod}&,; s,/lib/udev/,$out/sbin/,; " udev/* # fix-color */ sed -i " diff --git a/pkgs/os-specific/linux/pm-utils/default.nix b/pkgs/os-specific/linux/pm-utils/default.nix index 19315ec2d0b..cb74dc204a3 100644 --- a/pkgs/os-specific/linux/pm-utils/default.nix +++ b/pkgs/os-specific/linux/pm-utils/default.nix @@ -1,10 +1,10 @@ -{ stdenv, fetchurl, coreutils, gnugrep, utillinux, module_init_tools +{ stdenv, fetchurl, coreutils, gnugrep, utillinux, kmod , procps, kbd, dbus_tools }: let binPath = stdenv.lib.makeBinPath - [ coreutils gnugrep utillinux module_init_tools procps kbd dbus_tools ]; + [ coreutils gnugrep utillinux kmod procps kbd dbus_tools ]; sbinPath = stdenv.lib.makeSearchPathOutputs "sbin" ["bin"] [ procps ]; diff --git a/pkgs/os-specific/linux/procps/default.nix b/pkgs/os-specific/linux/procps/default.nix deleted file mode 100644 index 9c894256413..00000000000 --- a/pkgs/os-specific/linux/procps/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ stdenv, fetchurl, ncurses }: - -stdenv.mkDerivation { - name = "procps-3.2.8"; - - src = fetchurl { - url = http://procps.sourceforge.net/procps-3.2.8.tar.gz; - sha256 = "0d8mki0q4yamnkk4533kx8mc0jd879573srxhg6r2fs3lkc6iv8i"; - }; - - patches = - [ ./makefile.patch - ./procps-build.patch - ./gnumake3.82.patch - ./linux-ver-init.patch - ]; - - buildInputs = [ ncurses ]; - - makeFlags = "DESTDIR=$(out)"; - - crossAttrs = { - CC = stdenv.cross.config + "-gcc"; - }; - - meta = { - homepage = http://procps.sourceforge.net/; - description = "Utilities that give information about processes using the /proc filesystem"; - }; -} diff --git a/pkgs/os-specific/linux/procps/gnumake3.82.patch b/pkgs/os-specific/linux/procps/gnumake3.82.patch deleted file mode 100644 index 2b1f28d4bce..00000000000 --- a/pkgs/os-specific/linux/procps/gnumake3.82.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/Makefile b/Makefile -index 09fb3ed..59eba16 100644 ---- a/Makefile -+++ b/Makefile -@@ -174,7 +174,7 @@ INSTALL := $(BINFILES) $(MANFILES) - # want this rule first, use := on ALL, and ALL not filled in yet - all: do_all - ---include */module.mk -+-include proc/module.mk ps/module.mk - - do_all: $(ALL) - diff --git a/pkgs/os-specific/linux/procps/linux-ver-init.patch b/pkgs/os-specific/linux/procps/linux-ver-init.patch deleted file mode 100644 index 9f93784a1fd..00000000000 --- a/pkgs/os-specific/linux/procps/linux-ver-init.patch +++ /dev/null @@ -1,23 +0,0 @@ -https://bugs.gentoo.org/303120 - -make sure the linux version constructor runs before the libproc constructor -since the latter uses variables setup by the former - -fix by Chris Coleman - -Index: proc/version.c -=================================================================== -RCS file: /cvsroot/procps/procps/proc/version.c,v -retrieving revision 1.7 -diff -u -p -r1.7 version.c ---- a/proc/version.c 9 Feb 2003 07:27:16 -0000 1.7 -+++ b/proc/version.c 14 Nov 2010 00:22:44 -0000 -@@ -33,7 +33,7 @@ void display_version(void) { - - int linux_version_code; - --static void init_Linux_version(void) __attribute__((constructor)); -+static void init_Linux_version(void) __attribute__((constructor(100))); - static void init_Linux_version(void) { - static struct utsname uts; - int x = 0, y = 0, z = 0; /* cleared in case sscanf() < 3 */ diff --git a/pkgs/os-specific/linux/procps/makefile.patch b/pkgs/os-specific/linux/procps/makefile.patch deleted file mode 100644 index 20ff71ecdc1..00000000000 --- a/pkgs/os-specific/linux/procps/makefile.patch +++ /dev/null @@ -1,71 +0,0 @@ -diff -rc procps-orig/Makefile procps-3.2.4/Makefile -*** procps-orig/Makefile 2004-10-10 23:31:12.000000000 +0200 ---- procps-3.2.4/Makefile 2005-01-21 19:33:49.700437229 +0100 -*************** -*** 24,47 **** - ############ vars - - # so you can disable them or choose alternates -! ldconfig := ldconfig - ln_f := ln -f - ln_sf := ln -sf -! install := install -D --owner 0 --group 0 - - # Lame x86-64 /lib64 and /usr/lib64 abomination: - lib64 := lib$(shell [ -d /lib64 ] && echo 64) - -! usr/bin := $(DESTDIR)/usr/bin/ - bin := $(DESTDIR)/bin/ - sbin := $(DESTDIR)/sbin/ -! usr/proc/bin := $(DESTDIR)/usr/bin/ -! man1 := $(DESTDIR)/usr/share/man/man1/ -! man5 := $(DESTDIR)/usr/share/man/man5/ -! man8 := $(DESTDIR)/usr/share/man/man8/ -! lib := $(DESTDIR)/$(lib64)/ -! usr/lib := $(DESTDIR)/usr/$(lib64)/ -! usr/include := $(DESTDIR)/usr/include/ - - #SKIP := $(bin)kill $(man1)kill.1 - ---- 24,47 ---- - ############ vars - - # so you can disable them or choose alternates -! ldconfig := true - ln_f := ln -f - ln_sf := ln -sf -! install := install -D - - # Lame x86-64 /lib64 and /usr/lib64 abomination: - lib64 := lib$(shell [ -d /lib64 ] && echo 64) - -! usr/bin := $(DESTDIR)/bin/ - bin := $(DESTDIR)/bin/ - sbin := $(DESTDIR)/sbin/ -! usr/proc/bin := $(DESTDIR)/bin/ -! man1 := $(DESTDIR)/share/man/man1/ -! man5 := $(DESTDIR)/share/man/man5/ -! man8 := $(DESTDIR)/share/man/man8/ -! lib := $(DESTDIR)/lib/ -! usr/lib := $(DESTDIR)/lib/ -! usr/include := $(DESTDIR)/include/ - - #SKIP := $(bin)kill $(man1)kill.1 - -*************** -*** 71,77 **** - - # Preprocessor flags. - PKG_CPPFLAGS := -D_GNU_SOURCE -I proc -! CPPFLAGS := -I/usr/include/ncurses - ALL_CPPFLAGS := $(PKG_CPPFLAGS) $(CPPFLAGS) - - # Left out -Wconversion due to noise in glibc headers. ---- 71,77 ---- - - # Preprocessor flags. - PKG_CPPFLAGS := -D_GNU_SOURCE -I proc -! CPPFLAGS := - ALL_CPPFLAGS := $(PKG_CPPFLAGS) $(CPPFLAGS) - - # Left out -Wconversion due to noise in glibc headers. diff --git a/pkgs/os-specific/linux/procps/procps-build.patch b/pkgs/os-specific/linux/procps/procps-build.patch deleted file mode 100644 index 67141715bb6..00000000000 --- a/pkgs/os-specific/linux/procps/procps-build.patch +++ /dev/null @@ -1,50 +0,0 @@ -diff -ruN procps-3.2.6/Makefile procps-3.2.6.new/Makefile ---- procps-3.2.6/Makefile 2005-10-30 07:27:04.000000000 +0100 -+++ procps-3.2.6.new/Makefile 2005-12-13 16:52:02.000000000 +0100 -@@ -43,7 +43,7 @@ - usr/lib := $(DESTDIR)/usr/$(lib64)/ - usr/include := $(DESTDIR)/usr/include/ - --#SKIP := $(bin)kill $(man1)kill.1 -+SKIP := $(bin)kill $(man1)kill.1 $(usr/bin)uptime $(man1)uptime.1 - - BINFILES := $(usr/bin)uptime $(usr/bin)tload $(usr/bin)free $(usr/bin)w \ - $(usr/bin)top $(usr/bin)vmstat $(usr/bin)watch $(usr/bin)skill \ -@@ -127,26 +127,26 @@ - # produce separate executables for ppc and ppc64, s390 and s390x, - # i386 and x86-64, mips and mips64, sparc and sparc64, and so on. - # Failure to do so will cause data corruption. --m64 := $(call check_gcc,-m64,$(call check_gcc,-mabi=64,)) --ALL_CFLAGS += $(m64) -+#m64 := $(call check_gcc,-m64,$(call check_gcc,-mabi=64,)) -+#ALL_CFLAGS += $(m64) - --ALL_CFLAGS += $(call check_gcc,-Wdeclaration-after-statement,) --ALL_CFLAGS += $(call check_gcc,-Wpadded,) --ALL_CFLAGS += $(call check_gcc,-Wstrict-aliasing,) -+#ALL_CFLAGS += $(call check_gcc,-Wdeclaration-after-statement,) -+#ALL_CFLAGS += $(call check_gcc,-Wpadded,) -+#ALL_CFLAGS += $(call check_gcc,-Wstrict-aliasing,) - - # Adding -fno-gcse might be good for those files which - # use computed goto. - #ALL_CFLAGS += $(call check_gcc,-fno-gcse,) - - # if not debugging, enable things that could confuse gdb --ifeq (,$(findstring -g,$(filter -g%,$(CFLAGS)))) --ALL_CFLAGS += $(call check_gcc,-fweb,) --ALL_CFLAGS += $(call check_gcc,-frename-registers,) --ALL_CFLAGS += $(call check_gcc,-fomit-frame-pointer,) --endif -+#ifeq (,$(findstring -g,$(filter -g%,$(CFLAGS)))) -+#ALL_CFLAGS += $(call check_gcc,-fweb,) -+#ALL_CFLAGS += $(call check_gcc,-frename-registers,) -+#ALL_CFLAGS += $(call check_gcc,-fomit-frame-pointer,) -+#endif - - # in case -O3 is enabled, avoid bloat --ALL_CFLAGS += $(call check_gcc,-fno-inline-functions,) -+#ALL_CFLAGS += $(call check_gcc,-fno-inline-functions,) - - endif - endif diff --git a/pkgs/os-specific/linux/rtl8723bs/default.nix b/pkgs/os-specific/linux/rtl8723bs/default.nix index 2adbb4b743c..0010d6dc717 100644 --- a/pkgs/os-specific/linux/rtl8723bs/default.nix +++ b/pkgs/os-specific/linux/rtl8723bs/default.nix @@ -1,38 +1,41 @@ -{ stdenv, fetchFromGitHub, kernel }: - -let - ver = "c517f2b"; -in +{ stdenv, fetchFromGitHub, nukeReferences, kernel }: +with stdenv.lib; stdenv.mkDerivation rec { - name = "rtl8723bs-${kernel.version}-c517f2b"; + name = "rtl8723bs-${kernel.version}-${rev}"; + rev = "6918e9b2ff297b1cc7fde193e72452c33c10e1c8"; src = fetchFromGitHub { owner = "hadess"; repo = "rtl8723bs"; - rev = "c517f2bf8bcc3d57311252ea7cd49ae81466eead"; - sha256 = "0phzrhq85g52pi2b74a9sr9l2x6dzlz714k3pix486w2x5axw4xb"; + inherit rev; + sha256 = "07srd457wnz29nvvq02wz66s387bhjbydnmbs3qr7ljprabhsgmi"; }; hardeningDisable = [ "pic" ]; - patchPhase = '' - substituteInPlace ./Makefile --replace /lib/modules/ "${kernel.dev}/lib/modules/" - substituteInPlace ./Makefile --replace '$(shell uname -r)' "${kernel.modDirVersion}" - substituteInPlace ./Makefile --replace /sbin/depmod # - substituteInPlace ./Makefile --replace '$(MODDESTDIR)' "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" - substituteInPlace ./Makefile --replace '/lib/firmware' "$out/lib/firmware" - ''; + buildInputs = [ nukeReferences ]; - preInstall = '' - mkdir -p "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" - mkdir -p "$out/lib/firmware/rtlwifi" + makeFlags = concatStringsSep " " [ + "ARCH=${stdenv.platform.kernelArch}" # Normally not needed, but the Makefile sets ARCH in a broken way. + "KSRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" # Makefile uses $(uname -r); breaks us. + ]; + + enableParallelBuilding = true; + + # The Makefile doesn't use env-vars well, so install manually: + installPhase = '' + mkdir -p $out/lib/modules/${kernel.modDirVersion}/kernel/drivers/net/wireless + cp r8723bs.ko $out/lib/modules/${kernel.modDirVersion}/kernel/drivers/net/wireless + + nuke-refs $(find $out -name "*.ko") ''; meta = { description = "Realtek SDIO Wi-Fi driver"; homepage = "https://github.com/hadess/rtl8723bs"; license = stdenv.lib.licenses.gpl2; - platforms = [ "x86_64-linux" "i686-linux" ]; - broken = !stdenv.lib.versionAtLeast kernel.version "3.19"; + platforms = [ "x86_64-linux" "i686-linux" "armv7l-linux" ]; + broken = ! versionAtLeast kernel.version "3.19"; + maintainers = with maintainers; [ elitak ]; }; } diff --git a/pkgs/os-specific/linux/sdparm/default.nix b/pkgs/os-specific/linux/sdparm/default.nix index fab13a125c4..fb6cc4d9eac 100644 --- a/pkgs/os-specific/linux/sdparm/default.nix +++ b/pkgs/os-specific/linux/sdparm/default.nix @@ -1,11 +1,12 @@ {stdenv, fetchurl}: -stdenv.mkDerivation { - name = "sdparm-1.09"; +stdenv.mkDerivation rec { + name = "sdparm-${version}"; + version = "1.10"; src = fetchurl { - url = http://sg.danny.cz/sg/p/sdparm-1.09.tar.xz; - sha256 = "0jakqyjwi72zqjzss04bally0xl0lc4710mx8da08vpmir1hfphg"; + url = "http://sg.danny.cz/sg/p/${name}.tar.xz"; + sha256 = "1jjq3lzgfy4r76rc26q02lv4wm5cb4dx5nh913h489zjrr4f3jbx"; }; meta = with stdenv.lib; { diff --git a/pkgs/os-specific/linux/tomb/default.nix b/pkgs/os-specific/linux/tomb/default.nix new file mode 100644 index 00000000000..5ed7ad5b959 --- /dev/null +++ b/pkgs/os-specific/linux/tomb/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchurl, zsh, pinentry, cryptsetup, gnupg1orig, makeWrapper }: + +let + version = "2.2"; +in + +stdenv.mkDerivation rec { + name = "tomb-${version}"; + + src = fetchurl { + url = "https://files.dyne.org/tomb/tomb-${version}.tar.gz"; + sha256 = "11msj38fdmymiqcmwq1883kjqi5zr01ybdjj58rfjjrw4zw2w5y0"; + }; + + buildInputs = [ makeWrapper ]; + + buildPhase = '' + # manually patch the interpreter + sed -i -e "1s|.*|#!${zsh}/bin/zsh|g" tomb + ''; + + installPhase = '' + mkdir -p $out/bin + mkdir -p $out/share/man/man1 + + cp tomb $out/bin/tomb + cp doc/tomb.1 $out/share/man/man1 + + wrapProgram $out/bin/tomb \ + --prefix PATH : "${pinentry}/bin" \ + --prefix PATH : "${cryptsetup}/bin" \ + --prefix PATH : "${gnupg1orig}/bin" + ''; + + meta = { + description = "File encryption on GNU/Linux"; + homepage = https://www.dyne.org/software/tomb/; + license = stdenv.lib.licenses.gpl3; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/os-specific/linux/wpa_supplicant/gui.nix b/pkgs/os-specific/linux/wpa_supplicant/gui.nix index 59a3c51c4d6..a75367f0bb0 100644 --- a/pkgs/os-specific/linux/wpa_supplicant/gui.nix +++ b/pkgs/os-specific/linux/wpa_supplicant/gui.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4, inkscape, wpa_supplicant }: +{ stdenv, fetchurl, qt4, qmake4Hook, inkscape, wpa_supplicant }: stdenv.mkDerivation { name = "wpa_gui-${wpa_supplicant.version}"; @@ -7,14 +7,13 @@ stdenv.mkDerivation { buildInputs = [ qt4 ]; - nativeBuildInputs = [ inkscape ]; + nativeBuildInputs = [ inkscape qmake4Hook ]; prePatch = "cd wpa_supplicant/wpa_gui-qt4"; - configurePhase = + preConfigure = '' lrelease wpa_gui.pro - qmake ''; # We do not install .xpm icons. First of all, I don't know where they should diff --git a/pkgs/os-specific/windows/jom/default.nix b/pkgs/os-specific/windows/jom/default.nix index 4b118a5a7cd..6537503add8 100644 --- a/pkgs/os-specific/windows/jom/default.nix +++ b/pkgs/os-specific/windows/jom/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, qt48, flex, cmake }: +{ stdenv, fetchgit, qt48, qmake4Hook, flex }: # At the time of committing this, the expression fails for me to cross-build in # both mingw32 and mingw64. @@ -13,12 +13,9 @@ stdenv.mkDerivation { }; buildInputs = [ qt48 ]; - nativeBuildInputs = [ flex /*cmake*/ ]; + nativeBuildInputs = [ flex qmake4Hook ]; QTDIR = qt48; - configurePhase = '' - qmake PREFIX=$out - ''; crossAttrs = { # cmakeFlags = "-DWIN32=1 -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_RC_COMPILER=${stdenv.cross.config}-windres"; diff --git a/pkgs/servers/emby/default.nix b/pkgs/servers/emby/default.nix new file mode 100644 index 00000000000..2f416fabe49 --- /dev/null +++ b/pkgs/servers/emby/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchurl, unzip, sqlite }: + +stdenv.mkDerivation rec { + name = "emby-${version}"; + version = "3.0.5934"; + + src = fetchurl { + url = "https://github.com/MediaBrowser/Emby/releases/download/${version}/Emby.Mono.zip"; + sha256 = "1yjplz7i0lwxjnmrra33xxsvza6gj4dblsl4rqjq1qv6i0jarfv1"; + }; + + buildInputs = [ unzip ]; + propagatedBuildInputs = [ sqlite ]; + + # Need to set sourceRoot as unpacker will complain about multiple directory output + sourceRoot = "."; + + patchPhase = '' + substituteInPlace System.Data.SQLite.dll.config --replace libsqlite3.so ${sqlite.out}/lib/libsqlite3.so + substituteInPlace MediaBrowser.Server.Mono.exe.config --replace ProgramData-Server "/var/lib/emby/ProgramData-Server" + ''; + + installPhase = '' + mkdir -p $out/bin + cp -r * $out/bin + ''; + + meta = { + description = "MediaBrowser - Bring together your videos, music, photos, and live television"; + homepage = http://emby.media/; + license = stdenv.lib.licenses.gpl2; + maintainers = [ stdenv.lib.maintainers.fadenb ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/servers/foswiki/default.nix b/pkgs/servers/foswiki/default.nix index c5831325958..5bfeef6f1fc 100644 --- a/pkgs/servers/foswiki/default.nix +++ b/pkgs/servers/foswiki/default.nix @@ -9,6 +9,8 @@ perlPackages.buildPerlPackage rec { sha256 = "03286pb966h99zgickm2f20rgnqwp9wga5wfkdvirv084kjdh8vp"; }; + outputs = [ "out" ]; + buildInputs = with perlPackages; [ # minimum requirements from INSTALL.html#System_Requirements AlgorithmDiff ArchiveTar AuthenSASL CGI CGISession CryptPasswdMD5 @@ -30,7 +32,7 @@ perlPackages.buildPerlPackage rec { # there's even no makefile doCheck = false; - installPhase = ''cp -r . "$out" ''; # TODO: some fixups will be needed for running it + installPhase = ''cp -r . "$out" ''; meta = with stdenv.lib; { description = "An open, programmable collaboration platform"; diff --git a/pkgs/servers/freeradius/default.nix b/pkgs/servers/freeradius/default.nix index 15bda5d3090..810f274579c 100644 --- a/pkgs/servers/freeradius/default.nix +++ b/pkgs/servers/freeradius/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, autoreconfHook, talloc +{ stdenv, fetchurl, autoreconfHook, talloc, finger_bsd, perl , openssl , linkOpenssl? true , openldap @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { name = "freeradius-${version}"; version = "3.0.11"; - buildInputs = [ autoreconfHook openssl talloc ] + buildInputs = [ autoreconfHook openssl talloc finger_bsd perl ] ++ optional withLdap [ openldap ] ++ optional withSqlite [ sqlite ] ++ optional withPcap [ libpcap ] @@ -60,6 +60,10 @@ stdenv.mkDerivation rec { "--localstatedir=/var" ] ++ optional (!linkOpenssl) "--with-openssl=no"; + postPatch = '' + substituteInPlace src/main/checkrad.in --replace "/usr/bin/finger" "${finger_bsd}/bin/finger" + ''; + installFlags = [ "sysconfdir=\${out}/etc" "localstatedir=\${TMPDIR}" diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix index a39d0e8e315..f69001da08a 100644 --- a/pkgs/servers/http/apache-httpd/2.4.nix +++ b/pkgs/servers/http/apache-httpd/2.4.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, perl, zlib, apr, aprutil, pcre, libiconv , proxySupport ? true , sslSupport ? true, openssl -, http2Support ? true, libnghttp2 +, http2Support ? true, nghttp2 , ldapSupport ? true, openldap , libxml2Support ? true, libxml2 , luaSupport ? false, lua5 @@ -13,7 +13,7 @@ in assert sslSupport -> aprutil.sslSupport && openssl != null; assert ldapSupport -> aprutil.ldapSupport && openldap != null; -assert http2Support -> libnghttp2 != null; +assert http2Support -> nghttp2 != null; stdenv.mkDerivation rec { version = "2.4.18"; @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { optional sslSupport openssl ++ optional ldapSupport openldap ++ # there is no --with-ldap flag optional libxml2Support libxml2 ++ - optional http2Support libnghttp2 ++ + optional http2Support nghttp2 ++ optional stdenv.isDarwin libiconv; patchPhase = '' @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { --enable-cgi ${optionalString proxySupport "--enable-proxy"} ${optionalString sslSupport "--enable-ssl"} - ${optionalString http2Support "--enable-http2 --with-nghttp2=${libnghttp2}"} + ${optionalString http2Support "--enable-http2 --with-nghttp2"} ${optionalString luaSupport "--enable-lua --with-lua=${lua5}"} ${optionalString libxml2Support "--with-libxml2=${libxml2.dev}/include/libxml2"} --docdir=$(doc)/share/doc diff --git a/pkgs/servers/http/nix-binary-cache/default.nix b/pkgs/servers/http/nix-binary-cache/default.nix index 674557d74fc..33801c8cd32 100644 --- a/pkgs/servers/http/nix-binary-cache/default.nix +++ b/pkgs/servers/http/nix-binary-cache/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { --replace @shell@ "${stdenv.shell}" \ --replace @coreutils@ "${coreutils}/bin" \ --replace @findutils@ "${findutils}/bin" \ - --replace @nix@ "${nix}/bin" \ + --replace @nix@ "${nix.out}/bin" \ --replace @xz@ "${xz.bin}/bin" \ --replace @bzip2@ "${bzip2.bin}/bin" \ --replace @gnused@ "${gnused}/bin" \ @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { --replace @shell@ "${stdenv.shell}" \ --replace @coreutils@ "${coreutils}/bin" \ --replace @findutils@ "${findutils}/bin" \ - --replace @nix@ "${nix}/bin" \ + --replace @nix@ "${nix.out}/bin" \ --replace @xz@ "${xz.bin}/bin" \ --replace @bzip2@ "${bzip2.bin}/bin" \ --replace @gnused@ "${gnused}/bin" \ diff --git a/pkgs/servers/ldap/389/default.nix b/pkgs/servers/ldap/389/default.nix index 685d365ed18..95dc5ab8679 100644 --- a/pkgs/servers/ldap/389/default.nix +++ b/pkgs/servers/ldap/389/default.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--sysconfdir=/etc" "--localstatedir=/var" - "--with-openldap=${openldap}" + "--with-openldap" "--with-db=${db}" "--with-sasl=${cyrus_sasl}" "--with-netsnmp=${net_snmp}" diff --git a/pkgs/servers/mail/dspam/default.nix b/pkgs/servers/mail/dspam/default.nix index 3cd3ca7492d..4c615e6f6b3 100644 --- a/pkgs/servers/mail/dspam/default.nix +++ b/pkgs/servers/mail/dspam/default.nix @@ -49,7 +49,8 @@ in stdenv.mkDerivation rec { "--enable-preferences-extension" "--enable-long-usernames" "--enable-external-lookup" - ] ++ lib.optional withMySQL "--with-mysql-includes=${libmysql}/include/mysql"; + ] ++ lib.optional withMySQL "--with-mysql-includes=${libmysql}/include/mysql" + ++ lib.optional withPgSQL "--with-pgsql-libraries=${postgresql.lib}/lib"; # Lots of things are hardwired to paths like sysconfdir. That's why we install with both "prefix" and "DESTDIR" # and fix directory structure manually after that. diff --git a/pkgs/servers/mail/rmilter/default.nix b/pkgs/servers/mail/rmilter/default.nix index c12ca525294..d5ba98bfbb3 100644 --- a/pkgs/servers/mail/rmilter/default.nix +++ b/pkgs/servers/mail/rmilter/default.nix @@ -1,22 +1,28 @@ -{ stdenv, fetchFromGitHub, cmake, bison, flex, openssl, pcre, libmilter, opendkim }: +{ stdenv, fetchFromGitHub, cmake, bison, flex, openssl, pcre, libmilter, opendkim, + libmemcached }: + +let patchedLibmilter = stdenv.lib.overrideDerivation libmilter (_ : { + patches = libmilter.patches ++ [ ./fd-passing-libmilter.patch ]; +}); +in stdenv.mkDerivation rec { name = "rmilter-${version}"; - version = "1.7.3"; + version = "1.8.1"; src = fetchFromGitHub { owner = "vstakhov"; repo = "rmilter"; rev = version; - sha256 = "04xalaxq5xgg5ls0f4ayp8yhzdfq5gqjb8qwfyha3mrx4dqrgh7s"; + sha256 = "0cplkc1acgysxn8id9wakd1fx0f76cazscpfqhrxyjbk5fb11ll4"; }; nativeBuildInputs = [ bison cmake flex ]; - buildInputs = [ libmilter openssl pcre opendkim ]; + buildInputs = [ libmemcached patchedLibmilter openssl pcre opendkim]; meta = with stdenv.lib; { homepage = "https://github.com/vstakhov/rmilter"; - license = licenses.bsd2; + license = licenses.asl20; description = '' Daemon to integrate rspamd and milter compatible MTA, for example postfix or sendmail diff --git a/pkgs/servers/mail/rmilter/fd-passing-libmilter.patch b/pkgs/servers/mail/rmilter/fd-passing-libmilter.patch new file mode 100644 index 00000000000..3ab61a6fab0 --- /dev/null +++ b/pkgs/servers/mail/rmilter/fd-passing-libmilter.patch @@ -0,0 +1,80 @@ +Description: systemd-like socket activation support for libmilter +Author: Mikhail Gusarov {unix|local}:/path/to/file -- A named pipe. +
  • inet:port@{hostname|ip-address} -- An IPV4 socket. +
  • inet6:port@{hostname|ip-address} -- An IPV6 socket. ++
  • fd:number -- Pre-opened file descriptor. + + + +diff --git a/libmilter/listener.c b/libmilter/listener.c +index 48c552f..2249a1f 100644 +--- a/libmilter/listener.c ++++ b/libmilter/listener.c +@@ -197,6 +197,11 @@ mi_milteropen(conn, backlog, rmsocket, name) + L_socksize = sizeof addr.sin6; + } + #endif /* NETINET6 */ ++ else if (strcasecmp(p, "fd") == 0) ++ { ++ addr.sa.sa_family = AF_UNSPEC; ++ L_socksize = sizeof (_SOCK_ADDR); ++ } + else + { + smi_log(SMI_LOG_ERR, "%s: unknown socket type %s", +@@ -443,7 +448,21 @@ mi_milteropen(conn, backlog, rmsocket, name) + } + #endif /* NETINET || NETINET6 */ + +- sock = socket(addr.sa.sa_family, SOCK_STREAM, 0); ++ if (addr.sa.sa_family == AF_UNSPEC) ++ { ++ char *end; ++ sock = strtol(colon, &end, 10); ++ if (*end != '\0' || sock < 0) ++ { ++ smi_log(SMI_LOG_ERR, "%s: expected positive integer as fd, got %s", name, colon); ++ return INVALID_SOCKET; ++ } ++ } ++ else ++ { ++ sock = socket(addr.sa.sa_family, SOCK_STREAM, 0); ++ } ++ + if (!ValidSocket(sock)) + { + smi_log(SMI_LOG_ERR, +@@ -466,6 +485,7 @@ mi_milteropen(conn, backlog, rmsocket, name) + #if NETUNIX + addr.sa.sa_family != AF_UNIX && + #endif /* NETUNIX */ ++ addr.sa.sa_family != AF_UNSPEC && + setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *) &sockopt, + sizeof(sockopt)) == -1) + { +@@ -511,7 +531,8 @@ mi_milteropen(conn, backlog, rmsocket, name) + } + #endif /* NETUNIX */ + +- if (bind(sock, &addr.sa, L_socksize) < 0) ++ if (addr.sa.sa_family != AF_UNSPEC && ++ bind(sock, &addr.sa, L_socksize) < 0) + { + smi_log(SMI_LOG_ERR, + "%s: Unable to bind to port %s: %s", +@@ -817,7 +838,7 @@ mi_listener(conn, dbg, smfi, timeout, backlog) + # ifdef BSD4_4_SOCKADDR + cliaddr.sa.sa_len == 0 || + # endif /* BSD4_4_SOCKADDR */ +- cliaddr.sa.sa_family != L_family)) ++ (L_family != AF_UNSPEC && cliaddr.sa.sa_family != L_family))) + { + (void) closesocket(connfd); + connfd = INVALID_SOCKET; diff --git a/pkgs/servers/mail/rspamd/default.nix b/pkgs/servers/mail/rspamd/default.nix index f3156afd97a..a9da7953978 100644 --- a/pkgs/servers/mail/rspamd/default.nix +++ b/pkgs/servers/mail/rspamd/default.nix @@ -1,18 +1,18 @@ { stdenv, fetchFromGitHub, cmake, perl , file, glib, gmime, libevent, luajit, openssl, pcre, pkgconfig, sqlite }: -let libmagic = file; # libmagic provided buy file package ATM +let libmagic = file; # libmagic provided by file package ATM in stdenv.mkDerivation rec { name = "rspamd-${version}"; - version = "1.2.0"; + version = "1.2.5"; src = fetchFromGitHub { owner = "vstakhov"; repo = "rspamd"; rev = version; - sha256 = "00d9c9b8w6j0ls1w08bfghn4635as779b45vhhlv1f5wfzhxz6a1"; + sha256 = "0slpixcfd74qkm7445lmcry4s1yamayphzzyr7cxjlr9xfxlblqn"; }; nativeBuildInputs = [ cmake pkgconfig perl ]; @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = "https://github.com/vstakhov/rspamd"; - license = licenses.bsd2; + license = licenses.asl20; description = "advanced spam filtering system"; maintainers = with maintainers; [ avnik fpletz ]; }; diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix index 9165e03d79c..7a558a03031 100644 --- a/pkgs/servers/matrix-synapse/default.nix +++ b/pkgs/servers/matrix-synapse/default.nix @@ -2,23 +2,23 @@ let matrix-angular-sdk = buildPythonApplication rec { name = "matrix-angular-sdk-${version}"; - version = "0.6.6"; + version = "0.6.8"; src = fetchurl { - url = "https://pypi.python.org/packages/source/m/matrix-angular-sdk/matrix-angular-sdk-${version}.tar.gz"; - sha256 = "1vknhmibb8gh8lng50va2cdvng5xm7vqv9dl680m3gj38pg0bv8a"; + url = "mirror://pypi/m/matrix-angular-sdk/matrix-angular-sdk-${version}.tar.gz"; + sha256 = "0gmx4y5kqqphnq3m7xk2vpzb0w2a4palicw7wfdr1q2schl9fhz2"; }; }; in buildPythonApplication rec { name = "matrix-synapse-${version}"; - version = "0.12.0"; + version = "0.14.0"; src = fetchFromGitHub { owner = "matrix-org"; repo = "synapse"; - rev = "f35f8d06ea58e2d0cdccd82924c7a44fd93f4c38"; - sha256 = "0b0k1am9lh0qglagc06m91qs26ybv37k7wpbg5333x8jaf5d1si4"; + rev = "5fbdf2bcec40bf2f24fc0698440ee384595ff027"; + sha256 = "1f9flb68l0bb5fkggxz1pghv72snsx6yia3s58f85z13f9vh84cb"; }; patches = [ ./matrix-synapse.patch ]; diff --git a/pkgs/servers/meteor/default.nix b/pkgs/servers/meteor/default.nix index 7412378f3de..370a430ec1a 100644 --- a/pkgs/servers/meteor/default.nix +++ b/pkgs/servers/meteor/default.nix @@ -40,28 +40,28 @@ stdenv.mkDerivation rec { popd substituteInPlace $out/tools/cli/main.js \ --replace "@INTERPRETER@" "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --replace "@RPATH@" "${stdenv.cc.cc}/lib:${zlib.out}/lib" \ + --replace "@RPATH@" "${stdenv.cc.cc.lib}/lib:${zlib.out}/lib" \ --replace "@PATCHELF@" "${patchelf}/bin/patchelf" # Patch node. node=$devBundle/bin/node patchelf \ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ - --set-rpath "$(patchelf --print-rpath $node):${stdenv.cc.cc}/lib" \ + --set-rpath "$(patchelf --print-rpath $node):${stdenv.cc.cc.lib}/lib" \ $node # Patch mongo. for p in $devBundle/mongodb/bin/mongo{,d}; do patchelf \ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ - --set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc}/lib:${zlib.out}/lib" \ + --set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc.lib}/lib:${zlib.out}/lib" \ $p done # Patch node dlls. for p in $(find $out/packages -name '*.node'); do patchelf \ - --set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc}/lib" \ + --set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc.lib}/lib" \ $p done diff --git a/pkgs/servers/nosql/cassandra/2.1.nix b/pkgs/servers/nosql/cassandra/2.1.nix index d0f70a554f7..6c09c977d29 100644 --- a/pkgs/servers/nosql/cassandra/2.1.nix +++ b/pkgs/servers/nosql/cassandra/2.1.nix @@ -11,8 +11,8 @@ let - version = "2.1.13"; - sha256 = "09b3vf5jsv70xlfimj30v8l1zw7c5xdgpw5fpmn6jh8n3gigybqh"; + version = "2.1.14"; + sha256 = "168rg8gg1dhcjfjsr1jbfx4zj3zyqn0xi2z1j2c8jn6054486ybg"; in diff --git a/pkgs/servers/nosql/redis/default.nix b/pkgs/servers/nosql/redis/default.nix index 04bb9fc2bbd..16a2ec21079 100644 --- a/pkgs/servers/nosql/redis/default.nix +++ b/pkgs/servers/nosql/redis/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, lua }: stdenv.mkDerivation rec { version = "3.0.7"; @@ -9,6 +9,7 @@ stdenv.mkDerivation rec { sha256 = "08vzfdr67gp3lvk770qpax2c5g2sx8hn6p64jn3jddrvxb2939xj"; }; + buildInputs = [ lua ]; makeFlags = "PREFIX=$(out)"; enableParallelBuilding = true; diff --git a/pkgs/servers/openxpki/default.nix b/pkgs/servers/openxpki/default.nix index dd1ed7c473b..12ed3f56d9f 100644 --- a/pkgs/servers/openxpki/default.nix +++ b/pkgs/servers/openxpki/default.nix @@ -50,7 +50,10 @@ buildPerlPackage { lib libapreq2 libnet podlators threads threadsshared version ]; preConfigure = '' - export OPENSSL_PREFIX=${openssl} + substituteInPlace core/server/Makefile.PL \ + --replace "my \$openssl_inc_dir = ''';" "my \$openssl_inc_dir = '${openssl}/include';" \ + --replace "my \$openssl_lib_dir = ''';" "my \$openssl_lib_dir = '${openssl.out}/lib';" \ + --replace "my \$openssl_binary = ''';" "my \$openssl_binary = '${openssl.bin}/bin/openssl';" substituteInPlace tools/vergen --replace "#!/usr/bin/perl" "#!${perl}/bin/perl" cp ${./vergen_revision_state} .vergen_revision_state cd core/server diff --git a/pkgs/servers/plex/default.nix b/pkgs/servers/plex/default.nix index 22a5c852e15..50fc85d48b3 100644 --- a/pkgs/servers/plex/default.nix +++ b/pkgs/servers/plex/default.nix @@ -5,9 +5,9 @@ let plexpkg = if enablePlexPass then { - version = "0.9.16.4.1911"; - vsnHash = "ee6e505"; - sha256 = "0lq0lcynmc09d0whynb0x2zgd39dp7z7k86ndgm2clay3zbzqpfd"; + version = "0.9.16.5.1966"; + vsnHash = "81a3bf0"; + sha256 = "1sgdd3r067j9ysfp90wjx6zi01s00wzgzs27l8xdlsbnvjr8zmf8"; } else { version = "0.9.16.4.1911"; vsnHash = "ee6e505"; diff --git a/pkgs/servers/search/elasticsearch/2.x.nix b/pkgs/servers/search/elasticsearch/2.x.nix index a37703ae7fd..9495106ea00 100644 --- a/pkgs/servers/search/elasticsearch/2.x.nix +++ b/pkgs/servers/search/elasticsearch/2.x.nix @@ -3,12 +3,12 @@ with stdenv.lib; stdenv.mkDerivation rec { - version = "2.2.0"; + version = "2.3.1"; name = "elasticsearch-${version}"; src = fetchurl { url = "https://download.elasticsearch.org/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${version}/${name}.tar.gz"; - sha256 = "0c2d0mpcr8lpvifvgp2pfj7avdi7fa8a5vib0gqdap7mw60wqw7d"; + sha256 = "1fqf24bv4jfxai507jh91zm94dp1j8kmygljvpy7414f0drjw2gh"; }; patches = [ ./es-home-2.x.patch ]; @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out - cp -R bin config lib $out + cp -R bin config lib modules $out # don't want to have binary with name plugin mv $out/bin/plugin $out/bin/elasticsearch-plugin diff --git a/pkgs/servers/squid/default.nix b/pkgs/servers/squid/default.nix index 2831423d123..4865b839ae4 100644 --- a/pkgs/servers/squid/default.nix +++ b/pkgs/servers/squid/default.nix @@ -1,10 +1,10 @@ { fetchurl, stdenv, perl, lib, openldap, pam, db, cyrus_sasl, libcap, expat, libxml2, libtool, openssl}: stdenv.mkDerivation rec { - name = "squid-3.5.15"; + name = "squid-3.5.17"; src = fetchurl { url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2"; - sha256 = "1cgy6ffyarqd35plqmqi3mrsp0941c6n55pr3zavp07ksj46wgzm"; + sha256 = "1kdq778cm18ak4624gchmbi8avnzyvwgyzjplkd0fkcrgfs44bsf"; }; buildInputs = [perl openldap pam db cyrus_sasl libcap expat libxml2 libtool openssl]; diff --git a/pkgs/servers/xmpp/ejabberd/default.nix b/pkgs/servers/xmpp/ejabberd/default.nix index 10658ce4dd2..974a636e559 100644 --- a/pkgs/servers/xmpp/ejabberd/default.nix +++ b/pkgs/servers/xmpp/ejabberd/default.nix @@ -1,4 +1,4 @@ -{ stdenv, writeScriptBin, lib, fetchurl, fetchFromGitHub +{ stdenv, writeScriptBin, lib, fetchurl, git, cacert , erlang, openssl, expat, libyaml, bash, gnused, gnugrep, coreutils, utillinux, procps , withMysql ? false , withPgsql ? false @@ -13,8 +13,6 @@ }: let - ctlpath = lib.makeBinPath [ bash gnused gnugrep coreutils utillinux procps ]; - fakegit = writeScriptBin "git" '' #! ${stdenv.shell} -e if [ "$1" = "describe" ]; then @@ -22,192 +20,15 @@ let fi ''; - # These can be extracted from `rebar.config` - # Some dependencies are from another packages. Try commenting them out; then during build - # you'll get necessary revision information. - ejdeps = { - lager = fetchFromGitHub { - owner = "basho"; - repo = "lager"; - rev = "3.0.2"; - sha256 = "04l40dlqpl2y6ddpbpknmnjf537bjvrmg8r0jnmw1h60dgyb2ydk"; - }; - # dependency of lager - goldrush = fetchFromGitHub { - owner = "DeadZen"; - repo = "goldrush"; - rev = "0.1.7"; - sha256 = "1104j8v86hdavxf08yjyjkpi5vf95rfvsywdx29c69x3z33i4z3m"; - }; - p1_utils = fetchFromGitHub { - owner = "processone"; - repo = "p1_utils"; - rev = "1.0.3"; - sha256 = "0bw163wx0ji2sz7yb3nzvm1mnnljsdji606xzk33za8c4sgrb4nj"; - }; - cache_tab = fetchFromGitHub { - owner = "processone"; - repo = "cache_tab"; - rev = "1.0.2"; - sha256 = "1krgn6y95jgc8pc0vkj36p0wcazsb8b6h1x4f0r1936jff2vqk33"; - }; - fast_tls = fetchFromGitHub { - owner = "processone"; - repo = "fast_tls"; - rev = "1.0.1"; - sha256 = "08lh6935k590hix3z69kjjd75w68vmmjcx7gi4zh8j7li4v9k9l2"; - }; - stringprep = fetchFromGitHub { - owner = "processone"; - repo = "stringprep"; - rev = "1.0.2"; - sha256 = "1wrisajyll45wf6cz1rb2q70sz83i6nfnfiijsbzhy0xk51436sa"; - }; - fast_xml = fetchFromGitHub { - owner = "processone"; - repo = "fast_xml"; - rev = "1.1.3"; - sha256 = "1a2k21fqz8rp4laz7wn0hsxy58i1gdwc3qhw3k2kar8lgw4m3wqp"; - }; - stun = fetchFromGitHub { - owner = "processone"; - repo = "stun"; - rev = "1.0.1"; - sha256 = "0bq0qkc7h3nhqxa6ff2nf6bi4kiax4208716hxfz6l1vxrh7f3p2"; - }; - esip = fetchFromGitHub { - owner = "processone"; - repo = "esip"; - rev = "1.0.2"; - sha256 = "0ibvb85wkqw81y154bagp0kgf1jmdscmfq8yk73j1k986dmiqfn2"; - }; - fast_yaml = fetchFromGitHub { - owner = "processone"; - repo = "fast_yaml"; - rev = "1.0.2"; - sha256 = "019imn255bkkvilg4nrcidl8w6dn2jrb2nyrs2nixsgcbmvkdl5k"; - }; - jiffy = fetchFromGitHub { - owner = "davisp"; - repo = "jiffy"; - rev = "0.14.7"; - sha256 = "1w55vwz4a94v0aajm3lg6nlhpw2w0zdddiw36f2n4sfhbqn0v0jr"; - }; - p1_oauth2 = fetchFromGitHub { - owner = "processone"; - repo = "p1_oauth2"; - rev = "0.6.1"; - sha256 = "1wvmi3fj05hlbi3sbqpakznq70n76a7nbvbrjhr8k79bmvsh6lyl"; - }; - p1_xmlrpc = fetchFromGitHub { - owner = "processone"; - repo = "p1_xmlrpc"; - rev = "1.15.1"; - sha256 = "12pfvb3k9alzg7qbph3bc1sw7wk86psm3jrdrfclq90zlpwqa0w3"; - }; - luerl = fetchFromGitHub { - owner = "rvirding"; - repo = "luerl"; - rev = "9524d0309a88b7c62ae93da0b632b185de3ba9db"; - sha256 = "15yplmv2xybnz3nby940752jw672vj99l1j61rrfy686hgrfnc42"; - }; - - p1_mysql = fetchFromGitHub { - owner = "processone"; - repo = "p1_mysql"; - rev = "1.0.1"; - sha256 = "17122xhc420kqfsv4c4g0jcllpdbhg84wdlwd3227w4q729jg6bk"; - }; - p1_pgsql = fetchFromGitHub { - owner = "processone"; - repo = "p1_pgsql"; - rev = "1.0.1"; - sha256 = "1ca0hhxyfmwjp49zjga1fdhrbaqnxdpmcvs2i6nz6jmapik788nr"; - }; - sqlite3 = fetchFromGitHub { - owner = "processone"; - repo = "erlang-sqlite3"; - rev = "1.1.5"; - sha256 = "17n4clysg540nx9g8k8mi9l7vkz8wigycgxmzzn0wmgxdf6mhxlb"; - }; - p1_pam = fetchFromGitHub { - owner = "processone"; - repo = "epam"; - rev = "1.0.0"; - sha256 = "0dlbmfwndhyg855vnhwyccxcjqzf2wcgc7522mjb9q38cva50rpr"; - }; - ezlib = fetchFromGitHub { - owner = "processone"; - repo = "ezlib"; - rev = "1.0.1"; - sha256 = "1asp7s2q72iql870igc827dvi9iqyd6lhs0q3jbjj2w7xfz4x4kk"; - }; - hamcrest = fetchFromGitHub { - owner = "hyperthunk"; - repo = "hamcrest-erlang"; - rev = "908a24fda4a46776a5135db60ca071e3d783f9f6"; - sha256 = "0irxidwrb37m0xwls6q9nn2zfs3pyxrgbnjgrhnh7gm35ib51hkj"; - }; - riakc = fetchFromGitHub { - owner = "basho"; - repo = "riak-erlang-client"; - rev = "527722d12d0433b837cdb92a60900c2cb5df8942"; - sha256 = "13rkwibsjsl2gdysvf11r1hqfrf89hjgpa0x0hz2910f2ryqll3y"; - }; - # dependency of riakc - riak_pb = fetchFromGitHub { - owner = "basho"; - repo = "riak_pb"; - rev = "2.1.0.7"; - sha256 = "1p0qmjq069f7j1m29dv36ayvz8m0pcm94ccsnv5blykfg2c5ja0c"; - }; - # dependency of riak_pb - protobuffs = fetchFromGitHub { - owner = "basho"; - repo = "erlang_protobuffs"; - rev = "0.8.2"; - sha256 = "0w4jmsnc9x2ykqh1q6b12pl8a9973dxdhqk3y0ph17n83q5xz3h7"; - }; - elixir = fetchFromGitHub { - owner = "elixir-lang"; - repo = "elixir"; - rev = "v1.1.0"; - sha256 = "0r5673x2qdvfbwmvyvj8ddvzgxnkl3cv9jsf1yzsxgdifjbrzwx7"; - }; - rebar_elixir_plugin = fetchFromGitHub { - owner = "processone"; - repo = "rebar_elixir_plugin"; - rev = "0.1.0"; - sha256 = "0x04ff53mxwd9va8nl4m70dbamp6p4dpxs646c168iqpnpadk3sk"; - }; - iconv = fetchFromGitHub { - owner = "processone"; - repo = "iconv"; - rev = "1.0.0"; - sha256 = "0dfc23m2lqilj8ixn23wpj5xp1mgajb9b5ch95riigxzxmx97ri9"; - }; - meck = fetchFromGitHub { - owner = "eproxus"; - repo = "meck"; - rev = "0.8.2"; - sha256 = "0s4qbvryap46cz63awpbv5zzmlcay5pn2lixgmgvcjarqv70cbs7"; - }; - eredis = fetchFromGitHub { - owner = "wooga"; - repo = "eredis"; - rev = "v1.0.8"; - sha256 = "10fr3kbc2nd2liggsq4y77nfirndzapcxzkjgyp06bpr9cjlvhlm"; - }; - - }; + ctlpath = lib.makeBinPath [ bash gnused gnugrep coreutils utillinux procps ]; in stdenv.mkDerivation rec { - version = "16.02"; + version = "16.04"; name = "ejabberd-${version}"; src = fetchurl { url = "http://www.process-one.net/downloads/ejabberd/${version}/${name}.tgz"; - sha256 = "0yiai7zyjdcp0ppc5l5p56bxhg273hwfbv41qlbkg32dhr880f4q"; + sha256 = "1hrcswk03x5x6f6xy8sac4ihhi6jcmsfp6449k3570j39vklz5ix"; }; nativeBuildInputs = [ fakegit ]; @@ -222,21 +43,41 @@ in stdenv.mkDerivation rec { # Apparently needed for Elixir LANG = "en_US.UTF-8"; - depsNames = - [ "lager" "goldrush" "p1_utils" "cache_tab" "fast_tls" "stringprep" "fast_xml" "stun" "esip" "fast_yaml" - "jiffy" "p1_oauth2" "p1_xmlrpc" "luerl" - ] - ++ lib.optional withMysql "p1_mysql" - ++ lib.optional withPgsql "p1_pgsql" - ++ lib.optional withSqlite "sqlite3" - ++ lib.optional withPam "p1_pam" - ++ lib.optional withZlib "ezlib" - ++ lib.optionals withRiak [ "hamcrest" "riakc" "riak_pb" "protobuffs" ] - ++ lib.optionals withElixir [ "elixir" "rebar_elixir_plugin" ] - ++ lib.optional withIconv "iconv" - ++ lib.optional withTools "meck" - ++ lib.optional withRedis "eredis" - ; + deps = stdenv.mkDerivation { + name = "ejabberd-deps-${version}"; + + inherit src; + + configureFlags = [ "--enable-all" "--with-sqlite3=${sqlite}" ]; + + buildInputs = [ git erlang openssl expat libyaml sqlite pam zlib elixir ]; + + GIT_SSL_CAINFO = "${cacert}/etc/ssl/certs/ca-bundle.crt"; + + preBuild = '' + patchShebangs . + ''; + + makeFlags = [ "deps" ]; + + installPhase = '' + for i in deps/*; do + ( cd $i + git reset --hard + git clean -fdx + git describe --always --tags > .rev + rm -rf .git + ) + done + rm deps/.got + + cp -r deps $out + ''; + + outputHashMode = "recursive"; + outputHashAlgo = "sha256"; + outputHash = "0zmb7g00y5q4alf70i1chv3yim63i03sy4p8i83bzvxri59vw0zv"; + }; configureFlags = [ (lib.enableFeature withMysql "mysql") @@ -251,28 +92,11 @@ in stdenv.mkDerivation rec { (lib.enableFeature withRedis "redis") ] ++ lib.optional withSqlite "--with-sqlite3=${sqlite}"; - depsPaths = map (x: builtins.getAttr x ejdeps) depsNames; - depsRevs = map (x: x.rev) depsPaths; - enableParallelBuilding = true; preBuild = '' - mkdir deps - depsPathsA=( $depsPaths ) - depsNamesA=( $depsNames ) - depsRevsA=( $depsRevs ) - for i in {0..${toString (builtins.length depsNames - 1)}}; do - path="deps/''${depsNamesA[$i]}" - cp -R ''${depsPathsA[$i]} "$path" - chmod -R +w "$path" - echo "''${depsRevsA[$i]}" > "$path/.rev" - done - touch deps/.got - patchShebangs . - - for i in deps/*; do - [ -x "$i/configure" ] && ( cd "$i"; ./configure ) || true - done + cp -r $deps deps + chmod -R +w deps ''; postInstall = '' @@ -290,5 +114,6 @@ in stdenv.mkDerivation rec { homepage = http://www.ejabberd.im; platforms = lib.platforms.linux; maintainers = [ lib.maintainers.sander lib.maintainers.abbradar ]; + broken = withElixir; }; } diff --git a/pkgs/servers/zookeeper/default.nix b/pkgs/servers/zookeeper/default.nix index 307993a958a..7cf95ca7e9e 100644 --- a/pkgs/servers/zookeeper/default.nix +++ b/pkgs/servers/zookeeper/default.nix @@ -1,36 +1,50 @@ { stdenv, fetchurl, jre, makeWrapper, bash }: stdenv.mkDerivation rec { - name = "zookeeper-3.4.6"; + name = "zookeeper-3.4.6"; - src = fetchurl { - url = "mirror://apache/zookeeper/${name}/${name}.tar.gz"; - sha256 = "01b3938547cd620dc4c93efe07c0360411f4a66962a70500b163b59014046994"; - }; + src = fetchurl { + url = "mirror://apache/zookeeper/${name}/${name}.tar.gz"; + sha256 = "01b3938547cd620dc4c93efe07c0360411f4a66962a70500b163b59014046994"; + }; - buildInputs = [ makeWrapper jre ]; + buildInputs = [ makeWrapper jre ]; - phases = ["unpackPhase" "installPhase"]; + phases = ["unpackPhase" "installPhase"]; - installPhase = '' - mkdir -p $out - cp -R conf docs lib ${name}.jar $out - mkdir -p $out/bin - cp -R bin/{zkCli,zkCleanup,zkEnv}.sh $out/bin - for i in $out/bin/{zkCli,zkCleanup}.sh; do - wrapProgram $i \ - --set JAVA_HOME "${jre}" \ - --prefix PATH : "${bash}/bin" - done - chmod -x $out/bin/zkEnv.sh - ''; + installPhase = '' + mkdir -p $out + cp -R conf docs lib ${name}.jar $out + mkdir -p $out/bin + cp -R bin/{zkCli,zkCleanup,zkEnv}.sh $out/bin + for i in $out/bin/{zkCli,zkCleanup}.sh; do + wrapProgram $i \ + --set JAVA_HOME "${jre}" \ + --prefix PATH : "${bash}/bin" + done + chmod -x $out/bin/zkEnv.sh - meta = with stdenv.lib; { - homepage = "http://zookeeper.apache.org"; - description = "Apache Zookeeper"; - license = licenses.asl20; - maintainers = [ maintainers.nathan-gs ]; - platforms = platforms.unix; - }; + mkdir -p $out/share/zooinspector + cp -r contrib/ZooInspector/{${name}-ZooInspector.jar,icons,lib,config} $out/share/zooinspector + classpath="$out/${name}.jar:$out/share/zooinspector/${name}-ZooInspector.jar" + for jar in $out/lib/*.jar $out/share/zooinspector/lib/*.jar; do + classpath="$classpath:$jar" + done + + cat << EOF > $out/bin/zooInspector.sh + #!${stdenv.shell} + cd $out/share/zooinspector + exec ${jre}/bin/java -cp $classpath org.apache.zookeeper.inspector.ZooInspector + EOF + chmod +x $out/bin/zooInspector.sh + ''; + + meta = with stdenv.lib; { + homepage = "http://zookeeper.apache.org"; + description = "Apache Zookeeper"; + license = licenses.asl20; + maintainers = with maintainers; [ nathan-gs cstrahan ]; + platforms = platforms.unix; + }; } diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix index 6b4a91e9014..8916cca0f04 100644 --- a/pkgs/shells/fish/default.nix +++ b/pkgs/shells/fish/default.nix @@ -24,6 +24,7 @@ stdenv.mkDerivation rec { sed -e "s|expr|${coreutils}/bin/expr|" \ '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' -e "s|if which unicode_start|if true|" \ + '' + stdenv.lib.optionalString stdenv.isLinux '' -e "s|unicode_start|${kbd}/bin/unicode_start|" \ '' + '' -i "$out/etc/fish/config.fish" @@ -50,7 +51,7 @@ stdenv.mkDerivation rec { --replace "| ul" "| ${utillinux}/bin/ul" for cur in $out/share/fish/functions/*.fish; do - substituteInPlace "$cur" --replace "/usr/bin/getent" "${glibc}/bin/getent" + substituteInPlace "$cur" --replace "/usr/bin/getent" "${glibc.bin}/bin/getent" done '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' sed -i "s|(hostname\||(${nettools}/bin/hostname\||" "$out/share/fish/functions/fish_prompt.fish" diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix index 796521b5233..78b112210ac 100644 --- a/pkgs/shells/oh-my-zsh/default.nix +++ b/pkgs/shells/oh-my-zsh/default.nix @@ -7,12 +7,12 @@ stdenv.mkDerivation rec { name = "oh-my-zsh-git-${version}"; - version = "2016-04-06"; + version = "2016-04-20"; src = fetchgit { url = "https://github.com/robbyrussell/oh-my-zsh"; - rev = "d310fac7f65d31f7494532201e02ebf67c9d9555"; - sha256 = "0kx552b0jf5j8qkk1kixdr1z49ly79cvzhdh27848rj3kwb0z8vq"; + rev = "1b1315a777328095cd8b5f364fd4345eeae7c4bf"; + sha256 = "0q3w96a9rjxmqknycxjqjs5mi0q2mark8yrfim7snxrf9ajv0ypk"; }; phases = "installPhase"; diff --git a/pkgs/test/rpath/builder.sh b/pkgs/test/rpath/builder.sh deleted file mode 100644 index 2bf62462146..00000000000 --- a/pkgs/test/rpath/builder.sh +++ /dev/null @@ -1,79 +0,0 @@ -export NIX_DEBUG=1 - -source $stdenv/setup - -mkdir $out -mkdir $out/bin - - -# 1: link statically against glibc. -res=$out/bin/hello1 -gcc -static $src/hello1.c -o $res - -case $(ldd $res) in - *"not a dynamic executable"*) - ;; - *) - echo "$res not statically linked!" - exit 1 -esac - - -# 2: link dynamically against glibc. -res=$out/bin/hello2 -gcc $src/hello1.c -o $res - -case $(ldd $res) in - */store/*glibc*/lib/libc.so*/store/*glibc*/lib/ld-linux.so*) - ;; - *) - echo "$res not dynamically linked / bad rpath!" - exit 1 - ;; -esac - - -# 3: link C++ dynamically against glibc / libstdc++. -res=$out/bin/hello3 -g++ $src/hello2.cc -o $res - -case $(ldd $res) in - */store/*gcc*/lib/*libstdc++*/store/*glibc*/lib/libm*/store/*gcc*/lib/libgcc_s*/store/*glibc*/lib/libc.so*/store/*glibc*/lib/ld-linux.so*) - ;; - *) - echo "$res not dynamically linked / bad rpath!" - exit 1 - ;; -esac - - -# 4: build dynamic library locally, link against it, copy it. -res=$out/bin/hello4 -mkdir bla -gcc -shared $src/text.c -o bla/libtext.so -gcc $src/hello3.c -o $res -L$(pwd)/bla -ltext -mkdir $out/lib - -case $(ldd $res) in - */tmp*) - echo "$res depends on file in /tmp!" - exit 1 - ;; -esac - -cp bla/libtext.so $out/lib - -case $(ldd $res) in - */store/*glibc*/lib/libc.so*/store/*glibc*/lib/ld-linux.so*) - ;; - *) - echo "$res not dynamically linked / bad rpath!" - exit 1 - ;; -esac - - -# Run the programs we just made. -for i in $out/bin/*; do - $i -done diff --git a/pkgs/test/rpath/default.nix b/pkgs/test/rpath/default.nix deleted file mode 100644 index f0903420c96..00000000000 --- a/pkgs/test/rpath/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -let { - system = "i686-linux"; - - stdenvs = (import ../../system/stdenvs.nix) { - inherit system; - allPackages = import ../../system/all-packages-generic.nix; - }; - - stdenv = stdenvs.stdenvLinuxBoot2; - - test = stdenv.mkDerivation { - name = "rpath-test"; - builder = ./builder.sh; - src = ./src; - }; - - body = test; -} diff --git a/pkgs/test/rpath/src/hello1.c b/pkgs/test/rpath/src/hello1.c deleted file mode 100644 index c44d7c4a936..00000000000 --- a/pkgs/test/rpath/src/hello1.c +++ /dev/null @@ -1,7 +0,0 @@ -#include - -int main(int argc, char * * argv) -{ - printf("Hello World!\n"); - return 0; -} diff --git a/pkgs/test/rpath/src/hello2.cc b/pkgs/test/rpath/src/hello2.cc deleted file mode 100644 index 0dc34766f5f..00000000000 --- a/pkgs/test/rpath/src/hello2.cc +++ /dev/null @@ -1,7 +0,0 @@ -#include - -int main(int argc, char * * argv) -{ - std::cout << "Hello World!\n"; - return 0; -} diff --git a/pkgs/test/rpath/src/hello3.c b/pkgs/test/rpath/src/hello3.c deleted file mode 100644 index 2b2308360da..00000000000 --- a/pkgs/test/rpath/src/hello3.c +++ /dev/null @@ -1,9 +0,0 @@ -#include - -char * text(); - -int main(int argc, char * * argv) -{ - printf(text()); - return 0; -} diff --git a/pkgs/test/rpath/src/text.c b/pkgs/test/rpath/src/text.c deleted file mode 100644 index 3d85ca23f79..00000000000 --- a/pkgs/test/rpath/src/text.c +++ /dev/null @@ -1,4 +0,0 @@ -char * text() -{ - return "Hello World!\n"; -} diff --git a/pkgs/test/simple/default.nix b/pkgs/test/simple/default.nix deleted file mode 100644 index b7d9446bac7..00000000000 --- a/pkgs/test/simple/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -let { - system = "i686-linux"; - - stdenvs = (import ../../system/stdenvs.nix) { - inherit system; - allPackages = import ../../system/all-packages-generic.nix; - }; - - stdenv = stdenvs.stdenvNix; - - test = stdenv.mkDerivation { - name = "simple-test"; - builder = ./builder.sh; - }; - - body = test; -} diff --git a/pkgs/tools/X11/bumblebee/default.nix b/pkgs/tools/X11/bumblebee/default.nix index d1f2318d6d4..e58aa7042d0 100644 --- a/pkgs/tools/X11/bumblebee/default.nix +++ b/pkgs/tools/X11/bumblebee/default.nix @@ -18,7 +18,7 @@ { stdenv, lib, fetchurl, pkgconfig, help2man, makeWrapper , glib, libbsd -, libX11, libXext, xorgserver, xkbcomp, module_init_tools, xkeyboard_config, xf86videonouveau +, libX11, libXext, xorgserver, xkbcomp, kmod, xkeyboard_config, xf86videonouveau , nvidia_x11, virtualgl, primusLib # The below should only be non-null in a x86_64 system. On a i686 # system the above nvidia_x11 and virtualgl will be the i686 packages. @@ -43,10 +43,10 @@ let nvidiaLibs = lib.makeLibraryPath nvidia_x11s; - bbdPath = lib.makeBinPath [ module_init_tools xorgserver ]; + bbdPath = lib.makeBinPath [ kmod xorgserver ]; bbdLibs = lib.makeLibraryPath [ libX11 libXext ]; - xmodules = lib.concatStringsSep "," (map (x: "${x}/lib/xorg/modules") ([ xorgserver ] ++ lib.optional (!useNvidia) xf86videonouveau)); + xmodules = lib.concatStringsSep "," (map (x: "${x.out or x}/lib/xorg/modules") ([ xorgserver ] ++ lib.optional (!useNvidia) xf86videonouveau)); in stdenv.mkDerivation rec { name = "bumblebee-${version}"; @@ -80,7 +80,7 @@ in stdenv.mkDerivation rec { # be in PATH, and thus no action for them is required. substituteInPlace src/module.c \ - --replace "/sbin/modinfo" "${module_init_tools}/sbin/modinfo" + --replace "/sbin/modinfo" "${kmod}/sbin/modinfo" # Don't use a special group, just reuse wheel. substituteInPlace configure \ diff --git a/pkgs/tools/X11/virtualgl/lib.nix b/pkgs/tools/X11/virtualgl/lib.nix index 2df037229ea..6b93c6432c3 100644 --- a/pkgs/tools/X11/virtualgl/lib.nix +++ b/pkgs/tools/X11/virtualgl/lib.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "1mnpljmx8nxnmpbx4ja430b3y535wkz185qknsxmk27yz4dbmm8l"; }; - cmakeFlags = [ "-DVGL_SYSTEMFLTK=1" "-DTJPEG_LIBRARY=${libjpeg_turbo}/lib/libturbojpeg.so" ]; + cmakeFlags = [ "-DVGL_SYSTEMFLTK=1" "-DTJPEG_LIBRARY=${libjpeg_turbo.out}/lib/libturbojpeg.so" ]; makeFlags = [ "PREFIX=$(out)" ]; diff --git a/pkgs/tools/X11/xbanish/default.nix b/pkgs/tools/X11/xbanish/default.nix new file mode 100644 index 00000000000..cbf8f3a7ff1 --- /dev/null +++ b/pkgs/tools/X11/xbanish/default.nix @@ -0,0 +1,45 @@ +{stdenv, fetchFromGitHub, libX11, libXi, libXt, libXfixes, libXext}: + +stdenv.mkDerivation rec { + version = "1.4"; + name = "xbanish-${version}"; + + buildInputs = [ + libX11 libXi libXt libXfixes libXext + ]; + + src = fetchFromGitHub { + owner = "jcs"; + repo = "xbanish"; + rev = "5cbc51a88739bc7ebe3ea3114ec423890d180146"; + sha256 = "0n5aiqfwx9ga8qjszymfmbnmygcracrgvvpmgll7mflp2jnvzq6j"; + }; + + preBuild = '' + makeFlagsArray+=("PREFIX=$out") + ''; + + preInstall = '' + mkdir -p $out/bin + mkdir -p $out/man/man1 + ''; + + meta = { + description = "Hides mouse pointer while not in use"; + longDescription = '' + xbanish hides the mouse cursor when you start typing, and shows it again when + the mouse cursor moves or a mouse button is pressed. This is similar to + xterm's pointerMode setting, but xbanish works globally in the X11 session. + + unclutter's -keystroke mode is supposed to do this, but it's broken[0]. I + looked into fixing it, but the unclutter source code is terrible, so I wrote + xbanish. + + The name comes from ratpoison's "banish" command that sends the cursor to the + corner of the screen. + ''; + license = stdenv.lib.licenses.bsd3; + maintainers = [stdenv.lib.maintainers.choochootrain]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix index ae869cfb1c4..643e4664f71 100644 --- a/pkgs/tools/X11/xpra/default.nix +++ b/pkgs/tools/X11/xpra/default.nix @@ -6,11 +6,11 @@ , libfakeXinerama }: buildPythonApplication rec { - name = "xpra-0.16.2"; + name = "xpra-0.17.0"; namePrefix = ""; src = fetchurl { url = "http://xpra.org/src/${name}.tar.xz"; - sha256 = "0h55rv46byzv2g8g77bm0a0py8jpz3gbr5fhr5jy9sisyr0vk6ff"; + sha256 = "0abli2gc174v8zh1dsc3nq8c5aivnni67cjrr8yhsqsl8fwj0c2l"; }; buildInputs = [ diff --git a/pkgs/tools/admin/cli53/default.nix b/pkgs/tools/admin/cli53/default.nix index 3248ac63bf7..ce9f17b1a51 100644 --- a/pkgs/tools/admin/cli53/default.nix +++ b/pkgs/tools/admin/cli53/default.nix @@ -6,7 +6,7 @@ buildPythonApplication rec { version = "0.4.4"; src = fetchurl { - url = "https://pypi.python.org/packages/source/c/cli53/${name}.tar.gz"; + url = "mirror://pypi/c/cli53/${name}.tar.gz"; sha256 = "0s9jzigq6a16m2c3qklssx2lz16cf13g5zh80vh24kxazaxqzbig"; }; diff --git a/pkgs/tools/admin/google-cloud-sdk/default.nix b/pkgs/tools/admin/google-cloud-sdk/default.nix index 75860bc27d3..5d314b73202 100644 --- a/pkgs/tools/admin/google-cloud-sdk/default.nix +++ b/pkgs/tools/admin/google-cloud-sdk/default.nix @@ -1,12 +1,14 @@ {stdenv, fetchurl, python27, python27Packages, makeWrapper}: +with python27Packages; + stdenv.mkDerivation rec { - version = "0.9.82"; + version = "106.0.0"; name = "google-cloud-sdk-${version}"; src = fetchurl { - url = "https://dl.google.com/dl/cloudsdk/release/packages/google-cloud-sdk-coretools-linux-static-20151008123015.tar.gz"; - sha256 = "11gnhgjj4y4dzi3wfdpnz918m7xraz1k3ady1d6y446hmc5q2512"; + url = "https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-106.0.0-linux-x86_64.tar.gz"; + sha256 = "00jhpx32sfxcgl404plmb8122bs0ijl2rv25h17mnjn067nhz7nn"; }; buildInputs = [python27 makeWrapper]; @@ -23,7 +25,7 @@ stdenv.mkDerivation rec { wrapper="$out/bin/$program" makeWrapper "$programPath" "$wrapper" \ --set CLOUDSDK_PYTHON "${python27}/bin/python" \ - --prefix PYTHONPATH : "$(toPythonPath ${python27Packages.crcmod})" + --prefix PYTHONPATH : "$(toPythonPath ${cffi}):$(toPythonPath ${cryptography}):$(toPythonPath ${pyopenssl}):$(toPythonPath ${crcmod})" done # install man pages diff --git a/pkgs/tools/admin/salt/default.nix b/pkgs/tools/admin/salt/default.nix index 254b7b9374e..0cd10fcab92 100644 --- a/pkgs/tools/admin/salt/default.nix +++ b/pkgs/tools/admin/salt/default.nix @@ -13,7 +13,7 @@ pythonPackages.buildPythonApplication rec { disabled = pythonPackages.isPy3k; src = fetchurl { - url = "https://pypi.python.org/packages/source/s/salt/${name}.tar.gz"; + url = "mirror://pypi/s/salt/${name}.tar.gz"; sha256 = "1xcfcs50pyammb60myph4f8bi2r6iwkxwsnnhrjwvkv2ymxwxv5j"; }; diff --git a/pkgs/tools/admin/salt/testing.nix b/pkgs/tools/admin/salt/testing.nix index 8c65defcab5..14105dc2f98 100644 --- a/pkgs/tools/admin/salt/testing.nix +++ b/pkgs/tools/admin/salt/testing.nix @@ -11,7 +11,7 @@ pythonPackages.buildPythonApplication rec { ]; src = fetchurl { - url = "https://pypi.python.org/packages/source/S/SaltTesting/${name}.tar.gz"; + url = "mirror://pypi/S/SaltTesting/${name}.tar.gz"; sha256 = "0p0y8kb77pis18rcig1kf9dnns4bnfa3mr91q40lq4mw63l1b34h"; }; diff --git a/pkgs/tools/archivers/dar/default.nix b/pkgs/tools/archivers/dar/default.nix index 7f9425ce603..92a81f9e5d6 100644 --- a/pkgs/tools/archivers/dar/default.nix +++ b/pkgs/tools/archivers/dar/default.nix @@ -1,17 +1,19 @@ -{ stdenv, fetchurl, zlib, bzip2, openssl, attr, lzo, libgcrypt, e2fsprogs, gpgme }: +{ stdenv, fetchurl, zlib, bzip2, openssl, attr, lzo, libgcrypt, e2fsprogs, gpgme, xz }: stdenv.mkDerivation rec { - name = "dar-2.5.2"; - + name = "dar-2.5.3"; + src = fetchurl { url = "mirror://sourceforge/dar/${name}.tar.gz"; - sha256 = "09p07wil0y4g6yzb9jk1ppr6pidl5fldaqnfp0ngd5n2iz3w89js"; + sha256 = "0myakyfgv2mhazwvbbwwncn9j7c9b4g3szs0aqlclmp01naaqmj5"; }; - buildInputs = [ zlib bzip2 openssl lzo libgcrypt gpgme ] + buildInputs = [ zlib bzip2 openssl lzo libgcrypt gpgme xz ] ++ stdenv.lib.optional stdenv.isLinux [ attr e2fsprogs ]; - configureFlags = "--disable-dar-static"; + configureFlags = [ "--disable-dar-static" ]; + + enableParallelBuilding = true; meta = { homepage = http://dar.linux.free.fr/; diff --git a/pkgs/tools/archivers/zpaq/default.nix b/pkgs/tools/archivers/zpaq/default.nix index ba0a174ed0a..3b647dc5283 100644 --- a/pkgs/tools/archivers/zpaq/default.nix +++ b/pkgs/tools/archivers/zpaq/default.nix @@ -1,20 +1,13 @@ { stdenv, fetchurl, perl, unzip }: -let - s = # Generated upstream information - rec { - baseName="zpaq"; - version="711"; - name="${baseName}-${version}"; - hash="0kva9xn3rhm2xpbbq3yrx3c9y150fw434ayd82fzhr24nsjjaxsf"; - url="http://mattmahoney.net/dc/zpaq711.zip"; - sha256="0kva9xn3rhm2xpbbq3yrx3c9y150fw434ayd82fzhr24nsjjaxsf"; - }; -in -stdenv.mkDerivation { - inherit (s) name version; +stdenv.mkDerivation rec { + name = "zpaq-${version}"; + version = "7.12"; - src = fetchurl { - inherit (s) url sha256; + src = let + mungedVersion = with stdenv.lib; concatStrings (splitString "." version); + in fetchurl { + sha256 = "1lgkxiinam80pqqyvs3x845k6kf0wgw121vz0gr8za4blb756n30"; + url = "http://mattmahoney.net/dc/zpaq${mungedVersion}.zip"; }; sourceRoot = "."; @@ -39,11 +32,10 @@ stdenv.mkDerivation { installFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { - inherit (s) version; description = "Incremental journaling backup utility and archiver"; + homepage = http://mattmahoney.net/dc/zpaq.html; license = licenses.gpl3Plus ; maintainers = with maintainers; [ raskin nckx ]; platforms = platforms.linux; - homepage = "http://mattmahoney.net/dc/zpaq.html"; }; } diff --git a/pkgs/tools/archivers/zpaq/default.upstream b/pkgs/tools/archivers/zpaq/default.upstream deleted file mode 100644 index 2d62f834647..00000000000 --- a/pkgs/tools/archivers/zpaq/default.upstream +++ /dev/null @@ -1,3 +0,0 @@ -url http://mattmahoney.net/dc/zpaq.html -version_link "/zpaq[0-9]+[.]zip" -version "[^0-9]*([0-9]+)[^0-9]*" '\1' diff --git a/pkgs/tools/audio/aucdtect/default.nix b/pkgs/tools/audio/aucdtect/default.nix new file mode 100644 index 00000000000..244f7b40673 --- /dev/null +++ b/pkgs/tools/audio/aucdtect/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, lib, rpmextract }: + +assert stdenv.isLinux; + +with lib; + +stdenv.mkDerivation rec { + name = "aucdtext-${version}"; + version = "0.8-2"; + + src = fetchurl { + url = "http://www.true-audio.com/ftp/aucdtect-${version}.i586.rpm"; + sha256 = "1lp5f0rq5b5n5il0c64m00gcfskarvgqslpryms9443d200y6mmd"; + }; + + unpackCmd = "${rpmextract}/bin/rpmextract $src"; + + installPhase = '' + mkdir -p $out/bin + install -m755 local/bin/auCDtect $out/bin/aucdtect + ''; + + dontStrip = true; + + meta = with stdenv.lib; { + description = "Verify authenticity of lossless audio files"; + homepage = http://tausoft.org; + license = licenses.unfreeRedistributable; + maintainers = with maintainers; [ peterhoeg ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix index 0079270e29f..806cb07c610 100644 --- a/pkgs/tools/audio/beets/default.nix +++ b/pkgs/tools/audio/beets/default.nix @@ -4,6 +4,7 @@ , enableAcousticbrainz ? true , enableAcoustid ? true , enableBadfiles ? true, flac ? null, mp3val ? null +, enableConvert ? true, ffmpeg ? null , enableDiscogs ? true , enableEchonest ? true , enableEmbyupdate ? true @@ -22,6 +23,7 @@ assert enableAcoustid -> pythonPackages.pyacoustid != null; assert enableBadfiles -> flac != null && mp3val != null; +assert enableConvert -> ffmpeg != null; assert enableDiscogs -> pythonPackages.discogs_client != null; assert enableEchonest -> pythonPackages.pyechonest != null; assert enableFetchart -> pythonPackages.responses != null; @@ -38,6 +40,7 @@ let acousticbrainz = enableAcousticbrainz; badfiles = enableBadfiles; chroma = enableAcoustid; + convert = enableConvert; discogs = enableDiscogs; echonest = enableEchonest; embyupdate = enableEmbyupdate; @@ -52,7 +55,7 @@ let }; pluginsWithoutDeps = [ - "bench" "bpd" "bpm" "bucket" "convert" "cue" "duplicates" "edit" "embedart" + "bench" "bpd" "bpm" "bucket" "cue" "duplicates" "edit" "embedart" "filefilter" "freedesktop" "fromfilename" "ftintitle" "fuzzy" "ihate" "importadded" "importfeeds" "info" "inline" "ipfs" "keyfinder" "lyrics" "mbcollection" "mbsubmit" "mbsync" "metasync" "missing" "permissions" "play" @@ -96,6 +99,7 @@ in buildPythonApplication rec { || enableEmbyupdate || enableAcousticbrainz) pythonPackages.requests2 + ++ optional enableConvert ffmpeg ++ optional enableDiscogs pythonPackages.discogs_client ++ optional enableEchonest pythonPackages.pyechonest ++ optional enableLastfm pythonPackages.pylast @@ -131,6 +135,8 @@ in buildPythonApplication rec { s,"flac","${flac.bin}/bin/flac", s,"mp3val","${mp3val}/bin/mp3val", }' beetsplug/badfiles.py + '' + optionalString enableConvert '' + sed -i -e 's,\(util\.command_output(\)\([^)]\+\)),\1[b"${ffmpeg.bin}/bin/ffmpeg" if args[0] == b"ffmpeg" else args[0]] + \2[1:]),' beetsplug/convert.py '' + optionalString enableReplaygain '' sed -i -re ' s!^( *cmd *= *b?['\'''"])(bs1770gain['\'''"])!\1${bs1770gain}/bin/\2! diff --git a/pkgs/tools/audio/darkice/default.nix b/pkgs/tools/audio/darkice/default.nix index e4fc129ef60..8ac9039b57e 100644 --- a/pkgs/tools/audio/darkice/default.nix +++ b/pkgs/tools/audio/darkice/default.nix @@ -1,10 +1,20 @@ -{ stdenv, buildEnv, fetchurl, alsaLib, faac, libjack2, lame, libogg, libopus, libpulseaudio, libsamplerate, libvorbis }: +{ stdenv, buildEnv, fetchurl +, libjack2, alsaLib, libpulseaudio +, faac, lame, libogg, libopus, libvorbis, libsamplerate +}: let oggEnv = buildEnv { name = "env-darkice-ogg"; paths = [ - libopus libvorbis libogg + libopus.dev libopus libvorbis.dev libvorbis libogg.dev libogg + ]; + }; + + darkiceEnv = buildEnv { + name = "env-darkice"; + paths = [ + lame.out lame.lib libpulseaudio libpulseaudio.dev alsaLib alsaLib.dev libsamplerate.out libsamplerate.dev ]; }; @@ -18,13 +28,13 @@ in stdenv.mkDerivation rec { }; configureFlags = [ - "--with-alsa-prefix=${alsaLib}" + "--with-alsa-prefix=${darkiceEnv}" "--with-faac-prefix=${faac}" "--with-jack-prefix=${libjack2}" - "--with-lame-prefix=${lame}" + "--with-lame-prefix=${darkiceEnv}" "--with-opus-prefix=${oggEnv}" - "--with-pulseaudio-prefix=${libpulseaudio}" - "--with-samplerate-prefix=${libsamplerate}" + "--with-pulseaudio-prefix=${darkiceEnv}" + "--with-samplerate-prefix=${darkiceEnv}" "--with-vorbis-prefix=${oggEnv}" # "--with-aacplus-prefix=${aacplus}" ### missing: aacplus # "--with-twolame-prefix=${twolame}" ### missing: twolame @@ -34,6 +44,6 @@ in stdenv.mkDerivation rec { homepage = http://darkice.org/; description = "Live audio streamer"; license = stdenv.lib.licenses.gpl3; - maintainers = with stdenv.lib.maintainers; [ ikervagyok ]; + maintainers = with stdenv.lib.maintainers; [ ikervagyok fpletz ]; }; } diff --git a/pkgs/tools/audio/dir2opus/default.nix b/pkgs/tools/audio/dir2opus/default.nix index 4875ebf504b..98bcfb3048f 100644 --- a/pkgs/tools/audio/dir2opus/default.nix +++ b/pkgs/tools/audio/dir2opus/default.nix @@ -1,17 +1,17 @@ -{ stdenv, fetchurl, python, mutagen, wrapPython, opusTools }: +{ stdenv, fetchurl, python, mutagen, wrapPython, opusTools, mpg123 }: -let version = "0.12.1"; in +let version = "0.12.2"; in stdenv.mkDerivation rec { name = "dir2opus-${version}"; pythonPath = [ mutagen ]; buildInputs = [ wrapPython ]; - propagatedBuildInputs = [ opusTools ]; + propagatedBuildInputs = [ opusTools mpg123 ]; src = fetchurl { url = "https://github.com/ehmry/dir2opus/archive/${version}.tar.gz"; name = "${name}.tar.gz"; - sha256 = "1d6x3qfcj5lfmc8gzna1vrr7fl31i86ha8l4nz5987rx57fgwf0q"; + sha256 = "0bl8fa9zhccihnj1v3lpz5jb737frf9za06xb7j5rsjws6xky80d"; }; postPatch = "sed -i -e 's|#!/usr/bin/python|#!${python}/bin/python|' dir2opus"; @@ -30,4 +30,4 @@ stdenv.mkDerivation rec { maintainers = [ maintainers.ehmry ]; license = licenses.gpl2; }; -} \ No newline at end of file +} diff --git a/pkgs/tools/audio/pnmixer/default.nix b/pkgs/tools/audio/pnmixer/default.nix index f65a151905c..b9c602dd767 100644 --- a/pkgs/tools/audio/pnmixer/default.nix +++ b/pkgs/tools/audio/pnmixer/default.nix @@ -1,16 +1,22 @@ -{ stdenv, fetchgit, alsaLib, pkgconfig, gtk3, glibc, autoconf, automake, libnotify, libX11, gettext }: +{ stdenv, fetchFromGitHub, alsaLib, pkgconfig, gtk3, glibc, autoconf, automake, libnotify, libX11, intltool }: stdenv.mkDerivation rec { - name = "pnmixer-2014-07-24"; + name = "pnmixer-${version}"; + version = "2016-04-23"; - src = fetchgit { - url = "git://github.com/nicklan/pnmixer.git"; - rev = "1e09a075c0c63d8b161b13ea92528a798bdb464a"; - sha256 = "15k689xycpc6pvq9vgg9ak92b9sg09dh4yrh83kjcaws63alrzl5"; + src = fetchFromGitHub { + owner = "nicklan"; + repo = "pnmixer"; + rev = "cb20096716dbb5440b6560d81108d9c8f7188c48"; + sha256 = "17gl5fb3hpdgxyys8h5k3nraw7qdyqv9k9kz8ykr5h7gg29nxy66"; }; + nativeBuildInputs = [ + pkgconfig autoconf automake intltool + ]; + buildInputs = [ - alsaLib pkgconfig gtk3 glibc autoconf automake libnotify libX11 gettext + alsaLib gtk3 glibc libnotify libX11 ]; preConfigure = '' @@ -21,6 +27,7 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; meta = with stdenv.lib; { + homepage = https://github.com/nicklan/pnmixer; description = "ALSA mixer for the system tray"; license = licenses.gpl3; maintainers = with maintainers; [ campadrenalin ]; diff --git a/pkgs/tools/audio/qastools/default.nix b/pkgs/tools/audio/qastools/default.nix index 3743b38a210..3fe5b4b8d1a 100644 --- a/pkgs/tools/audio/qastools/default.nix +++ b/pkgs/tools/audio/qastools/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cmake, alsaLib, udev, qt }: +{ stdenv, fetchurl, cmake, alsaLib, udev, qt4 }: let version = "0.18.1"; @@ -13,7 +13,7 @@ stdenv.mkDerivation { }; buildInputs = [ - cmake alsaLib udev qt + cmake alsaLib udev qt4 ]; cmakeFlags = [ diff --git a/pkgs/tools/backup/borg/default.nix b/pkgs/tools/backup/borg/default.nix index ada4ef29c84..95c0c26f30b 100644 --- a/pkgs/tools/backup/borg/default.nix +++ b/pkgs/tools/backup/borg/default.nix @@ -6,7 +6,7 @@ python3Packages.buildPythonApplication rec { namePrefix = ""; src = fetchurl { - url = "https://pypi.python.org/packages/source/b/borgbackup/borgbackup-${version}.tar.gz"; + url = "mirror://pypi/b/borgbackup/borgbackup-${version}.tar.gz"; sha256 = "1myz10pwxnac9z59gw1w3xjhz6ghx03vngpl97ca527pj0r39shi"; }; diff --git a/pkgs/tools/bluetooth/blueman/default.nix b/pkgs/tools/bluetooth/blueman/default.nix index 428c751571c..def096a571d 100644 --- a/pkgs/tools/bluetooth/blueman/default.nix +++ b/pkgs/tools/bluetooth/blueman/default.nix @@ -7,11 +7,11 @@ let in stdenv.mkDerivation rec { name = "blueman-${version}"; - version = "2.0.3"; + version = "2.0.4"; src = fetchurl { url = "https://github.com/blueman-project/blueman/releases/download/${version}/${name}.tar.xz"; - sha256 = "09aqlk4c2qzqpmyf7b40sic7d45c1l8fyrb9f3s22b8w83j0adi4"; + sha256 = "03s305mbc57nl3sq5ywh9casz926k4aqnylgaidli8bmgz1djbg9"; }; nativeBuildInputs = [ intltool pkgconfig pythonPackages.wrapPython pythonPackages.cython ]; diff --git a/pkgs/tools/cd-dvd/brasero/default.nix b/pkgs/tools/cd-dvd/brasero/default.nix index 91a5440df3e..e903601c81d 100644 --- a/pkgs/tools/cd-dvd/brasero/default.nix +++ b/pkgs/tools/cd-dvd/brasero/default.nix @@ -1,11 +1,13 @@ -{ stdenv, fetchurl, pkgconfig, gtk3, itstool, gst_all_1, libxml2, libnotify -, libcanberra_gtk3, intltool, makeWrapper, dvdauthor, cdrdao -, dvdplusrwtools, cdrtools, libdvdcss, wrapGAppsHook }: +{ stdenv, lib, fetchurl, pkgconfig, gtk3, itstool, gst_all_1, libxml2, libnotify +, libcanberra_gtk3, intltool, makeWrapper, dvdauthor, libburn, libisofs +, vcdimager, wrapGAppsHook }: + +# libdvdcss is "too old" (in fast "too new"), see https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/611590 let major = "3.12"; - minor = "0"; - binpath = stdenv.lib.makeBinPath [ dvdauthor cdrdao dvdplusrwtools cdrtools ]; + minor = "1"; + binpath = lib.makeBinPath [ dvdauthor vcdimager ]; in stdenv.mkDerivation rec { version = "${major}.${minor}"; @@ -13,12 +15,12 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "http://download.gnome.org/sources/brasero/${major}/${name}.tar.xz"; - sha256 = "68fef2699b772fa262d855dac682100dbfea05563a7e4056eff8fe6447aec2fc"; + sha256 = "09vi2hyhl0bz7imv3ky6h7x5m3d546n968wcghydwrkvwm9ylpls"; }; nativeBuildInputs = [ pkgconfig itstool intltool wrapGAppsHook ]; - buildInputs = [ gtk3 libxml2 libnotify libcanberra_gtk3 libdvdcss + buildInputs = [ gtk3 libxml2 libnotify libcanberra_gtk3 libburn libisofs 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 ]; @@ -27,14 +29,15 @@ in stdenv.mkDerivation rec { # will obviously not work on nix patches = [ ./remove-symlink-check.patch ]; + enableParallelBuilding = true; + configureFlags = [ "--with-girdir=$out/share/gir-1.0" - "--with-typelibdir=$out/lib/girepository-1.0" ]; - - NIX_CFLAGS_LINK = [ "-ldvdcss" ]; + "--with-typelibdir=$out/lib/girepository-1.0" + ]; preFixup = '' - gappsWrapperArgs+=(--prefix PATH : "${binpath}") + gappsWrapperArgs+=(--prefix PATH : "${binpath}" --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH") ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/cd-dvd/brasero/wrapper.nix b/pkgs/tools/cd-dvd/brasero/wrapper.nix new file mode 100644 index 00000000000..839cc1d604e --- /dev/null +++ b/pkgs/tools/cd-dvd/brasero/wrapper.nix @@ -0,0 +1,15 @@ +{ lib, symlinkJoin, brasero-original, cdrtools, makeWrapper }: + +let + binPath = lib.makeBinPath [ cdrtools ]; +in symlinkJoin { + name = "brasero-${brasero-original.version}"; + + paths = [ brasero-original ]; + buildInputs = [ makeWrapper ]; + + postBuild = '' + wrapProgram $out/bin/brasero \ + --prefix PATH ':' ${binPath} + ''; +} diff --git a/pkgs/tools/cd-dvd/unetbootin/default.nix b/pkgs/tools/cd-dvd/unetbootin/default.nix index 1234ecd770b..bf8cefd057e 100644 --- a/pkgs/tools/cd-dvd/unetbootin/default.nix +++ b/pkgs/tools/cd-dvd/unetbootin/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, makeWrapper, qt4, utillinux, coreutils, which +{ stdenv, fetchurl, makeWrapper, qt4, utillinux, coreutils, which, qmake4Hook , p7zip, mtools, syslinux }: stdenv.mkDerivation rec { @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { sourceRoot = "."; - buildInputs = [ makeWrapper qt4 ]; + buildInputs = [ makeWrapper qt4 qmake4Hook ]; # Lots of nice hard-coded paths... postUnpack = '' @@ -30,11 +30,9 @@ stdenv.mkDerivation rec { --replace /usr/bin $out/bin ''; - buildPhase = '' + preConfigure = '' lupdate unetbootin.pro lrelease unetbootin.pro - qmake - make ''; installPhase = '' diff --git a/pkgs/tools/compression/gzip/default.nix b/pkgs/tools/compression/gzip/default.nix index 009246b69a0..cf09ec8bf73 100644 --- a/pkgs/tools/compression/gzip/default.nix +++ b/pkgs/tools/compression/gzip/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, xz }: stdenv.mkDerivation rec { - name = "gzip-1.6"; + name = "gzip-${version}"; + version = "1.7"; src = fetchurl { url = "mirror://gnu/gzip/${name}.tar.xz"; - sha256 = "0ivqnbhiwd12q8hp3qw6rpsrpw2jg5y2mymk8cn22lsx90dfvprp"; + sha256 = "1as1ddq58spflzz5kxm0ni0xfpswrkkrncjpxyb3aw77gizcacgv"; }; outputs = [ "out" "man" "info" ]; @@ -22,7 +23,7 @@ stdenv.mkDerivation rec { makeFlags = "SHELL=/bin/sh GREP=grep"; meta = { - homepage = http://www.gnu.org/software/gzip/; + homepage = https://www.gnu.org/software/gzip/; description = "GNU zip compression program"; longDescription = diff --git a/pkgs/tools/filesystems/securefs/default.nix b/pkgs/tools/filesystems/securefs/default.nix new file mode 100644 index 00000000000..8e483853672 --- /dev/null +++ b/pkgs/tools/filesystems/securefs/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchFromGitHub +, fuse }: + +stdenv.mkDerivation rec { + name = "securefs-${version}"; + version = "0.3.1"; + + src = fetchFromGitHub { + sha256 = "1n9kgrvc600lfclrk8cj2zy8md1brqhs8kvzdwfxgxavdh0wakkc"; + rev = version; + repo = "securefs"; + owner = "netheril96"; + }; + + buildInputs = [ fuse ]; + + enableParallelBuilding = true; + + doCheck = false; # tests require the fuse module to be loaded + + installPhase = '' + install -D -m0755 {.,$out/bin}/securefs + ''; + + meta = with stdenv.lib; { + inherit (src.meta) homepage; + description = "Transparent encryption filesystem"; + longDescription = '' + Securefs is a filesystem in userspace (FUSE) that transparently encrypts + and authenticates data stored. It is particularly designed to secure + data stored in the cloud. + Securefs mounts a regular directory onto a mount point. The mount point + appears as a regular filesystem, where one can read/write/create files, + directories and symbolic links. The underlying directory will be + automatically updated to contain the encrypted and authenticated + contents. + ''; + license = with licenses; [ bsd2 mit ]; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/tools/filesystems/yandex-disk/default.nix b/pkgs/tools/filesystems/yandex-disk/default.nix index 966b3df8b17..1658a428920 100644 --- a/pkgs/tools/filesystems/yandex-disk/default.nix +++ b/pkgs/tools/filesystems/yandex-disk/default.nix @@ -5,12 +5,12 @@ assert stdenv.isLinux; let p = if stdenv.is64bit then { arch = "x86_64"; - gcclib = "${stdenv.cc.cc}/lib64"; + gcclib = "${stdenv.cc.cc.lib}/lib64"; sha256 = "0k05ybvnv0zx4vfx55jyhia38qqysaj68mapq0gwgf74k3a943g2"; } else { arch = "i386"; - gcclib = "${stdenv.cc.cc}/lib"; + gcclib = "${stdenv.cc.cc.lib}/lib"; sha256 = "09z9idmp7idcq0alwkla9kal9h82dx11jqh678lc4rviqggxzxhp"; }; in diff --git a/pkgs/tools/graphics/gnuplot/default.nix b/pkgs/tools/graphics/gnuplot/default.nix index 2b78f1fba40..5c70d0e7d0a 100644 --- a/pkgs/tools/graphics/gnuplot/default.nix +++ b/pkgs/tools/graphics/gnuplot/default.nix @@ -21,11 +21,11 @@ let withX = libX11 != null && !aquaterm && !stdenv.isDarwin; in stdenv.mkDerivation rec { - name = "gnuplot-5.0.0"; + name = "gnuplot-5.0.3"; src = fetchurl { url = "mirror://sourceforge/gnuplot/${name}.tar.gz"; - sha256 = "1bqg6zbsin9w9m53rbf6adzv0j2gs66z2p5pkd060jlipk2lnza1"; + sha256 = "05f7p21d2b0r3h0af8i75bh2inx9pws1k4crx5c400927xgy6vjz"; }; buildInputs = diff --git a/pkgs/tools/graphics/imgurbash2/default.nix b/pkgs/tools/graphics/imgurbash2/default.nix index 99ef87ca5df..5a655b9ff16 100644 --- a/pkgs/tools/graphics/imgurbash2/default.nix +++ b/pkgs/tools/graphics/imgurbash2/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "imgurbash2-${version}"; - version = "1.0"; + version = "2.1"; src = fetchFromGitHub { owner = "ram-on"; repo = "imgurbash2"; rev = version; - sha256 = "0w8xfdvv6h0cqln9a2b1rskpyv4v5qsywqzg10smg05xlrh9f5nx"; + sha256 = "1vdkyy0gvjqwc2g7a1lqx6cbynfxbd4f66m8sg1xjvd0kdpgi9wk"; }; installPhase = '' diff --git a/pkgs/tools/graphics/maim/default.nix b/pkgs/tools/graphics/maim/default.nix index fe812eac7d4..fb674bc8d80 100644 --- a/pkgs/tools/graphics/maim/default.nix +++ b/pkgs/tools/graphics/maim/default.nix @@ -1,17 +1,15 @@ -{ stdenv, fetchurl, cmake, gengetopt, imlib2, libXrandr, libXfixes -, cppcheck}: +{ stdenv, fetchurl, cmake, gengetopt, imlib2, libXrandr, libXfixes }: stdenv.mkDerivation rec { name = "maim-${version}"; - version = "3.4.46"; + version = "3.4.47"; src = fetchurl { url = "https://github.com/naelstrof/maim/archive/v${version}.tar.gz"; - sha256 = "04gb858g0rrvdiva2dxwsfd7dmq62r67irnc8cpd0r02hr92dr6n"; + sha256 = "0kfp7k55bxc5h6h0wv8bwmsc5ny66h9ra2z4dzs4yzszq16544pv"; }; - buildInputs = [ cmake gengetopt imlib2 libXrandr libXfixes ] - ++ stdenv.lib.optional doCheck cppcheck; + buildInputs = [ cmake gengetopt imlib2 libXrandr libXfixes ]; doCheck = false; diff --git a/pkgs/tools/graphics/nifskope/default.nix b/pkgs/tools/graphics/nifskope/default.nix index 392527a2119..f66d01ef7aa 100644 --- a/pkgs/tools/graphics/nifskope/default.nix +++ b/pkgs/tools/graphics/nifskope/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qt4 }: +{ stdenv, fetchurl, qt4, qmake4Hook }: stdenv.mkDerivation rec { name = "nifskope-1.1.3"; @@ -10,14 +10,16 @@ stdenv.mkDerivation rec { buildInputs = [ qt4 ]; - configurePhase = + nativeBuildInputs = [ qmake4Hook ]; + + preConfigure = '' for i in *.cpp gl/*.cpp widgets/*.cpp; do substituteInPlace $i --replace /usr/share/nifskope $out/share/nifskope done + ''; - qmake -after TARGET=nifskope - ''; # */ + qmakeFlags = [ "-after TARGET=nifskope" ]; enableParallelBuilding = true; diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix index 428e96e8674..ab139bdb5a7 100644 --- a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix +++ b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { preInstall = '' substituteInPlace platforminputcontext/cmake_install.cmake \ - --replace ${qtbase} $out + --replace ${qtbase.out} $out ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/inputmethods/fcitx/wrapper.nix b/pkgs/tools/inputmethods/fcitx/wrapper.nix index a0ae2618954..1e1a2b76a4b 100644 --- a/pkgs/tools/inputmethods/fcitx/wrapper.nix +++ b/pkgs/tools/inputmethods/fcitx/wrapper.nix @@ -1,4 +1,4 @@ -{ stdenv, buildEnv, fcitx, fcitx-configtool, makeWrapper, plugins, kde5 }: +{ stdenv, symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, kde5 }: # This is based on the pidgin-with-plugins package. # Users should be able to configure what plugins are used @@ -12,24 +12,16 @@ # (fcitx-with-plugins.override { plugins = [ fcitx-anthy ]; }) # } -let -drv = buildEnv { - name = "fcitx-with-plugins-" + (builtins.parseDrvName fcitx.name).version; +symlinkJoin { + name = "fcitx-with-plugins-${fcitx.version}"; paths = [ fcitx fcitx-configtool kde5.fcitx-qt5 ] ++ plugins; + buildInputs = [ makeWrapper ]; + postBuild = '' - # TODO: This could be avoided if buildEnv could be forced to create all directories - if [ -L $out/bin ]; then - rm $out/bin - mkdir $out/bin - for i in ${fcitx}/bin/*; do - ln -s $i $out/bin - done - fi wrapProgram $out/bin/fcitx \ --set FCITXDIR "$out/" ''; - }; -in stdenv.lib.overrideDerivation drv (x : { buildInputs = x.buildInputs ++ [ makeWrapper ]; }) +} diff --git a/pkgs/tools/inputmethods/touchegg/default.nix b/pkgs/tools/inputmethods/touchegg/default.nix index 4ac3c02d410..6ab53f9d763 100644 --- a/pkgs/tools/inputmethods/touchegg/default.nix +++ b/pkgs/tools/inputmethods/touchegg/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, xorg, xorgserver, qt4, mesa, geis }: +{ stdenv, fetchurl, xorg, xorgserver, qt4, mesa, geis, qmake4Hook }: stdenv.mkDerivation rec { name = "touchegg-${version}"; @@ -10,10 +10,11 @@ stdenv.mkDerivation rec { buildInputs = [ xorgserver mesa xorg.libX11 xorg.libXtst xorg.libXext qt4 geis ]; - configurePhase = '' + nativeBuildInputs = [ qmake4Hook ]; + + preConfigure = '' sed -e "s@/usr/@$out/@g" -i $(find . -name touchegg.pro) sed -e "s@/usr/@$out/@g" -i $(find ./src/touchegg/config/ -name Config.cpp) - qmake touchegg.pro ''; meta = { @@ -22,4 +23,4 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.linux; }; -} \ No newline at end of file +} diff --git a/pkgs/tools/misc/antimicro/default.nix b/pkgs/tools/misc/antimicro/default.nix index 1d7984ac11d..343559bb1e1 100644 --- a/pkgs/tools/misc/antimicro/default.nix +++ b/pkgs/tools/misc/antimicro/default.nix @@ -1,12 +1,14 @@ -{ stdenv, cmake, pkgconfig, SDL2, qtbase, qttools, xorg, fetchzip }: +{ stdenv, cmake, pkgconfig, SDL2, qtbase, qttools, xorg, fetchFromGitHub }: stdenv.mkDerivation rec { name = "antimicro-${version}"; - version = "2.18"; + version = "2.18.2"; - src = fetchzip { - url = "https://github.com/Ryochan7/antimicro/archive/${version}.tar.gz"; - sha256 = "0kyl4xl2am50v2xscgy2irpcdj78f7flgfhljyjck4ynf8d40vb7"; + src = fetchFromGitHub { + owner = "7185"; + repo = "antimicro"; + rev = "${version}"; + sha256 = "1mqw5idn57yj6c1w8y0byzh0xafcpbhaa6czgljh206abwfixjmk"; }; buildInputs = [ diff --git a/pkgs/tools/misc/dbus-map/default.nix b/pkgs/tools/misc/dbus-map/default.nix new file mode 100644 index 00000000000..4e0790dded6 --- /dev/null +++ b/pkgs/tools/misc/dbus-map/default.nix @@ -0,0 +1,26 @@ +{ stdenv, lib, fetchFromGitHub, pkgconfig, glib, procps, libxml2 }: + +stdenv.mkDerivation rec { + name = "dbus-map-${version}"; + version = "2015-05-28"; + src = fetchFromGitHub { + owner = "taviso"; + repo = "dbusmap"; + rev = "43703fc5e15743309b67131b5ba457b0d6ea7667"; + sha256 = "1pjqn6w29ci8hfxkn1aynzfc8nvy3pqv3hixbxwr7qx20g4rwvdc"; + }; + buildInputs = [ + pkgconfig glib procps libxml2 + ]; + installPhase = '' + mkdir -p $out/bin + mv dbus-map $out/bin + ''; + meta = with lib; { + description = "Simple utility for enumerating D-Bus endpoints, an nmap for D-Bus"; + homepage = "https://github.com/taviso/dbusmap"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ cstrahan ]; + }; +} diff --git a/pkgs/tools/misc/debian-devscripts/default.nix b/pkgs/tools/misc/debian-devscripts/default.nix index 617cd5f5548..3818b1be134 100644 --- a/pkgs/tools/misc/debian-devscripts/default.nix +++ b/pkgs/tools/misc/debian-devscripts/default.nix @@ -5,12 +5,12 @@ }: stdenv.mkDerivation rec { - version = "2.16.2"; + version = "2.16.4"; name = "debian-devscripts-${version}"; src = fetchurl { url = "mirror://debian/pool/main/d/devscripts/devscripts_${version}.tar.xz"; - sha256 = "0qlzciiyfhq11j5wf0x6jsa18bmmf2z7f2x5psq2wkkccfi0fxc4"; + sha256 = "0hxvxf8fc76lmrf57l9liwx1xjbxk2ldamln8xnwqlg37laxi3v2"; }; buildInputs = [ perl CryptSSLeay LWP unzip xz dpkg TimeDate DBFile diff --git a/pkgs/tools/misc/diffoscope/default.nix b/pkgs/tools/misc/diffoscope/default.nix index e54e83ef492..b916b91d5d2 100644 --- a/pkgs/tools/misc/diffoscope/default.nix +++ b/pkgs/tools/misc/diffoscope/default.nix @@ -6,22 +6,19 @@ pythonPackages.buildPythonApplication rec { name = "diffoscope-${version}"; - version = "49"; + version = "52"; namePrefix = ""; src = fetchgit { url = "git://anonscm.debian.org/reproducible/diffoscope.git"; rev = "refs/tags/${version}"; - sha256 = "0kh96h95rp7bk8rgc1z18jwv89dyp1n36bawqyqxhwwklmrgxr66"; + sha256 = "1a22abvjs8f8c4anrcfhn02xw7m2gl701b9csxy06c5ymib0npxd"; }; patches = - [ # Ignore different link counts and inode change times. - (fetchpatch { - url = https://github.com/edolstra/diffoscope/commit/367f77bba8df0dbc89e63c9f66f05736adf5ec59.patch; - sha256 = "0mnp7icdrjn02dr6f5dwqvvr848jzgkv3cg69a24234y9gxd30ww"; - }) + [ # Ignore different link counts. + ./ignore_links.patch ]; postPatch = '' diff --git a/pkgs/tools/misc/diffoscope/ignore_links.patch b/pkgs/tools/misc/diffoscope/ignore_links.patch new file mode 100644 index 00000000000..4e5046390fa --- /dev/null +++ b/pkgs/tools/misc/diffoscope/ignore_links.patch @@ -0,0 +1,25 @@ +From: Eelco Dolstra + +Nix deduplicates by hard-linking identical files, so it's normal for +the the number of links to a file to differ. +--- +diff --git a/diffoscope/comparators/directory.py b/diffoscope/comparators/directory.py +index 7d1cd75..bd91eb0 100644 +--- a/diffoscope/comparators/directory.py ++++ b/diffoscope/comparators/directory.py +@@ -47,6 +47,7 @@ class Stat(Command): + FILE_RE = re.compile(r'^\s*File:.*$') + DEVICE_RE = re.compile(r'Device: [0-9a-f]+h/[0-9]+d') + INODE_RE = re.compile(r'Inode: [0-9]+') ++ LINKS_RE = re.compile(r'Links: [0-9]+') + ACCESS_TIME_RE = re.compile(r'^Access: [0-9]{4}-[0-9]{2}-[0-9]{2}.*$') + CHANGE_TIME_RE = re.compile(r'^Change: [0-9]{4}-[0-9]{2}-[0-9]{2}.*$') + +@@ -55,6 +56,7 @@ class Stat(Command): + line = Stat.FILE_RE.sub('', line) + line = Stat.DEVICE_RE.sub('', line) + line = Stat.INODE_RE.sub('', line) ++ line = Stat.LINKS_RE.sub('', line) + line = Stat.ACCESS_TIME_RE.sub('', line) + line = Stat.CHANGE_TIME_RE.sub('', line) + return line.encode('utf-8') diff --git a/pkgs/tools/misc/entr/default.nix b/pkgs/tools/misc/entr/default.nix index c6bca6e9d8f..0cc30fe45e3 100644 --- a/pkgs/tools/misc/entr/default.nix +++ b/pkgs/tools/misc/entr/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "entr-${version}"; - version = "3.4"; + version = "3.5"; src = fetchurl { url = "http://entrproject.org/code/${name}.tar.gz"; - sha256 = "02h1drxn2lid2fwzwjpkp9p04l0g5a56v6jyj3gi3dzjsq7h0zff"; + sha256 = "05k4jyjna0pr2dalwc1l1dhrcyk6pw7hbss7jl4ykwfadcs5br73"; }; postPatch = '' diff --git a/pkgs/tools/misc/exa/default.nix b/pkgs/tools/misc/exa/default.nix index af6f70e2f5c..39ba9bb2e50 100644 --- a/pkgs/tools/misc/exa/default.nix +++ b/pkgs/tools/misc/exa/default.nix @@ -4,15 +4,15 @@ with rustPlatform; buildRustPackage rec { name = "exa-${version}"; - version = "2016-03-22"; + version = "2016-04-20"; - depsSha256 = "18anwh235kzziq6z7md8f3rl2xl4l9d4ivsqw9grkb7yivd5j0jk"; + depsSha256 = "1rpynsni2r3gim10xc1qkj51wpbzafwsr99y61zh41v4vh047g1k"; src = fetchFromGitHub { owner = "ogham"; repo = "exa"; - rev = "8805ce9e3bcd4b56f8811a686dd56c47202cdbab"; - sha256 = "0dkvk0rsf068as6zcd01p7959rdjzm26mlkpid6z0j168gp4kh4q"; + rev = "110a1c716bfc4a7f74f74b3c4f0a881c773fcd06"; + sha256 = "136yxi85m50vwmqinr1wnd0h29n5yjykqqqk9ibbcmmhx8sqhjzf"; }; nativeBuildInputs = [ cmake ]; diff --git a/pkgs/tools/misc/filebench/default.nix b/pkgs/tools/misc/filebench/default.nix new file mode 100644 index 00000000000..1e8b5a493f5 --- /dev/null +++ b/pkgs/tools/misc/filebench/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "filebench-${version}"; + version = "1.4.9.1"; + + src = fetchurl { + url = "mirror://sourceforge/filebench/${name}.tar.gz"; + sha256 = "0y06f9mp4xry6j1jamqprzn963l0krqayv14yv66pm51hdh53ld1"; + }; + + meta = with stdenv.lib; { + description = "File system and storage benchmark that can generate both micro and macro workloads"; + homepage = https://sourceforge.net/projects/filebench/; + license = licenses.cddl; + maintainers = [ maintainers.dezgeg ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/tools/misc/fsmark/default.nix b/pkgs/tools/misc/fsmark/default.nix new file mode 100644 index 00000000000..0e821ce7f1f --- /dev/null +++ b/pkgs/tools/misc/fsmark/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "fsmark-${version}"; + version = "3.3"; + + src = fetchurl { + url = "mirror://sourceforge/fsmark/${version}/fs_mark-${version}.tar.gz"; + sha256 = "15f8clcz49qsfijdmcz165ysp8v4ybsm57d3dxhhlnq1bp1i9w33"; + }; + + patchPhase = '' + sed -i Makefile -e 's/-static //' + ''; + + installPhase = '' + mkdir -p $out/bin + cp fs_mark $out/bin/ + ''; + + meta = with stdenv.lib; { + description = "Synchronous write workload file system benchmark"; + homepage = https://sourceforge.net/projects/fsmark/; + license = licenses.gpl2; + maintainers = [ maintainers.dezgeg ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/tools/misc/gparted/default.nix b/pkgs/tools/misc/gparted/default.nix index 808fb2c841c..f9459c72828 100644 --- a/pkgs/tools/misc/gparted/default.nix +++ b/pkgs/tools/misc/gparted/default.nix @@ -4,10 +4,10 @@ }: stdenv.mkDerivation rec { - name = "gparted-0.25.0"; + name = "gparted-0.26.0"; src = fetchurl { - sha256 = "1bllvj66rka8f9h9rfwvxaqrj4mbp2n2860ahnp9xm1195gnv69d"; + sha256 = "1d3zw99yd1v0gqhcxff35wqz34xi6ps7q9j1bn11sghqihr3kwxw"; url = "mirror://sourceforge/gparted/${name}.tar.gz"; }; diff --git a/pkgs/tools/misc/graylog/default.nix b/pkgs/tools/misc/graylog/default.nix new file mode 100644 index 00000000000..a3952f7903b --- /dev/null +++ b/pkgs/tools/misc/graylog/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + version = "2.0.0"; + name = "graylog-${version}"; + + src = fetchurl { + url = "https://packages.graylog2.org/releases/graylog/graylog-${version}.tgz"; + sha256 = "0qn2rf2aarfr34387fiv34rmav20c66b4zs9bkm8gpvj0laxrqh2"; + }; + + dontBuild = true; + dontStrip = true; + + installPhase = '' + mkdir -p $out + cp -r {graylog.jar,lib,bin,plugin,data} $out + ''; + + meta = with stdenv.lib; { + description = "Open source log management solution"; + homepage = https://www.graylog.org/; + license = licenses.gpl3; + platforms = platforms.unix; + maintainers = [ maintainers.fadenb ]; + }; +} diff --git a/pkgs/tools/misc/grub4dos/default.nix b/pkgs/tools/misc/grub4dos/default.nix index f0ac6b5f7c9..400aa88e357 100644 --- a/pkgs/tools/misc/grub4dos/default.nix +++ b/pkgs/tools/misc/grub4dos/default.nix @@ -1,18 +1,21 @@ -{ stdenv, fetchurl, unzip, nasm }: +{ stdenv, fetchFromGitHub, nasm }: let arch = if stdenv.isi686 then "i386" else if stdenv.isx86_64 then "x86_64" else abort "Unknown architecture"; -in stdenv.mkDerivation { - name = "grub4dos-0.4.6a-2015-12-31"; +in stdenv.mkDerivation rec { + name = "grub4dos-${version}"; + version = "0.4.6a-2016-04-26"; - src = fetchurl { - url = https://github.com/chenall/grub4dos/archive/a8024743c61cc4909514b27df07b7cc4bc89d1fb.zip; - sha256 = "1m5d7klb12qz5sa09919z7jchfafgh84cmpwilp52qnbpi3zh2fd"; + src = fetchFromGitHub { + owner = "chenall"; + repo = "grub4dos"; + rev = "61d8229375c679436d56376518456723b2025e1a"; + sha256 = "1r4jmvykk5cvpf1kysykvksa9vfy7p29q20x72inw2pbhipj0f10"; }; - nativeBuildInputs = [ unzip nasm ]; + nativeBuildInputs = [ nasm ]; hardeningDisable = [ "stackprotector" ]; @@ -28,7 +31,7 @@ in stdenv.mkDerivation { dontPatchELF = true; meta = with stdenv.lib; { - homepage = http://grub4dos.chenall.net/; + homepage = "http://grub4dos.chenall.net/"; description = "GRUB for DOS is the dos extension of GRUB"; maintainers = with maintainers; [ abbradar ]; platforms = platforms.all; diff --git a/pkgs/tools/misc/heatseeker/default.nix b/pkgs/tools/misc/heatseeker/default.nix index 0d85554c347..9183f1290ea 100644 --- a/pkgs/tools/misc/heatseeker/default.nix +++ b/pkgs/tools/misc/heatseeker/default.nix @@ -4,17 +4,17 @@ with rustPlatform; buildRustPackage rec { name = "heatseeker-${version}"; - version = "1.3.0"; + version = "1.4.0"; - depsSha256 = "03jap7myf85xgx9270sws8x57nl04a1wx8szrk9qx24s9vnnjcnh"; + depsSha256 = "1acimdkl6ra9jlyiydzzd6ccdygr5is2xf9gw8i45xzh0xnsq226"; src = fetchFromGitHub { owner = "rschmitt"; repo = "heatseeker"; rev = "v${version}"; - sha256 = "1xdvwgmh9lwv82hv1qg82bjv2iplnvva6lzbg7dyhbszhv7rhkbl"; + sha256 = "1v2p6l4bdmvn9jggb12p0j5ajjvnbcdjsiavlcqiijz2w8wcdgs8"; }; - + # some tests require a tty, this variable turns them off for Travis CI, # which we can also make use of TRAVIS= "true"; diff --git a/pkgs/tools/misc/megacli/default.nix b/pkgs/tools/misc/megacli/default.nix index 1f57b290cdd..cbebd557d77 100644 --- a/pkgs/tools/misc/megacli/default.nix +++ b/pkgs/tools/misc/megacli/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { cd $out unzip ${src} rpmextract linux/MegaCli-8.07.07-1.noarch.rpm - ${patchelf}/bin/patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath ${libPath}:$out/opt/lsi/3rdpartylibs/x86_64:$out/opt/lsi/3rdpartylibs:${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib opt/MegaRAID/MegaCli/MegaCli64 + ${patchelf}/bin/patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath ${libPath}:$out/opt/lsi/3rdpartylibs/x86_64:$out/opt/lsi/3rdpartylibs:${stdenv.cc.cc.lib}/lib64:${stdenv.cc.cc.lib}/lib opt/MegaRAID/MegaCli/MegaCli64 wrapProgram $out/opt/MegaRAID/MegaCli/MegaCli64 --set LD_LIBRARY_PATH $out/opt/lsi/3rdpartylibs/x86_64 ln -s $out/opt/MegaRAID/MegaCli/MegaCli64 $out/bin/MegaCli64 eval fixupPhase diff --git a/pkgs/tools/misc/ostree/default.nix b/pkgs/tools/misc/ostree/default.nix index ff64b65a89b..7d9d5545f40 100644 --- a/pkgs/tools/misc/ostree/default.nix +++ b/pkgs/tools/misc/ostree/default.nix @@ -1,32 +1,56 @@ { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk_doc, gobjectIntrospection -, libgsystem, xz, e2fsprogs, libsoup, gpgme +, libgsystem, xz, e2fsprogs, libsoup, gpgme, which, autoconf, automake, libtool, fuse +, libcap, yacc, libxslt, docbook_xsl, docbook_xml_dtd_42 }: -stdenv.mkDerivation { - name = "ostree-2015.3"; +let + libglnx-src = fetchFromGitHub { + owner = "GNOME"; + repo = "libglnx"; + rev = "769522753c25537e520adc322fa62e5390272add"; + sha256 = "0gfc8dl63xpmf73dwb1plj7cymq7z6w6wq5m06yx8jymwhq7x1l8"; + }; + + bsdiff-src = fetchFromGitHub { + owner = "mendsley"; + repo = "bsdiff"; + rev = "1edf9f656850c0c64dae260960fabd8249ea9c60"; + sha256 = "1h71d2h2d3anp4msvpaff445rnzdxii3id2yglqk7af9i43kdsn1"; + }; +in stdenv.mkDerivation rec { + rev = "v2016.5"; + name = "ostree-${rev}"; + + src = fetchFromGitHub { + inherit rev; + owner = "ostreedev"; + repo = "ostree"; + sha256 = "1dfyhzgv94ldjv2l4jxf4xhks2z5ljljqa3k579qskds755n6kvg"; + }; + + nativeBuildInputs = [ + autoconf automake libtool pkgconfig gtk_doc gobjectIntrospection which yacc + libxslt docbook_xsl docbook_xml_dtd_42 + ]; + + buildInputs = [ libgsystem xz e2fsprogs libsoup gpgme fuse libcap ]; + + prePatch = '' + rmdir libglnx bsdiff + cp --no-preserve=mode -r ${libglnx-src} libglnx + cp --no-preserve=mode -r ${bsdiff-src} bsdiff + ''; + + preConfigure = '' + env NOCONFIGURE=1 ./autogen.sh + ''; meta = with stdenv.lib; { description = "Git for operating system binaries"; homepage = "http://live.gnome.org/OSTree/"; license = licenses.lgpl2Plus; platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; }; - - src = fetchFromGitHub { - owner = "GNOME"; - repo = "ostree"; - rev = "v2015.3"; - sha256 = "1n5q0yxwqx4pqiww3yjmqxl5835kknpw1bnwzbpanmyndnnl88dd"; - }; - - nativeBuildInputs = [ - autoreconfHook pkgconfig gtk_doc gobjectIntrospection - ]; - - buildInputs = [ libgsystem xz e2fsprogs libsoup gpgme ]; - - preAutoreconf = '' - mkdir m4 - gtkdocize - ''; } + diff --git a/pkgs/tools/misc/pws/Gemfile b/pkgs/tools/misc/pws/Gemfile new file mode 100644 index 00000000000..43b6b931860 --- /dev/null +++ b/pkgs/tools/misc/pws/Gemfile @@ -0,0 +1,3 @@ +source 'https://rubygems.org' + +gem 'pws' diff --git a/pkgs/tools/misc/pws/Gemfile.lock b/pkgs/tools/misc/pws/Gemfile.lock new file mode 100644 index 00000000000..c9cf6a3157c --- /dev/null +++ b/pkgs/tools/misc/pws/Gemfile.lock @@ -0,0 +1,19 @@ +GEM + remote: https://rubygems.org/ + specs: + clipboard (1.0.6) + paint (1.0.1) + pbkdf2-ruby (0.2.1) + pws (1.0.6) + clipboard (~> 1.0.5) + paint (>= 0.8.7) + pbkdf2-ruby + +PLATFORMS + ruby + +DEPENDENCIES + pws + +BUNDLED WITH + 1.11.2 diff --git a/pkgs/tools/misc/pws/default.nix b/pkgs/tools/misc/pws/default.nix new file mode 100644 index 00000000000..811e57c0a08 --- /dev/null +++ b/pkgs/tools/misc/pws/default.nix @@ -0,0 +1,33 @@ +{ stdenv, lib, bundlerEnv, ruby, xsel, makeWrapper }: + +stdenv.mkDerivation rec { + name = "pws-1.0.6"; + + env = bundlerEnv { + name = "${name}-gems"; + + inherit ruby; + + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + }; + + buildInputs = [ makeWrapper ]; + + phases = ["installPhase"]; + + installPhase = '' + mkdir -p $out/bin + makeWrapper ${env}/bin/pws $out/bin/pws \ + --set PATH '"${xsel}/bin/:$PATH"' + ''; + + meta = with lib; { + description = "Command-line password safe"; + homepage = https://github.com/janlelis/pws; + license = licenses.mit; + maintainers = maintainers.swistak35; + platforms = platforms.unix; + }; +} diff --git a/pkgs/tools/misc/pws/gemset.nix b/pkgs/tools/misc/pws/gemset.nix new file mode 100644 index 00000000000..2aa26f9a020 --- /dev/null +++ b/pkgs/tools/misc/pws/gemset.nix @@ -0,0 +1,34 @@ +{ + clipboard = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "11r5xi1fhll4qxna2sg83vmnphjzqc4pzwdnmc5qwvdps5jbz7cq"; + type = "gem"; + }; + version = "1.0.6"; + }; + paint = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1z1fqyyc2jiv6yabv467h652cxr2lmxl5gqqg7p14y28kdqf0nhj"; + type = "gem"; + }; + version = "1.0.1"; + }; + pbkdf2-ruby = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "014vb5k8klvh192idqrda2571dxsp7ai2v72hj265zd2awy0zyg1"; + type = "gem"; + }; + version = "0.2.1"; + }; + pws = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1brn123mmrw09ji60sa13ylgfjjp7aicz07hm9h0dc3162zlw5wn"; + type = "gem"; + }; + version = "1.0.6"; + }; +} \ No newline at end of file diff --git a/pkgs/tools/misc/rockbox-utility/default.nix b/pkgs/tools/misc/rockbox-utility/default.nix index c9c0cf6949f..54a6b0309b0 100644 --- a/pkgs/tools/misc/rockbox-utility/default.nix +++ b/pkgs/tools/misc/rockbox-utility/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, libusb1, qt4 }: +{ stdenv, fetchurl, libusb1, qt4, qmake4Hook }: stdenv.mkDerivation rec { name = "rockbox-utility-${version}"; @@ -10,10 +10,10 @@ stdenv.mkDerivation rec { }; buildInputs = [ libusb1 qt4 ]; + nativeBuildInputs = [ qmake4Hook ]; - preBuild = '' + preConfigure = '' cd rbutil/rbutilqt - qmake ''; installPhase = '' diff --git a/pkgs/tools/misc/rpm-ostree/default.nix b/pkgs/tools/misc/rpm-ostree/default.nix new file mode 100644 index 00000000000..8df9666c10b --- /dev/null +++ b/pkgs/tools/misc/rpm-ostree/default.nix @@ -0,0 +1,49 @@ +{ stdenv, fetchFromGitHub, ostree, rpm, which, autoconf, automake, libtool, pkgconfig, + libcap, glib, libgsystem, json_glib, libarchive, libhif, librepo, gtk_doc, elfutils, + libxslt, docbook_xsl, docbook_xml_dtd_42, acl }: + +let + libglnx-src = fetchFromGitHub { + owner = "GNOME"; + repo = "libglnx"; + rev = "08ae6639e522e9b11765245fbecdbbe474ccde98"; + sha256 = "1k7fbivi2mwb2x5bqqbqc3nbnfjjw1l911hs914197hyqpy21dab"; + }; +in stdenv.mkDerivation rec { + rev = "v2016.1"; + name = "rpm-ostree"; + + src = fetchFromGitHub { + inherit rev; + owner = "projectatomic"; + repo = "rpm-ostree"; + sha256 = "19jvnmy9zinx0j5nvy3h5abfv9d988kvyza09gljx16gll8qkbbf"; + }; + + NIX_CFLAGS_LINK = "-L${elfutils}/lib"; + + buildInputs = [ + which autoconf automake pkgconfig libtool libcap ostree rpm glib libgsystem + json_glib libarchive libhif librepo gtk_doc libxslt docbook_xsl docbook_xml_dtd_42 + # FIXME: get rid of this once libarchive properly propagates this + acl + ]; + + prePatch = '' + rmdir libglnx + cp --no-preserve=mode -r ${libglnx-src} libglnx + ''; + + preConfigure = '' + env NOCONFIGURE=1 ./autogen.sh + ''; + + meta = with stdenv.lib; { + description = "A hybrid image/package system. It uses OSTree as an image format, and uses RPM as a component model"; + homepage = "https://rpm-ostree.readthedocs.io/en/latest/"; + license = licenses.lgpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; + }; +} + diff --git a/pkgs/tools/misc/sdl-jstest/default.nix b/pkgs/tools/misc/sdl-jstest/default.nix index 677f52c2c32..31cedd282a4 100644 --- a/pkgs/tools/misc/sdl-jstest/default.nix +++ b/pkgs/tools/misc/sdl-jstest/default.nix @@ -1,18 +1,21 @@ -{ fetchgit, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: +{ fetchFromGitHub, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: stdenv.mkDerivation rec { - name = "sdl-jstest-20150806"; - src = fetchgit { - url = "https://github.com/Grumbel/sdl-jstest"; - rev = "7b792376178c9656c851ddf106c7d57b2495e8b9"; - sha256 = "3aa9a002de9c9999bd7c6248b94148f15dba6106489e418b2a1a410324f75eb8"; + name = "sdl-jstest-${version}"; + version = "2016-03-29"; + + src = fetchFromGitHub { + owner = "Grumbel"; + repo = "sdl-jstest"; + rev = "301a0e8cf3f96de4c5e58d9fe4413e5cd2b4e6d4"; + sha256 = "1qrz09by5snc3n1wppf2y0pj7rx29dlh1g84glga8vvb03n3yb14"; }; buildInputs = [ SDL SDL2 ncurses ]; nativeBuildInputs = [ cmake pkgconfig docbook_xsl ]; meta = with stdenv.lib; { - homepage = https://github.com/Grumbel/sdl-jstest; + homepage = "https://github.com/Grumbel/sdl-jstest"; description = "Simple SDL joystick test application for the console"; license = licenses.gpl3; platforms = platforms.linux; diff --git a/pkgs/tools/misc/staruml/default.nix b/pkgs/tools/misc/staruml/default.nix index 0d2982c022f..90771b0527c 100644 --- a/pkgs/tools/misc/staruml/default.nix +++ b/pkgs/tools/misc/staruml/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { mkdir -p $out/lib - ln -s ${stdenv.cc.cc}/lib/libstdc++.so.6 $out/lib/ + ln -s ${stdenv.cc.cc.lib}/lib/libstdc++.so.6 $out/lib/ ln -s ${libudev.out}/lib/libudev.so.1 $out/lib/libudev.so.0 wrapProgram $out/bin/StarUML \ diff --git a/pkgs/tools/misc/tlp/default.nix b/pkgs/tools/misc/tlp/default.nix index e20dc850008..d290c9f9a5a 100644 --- a/pkgs/tools/misc/tlp/default.nix +++ b/pkgs/tools/misc/tlp/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils -, module_init_tools, pciutils, smartmontools, x86_energy_perf_policy, gawk, gnugrep, coreutils +, kmod, pciutils, smartmontools, x86_energy_perf_policy, gawk, gnugrep, coreutils , enableRDW ? false, networkmanager }: @@ -27,7 +27,7 @@ in stdenv.mkDerivation { buildInputs = [ perl ]; paths = lib.makeBinPath - ([ iw rfkill hdparm ethtool inetutils systemd module_init_tools pciutils smartmontools + ([ iw rfkill hdparm ethtool inetutils systemd kmod pciutils smartmontools x86_energy_perf_policy gawk gnugrep coreutils ] ++ lib.optional enableRDW networkmanager diff --git a/pkgs/tools/misc/vdirsyncer/default.nix b/pkgs/tools/misc/vdirsyncer/default.nix index fedfaa48aa3..0cf7f92912e 100644 --- a/pkgs/tools/misc/vdirsyncer/default.nix +++ b/pkgs/tools/misc/vdirsyncer/default.nix @@ -3,18 +3,17 @@ # Packaging documentation at: # https://github.com/untitaker/vdirsyncer/blob/master/docs/packaging.rst pythonPackages.buildPythonApplication rec { - version = "0.9.3"; + version = "0.10.0"; name = "vdirsyncer-${version}"; namePrefix = ""; src = fetchurl { - url = "https://pypi.python.org/packages/source/v/vdirsyncer/${name}.tar.gz"; - sha256 = "1wjhzjfcvwz68j6wc5cmjsw69ggwcpfy7jp7z7q6fnwwp4dr98lc"; + url = "https://pypi.python.org/packages/0b/fb/c42223e1e9169e4770194e62143d431755724b080d8cb77f14705b634815/vdirsyncer-0.10.0.tar.gz"; + sha256 = "1gf86sbd6w0w4zayh9r3irlp5jwrzbjikjc0vs5zkdpa5c199f78"; }; propagatedBuildInputs = with pythonPackages; [ click click-log click-threading - lxml requests_toolbelt requests2 atomicwrites @@ -31,7 +30,7 @@ pythonPackages.buildPythonApplication rec { meta = with stdenv.lib; { homepage = https://github.com/pimutils/vdirsyncer; description = "Synchronize calendars and contacts"; - maintainers = with maintainers; [ matthiasbeyer jgeerds ]; + maintainers = with maintainers; [ matthiasbeyer jgeerds DamienCassou ]; platforms = platforms.all; license = licenses.mit; }; diff --git a/pkgs/tools/misc/xiccd/default.nix b/pkgs/tools/misc/xiccd/default.nix index cdc2af19501..03c8949bb45 100644 --- a/pkgs/tools/misc/xiccd/default.nix +++ b/pkgs/tools/misc/xiccd/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "X color profile daemon"; - homepage = https://github.com/agalakhov/xiccd; + homepage = "https://github.com/agalakhov/xiccd"; license = licenses.gpl3; maintainers = with maintainers; [ abbradar ]; platforms = platforms.linux; diff --git a/pkgs/tools/misc/xvfb-run/default.nix b/pkgs/tools/misc/xvfb-run/default.nix index f1cf0442434..b7f8e4b2106 100644 --- a/pkgs/tools/misc/xvfb-run/default.nix +++ b/pkgs/tools/misc/xvfb-run/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, makeWrapper, xkbcomp, xorgserver, getopt, xkeyboard_config, xauth, utillinux, which, fontsConf}: +{ stdenv, fetchurl, makeWrapper, xkbcomp, xorgserver, getopt, xkeyboard_config +, xauth, utillinux, which, fontsConf, gawk, coreutils }: let xvfb_run = fetchurl { url = https://projects.archlinux.org/svntogit/packages.git/plain/trunk/xvfb-run?h=packages/xorg-server; @@ -17,6 +18,6 @@ stdenv.mkDerivation { wrapProgram $out/bin/xvfb-run \ --set XKB_BINDIR "${xkbcomp}/bin" \ --set FONTCONFIG_FILE "${fontsConf}" \ - --prefix PATH : ${getopt}/bin:${xorgserver.out}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin + --prefix PATH : ${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux gawk coreutils ]} ''; } diff --git a/pkgs/tools/misc/yubikey-personalization-gui/default.nix b/pkgs/tools/misc/yubikey-personalization-gui/default.nix index 57952b80daf..4bc68aba29d 100644 --- a/pkgs/tools/misc/yubikey-personalization-gui/default.nix +++ b/pkgs/tools/misc/yubikey-personalization-gui/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, yubikey-personalization, qt, libyubikey }: +{ stdenv, fetchurl, pkgconfig, yubikey-personalization, qt4, qmake4Hook, libyubikey }: stdenv.mkDerivation rec { name = "yubikey-personalization-gui-3.1.24"; @@ -8,13 +8,9 @@ stdenv.mkDerivation rec { sha256 = "0aj8cvajswkwzig0py0mjnfw0m8xsilisdcnixpjx9xxsxz5yacq"; }; - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ yubikey-personalization qt libyubikey ]; + nativeBuildInputs = [ pkgconfig qmake4Hook ]; + buildInputs = [ yubikey-personalization qt4 libyubikey ]; - configurePhase = '' - qmake - ''; - installPhase = '' mkdir -p $out/bin cp build/release/yubikey-personalization-gui $out/bin diff --git a/pkgs/tools/networking/aria2/default.nix b/pkgs/tools/networking/aria2/default.nix index 189be8be9e2..01c6500b143 100644 --- a/pkgs/tools/networking/aria2/default.nix +++ b/pkgs/tools/networking/aria2/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "aria2-${version}"; - version = "1.21.0"; + version = "1.22.0"; src = fetchurl { url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz"; - sha256 = "1035rzx9y7qv4p7cv04f461343dxha7ikprch059x2fci8n5yp12"; + sha256 = "12agwdvvkr34wqhyyfp418dj0k7nbr297qmcd3wj5kkn7brv6gxc"; }; nativeBuildInputs = [ pkgconfig ]; @@ -18,6 +18,8 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ]; + enableParallelBuilding = true; + meta = with stdenv.lib; { homepage = https://github.com/tatsuhiro-t/aria2; description = "A lightweight, multi-protocol, multi-source, command-line download utility"; diff --git a/pkgs/tools/networking/atftp/default.nix b/pkgs/tools/networking/atftp/default.nix index 5fff72a3b07..bd4fb7e9e6a 100644 --- a/pkgs/tools/networking/atftp/default.nix +++ b/pkgs/tools/networking/atftp/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { buildInputs = [ readline tcp_wrappers pcre makeWrapper gcc ]; patches = [ debianPatch ]; postInstall = '' - wrapProgram $out/sbin/atftpd --prefix LD_LIBRARY_PATH : ${stdenv.cc.cc}/lib${if stdenv.system == "x86_64-linux" then "64" else ""} + wrapProgram $out/sbin/atftpd --prefix LD_LIBRARY_PATH : ${stdenv.cc.cc.lib}/lib${if stdenv.system == "x86_64-linux" then "64" else ""} ''; meta = { description = "Advanced tftp tools"; diff --git a/pkgs/tools/networking/ccnet/default.nix b/pkgs/tools/networking/ccnet/default.nix index 556ef8d0274..d7aaa0f77fc 100644 --- a/pkgs/tools/networking/ccnet/default.nix +++ b/pkgs/tools/networking/ccnet/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { - version = "1.4.2"; - seafileVersion = "4.0.6"; + version = "5.0.7"; + seafileVersion = "5.0.7"; name = "ccnet-${version}"; src = fetchurl { - url = "https://github.com/haiwen/ccnet/archive/v${seafileVersion}.tar.gz"; - sha256 = "06srvyphrfx7g18vk899850q0aw8cxx34cj96mjzc3sqm0bkzqsh"; + url = "https://github.com/haiwen/ccnet/archive/v${version}.tar.gz"; + sha256 = "1e1c670a85619b174328a15925a050c7a8b323fecd13434992332f5c15e05de1"; }; buildInputs = [ which automake autoconf pkgconfig libtool vala python ]; diff --git a/pkgs/tools/networking/cmst/default.nix b/pkgs/tools/networking/cmst/default.nix index 5c8b801dbbe..d9c6c2630fa 100644 --- a/pkgs/tools/networking/cmst/default.nix +++ b/pkgs/tools/networking/cmst/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, qtbase, makeWrapper, libX11 }: +{ stdenv, fetchFromGitHub, qtbase, qmakeHook, makeWrapper, libX11 }: stdenv.mkDerivation rec { name = "cmst-2016.01.28"; @@ -10,10 +10,9 @@ stdenv.mkDerivation rec { owner = "andrew-bibb"; }; - buildInputs = [ qtbase makeWrapper ]; + buildInputs = [ qtbase makeWrapper qmakeHook ]; - configurePhase = '' - runHook preConfigure + preConfigure = '' substituteInPlace ./cmst.pro \ --replace "/usr/bin" "$out/bin" \ --replace "/usr/share" "$out/usr/share" @@ -29,14 +28,6 @@ stdenv.mkDerivation rec { substituteInPlace ./apps/rootapp/rootapp.pro \ --replace "/etc" "$out/etc" \ --replace "/usr/share" "$out/share" - runHook postConfigure - ''; - - buildPhase = '' - runHook preBuild - qmake PREFIX=$out - make - runHook postBuild ''; postInstall = '' diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix index 6008afa2787..47f03cc3747 100644 --- a/pkgs/tools/networking/curl/default.nix +++ b/pkgs/tools/networking/curl/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, perl -, http2Support ? true, libnghttp2 +, http2Support ? true, nghttp2 , idnSupport ? false, libidn ? null , ldapSupport ? false, openldap ? null , zlibSupport ? false, zlib ? null @@ -9,7 +9,7 @@ , c-aresSupport ? false, c-ares ? null }: -assert http2Support -> libnghttp2 != null; +assert http2Support -> nghttp2 != null; assert idnSupport -> libidn != null; assert ldapSupport -> openldap != null; assert zlibSupport -> zlib != null; @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { # "-lz -lssl", which aren't necessary direct build inputs of # applications that use Curl. propagatedBuildInputs = with stdenv.lib; - optional http2Support libnghttp2 ++ + optional http2Support nghttp2 ++ optional idnSupport libidn ++ optional ldapSupport openldap ++ optional zlibSupport zlib ++ @@ -51,7 +51,6 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" "--disable-manual" - ( if http2Support then "--with-nghttp2=${libnghttp2}" else "--without-nghttp2" ) ( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" ) ( if scpSupport then "--with-libssh2=${libssh2}" else "--without-libssh2" ) ( if ldapSupport then "--enable-ldap" else "--disable-ldap" ) diff --git a/pkgs/tools/networking/ddclient/default.nix b/pkgs/tools/networking/ddclient/default.nix index 53a0f4c3e6d..333292d9fab 100644 --- a/pkgs/tools/networking/ddclient/default.nix +++ b/pkgs/tools/networking/ddclient/default.nix @@ -9,6 +9,8 @@ buildPerlPackage rec { sha256 = "1j8zdn7fy7i0bjk3jf0hxnbnshc2yf054vxq64imxdpfd7n5zgfy"; }; + outputs = [ "out" ]; + buildInputs = [ perlPackages.IOSocketSSL perlPackages.DigestSHA1 ]; patches = [ ./ddclient-line-buffer-stdout.patch ]; diff --git a/pkgs/tools/networking/dropbear/default.nix b/pkgs/tools/networking/dropbear/default.nix index 586ae6b544e..d102ef5d7c3 100644 --- a/pkgs/tools/networking/dropbear/default.nix +++ b/pkgs/tools/networking/dropbear/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { buildInputs = [ zlib ]; meta = with stdenv.lib; { - homepage = http://matt.ucc.asn.au/dropbear/dropbear.html; + homepage = "http://matt.ucc.asn.au/dropbear/dropbear.html"; description = "A small footprint implementation of the SSH 2 protocol"; license = licenses.mit; maintainers = with maintainers; [ abbradar ]; diff --git a/pkgs/tools/networking/httpie/default.nix b/pkgs/tools/networking/httpie/default.nix index a3c52f7dd50..702fa208ac2 100644 --- a/pkgs/tools/networking/httpie/default.nix +++ b/pkgs/tools/networking/httpie/default.nix @@ -5,7 +5,7 @@ pythonPackages.buildPythonApplication rec { namePrefix = ""; src = fetchurl { - url = "http://pypi.python.org/packages/source/h/httpie/${name}.tar.gz"; + url = "mirror://pypi/h/httpie/${name}.tar.gz"; sha256 = "0s0dsj1iimn17h0xyziwk4kz4ga9s0vy9rhzixh8dna32za84fdg"; }; diff --git a/pkgs/tools/networking/imapsync/default.nix b/pkgs/tools/networking/imapsync/default.nix index 877f71bc37b..d6ac630b122 100644 --- a/pkgs/tools/networking/imapsync/default.nix +++ b/pkgs/tools/networking/imapsync/default.nix @@ -1,10 +1,10 @@ {stdenv, makeWrapper, fetchurl, perl, openssl, perlPackages }: stdenv.mkDerivation rec { - name = "imapsync-1.644"; + name = "imapsync-1.684"; src = fetchurl { url = "https://fedorahosted.org/released/imapsync/${name}.tgz"; - sha256 = "1lni950qyp841277dnzb43pxpzqyfcl6sachd8j6a0j08826gfky"; + sha256 = "1ilqdaabh6xiwpjfdg2mrhygvjlxj6jdkmqjqadq5z29172hji5b"; }; patchPhase = '' diff --git a/pkgs/tools/networking/logmein-hamachi/default.nix b/pkgs/tools/networking/logmein-hamachi/default.nix new file mode 100644 index 00000000000..28fb39db571 --- /dev/null +++ b/pkgs/tools/networking/logmein-hamachi/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchurl }: + +with stdenv.lib; + +assert stdenv.isLinux; + +let + arch = + if stdenv.system == "x86_64-linux" then "x64" + else if stdenv.system == "i686-linux" then "x86" + else abort "Unsupported architecture"; + sha256 = + if stdenv.system == "x86_64-linux" then "1j9sba5prpihlmxr98ss3vls2qjfc6hypzlakr1k97z0a8433nif" + else if stdenv.system == "i686-linux" then "100x6gib2np72wrvcn1yhdyn4fplf5x8xm4x0g77izyfdb3yjg8h" + else abort "Unsupported architecture"; + libraries = stdenv.lib.makeLibraryPath [ stdenv.cc.cc ]; + +in stdenv.mkDerivation rec { + name = "logmein-hamachi-2.1.0.139"; + + src = fetchurl { + url = "https://secure.logmein.com/labs/${name}-${arch}.tgz"; + inherit sha256; + }; + + installPhase = '' + patchelf \ + --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ + --set-rpath ${libraries} \ + hamachid + install -D -m755 hamachid $out/bin/hamachid + ln -s $out/bin/hamachid $out/bin/hamachi + ''; + + dontStrip = true; + dontPatchELF = true; + + meta = with stdenv.lib; { + description = "A hosted VPN service that lets you securely extend LAN-like networks to distributed teams"; + homepage = https://secure.logmein.com/products/hamachi/; + license = licenses.unfreeRedistributable; + maintainers = with maintainers; [ abbradar ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/tools/networking/miniupnpd/default.nix b/pkgs/tools/networking/miniupnpd/default.nix index d2bc7b4e772..6003471bed9 100644 --- a/pkgs/tools/networking/miniupnpd/default.nix +++ b/pkgs/tools/networking/miniupnpd/default.nix @@ -3,11 +3,11 @@ assert stdenv.isLinux; stdenv.mkDerivation rec { - name = "miniupnpd-1.9.20160222"; + name = "miniupnpd-2.0"; src = fetchurl { url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz"; - sha256 = "0q694dla4v36qsc0x50xqg2jjhwdi9pl7r2gl10yvhkahxqx1ng7"; + sha256 = "1dxzhvkylrnbkd5srb9rb2g4f9ydd1zbjg5sdf190m0g1sha6snr"; name = "${name}.tar.gz"; }; @@ -16,13 +16,14 @@ stdenv.mkDerivation rec { makefile = "Makefile.linux"; - buildFlags = "miniupnpd genuuid"; + buildFlags = [ "miniupnpd" "genuuid" ]; - installFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)"; + installFlags = [ "PREFIX=$(out)" "INSTALLPREFIX=$(out)" ]; - meta = { + meta = with stdenv.lib; { homepage = http://miniupnp.free.fr/; description = "A daemon that implements the UPnP Internet Gateway Device (IGD) specification"; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; }; } diff --git a/pkgs/tools/networking/network-manager/openconnect.nix b/pkgs/tools/networking/network-manager/openconnect.nix index 0009aaf6b44..6a93100fa10 100644 --- a/pkgs/tools/networking/network-manager/openconnect.nix +++ b/pkgs/tools/networking/network-manager/openconnect.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, openconnect, intltool, pkgconfig, networkmanager, libsecret -, withGnome ? true, gnome3, procps, module_init_tools }: +, withGnome ? true, gnome3, procps, kmod }: stdenv.mkDerivation rec { name = "${pname}${if withGnome then "-gnome" else ""}-${version}"; @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { --replace "/sbin/sysctl" "${procps}/sbin/sysctl" substituteInPlace "src/nm-openconnect-service.c" \ --replace "/usr/sbin/openconnect" "${openconnect}/sbin/openconnect" \ - --replace "/sbin/modprobe" "${module_init_tools}/sbin/modprobe" + --replace "/sbin/modprobe" "${kmod}/sbin/modprobe" ''; postConfigure = '' diff --git a/pkgs/tools/networking/network-manager/openvpn.nix b/pkgs/tools/networking/network-manager/openvpn.nix index be026457195..4b98600611e 100644 --- a/pkgs/tools/networking/network-manager/openvpn.nix +++ b/pkgs/tools/networking/network-manager/openvpn.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, openvpn, intltool, pkgconfig, networkmanager, libsecret -, withGnome ? true, gnome3, procps, module_init_tools }: +, withGnome ? true, gnome3, procps, kmod }: stdenv.mkDerivation rec { name = "${pname}${if withGnome then "-gnome" else ""}-${version}"; @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { --replace "/sbin/sysctl" "${procps}/sbin/sysctl" substituteInPlace "src/nm-openvpn-service.c" \ --replace "/sbin/openvpn" "${openvpn}/sbin/openvpn" \ - --replace "/sbin/modprobe" "${module_init_tools}/sbin/modprobe" + --replace "/sbin/modprobe" "${kmod}/sbin/modprobe" substituteInPlace "properties/auth-helpers.c" \ --replace "/sbin/openvpn" "${openvpn}/sbin/openvpn" ''; diff --git a/pkgs/tools/networking/network-manager/vpnc.nix b/pkgs/tools/networking/network-manager/vpnc.nix index 5f3ab00ebc4..64de5408c7e 100644 --- a/pkgs/tools/networking/network-manager/vpnc.nix +++ b/pkgs/tools/networking/network-manager/vpnc.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, vpnc, intltool, pkgconfig, networkmanager, libsecret -, withGnome ? true, gnome3, procps, module_init_tools }: +, withGnome ? true, gnome3, procps, kmod }: stdenv.mkDerivation rec { name = "${pname}${if withGnome then "-gnome" else ""}-${version}"; @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { --replace "/sbin/sysctl" "${procps}/sbin/sysctl" substituteInPlace "src/nm-vpnc-service.c" \ --replace "/sbin/vpnc" "${vpnc}/sbin/vpnc" \ - --replace "/sbin/modprobe" "${module_init_tools}/sbin/modprobe" + --replace "/sbin/modprobe" "${kmod}/sbin/modprobe" ''; postConfigure = '' diff --git a/pkgs/tools/networking/pcapfix/default.nix b/pkgs/tools/networking/pcapfix/default.nix new file mode 100644 index 00000000000..0c5035f2d39 --- /dev/null +++ b/pkgs/tools/networking/pcapfix/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "pcapfix-1.1.0"; + + src = fetchurl { + url = "https://f00l.de/pcapfix/${name}.tar.gz"; + sha256 = "025jpsqav9wg9lql7jfpd67z1113j8gzmjc5nqf5q07b01nnpfgj"; + }; + + postPatch = ''sed -i "s|/usr|$out|" Makefile''; + + meta = with stdenv.lib; + { homepage = "https://f00l.de/pcapfix/"; + description = "Repair your broken pcap and pcapng files"; + license = licenses.gpl3; + maintainers = [ maintainers.ehmry ]; + }; +} \ No newline at end of file diff --git a/pkgs/tools/networking/siege/default.nix b/pkgs/tools/networking/siege/default.nix index 48e2fc5ef78..c4d68ee399a 100644 --- a/pkgs/tools/networking/siege/default.nix +++ b/pkgs/tools/networking/siege/default.nix @@ -1,16 +1,21 @@ -{ stdenv, fetchurl, openssl }: +{ stdenv, fetchurl, openssl, zlib }: stdenv.mkDerivation rec { - name = "siege-3.0.8"; + name = "siege-4.0.1"; src = fetchurl { url = "http://download.joedog.org/siege/${name}.tar.gz"; - sha256 = "15xj0cl64mzf89i0jknqg37rkrcaqmgs4755l74b4nmp4bky7ddq"; + sha256 = "0dr8k64s7zlhy3w8n1br0h6xd06p09p9809l9rp13isf10jp5pgx"; }; NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; - configureFlags = [ "--with-ssl=${openssl}" ]; + buildInputs = [ openssl zlib ]; + + configureFlags = [ + "--with-ssl=${openssl.dev}" + "--with-zlib=${zlib.dev}" + ]; meta = with stdenv.lib; { description = "HTTP load tester"; diff --git a/pkgs/tools/networking/speedtest-cli/default.nix b/pkgs/tools/networking/speedtest-cli/default.nix index 80bcb7ae987..de5ba4c18e1 100644 --- a/pkgs/tools/networking/speedtest-cli/default.nix +++ b/pkgs/tools/networking/speedtest-cli/default.nix @@ -5,7 +5,7 @@ pythonPackages.buildPythonApplication rec { version = "0.3.4"; src = fetchurl { - url = "https://pypi.python.org/packages/source/s/speedtest-cli/speedtest-cli-${version}.tar.gz"; + url = "mirror://pypi/s/speedtest-cli/speedtest-cli-${version}.tar.gz"; sha256 = "19i671cd815fcv0x7h2m0a493slzwkzn7r926g8myx1srkss0q6d"; }; diff --git a/pkgs/tools/networking/xl2tpd/default.nix b/pkgs/tools/networking/xl2tpd/default.nix index 4b8f91461d8..c9804caad4a 100644 --- a/pkgs/tools/networking/xl2tpd/default.nix +++ b/pkgs/tools/networking/xl2tpd/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, libpcap, ppp }: -let version = "1.3.6"; -in stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "xl2tpd-${version}"; + version = "1.3.7"; src = fetchFromGitHub { owner = "xelerance"; repo = "xl2tpd"; rev = "v${version}"; - sha256 = "17lnsk9fsyfp2g5hha7psim6047wj9qs8x4y4w06gl6bbf36jm9z"; + sha256 = "0wjkj2b5rkxhx522wmkml5s0zdp68hkvrh7npx839dvsr79fji7k"; }; buildInputs = [ libpcap ]; @@ -20,7 +20,7 @@ in stdenv.mkDerivation { makeFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { - homepage = http://www.xelerance.com/software/xl2tpd/; + homepage = "http://www.xelerance.com/software/xl2tpd/"; description = "Layer 2 Tunnelling Protocol Daemon (RFC 2661)"; platforms = platforms.linux; license = licenses.gpl2; diff --git a/pkgs/tools/package-management/createrepo_c/default.nix b/pkgs/tools/package-management/createrepo_c/default.nix new file mode 100644 index 00000000000..eed1ed1e526 --- /dev/null +++ b/pkgs/tools/package-management/createrepo_c/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchFromGitHub, cmake, pkgconfig, bzip2, expat, glib, curl, libxml2, python, rpm, openssl, sqlite, file, xz, pcre, bashCompletion }: + +stdenv.mkDerivation rec { + rev = "0.10.0"; + name = "createrepo_c-${rev}"; + + src = fetchFromGitHub { + inherit rev; + owner = "rpm-software-management"; + repo = "createrepo_c"; + sha256 = "1sqzdkj9vigkvxsjlih1i0gylv53na2yic5if9w1s2sgxhqqz5zv"; + }; + + # FIXME: ugh, there has to be a better way to do this... + prePatch = '' + substituteInPlace CMakeLists.txt \ + --replace 'execute_process(COMMAND ''${PKG_CONFIG_EXECUTABLE} --variable=completionsdir bash-completion OUTPUT_VARIABLE BASHCOMP_DIR OUTPUT_STRIP_TRAILING_WHITESPACE)' \ + "set (BASHCOMP_DIR "$out/share/bash-completion/completions")" + + substituteInPlace src/python/CMakeLists.txt \ + --replace 'EXECUTE_PROCESS(COMMAND ''${PYTHON_EXECUTABLE} -c "from sys import stdout; from distutils import sysconfig; stdout.write(sysconfig.get_python_lib(True))" OUTPUT_VARIABLE PYTHON_INSTALL_DIR)' \ + "set (PYTHON_INSTALL_DIR "$out/${python.sitePackages}")" + ''; + + buildInputs = [ cmake pkgconfig bzip2 expat glib curl libxml2 python rpm openssl sqlite file xz pcre bashCompletion ]; + + meta = with stdenv.lib; { + description = "C implementation of createrepo"; + homepage = "http://rpm-software-management.github.io/createrepo_c/"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; + }; +} + diff --git a/pkgs/tools/package-management/libhif/default.nix b/pkgs/tools/package-management/libhif/default.nix new file mode 100644 index 00000000000..7736c67007a --- /dev/null +++ b/pkgs/tools/package-management/libhif/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, cmake, pkgconfig, autoconf, automake, libtool, expat, python, sphinx, gobjectIntrospection, librepo, check, rpm, libsolv, pcre, curl, gtk_doc, zlib, xz, elfutils }: + +stdenv.mkDerivation rec { + rev = "87e4cb247f5982fd48636691a955cc566d3110a3"; + name = "libhif-${stdenv.lib.strings.substring 0 7 rev}"; + + src = fetchFromGitHub { + inherit rev; + owner = "rpm-software-management"; + repo = "libhif"; + sha256 = "1g8hrqjawzwcx1gjcnv9sxg5i8l13dab3rr3i641k5vi76vv8miq"; + }; + + postPatch = '' + for file in python/hawkey/CMakeLists.txt python/hawkey/tests/module/CMakeLists.txt; do + substituteInPlace $file --replace ' ''${PYTHON_INSTALL_DIR}' " $out/${python.sitePackages}" + done + + # Until https://github.com/rpm-software-management/libhif/issues/43 is implemented, let's not force users to have this path + substituteInPlace libhif/hif-keyring.c \ + --replace '"/etc/pki/rpm-gpg"' 'getenv("LIBHIF_RPM_GPG_PATH_OVERRIDE") ? getenv("LIBHIF_RPM_GPG_PATH_OVERRIDE") : "/etc/pki/rpm-gpg"' + ''; + + buildInputs = [ cmake pkgconfig pcre expat python sphinx gobjectIntrospection gtk_doc librepo check rpm curl ]; + + # ibhif/hif-packagedelta.h includes solv/pool.h + propagatedBuildInputs = [ libsolv ]; + + meta = with stdenv.lib; { + description = "A library that provides a high level package-manager. It uses librepo and hawkey under the hood."; + license = licenses.lgpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; + }; +} + diff --git a/pkgs/tools/package-management/librepo/default.nix b/pkgs/tools/package-management/librepo/default.nix new file mode 100644 index 00000000000..ceef483c8cc --- /dev/null +++ b/pkgs/tools/package-management/librepo/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchFromGitHub, cmake, python, pkgconfig, expat, glib, pcre, openssl, curl, check, attr, gpgme }: + +stdenv.mkDerivation rec { + version = "1.7.18"; + name = "librepo-${version}"; + + src = fetchFromGitHub { + owner = "rpm-software-management"; + repo = "librepo"; + rev = name; + sha256 = "05iqx2kvfqsskb2r3n5p8f91i4gd4pbw6nh30pn532mgab64cvxk"; + }; + + patchPhase = '' + substituteInPlace librepo/python/python2/CMakeLists.txt \ + --replace ' ''${PYTHON_INSTALL_DIR}' " $out/lib/python2.7/site-packages" + ''; + + buildInputs = [ cmake python pkgconfig expat glib pcre openssl curl check attr gpgme ]; + + # librepo/fastestmirror.h includes curl/curl.h, and pkg-config specfile refers to others in here + propagatedBuildInputs = [ curl gpgme expat ]; + + meta = with stdenv.lib; { + description = "Library providing C and Python (libcURL like) API for downloading linux repository metadata and packages"; + license = licenses.lgpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; + }; +} + diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index 16078906bc2..bf3f8aed712 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -9,7 +9,7 @@ let common = { name, src }: stdenv.mkDerivation rec { inherit name src; - outputs = [ "out" "man" "doc" ]; + outputs = [ "dev" "out" "man" "doc" ]; nativeBuildInputs = [ perl pkgconfig ]; diff --git a/pkgs/tools/package-management/nox/default.nix b/pkgs/tools/package-management/nox/default.nix index 89e72307ead..895704ec646 100644 --- a/pkgs/tools/package-management/nox/default.nix +++ b/pkgs/tools/package-management/nox/default.nix @@ -6,7 +6,7 @@ pythonPackages.buildPythonApplication rec { namePrefix = ""; src = fetchurl { - url = "https://pypi.python.org/packages/source/n/nix-nox/nix-nox-${version}.tar.gz"; + url = "mirror://pypi/n/nix-nox/nix-nox-${version}.tar.gz"; sha256 = "1wpxh5fhj8nx4yx4cvmc087cnf4iqwxf7zd7rdh2ln3pgxrjfral"; }; diff --git a/pkgs/tools/package-management/packagekit/default.nix b/pkgs/tools/package-management/packagekit/default.nix index ae8e1b252c4..bc57dd7c80f 100644 --- a/pkgs/tools/package-management/packagekit/default.nix +++ b/pkgs/tools/package-management/packagekit/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "packagekit-${version}"; - version = "1.0.8"; + version = "1.1.0"; src = fetchurl { - sha256 = "1vaxn4kwdwx6p03n88k4pnbd2l6lb0cbxpcs88kjack1jml17c3l"; + sha256 = "0sn38b80c6jx9d9r329ji9bg4m4gj6gnl04rv8fkmincj61qf7ag"; url = "http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${version}.tar.xz"; }; @@ -20,7 +20,6 @@ stdenv.mkDerivation rec { "--disable-connman" "--disable-systemd" "--disable-bash-completion" - "--disable-browser-plugin" "--disable-gstreamer-plugin" "--disable-gtk-module" "--disable-command-not-found" diff --git a/pkgs/tools/package-management/rpm/default.nix b/pkgs/tools/package-management/rpm/default.nix index 24346fb0eb7..d9cf24f6e51 100644 --- a/pkgs/tools/package-management/rpm/default.nix +++ b/pkgs/tools/package-management/rpm/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, libarchive, nspr, nss, popt, db, xz, python }: +{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, libarchive, nspr, nss, popt, db, xz, python, lua, pkgconfig, autoreconfHook }: stdenv.mkDerivation rec { name = "rpm-4.12.0"; @@ -8,7 +8,10 @@ stdenv.mkDerivation rec { sha256 = "18hk47hc755nslvb7xkq4jb095z7va0nlcyxdpxayc4lmb8mq3bp"; }; - buildInputs = [ cpio zlib bzip2 file libarchive nspr nss popt db xz python ]; + buildInputs = [ cpio zlib bzip2 file libarchive nspr nss db xz python lua pkgconfig autoreconfHook ]; + + # rpm/rpmlib.h includes popt.h, and then the pkg-config file mentions these as linkage requirements + propagatedBuildInputs = [ popt nss db bzip2 libarchive ]; # Note: we don't add elfutils to buildInputs, since it provides a # bad `ld' and other stuff. @@ -19,15 +22,17 @@ stdenv.mkDerivation rec { postPatch = '' # For Python3, the original expression evaluates as 'python3.4' but we want 'python3.4m' here substituteInPlace configure --replace 'python''${PYTHON_VERSION}' ${python.executable} + + substituteInPlace Makefile.am --replace '@$(MKDIR_P) $(DESTDIR)$(localstatedir)/tmp' "" ''; - configureFlags = "--with-external-db --without-lua --enable-python"; + configureFlags = "--with-external-db --with-lua --enable-python --localstatedir=/var --sharedstatedir=/com"; meta = with stdenv.lib; { homepage = http://www.rpm.org/; license = licenses.gpl2; description = "The RPM Package Manager"; - maintainers = [ maintainers.mornfall ]; + maintainers = with maintainers; [ mornfall copumpkin ]; platforms = platforms.linux; }; } diff --git a/pkgs/tools/security/afl/default.nix b/pkgs/tools/security/afl/default.nix index 24a3abd4096..a252dad5ea1 100644 --- a/pkgs/tools/security/afl/default.nix +++ b/pkgs/tools/security/afl/default.nix @@ -9,11 +9,11 @@ let in stdenv.mkDerivation rec { name = "afl-${version}"; - version = "1.94b"; + version = "2.10b"; src = fetchurl { url = "http://lcamtuf.coredump.cx/afl/releases/${name}.tgz"; - sha256 = "1c36yz3ajd66m3c5aiai3wf59pzxivn80cvlib3dw45d4zqiymqp"; + sha256 = "1qxz3szsdr3ciz496mjb5v2k8p90nilgnlbwwv9csk828qb2jhc1"; }; # Note: libcgroup isn't needed for building, just for the afl-cgroup diff --git a/pkgs/tools/security/eid-mw/default.nix b/pkgs/tools/security/eid-mw/default.nix index 85409fae85b..b6a7b2fedbe 100644 --- a/pkgs/tools/security/eid-mw/default.nix +++ b/pkgs/tools/security/eid-mw/default.nix @@ -3,10 +3,10 @@ stdenv.mkDerivation rec { name = "eid-mw-${version}"; - version = "4.1.14"; + version = "4.1.16"; src = fetchFromGitHub { - sha256 = "1gj08dylcwdfjmdci1ja853n9xqkhgxy0x8m30bks81qwbnd12lp"; + sha256 = "14b17aa45l0pyqd87c17mgfmpgq1qmybnl6hq9mc29rxw6jdb1ka"; rev = "v${version}"; repo = "eid-mw"; owner = "Fedict"; diff --git a/pkgs/tools/security/meo/default.nix b/pkgs/tools/security/meo/default.nix index be678b18dda..308b94231e7 100644 --- a/pkgs/tools/security/meo/default.nix +++ b/pkgs/tools/security/meo/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchhg, openssl, pcre, qt4, boost, pkcs11helper }: +{ stdenv, fetchhg, openssl, pcre-cpp, qt4, boost, pkcs11helper }: stdenv.mkDerivation { name = "meo-20121113"; @@ -11,7 +11,7 @@ stdenv.mkDerivation { buildFlags = "QMAKE=qmake"; - buildInputs = [ openssl pcre qt4 boost pkcs11helper ]; + buildInputs = [ openssl pcre-cpp qt4 boost pkcs11helper ]; preConfigure = '' sed -i s,-mt$,, meo-gui/meo-gui.pro diff --git a/pkgs/tools/security/qdigidoc/certs.patch b/pkgs/tools/security/qdigidoc/certs.patch new file mode 100644 index 00000000000..5e28943f333 --- /dev/null +++ b/pkgs/tools/security/qdigidoc/certs.patch @@ -0,0 +1,3309 @@ +diff -ruN a/client/CMakeLists.txt b/client/CMakeLists.txt +--- a/client/CMakeLists.txt 2016-01-29 13:06:27.000000000 +0300 ++++ b/client/CMakeLists.txt 2016-04-27 10:17:06.596682326 +0300 +@@ -1,14 +1,5 @@ + set_app_name( PROGNAME qdigidocclient ) + +-add_executable( TSLDownload TSLDownload.cpp ) +-target_link_libraries( TSLDownload Qt5::Network ) +-add_custom_command( +- OUTPUT TSL.qrc tl-mp.xml EE.xml +- DEPENDS TSLDownload +- COMMAND $ "${CMAKE_CURRENT_BINARY_DIR}" EE +- WORKING_DIRECTORY ${_qt5Core_install_prefix}/bin +-) +- + add_definitions( -DPKCS11_MODULE="${PKCS11_MODULE}" ) + include_directories( ${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/common ${OPENSSL_INCLUDE_DIR} ) + +@@ -20,7 +11,7 @@ + ) + + configure_file( translations/tr.qrc tr.qrc COPYONLY ) +-set( RC_FILES images/images.qrc ${CMAKE_CURRENT_BINARY_DIR}/tr.qrc ${CMAKE_CURRENT_BINARY_DIR}/TSL.qrc ) ++set( RC_FILES images/images.qrc ${CMAKE_CURRENT_BINARY_DIR}/tr.qrc TSL.qrc ) + set( TS_FILES translations/en.ts translations/et.ts translations/ru.ts ) + + if( NOT Qt5Widgets_FOUND ) +diff -ruN a/client/EE.xml b/client/EE.xml +--- a/client/EE.xml 1970-01-01 03:00:00.000000000 +0300 ++++ b/client/EE.xml 2016-04-27 10:17:37.325923576 +0300 +@@ -0,0 +1,1268 @@ ++ ++ ++ 4 ++ 28 ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ Estonian Technical Surveillance Authority ++ Tehnilise Järelevalve Amet ++ ++ ++ ++ ++ 23A Sõle St ++ Tallinn ++ 10614 ++ EE ++ ++ ++ ++ mailto:info@tja.ee ++ http://sr.riik.ee/en.html ++ ++ ++ ++ EE:Supervision/Accreditation Status List of certification services from Certification Service Providers, which are supervised/accredited by the referenced Scheme Operator’s Member State for compliance with the relevant provisions laid down in Directive 1999/93/EC of the European Parliament and of the Council of 13 December 1999 on a Community framework for electronic signatures. ++ ++ ++ http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:306:0021:0039:EN:PDF ++ http://sr.riik.ee/en/tsl/estonia.html ++ http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2013:306:0021:0039:ET:PDF ++ http://sr.riik.ee/et/tsl/eesti.html ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/StatusDetn/EUappropriate ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EE ++ ++ EE ++ ++ The applicable legal framework for the present TSL implementation of the Trusted List of supervised/accredited Certification Service Providers for Estonia is Directive 1999/93/EC of the European Parliament and of the Council of 13 December 1999 on a Community framework for electronic signatures and its implementation in Estonia laws. ++ Käesolevale Eesti järelvalvealuste/akrediteeritud sertifitseerimisteenuse osutajate usaldusnimekirjale kohaldatava õigusliku raamistiku moodustavad Euroopa Parlamendi ja Nõukogu direktiiv 199/93/EÜ, 13. detsember 1999, digitaalallkirju käsitleva ühenduse raamistiku kohta ning sellele direktiivile vastavad Eesti õigusaktid. ++ ++ 65535 ++ ++ ++ ++ ++ ++ MIIFKzCCBBOgAwIBAgISESFCgSJf+NfOVIYHRWWewAm0MA0GCSqGSIb3DQEBCwUAMGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzIwHhcNMTUwMzAzMDg1MTAyWhcNMTgwNDIwMTAwNTA1WjBnMQswCQYDVQQGEwJCRTEQMA4GA1UECBMHQmVsZ2l1bTERMA8GA1UEBxMIQnJ1c3NlbHMxHDAaBgNVBAoTE0V1cm9wZWFuIENvbW1pc3Npb24xFTATBgNVBAMTDGVjLmV1cm9wYS5ldTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMFBF1FjO2VA4nIvT3MtXToyfWMNFYRvJc2SIJF3pcZNZcUK9wwNL3j/lOB5+eABCTDShJf8fQgmyEcAU7gXhFw9DFgfnXsmmA1a79zzbs5KWzkmAwEE4lfSYcbJoCuUavD79oaR4v3yv7GZMVab8nXuqWvecwzQWT6sl+rx0ogh1bbeKO9wQ5lbEgRw1MLlyFH2kUieMhjCwO2nQJ9UMTaLu7px4LpZ7tlaVetY7UpMPiGAD34kct1YIoJWJllYbbz7jmALmRAdLvvu5y6Ice4H4j0kDJ/l3zLiVeCiORqrx8ngiiS1LfNSckvz2sbzjVJvXbqxYAEytZQvwxEXdPMCAwEAAaOCAdAwggHMMA4GA1UdDwEB/wQEAwIFoDBJBgNVHSAEQjBAMD4GBmeBDAECAjA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzAXBgNVHREEEDAOggxlYy5ldXJvcGEuZXUwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwSQYDVR0fBEIwQDA+oDygOoY4aHR0cDovL2NybC5nbG9iYWxzaWduLmNvbS9ncy9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMi5jcmwwgaAGCCsGAQUFBwEBBIGTMIGQME0GCCsGAQUFBzAChkFodHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc29yZ2FuaXphdGlvbnZhbHNoYTJnMnIxLmNydDA/BggrBgEFBQcwAYYzaHR0cDovL29jc3AyLmdsb2JhbHNpZ24uY29tL2dzb3JnYW5pemF0aW9udmFsc2hhMmcyMB0GA1UdDgQWBBQ9lw0pOEotT5cKTF8vxu3W6ZCUhzAfBgNVHSMEGDAWgBSW3mHxvRwWKVMcwMx9O4MAQOYafDANBgkqhkiG9w0BAQsFAAOCAQEArSonov8KbE8+5VwewgBHhILHANLIiRmLVJ1siaRXVXL6abmMo8CjW2+VtzAQdnDkzUY6CNATs0y0qkbEcS7fvtvp8QqAiv71+jij6iDT9r9IJ1suNDeQWz6Mng98ecMVsDUzLYieeZXH049tA3hrAnscVRTu7kpT06CGbcJnoNdG7yvxx2Bs9ciVBExrqKMppVHwup23hw/IphHmifPRmXPQ3Fa5FKrqnWJw1BRBLGLOqC1mkj7JuVX108KHlwa5cGiohctnOH9dfyuQPWQecbrobwDgHl4O0Ra+bU/Z4J85YPOB/+F7rOQxRFCpv43zPdg65pNoPppjFDE4TD2bhg== ++ ++ ++ ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl-hr.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUlistofthelists ++ ++ ++ ++ European Commission ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUlistofthelists ++ ++ ++ ++ EU ++ ++ ++ application/pdf ++ ++ ++ ++ ++ ++ ++ ++ MIIHSDCCBTCgAwIBAgIQHaaUHzn5vENUk+T/aHIefTANBgkqhkiG9w0BAQsFADAxMQswCQYDVQQGEwJFUzERMA8GA1UECgwIRk5NVC1SQ00xDzANBgNVBAMMBklTQSBDQTAeFw0xNDEyMTkwODQyMzlaFw0xODEyMTkwODQyMzlaMEwxCzAJBgNVBAYTAkJFMRwwGgYDVQQKDBNFVVJPUEVBTiBDT01NSVNTSU9OMR8wHQYDVQQDDBYoU0lHTikgQUdOSUVTWktBIEJBSk5PMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAog6nQQcoPlHOrwXYDD+wj38lwn1zbalTTJL7yW3N7OgO9/eSCIY5nGgfnslapC36vSO9RbSxW3cV4CJCf2nGZdsZHxNJpf4IG4CEsByui30UGFANtBPlFj/r5avf0OrDGKTI2H/6sN2swgs43grcRFQ5yt/ZPhOIgjXjzK4s36IFMBG1GGRQUSDJo+uv3cbuBcNjdFro3Zmm9TypDv194f1NwXRbFOon1WtaIsJNKzw4+MKCAyD9BBVATQxGLYeCT2tZt3DFbSSXZbBfSnfwGe7eMc99S12Hr/MwAPJhUwZZpienadVNlMNWxwutxcDO5HrmOdtxv8Vh9MKlAwvN4QIDAQABo4IDPzCCAzswWwYDVR0RBFQwUoEcQUdOSUVTWktBLkJBSk5PQEVDLkVVUk9QQS5FVaQyMDAxFDASBgkrBgEEAaxmAQIMBUJBSk5PMRgwFgYJKwYBBAGsZgEBDAlBR05JRVNaS0EwCQYDVR0TBAIwADAOBgNVHQ8BAf8EBAMCBkAwHQYDVR0OBBYEFIe8EqP5sxbiNrSKwgNC00FsSfkjMB8GA1UdIwQYMBaAFEft+GPwma9e/n4OXFjL/uI1N6a9MIHgBgNVHSAEgdgwgdUwgcgGCisGAQQBrGYDBAEwgbkwKQYIKwYBBQUHAgEWHWh0dHA6Ly93d3cuY2VydC5mbm10LmVzL2RwY3MvMIGLBggrBgEFBQcCAjB/DH1RdWFsaWZpZWQgY2VydGlmaWNhdGUuIFVuZGVyIHRoZSB1c2FnZSBjb25kaXRpb25zIGFzc2VydGVkIGluIHRoZSBGTk1ULVJDTSBDUFMgKDEwNiwgSm9yZ2UgSnVhbiBzdHJlZXQsMjgwMDksIE1hZHJpZCwgU3BhaW4pLjAIBgYEAIswAQEwgYYGCCsGAQUFBwEBBHoweDBBBggrBgEFBQcwAYY1aHR0cDovL29jc3BJU0FjYS5jZXJ0LmZubXQuZXMvb2NzcElTQWNhL09jc3BSZXNwb25kZXIwMwYIKwYBBQUHMAKGJ2h0dHA6Ly93d3cuY2VydC5mbm10LmVzL2NlcnRzL0lTQUNBLmNydDBGBggrBgEFBQcBAwQ6MDgwCAYGBACORgEBMAsGBgQAjkYBAwIBDzAVBgYEAI5GAQIwCxMDRVVSAgECAgECMAgGBgQAjkYBBDCBzAYDVR0fBIHEMIHBMIG+oIG7oIG4hoGIbGRhcDovL2xkYXBJU0FjYS5jZXJ0LmZubXQuZXMvQ049Q1JMMSxjbj1JU0ElMjBDQSxvPUZOTVQtUkNNLEM9RVM/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdDtiaW5hcnk/YmFzZT9vYmplY3RjbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludIYraHR0cDovL3d3dy5jZXJ0LmZubXQuZXMvY3Jsc19JU0FjYS9DUkwxLmNybDANBgkqhkiG9w0BAQsFAAOCAgEAd2CyyRljkbR+hxMwnjwzNE9q6nw29uLWx4c/kWfWGNxyjO/mbE2KhgXfUm7e441Ih87PX1p8jpTeOhtfvL8CxmsqyDg56GBNq5NprbagpmKHiNCP77baZiLMFfEvc915ktLlYQEH+wIe5i0gMPmRWjA2urB/M+fXwLgqQdOEe4e0NSLr7YJqHeL1sWQsS4r1zK8ZGv1uJ0v+vAmYXwFtaYYht/c9X+QtVxYaflDcBVnPBxj3xUG7vQHe7g5/RPX4vvzAZNV9d5IBk+sCX05dRfRqsym4qw1sw4j0W2nxAfQwk3bfW6NP5SgOHfC9sh2LrC3F/wlvePY8piTXFUkRzlsEb8zWM2vfz3QRNgGbxCz3DY3kFavdEL/gnNHOg5Q4tn2TVV7YfXLEgu7zN+IqBOdlAtbJXEu60FiF9Cs35IGqwWlbeOK8QvogFYDxlgIPrs3ijEA1WHyY+GH1mofSA7u30wEvooCzohFf4DBv06I4q9aCNBnTo4yki1yFhBm71r60hlAas6aK6TZ+NUoFWwPypMP617SlHdy8QlFx1s3V+rIt2hxUUGddid/FXDKtuUCRqKqx6x8J8bI7DecZsCS7ijPCApjJ84HB8UASRzdGtEwc97hvnAqXjpCS/tHAVcVvmP3isNDu4WtV2LQfL/TIY8zMxUebv/E5JyB3KAw= ++ ++ ++ ++ ++ MIIGgDCCBGigAwIBAgIUWH+El24rfQt9YeTtrAZC9UzssuQwDQYJKoZIhvcNAQEFBQAwgZIxCzAJBgNVBAYTAk5MMSAwHgYDVQQKExdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEoMCYGA1UECxMfSXNzdWluZyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTE3MDUGA1UEAxMuUXVvVmFkaXMgRVUgSXNzdWluZyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBHMjAeFw0xNTEyMDQxMjA5MzVaFw0xODEyMDQxMjA5MjRaMHkxCzAJBgNVBAYTAkJFMRAwDgYDVQQIEwdCcnVzc2VsMRIwEAYDVQQHEwlFdHRlcmJlZWsxHDAaBgNVBAoTE0V1cm9wZWFuIENvbW1pc3Npb24xEzARBgNVBAsTCkRHIENPTk5FQ1QxETAPBgNVBAMMCEVDX0NORUNUMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtXQoPmP4DPSZDKuHcecqX6durKKczAuiEimbZAuuOgMQ9P7g2EIWrACuwNLXKxFXikxOSJWg+nYytJ/ty+1njYa8Nmhp4MYc4UoF3WzQCiz63atK9AuNOMrODBaAGrQNYqXyuEet+i5NaibRYPEtptXzoY0Pif6Zv3qauBlCJnf7kbGkHq9sh8sEXnMaWGjm0EHna8NTh1LjnzCb6N2capQDt+RRrUiBee3YMST3Fo3kKQTKaBvvcYAJ4Mgs/9+Dvwm52dIaMc1vaP1MN2dUW45EWDKtaRfV9flkAy0iT8P8qvUkyGn1XBXnM/gyohOq9cSaP09vPMX6ArmFPlQSiwIDAQABo4IB5DCCAeAwWAYDVR0gBFEwTzAIBgYEAIswAQIwQwYKKwYBBAG+WAGDEDA1MDMGCCsGAQUFBwIBFidodHRwOi8vd3d3LnF1b3ZhZGlzZ2xvYmFsLm5sL2RvY3VtZW50ZW4wJAYIKwYBBQUHAQMEGDAWMAoGCCsGAQUFBwsCMAgGBgQAjkYBATB0BggrBgEFBQcBAQRoMGYwKgYIKwYBBQUHMAGGHmh0dHA6Ly9vY3NwLnF1b3ZhZGlzZ2xvYmFsLmNvbTA4BggrBgEFBQcwAoYsaHR0cDovL3RydXN0LnF1b3ZhZGlzZ2xvYmFsLmNvbS9xdmV1Y2FnMi5jcnQwRgYKKoZIhvcvAQEJAQQ4MDYCAQGGMWh0dHA6Ly90c2EwMS5xdW92YWRpc2dsb2JhbC5jb20vVFNTL0h0dHBUc3BTZXJ2ZXIwEwYKKoZIhvcvAQEJAgQFMAMCAQEwDgYDVR0PAQH/BAQDAgZAMB8GA1UdIwQYMBaAFOD4DvnUtfJ/SSO2w3nHozUfhnqIMDsGA1UdHwQ0MDIwMKAuoCyGKmh0dHA6Ly9jcmwucXVvdmFkaXNnbG9iYWwuY29tL3F2ZXVjYWcyLmNybDAdBgNVHQ4EFgQUQX94XsDFzQFNiSGpboQqB53MiyAwDQYJKoZIhvcNAQEFBQADggIBAJfRbSpp2RTfVtyu4G1TDVXE6RgoIQ5XrUASAmhDWktT5PJReSg5INMFxi3jSPAO7p29bEU32wllZGPVN+A9b2SZmhHyYx9ZoBTMekKlx0qHkU4FfcicIznXo9EVplMtgjplqRltiLqxwXU5uIxKJ2R6BJwjokUWcpei1ifs14SgAve8firXwiG1kFcoClfLjyj4SuDFxT+0e/dhfGfQMfvVBp4xa5tOGYDS7kzf7xvftYlPHW1AbEzjuPmViGgen8ZD/WkuqzdygizOocFQNshGH/mFnQxT4ILAubWJX5gcvmjaZ9N/Lxh041Ra2s8YK5l1DHBcZzz6y2j9OhxPgCvzz3/71DsiGVaK/TO5HxJNcjKlkBblXE4dgy3wqjpUzqkVltC+Xli23Ljny4tenz0QNOx3SQBA1R/hZE5QKD0L0wOc4Np1VxGZbCWGFqta8KKhEA19KlW03Yix9aqe86iNKoJm3n/4BBgdYGu5c+DnqKWj3D7NnxCVZwuLOKzWSCEisl2kHdgnZ3Qix5Vc5QYWexSHeQfCuJAARCDvhdnOidUyiZRnQ6R4VHt0GgNQcYKrmz+UdEroSeQCuSvXIh+LIEJpayWSo9vxi3OgO2IRSi+7Kh5h7LAfWcIwpVY8u0BpRoNJg5xMjvF49GDJc1QeKdlqCBm05N4c2d5t5/aa ++ ++ ++ ++ ++ MIIGgTCCBGmgAwIBAgIUeaHFHm5f58zYv20JfspVJ3hossYwDQYJKoZIhvcNAQEFBQAwgZIxCzAJBgNVBAYTAk5MMSAwHgYDVQQKExdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEoMCYGA1UECxMfSXNzdWluZyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTE3MDUGA1UEAxMuUXVvVmFkaXMgRVUgSXNzdWluZyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBHMjAeFw0xMzEwMzAxMjI3MTFaFw0xNjEwMzAxMjI3MTFaMHoxCzAJBgNVBAYTAkJFMRAwDgYDVQQIEwdCcnVzc2VsMRIwEAYDVQQHEwlFdHRlcmJlZWsxHDAaBgNVBAoTE0V1cm9wZWFuIENvbW1pc3Npb24xFDASBgNVBAsTC0luZm9ybWF0aWNzMREwDwYDVQQDDAhFQ19ESUdJVDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJgkkqvJmZaknQC7c6H6LEr3dGtQ5IfOB3HAZZxOZbb8tdM1KMTO3sAifJC5HNFeIWd0727uZj+V5kBrUv36zEs+VxiN1yJBmcJznX4J2TCyPfLk2NRELGu65VwrK2Whp8cLLANc+6pQn/5wKh23ehZm21mLXcicZ8whksUGb/h8p6NDe1cElD6veNc9CwwK2QT0G0mQiEYchqjJkqyY8HEak8t+CbIC4Rrhyxh3HI1fCK0WKS9JjbPQFbvGmfpBZuLPYZYzP4UXIqfBVYctyodcSAnSfmy6tySMqpVSRhjRn4KP0EfHlq7Ec+H3nwuqxd0M4vTJlZm+XwYJBzEFzFsCAwEAAaOCAeQwggHgMFgGA1UdIARRME8wCAYGBACLMAECMEMGCisGAQQBvlgBgxAwNTAzBggrBgEFBQcCARYnaHR0cDovL3d3dy5xdW92YWRpc2dsb2JhbC5ubC9kb2N1bWVudGVuMCQGCCsGAQUFBwEDBBgwFjAKBggrBgEFBQcLAjAIBgYEAI5GAQEwdAYIKwYBBQUHAQEEaDBmMCoGCCsGAQUFBzABhh5odHRwOi8vb2NzcC5xdW92YWRpc2dsb2JhbC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly90cnVzdC5xdW92YWRpc2dsb2JhbC5jb20vcXZldWNhZzIuY3J0MEYGCiqGSIb3LwEBCQEEODA2AgEBhjFodHRwOi8vdHNhMDEucXVvdmFkaXNnbG9iYWwuY29tL1RTUy9IdHRwVHNwU2VydmVyMBMGCiqGSIb3LwEBCQIEBTADAgEBMA4GA1UdDwEB/wQEAwIGQDAfBgNVHSMEGDAWgBTg+A751LXyf0kjtsN5x6M1H4Z6iDA7BgNVHR8ENDAyMDCgLqAshipodHRwOi8vY3JsLnF1b3ZhZGlzZ2xvYmFsLmNvbS9xdmV1Y2FnMi5jcmwwHQYDVR0OBBYEFDc3hgIFJTDamDEeQczI7Lot4uaVMA0GCSqGSIb3DQEBBQUAA4ICAQAZ8EZ48RgPimWY6s4LjZf0M2MfVJmNh06Jzmf6fzwYtDtQLKzIDk8ZtosqYpNNBoZIFICMZguGRAP3kuxWvwANmrb5HqyCzXThZVPJTmKEzZNhsDtKu1almYBszqX1UV7IgZp+jBZ7FyXzXrXyF1tzXQxHGobDV3AEE8vdzEZtwDGpZJPnEPCBzifdY+lrrL2rDBjbv0VeildgOP1SIlL7dh1O9f0T6T4ioS6uSdMt6b/OWjqHadsSpKry0A6pqfOqJWAhDiueqgVB7vus6o6sSmfG4SW9EWW+BEZ510HjlQU/JL3PPmf+Xs8s00sm77LJ/T/1hMUuGp6TtDsJe+pPBpCYvpm6xu9GL20CsArFWUeQ2MSnE1jsrb00UniCKslcM63pU7I0VcnWMJQSNY28OmnFESPK6s6zqoN0ZMLhwCVnahi6pouBwTb10M9/Anla9xOT42qxiLr14S2lHy18aLiBSQ4zJKNLqKvIrkjewSfW+00VLBYbPTmtrHpZUWiCGiRS2SviuEmPVbdWvsBUaq7OMLIfBD4nin1FlmYnaG9TVmWkwVYDsFmQepwPDqjPs4efAxzkgUFHWn0gQFbqxRocKrCsOvCDHOHORA97UWcThmgvr0Jl7ipvP4Px//tRp08blfy4GMzYls5WF8f6JaMrNGmpfPasd9NbpBNp7A== ++ ++ ++ ++ ++ MIIGIjCCBQqgAwIBAgIDEuw1MA0GCSqGSIb3DQEBCwUAME4xCzAJBgNVBAYTAkxVMRYwFAYDVQQKEw1MdXhUcnVzdCBTLkEuMScwJQYDVQQDEx5MdXhUcnVzdCBHbG9iYWwgUXVhbGlmaWVkIENBIDIwHhcNMTUwNjI2MDgzOTAwWhcNMTgwNjI2MDgzOTAwWjCCASExCzAJBgNVBAYTAkZSMQswCQYDVQQHEwJMVTEnMCUGA1UEChMeRXVyb3BlYW4gQ29tbWlzc2lvbiBMdXhlbWJvdXJnMRMwEQYDVQQLEwowOTQ5MzgzMzQyMScwJQYDVQQDEx5QaGlsaXBwZSBKZWFuIFJlbmF1ZCBTY2huZWlkZXIxEjAQBgNVBAQTCVNjaG5laWRlcjEdMBsGA1UEKhMUUGhpbGlwcGUgSmVhbiBSZW5hdWQxHTAbBgNVBAUTFDEwMzAzOTY0MjEwMDUxNzM1NTA5MS4wLAYJKoZIhvcNAQkBFh9QaGlsaXBwZS5zY2huZWlkZXJAZWMuZXVyb3BhLmV1MRwwGgYDVQQMExNQcm9mZXNzaW9uYWwgUGVyc29uMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqPe/8PxHct9t5mYusk70ZSqhLUDooOZOx+PvGzWtCtnjoRgKDVfT/5E0QJXo6mYPNOyPPW08g9/fA5Q7CHxvtB1SapHdcEX7UDl1e1KlIQF8U+VnYKcnnh90LM01qx1nKvdOoGouI4wmZ88tZveavQeJ5ynHwYARRay5Osm2sUdqnheEZMKLjIuwdd8ivD6pB0+l/vJU26wsN4rgSo9tEjF7GMt/kutHXLMuqCxoCNflOkuWtMuTbxAuAwSQcperWgy4WuE39jQqLMp2x0JnQit3fKh/e36T9BJby1zxeqkZnCTrxgkKhUrnROm5nbjhjEUPVhPl76L79pyCoY6wSwIDAQABo4ICMjCCAi4wDAYDVR0TAQH/BAIwADBiBggrBgEFBQcBAQRWMFQwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLmx1eHRydXN0Lmx1MC0GCCsGAQUFBzAChiFodHRwOi8vY2EubHV4dHJ1c3QubHUvTFRHUUNBMi5jcnQwggEeBgNVHSAEggEVMIIBETCCAQMGCCuBKwEBCgMBMIH2MIHHBggrBgEFBQcCAjCBuhqBt0x1eFRydXN0IFF1YWxpZmllZCBDZXJ0aWZpY2F0ZSBvbiBTU0NEIENvbXBsaWFudCB3aXRoIEVUU0kgVFMgMTAxIDQ1NiBRQ1ArIGNlcnRpZmljYXRlIHBvbGljeS4gS2V5IEdlbmVyYXRpb24gYnkgQ1NQLiBTb2xlIEF1dGhvcmlzZWQgVXNhZ2U6IFN1cHBvcnQgb2YgUXVhbGlmaWVkIEVsZWN0cm9uaWMgU2lnbmF0dXJlLjAqBggrBgEFBQcCARYeaHR0cHM6Ly9yZXBvc2l0b3J5Lmx1eHRydXN0Lmx1MAgGBgQAizABATAiBggrBgEFBQcBAwQWMBQwCAYGBACORgEBMAgGBgQAjkYBBDALBgNVHQ8EBAMCBkAwHwYDVR0jBBgwFoAU75a/fWU6VbTScPgM7Eri8ycGmlIwMwYDVR0fBCwwKjAooCagJIYiaHR0cDovL2NybC5sdXh0cnVzdC5sdS9MVEdRQ0EyLmNybDARBgNVHQ4ECgQIRwFCfpjvc7YwDQYJKoZIhvcNAQELBQADggEBAGs5hvi6PQMFQIt3xQI9ScwctWsEV6Dq3ife/bZ6UiTg5DPnm5fWTcfsbYff54PB9BcdjoTGrLCG6dD6Uyn6Qq2oD2Y9L6EuZnCtwzKWbzrVc7+aJ/n4bF/puxpMvjNnuYUlxQH6yfsAoNpS1Xk2euqF+cQeaZt+AqdfYnLdiRBlyxUXtQYg8ROhHTIcmJNZu+qTzDSOLhBv3vyrgPwPY/KKMMQPbYBDdh4C2ltqCo9Qe0LDJvlomkqOXDbV/y5FgI2OjlF1eX9jxFnAEjI5xkpIYnLHT2QAdmy7RPlBku4LwM8qEWpRQK6EoRomaeD48fwhS8Y7vk+KvCXzfsRs4SA= ++ ++ ++ ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl-mp.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUlistofthelists ++ ++ ++ ++ European Commission ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUlistofthelists ++ ++ ++ ++ EU ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ ++ 2016-01-13T11:00:00Z ++ ++ 2016-06-10T10:00:00Z ++ ++ ++ http://sr.riik.ee/tsl/estonian-tsl.xml ++ ++ ++ ++ ++ ++ ++ AS Sertifitseerimiskeskus ++ ++ ++ VATEE-100687640 ++ AS Sertifitseerimiskeskus ++ ESTEID ++ SK ++ ++ ++ ++ ++ Pärnu mnt 141 ++ Tallinn ++ 11314 ++ EE ++ ++ ++ ++ mailto:info@sk.ee ++ http://www.sk.ee/en ++ ++ ++ ++ http://www.sk.ee/en/repository/CPS ++ http://sr.riik.ee/en/registry/legal-framework.html ++ http://www.sk.ee/repositoorium/CPS ++ http://sr.riik.ee/et/register/oigusaktid.html ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ ESTEID-SK: Qualified certificates for Estonian ID-card ++ ++ ++ ++ MIIFAjCCA+qgAwIBAgIEPERcgjANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTAyMDExNTE2NDQ1MFoXDTEyMDExMzE2NDQ1MFowfDEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEPMA0GA1UECxMGRVNURUlEMQowCAYDVQQEEwExMRIwEAYDVQQDEwlFU1RFSUQtU0swggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCLeZO5NVo3zbwA8eFVCrrbeZQKvPDB7LUDPvzCqw7U2sC+IwEOdjjpJRF4lxFs+f8yC1bP+rqtWzrKhhJ2owfSAlIZMbly/OFjfLqOcyyi7qdfA/66u+69u/DY9tW5fqW93D73v5WNcNoIemCTydh9IFkQvMihWKH7LblBzCHa4W6qUcBZ7QsBgYpQS9n9fGJt5D2wCDeq0pF1Zy72G3CQFrpuR/aPG28tv9r+C7oqncapbiJ7xIOa77Fm3o07M/9aarq/m1oHEp9CxYiH9nmD3kyMe8yxw5v02MTMmAcxOm83z5O4oXSDTALG5gDfZNPjJaNPno7J8FuGrI3vV8z3AgMBAAGjggGpMIIBpTAMBgNVHRMEBTADAQH/MA4GA1UdDwEB/wQEAwIB5jCCARYGA1UdIASCAQ0wggEJMIIBBQYKKwYBBAHOHwEBATCB9jCB0AYIKwYBBQUHAgIwgcMegcAAUwBlAGUAIABzAGUAcgB0AGkAZgBpAGsAYQBhAHQAIABvAG4AIAB2AOQAbABqAGEAcwB0AGEAdAB1AGQAIABBAFMALQBpAHMAIABTAGUAcgB0AGkAZgBpAHQAcwBlAGUAcgBpAG0AaQBzAGsAZQBzAGsAdQBzACAAYQBsAGEAbQAtAFMASwAgAHMAZQByAHQAaQBmAGkAawBhAGEAdABpAGQAZQAgAGsAaQBuAG4AaQB0AGEAbQBpAHMAZQBrAHMwIQYIKwYBBQUHAgEWFWh0dHA6Ly93d3cuc2suZWUvY3BzLzArBgNVHR8EJDAiMCCgHqAchhpodHRwOi8vd3d3LnNrLmVlL2p1dXIvY3JsLzAfBgNVHSMEGDAWgBQEqnpHo+SJrxrPCkCnGD9v7+l9vjAdBgNVHQ4EFgQUeBe1BfmzWM1ZjN5nXkQGTHWGaV0wDQYJKoZIhvcNAQEFBQADggEBAFIsMHaq4Ffkrxmzw38rHYh5Ia5JGxjtWfPpag9pBtQNZHzY8j97xfPI15haE9Ah3u1WC+bsU2SndVSUGaZ0gKafMxDOy2DUw3B84ymbNRiAFSWty+aKrMCjtdlPktbSQmxNSJAX9vVtM4Y2ory+dtAQ7g11GKHJ+l8BDUpOJA+l8hvS2l4K5whWDHCSqlplMiHPIKgBVArFRNzAq6dquMY+kS3e2PL+PM4GdDW5lRHR/6KUy0BHP2gX/BO4mYQ3BH2BHImUclNras0HISnV/pt6hIkgd1PsFt3rtEolAWP4DWBmc4zAYQJ5t0cEwFM329zCXSGIQIm3a1cMugF5Q/k= ++ ++ ++ CN=ESTEID-SK, SURNAME=1, OU=ESTEID, O=AS Sertifitseerimiskeskus, C=EE, EMAILADDRESS=pki@sk.ee ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2002-01-15T17:44:50Z ++ ++ https://sk.ee/en/repository/CP/ ++ https://sk.ee/repositoorium/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ ESTEID-SK 2007: Qualified certificates for Estonian ID-card, the residence permit card, the digital identity card, the digital identity card in form of the Mobile-ID ++ ++ ++ ++ MIID0zCCArugAwIBAgIERZugDTANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTA3MDEwMzEyMjIzN1oXDTE2MDgyNjE0MjMwMVowWzELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxDzANBgNVBAsTBkVTVEVJRDEXMBUGA1UEAxMORVNURUlELVNLIDIwMDcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDtWp2jLCsA7K9AxoPDOL0geM1GoR0Q6wSUICCJYyFkUMboEMxpSzFB6tlb0ySlHEU6Fs+tjA4QrSqwaw0uNk4BXv1lkoOr6DUc+20+AQd5jB6A0atrltZ1XG5IvDEep3DJPykkk2MPxUz7dZx7XUEr/kdUWI9cDIkFWic7y9oTBY9JaV6lxm08kweZ/qTw5PU8/bTvZCE0ygvBXU4TDS2FpUJ/+jTzM2ocWa3QjFQv2Sir6LBvgNY3du/m+WLABq0dgN18R4nhFtmaVepqAeUuEi8eRBl6yLTSmMwYCY46LsK5CdjTCZSZv934FtNuyY6Ph9nCXJAgNAY+GfNJfdMXAgMBAAGjgZwwgZkwEgYDVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAf4wMwYDVR0fBCwwKjAooCagJIYiaHR0cDovL3d3dy5zay5lZS9jcmxzL2p1dXIvY3JsLmNybDAfBgNVHSMEGDAWgBQEqnpHo+SJrxrPCkCnGD9v7+l9vjAdBgNVHQ4EFgQUSAbevoyHV5WAeGP6nCMrK6A6GHUwDQYJKoZIhvcNAQEFBQADggEBACO6SJrjN5WZuiLSMy/tSmT/w3dd/KPErSAdUIJYkC7hOIauW7jZ3VNgNUMHSIkUoP8AviEMjGA4lkT61YScpJAdmgl8Y80HFdZV5CsThhddoIdZ3cZjSI4NZmTVkSduTjoySALxKL3ZEIPrepQDvNEeV1WSpI5+u/vMekUWJSPc8BK9O2av1e9ResKyPJidqrIksHFjNS+Yt8Ouw7F10MHaPPzMiwoa0DYTVsIKJncPTQmvdJG8M0DDToiiNPQuUy5d1CA75Wtjs+yILGZXpOfbdoQhE7G4pbZaF1s69jKp+zc0ZT4g2OoKfI2TiIX9qeGJMxkOENcd1DDqYVfePmo= ++ ++ ++ CN=ESTEID-SK 2007, OU=ESTEID, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2007-01-03T13:22:37Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ ESTEID-SK 2011: Qualified certificates for Estonian ID-card, the residence permit card, the digital identity card, the digital identity card in form of the Mobile-ID ++ ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=ESTEID-SK 2011, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ MIIFBTCCA+2gAwIBAgIQKVKTqv2MxtRNgzCjwmRRDTANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMB4XDTExMDMxODEwMTQ1OVoXDTI0MDMxODEwMTQ1OVowZDELMAkGA1UEBhMCRUUxIjAgBgNVBAoMGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxFzAVBgNVBAMMDkVTVEVJRC1TSyAyMDExMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCz6XxsZh6r/aXcNe3kSpNMOqmQoAXUpzzcr4ZSaGZh/7JHIiplvNi6tbW/lK7sAiRsb65KzMWROEauld66ggbDPga6kU97C+AXGu7+DROXstjUOv6VlrHZVAnLmIOkycpWaxjM+EfQPZuDxEbkw96B3/fG69Zbp3s9y6WEhwU5Y9IiQl8YTkGnNUxidQbON1BGQm+HVEsgTf22J6r6G3FsE07rnMNskNC3DjuLSCUKF4kH0rVGVK9BdiCdFaZjHEykjwjIGzqnyxyRKe4YbJ6B9ABm95eSFgMBHtZEYU+q0VUIQGhAGAurOTXjWi1TssA42mnLGQZEI5GXMXtabp51AgMBAAGjggGgMIIBnDASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBBjCB9gYDVR0gBIHuMIHrMIHoBgsrBgEEAc4fZAEBATCB2DCBsgYIKwYBBQUHAgIwgaUegaIASwBhAHMAdQB0AGEAdABhAGsAcwBlACAAaQBzAGkAawB1AHQAdAD1AGUAbgBkAGEAdgBhAGwAZQAgAGQAbwBrAHUAbQBlAG4AZABpAGwAZQAgAGsAYQBuAHQAYQB2AGEAdABlACAAcwBlAHIAdABpAGYAaQBrAGEAYQB0AGkAZABlACAAdgDkAGwAagBhAHMAdABhAG0AaQBzAGUAawBzAC4wIQYIKwYBBQUHAgEWFWh0dHBzOi8vd3d3LnNrLmVlL0NQUzAdBgNVHQ4EFgQUe2ryVVBcuNl6CIdBrvqiKz1bV3YwHwYDVR0jBBgwFoAUEvJaPupWHL/NBqzx8SXJqUvUFJkwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL3d3dy5zay5lZS9yZXBvc2l0b3J5L2NybHMvZWVjY3JjYS5jcmwwDQYJKoZIhvcNAQEFBQADggEBAKC4IN3FC2gVDIH05TNMgFrQOCGSnXhzoJclRLoQ81BCOXTZI4qn7N74FHEnrAy6uNG7SS5qANqSaPIL8dp63jg/L4qn4iWaB5q5GGJOV07SnTHS7gUrqChGClnUeHxiZbL13PkP37Lnc+TKl1SKfgtn5FbH5cqrhvbA/VF3Yzlimu+L7EVohW9HKxZ//z8kDn6ieiPFfZdTOov/0eXVLlxqklybUuS6LYRRDiqQupgBKQBTwNbC8x0UHX00HokW+dCVcQvsUbv4xLhRq/MvyTthE+RdbkrV0JuzbfZvADfj75nA3+ZAzFYS5ZpMOjZ9p4rQVKpzQTklrF0m6mkdcEo= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2011-03-18T11:14:59Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ ESTEID-SK 2015: Qualified certificates for Estonian ID-card, the residence permit card, the digital identity card, the digital identity card in form of the Mobile-ID ++ ++ ++ ++ CN=ESTEID-SK 2015,2.5.4.97=#130e4e545245452d3130373437303133,O=AS Sertifitseerimiskeskus,C=EE ++ ++ ++ MIIGcDCCBVigAwIBAgIQRUgJC4ec7yFWcqzT3mwbWzANBgkqhkiG9w0BAQwFADB1MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMCAXDTE1MTIxNzEyMzg0M1oYDzIwMzAxMjE3MjM1OTU5WjBjMQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEXMBUGA1UEYQwOTlRSRUUtMTA3NDcwMTMxFzAVBgNVBAMMDkVTVEVJRC1TSyAyMDE1MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0oH61NDxbdW9k8nLA1qGaL4B7vydod2Ewp/STBZB3wEtIJCLdkpEsS8pXfFiRqwDVsgGGbu+Q99trlb5LI7yi7rIkRov5NftBdSNPSU5rAhYPQhvZZQgOwRaHa5Ey+BaLJHmLqYQS9hQvQsCYyws+xVvNFUpK0pGD64iycqdMuBl/nWq3fLuZppwBh0VFltm4nhr/1S0R9TRJpqFUGbGr4OK/DwebQ5PjhdS40gCUNwmC7fPQ4vIH+x+TCk2aG+u3MoAz0IrpVWqiwzG/vxreuPPAkgXeFCeYf6fXLsGz4WivsZFbph2pMjELu6sltlBXfAG3fGv43t91VXicyzR/eT5dsB+zFsW1sHV+1ONPr+qzgDxCH2cmuqoZNfIIq+buob3eA8ee+XpJKJQr+1qGrmhggjvAhc7m6cU4x/QfxwRYhIVNhJf+sKVThkQhbJ9XxuKk3c18wymwL1mpDD0PIGJqlssMeiuJ4IzagFbgESGNDUd4icm0hQT8CmQeUm1GbWeBYseqPhMQX97QFBLXJLVy2SCyoAz7Bq1qA43++EcibN+yBc1nQs2Zoq8ck9MK0bCxDMeUkQUz6VeQGp69ImOQrsw46qTz0mtdQrMSbnkXCuLan5dPm284J9HmaqiYi6j6KLcZ2NkUnDQFesBVlMEm+fHa2iR6lnAFYZ06UECAwEAAaOCAgowggIGMB8GA1UdIwQYMBaAFBLyWj7qVhy/zQas8fElyalL1BSZMB0GA1UdDgQWBBSzq4i8mdVipIUqCM20HXI7g3JHUTAOBgNVHQ8BAf8EBAMCAQYwdwYDVR0gBHAwbjAIBgYEAI96AQIwCQYHBACL7EABAjAwBgkrBgEEAc4fAQEwIzAhBggrBgEFBQcCARYVaHR0cHM6Ly93d3cuc2suZWUvQ1BTMAsGCSsGAQQBzh8BAjALBgkrBgEEAc4fAQMwCwYJKwYBBAHOHwEEMBIGA1UdEwEB/wQIMAYBAf8CAQAwQQYDVR0eBDowOKE2MASCAiIiMAqHCAAAAAAAAAAAMCKHIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMCcGA1UdJQQgMB4GCCsGAQUFBwMJBggrBgEFBQcDAgYIKwYBBQUHAwQwfAYIKwYBBQUHAQEEcDBuMCAGCCsGAQUFBzABhhRodHRwOi8vb2NzcC5zay5lZS9DQTBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5zay5lZS9jZXJ0cy9FRV9DZXJ0aWZpY2F0aW9uX0NlbnRyZV9Sb290X0NBLmRlci5jcnQwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL3d3dy5zay5lZS9yZXBvc2l0b3J5L2NybHMvZWVjY3JjYS5jcmwwDQYJKoZIhvcNAQEMBQADggEBAHRWDGI3P00r2sOnlvLHKk9eE7X93eT+4e5TeaQsOpE5zQRUTtshxN8Bnx2ToQ9rgi18q+MwXm2f0mrGakYYG0bix7ZgDQvCMD/kuRYmwLGdfsTXwh8KuL6uSHF+U/ZTss6qG7mxCHG9YvebkN5Yj/rYRvZ9/uJ9rieByxw4wo7b19p22PXkAkXP5y3+qK/Oet98lqwI97kJhiS2zxFYRk+dXbazmoVHnozYKmsZaSUvoYNNH19tpS7BLdsgi9KpbvQLb5ywIMq9ut3+b2Xvzq8yzmHMFtLIJ6Afu1jJpqD82BUAFcvi5vhnP8M7b974R18WCOpgNQvXDI+2/8ZINeU= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2015-12-17T12:38:00Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ EID-SK 2007: Qualified certificates for Mobile-ID ++ ++ ++ ++ MIID4jCCAsqgAwIBAgIERZ4nqjANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTA3MDEwNTEwMjU0NloXDTE2MDgyNjE0MjMwMVowajELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxITAfBgNVBAsTGFNlcnRpZml0c2VlcmltaXN0ZWVudXNlZDEUMBIGA1UEAxMLRUlELVNLIDIwMDcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDifhEdyvuhk/3TJEGMJ1tEZOskE81yMqPGGXaPHXACJ7fncn1D1uQFt+RG8/ckh7zDquHV1m4HQk7dchaP00rvgsvRlYC9GPcFt6TW8w3t+BkxY1RNbmONgH3qzikljk7m6Nb8UGtL9hOmZdw5k5t9Ht8fgHTnoBkFrxYgsv9d4CCkBTSprNUK+vy/NTak4iAYinWtK6tRHHb1fxRsLUXiDLSO42Kz+rehhslANX+9Y5/h0wlh3pcmxLB1JWAP0O9fV6N1LUQ3Ym7wMp/lBXuPvl52yJuSZDWUF7GkIp+vUifOSefF6CeGh8K9BXDvuOqg+5c/6gkfEQxpRgdu+q5FAgMBAAGjgZwwgZkwEgYDVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAf4wMwYDVR0fBCwwKjAooCagJIYiaHR0cDovL3d3dy5zay5lZS9jcmxzL2p1dXIvY3JsLmNybDAfBgNVHSMEGDAWgBQEqnpHo+SJrxrPCkCnGD9v7+l9vjAdBgNVHQ4EFgQUHAf0nL+kJWyztJ4iHx+USBtYeo0wDQYJKoZIhvcNAQEFBQADggEBABaiEXv415Oh7AgHODwKRyNFqPcSSOgpLCy1XJB3hl3fi21fslccWuBhfzqHQCiQi0fewh109IJiHq8n1PeKoHBCUVq6NFpxkVsUlUPBr0Qsya1O3SQjuOsBLzUWBvY25dtBuAkBMCo0V1Erf7iTeOzuL4LLbCoeOfeQT3HPmEfSqP5f8V10ST8erbiTVPJwzr66vXaT9YKxy8NyAQc2iaOHuYmGKxs8dgDQRkG6b2a/f5q21YEQKDhvz7VvM6tH+F+rohA2wAvVz4tcPtyw5WEYcavr1KHgz4eZVWsqh2OsHUK9qMas5m/44O1/hXrjpMy5IQsiB4ASXDuXvdOTVbU= ++ ++ ++ CN=EID-SK 2007, OU=Sertifitseerimisteenused, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2007-01-05T11:25:46Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ EID-SK 2011: Qualified certificates for Mobile-ID, organisation cards for natural persons ++ ++ ++ ++ MIIFADCCA+igAwIBAgIQQyvUTmJDa0ZNgy+/fS0vWjANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMB4XDTExMDMxODEwMTExMVoXDTI0MDMxODEwMTExMVowYTELMAkGA1UEBhMCRUUxIjAgBgNVBAoMGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxFDASBgNVBAMMC0VJRC1TSyAyMDExMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC2Q1zKMt7DytbntSLoYAAVkEwV+5djSr0vSIG/Zm9seKyx+2PY8sVzXRoUD1CMIYnstDhBSKMjn2/+HpA7pOipAIAMrk6uKnpSTTdFbQ+0fzJVPokBgsdsQ6R5TZFPB1nu5zgRRlQmWIFxOpDiNHTt0LObUhWLXzUb31vc1Wmao2IYcDx1TCs/1E9+camiCl2B5lXrPEU3wBq4waD54izS20DK05+6+hHRg+TqoIg5YSmwbjStEyd/8AQeokwVloyyH49bnpeluADcZJgxxE9ZUvVWHoxYfmg1IeRU72jHTcIjNf1cQN2+9/FtHQMnGzDBgmAPpghwWr3JtW0JWvMXAgMBAAGjggGeMIIBmjASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBBjCB9AYDVR0gBIHsMIHpMIHmBgsrBgEEAc4fZAEBATCB1jCBsAYIKwYBBQUHAgIwgaMegaAASwBhAHMAdQB0AGEAdABhAGsAcwBlACAAZgD8APwAcwBpAGwAaQBzAHQAZQBsAGUAIABpAHMAaQBrAHUAdABlAGwAZQAgAHMAZQByAHQAaQBmAGkAawBhAGEAdABpAGQAZQAgAHYA5ABsAGoAYQBzAHQAYQBtAGkAcwBlAGsAcwAgAGsAbwBtAG0AZQByAHQAcwBhAGwAdQBzAGUAbAAuMCEGCCsGAQUFBwIBFhVodHRwczovL3d3dy5zay5lZS9DUFMwHQYDVR0OBBYEFLEQlwL63YbGeEGkwzKI+/4f58AFMB8GA1UdIwQYMBaAFBLyWj7qVhy/zQas8fElyalL1BSZMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly93d3cuc2suZWUvcmVwb3NpdG9yeS9jcmxzL2VlY2NyY2EuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQAxau3ohdFkpvaiVUR7arNovQUZRCG9Ge3udqHYemovyU7N60Hgomc/ZG+uunScATTUhBcv9a5zkQxb1dQ1LYDRfNr9CqI0QvSEE4t9Sfu3fOhyLrlmb3s8xhhYLJBJ325uDvtO/qFeXLlcRXMF5nU8FE2IyaZP1CHYKVh5QNPPQiGZGSox5oOkCvmt4lUl4lZUwVie75us/WtrD6DJeREBTEDHORIfg8E9RA1y/7t2gT9vrU8tabeSZlD03qwXe0nJ9RscI/P0HT8vuo1PGzCfbH9xFqfoZ2jdJ0HzxrFM8VsL/AtCw0dmrxRHLlZzqSw0G7b0W40mwOQauO2gbMfn ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=EID-SK 2011, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2011-03-18T11:11:11Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ true ++ ++ This service issues qualified certificates for e-signing and e-authentication within the same process. The Relying Party shall make distinction by inspection of keyUsage field contents - e-signature certificates have nonRepudation bit set exclusively. Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) and that has either its nR or its dS bit set is to be considered as supported by an SSCD ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ KLASS3-SK: Qualified electronic seals ++ ++ ++ ++ MIIEBDCCAuygAwIBAgIEPNkU9TANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTAyMDUwODEyMDcxN1oXDTEyMDUwNTExMDcxN1owgY4xGDAWBgkqhkiG9w0BCQEWCXBraUBzay5lZTELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxITAfBgNVBAsTGFNlcnRpZml0c2VlcmltaXN0ZWVudXNlZDEKMAgGA1UEBRMBMTESMBAGA1UEAxMJS0xBU1MzLVNLMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvIIeK3GJxoPCXVwan+HjJwYGaH3nb/rTPEqg5v9e1c7dnTDBdD2Yteg+lUdHBZDHLj1Tz+J/W9Foc0dzEr96S8+6nMXoonK2x0854JNH2UVbS/+YOGUM6iWSxkHw525tvn5tFaIQoaeh46aQFp9Dngcnv4Gatd0/7NCkLggjFrKmnNTPINpLAG9VoCpVyIMvcVCyTNvSQ+n33ToPO5vtULNYOtCF9MDVND+uNRE2o0tWIG0l84owYPA47tJOLgCpAxLNFR5Ys0nB/ofBYcO+YiCri0yc6t7ZPs/vcfbR6czIwW0GMjyHmVPLB+/WHS3P1sk29DdgIC42RTMthJS6ZQIDAQABo4GZMIGWMA8GA1UdEwQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgHmMDMGA1UdHwQsMCowKKAmoCSGImh0dHA6Ly93d3cuc2suZWUvY3Jscy9qdXVyL2NybC5jcmwwHwYDVR0jBBgwFoAUBKp6R6Pkia8azwpApxg/b+/pfb4wHQYDVR0OBBYEFOU/DJ1xPW+8Gb+a9G6/Cf5A652WMA0GCSqGSIb3DQEBBQUAA4IBAQASvWB+YrgN23EMLW7C5/XUwQLNN1RMDhr6UzOo5XHZ3pxUXq2Erk5ggiS+UJIxkQaSg4OHRru8KTchoJDvS2neeYHOz05zJcAIwoy2GGkHq1iVN+QZaprDaDNYR5GGKgJb3FZrMtyX4dNwnrZzMFzd6t5YibCW+BDPAmqGJvNHzJ5YYdA7I3WT9Baan1ncKd4FtUVb54fppd19NkbCKKSUd7qRYDduNYqVs1C/C0qqLq4TrxoxoxSo+WNLiD01896sIRiPIy8qDOAXJU67382J5XXETe9wZO6o7+NaG0CrpzVY1OaaD2O6Wv/vSpxE2ugqaf0WsP35+coFCWdM2uHZ ++ ++ ++ CN=KLASS3-SK, SERIALNUMBER=1, OU=Sertifitseerimisteenused, O=AS Sertifitseerimiskeskus, C=EE, EMAILADDRESS=pki@sk.ee ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2002-05-08T12:07:17Z ++ ++ https://sk.ee/repositoorium/CP/ ++ https://sk.ee/en/repository/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ false ++ ++ Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) is to be considered as issued to a Legal Person ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ Any certificate that is issued under the CA/QC Sdi certificate and that is issued as a QC (i.e. containing a QcCompliance statement) and having its non-repudation bit set exclusively, is to be considered as supported by an SSCD. They are issued for digital stamping according to Estonian Digital Signature Act ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/CA/QC ++ ++ KLASS3-SK 2010: Qualified electronic seals ++ ++ ++ ++ CN=KLASS3-SK 2010, OU=Sertifitseerimisteenused, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ MIID5TCCAs2gAwIBAgIES7MTKDANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTEwMDMzMTA5MTcyOFoXDTE2MDgyNjE0MjMwMVowbTELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxITAfBgNVBAsTGFNlcnRpZml0c2VlcmltaXN0ZWVudXNlZDEXMBUGA1UEAxMOS0xBU1MzLVNLIDIwMTAwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrlaYRX2v89k8Hd0ADaOfnUcIn7iM6aOXkAR+jp5827ZhDqDyNddF9ZUoBgPghGNIrkHbH7qwex39YnI0ka24lCjcwEMvQMPbyPnX/a4RyJ+wEZttmjBl++FfrZK54L+vD7Dyy4YYB0Og9ktB4qptsDBj+giiv/MGPeGeNs3TacJdNb7+3splTPtPKlDfrufvq4H6jNOv9S9bC+j2VVY9uCFXUro8AA3hoOEKJdSjlpYCa51N8KGLVJYRuc/K81xqi054Jz+Cy/HY/AcXkk2JkxlpJoEXmcuTkxjO/QE/Xbd+mRJHnq6+HurOiKcxKwZCPAa+d+dvRPkbyq9ohMXH9AgMBAAGjgZwwgZkwEgYDVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAcYwMwYDVR0fBCwwKjAooCagJIYiaHR0cDovL3d3dy5zay5lZS9jcmxzL2p1dXIvY3JsLmNybDAfBgNVHSMEGDAWgBQEqnpHo+SJrxrPCkCnGD9v7+l9vjAdBgNVHQ4EFgQUXXUUEYz0pY5Cj3uyQESj7tZ6O3IwDQYJKoZIhvcNAQEFBQADggEBADFuAGtSoO8PsWRw/QxFzc5EZtbq2KXC9yZ8YQPWBLY4Mh3OVLFJqWyKC+8JHy9D5tJTG49F5UHyDJPufD/XvC2rjRlkqvS/W7sy3MqGh7e+6bg+aD4mo+98Oalnqi12UD+ki+N8JKPXjHNJ31AvH6E/xDsCsvtzubylxI+FU8R0XODIUFbBqRtatRI1/zVaKRhD6LNGPt3rz/3IJKmuEv6b29mzL+p4oNULqpPr6aTmheZme8ZHuEIh3Zp5kdoX3i2D4hsmgClpevZifo196zeKRLk0Qs6nmRjoMxyk6jYIric3/VnV81oyhXSBY1GZnbM4qP1w2S5kSA2bb1pkwFo= ++ ++ ++ MIIErDCCA5SgAwIBAgIQAznVp1LayatNgy6bN8f9QjANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMB4XDTExMDMxODEwMDYxOFoXDTI0MDMxODEwMDYxOFowbTELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxITAfBgNVBAsTGFNlcnRpZml0c2VlcmltaXN0ZWVudXNlZDEXMBUGA1UEAxMOS0xBU1MzLVNLIDIwMTAwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrlaYRX2v89k8Hd0ADaOfnUcIn7iM6aOXkAR+jp5827ZhDqDyNddF9ZUoBgPghGNIrkHbH7qwex39YnI0ka24lCjcwEMvQMPbyPnX/a4RyJ+wEZttmjBl++FfrZK54L+vD7Dyy4YYB0Og9ktB4qptsDBj+giiv/MGPeGeNs3TacJdNb7+3splTPtPKlDfrufvq4H6jNOv9S9bC+j2VVY9uCFXUro8AA3hoOEKJdSjlpYCa51N8KGLVJYRuc/K81xqi054Jz+Cy/HY/AcXkk2JkxlpJoEXmcuTkxjO/QE/Xbd+mRJHnq6+HurOiKcxKwZCPAa+d+dvRPkbyq9ohMXH9AgMBAAGjggE+MIIBOjASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBxjCBlAYDVR0gBIGMMIGJMIGGBgsrBgEEAc4fZAEBATB3MCEGCCsGAQUFBwIBFhVodHRwczovL3d3dy5zay5lZS9jcHMwUgYIKwYBBQUHAgIwRh5EAEEAcwB1AHQAdQBzAGUAIABzAGUAcgB0AGkAZgBpAGsAYQBhAHQALgAgAEMAbwByAHAAbwByAGEAdABlACAASQBEAC4wHQYDVR0OBBYEFF11FBGM9KWOQo97skBEo+7WejtyMB8GA1UdIwQYMBaAFBLyWj7qVhy/zQas8fElyalL1BSZMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly93d3cuc2suZWUvcmVwb3NpdG9yeS9jcmxzL2VlY2NyY2EuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQC3qNBgY2I9Wqm4LZYKAjCYkc2Nltm1RS9frMvQJ4aEE4Y4TtW2LPcQp2lenOf9aYdEB8G/E9CytZSPlFuvDdsdknj6fg1XCeu6ITR2wIkxJeAeLQvrFEfb1mcAa5tU9RNalZhYc7MFMFQTjQP+GBNxz+KIjNDVASFdv7TCe7GBjsW8Dfes9lQGHaWsBRkHCyuPGIHfH+cmMuhLtWqa4Qlg4f54kcsGO7s4buKtk6XqEj8Cj2ITdfk/aUs9QoxxkYWGwSUlCueTamzufXEJo9yz5Jp6IFdGjotmjb/EBUCf2sFfI83a4Cm1D3L3/KYb5g3cYlDEpPWNqbNuA1XosIqK ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2010-03-31T09:17:28Z ++ ++ https://sk.ee/en/repository/CP/ ++ https://sk.ee/repositoorium/CP/ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ ++ false ++ ++ Any certificate issued under the CA/QC Sdi certificate and is issued as a QC (i.e. containing a QcCompliance statement) is to be considered as issued to a Legal Person ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ Any certificate that is issued under the CA/QC Sdi certificate and that is issued as a QC (i.e. containing a QcCompliance statement) and having its non-repudation bit set exclusively, is to be considered as supported by an SSCD. They are issued for digital stamping according to Estonian Digital Signature Act ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ ++ All certificates issued under this CA/QC service that have nonRepudiation bit set exclusively are issued as qualified certificates ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, ESTEID-SK OCSP RESPONDER 2005 ++ ++ ++ ++ MIIDPDCCAiSgAwIBAgIEQi2iwTANBgkqhkiG9w0BAQUFADB8MRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMQ8wDQYDVQQLEwZFU1RFSUQxCjAIBgNVBAQTATExEjAQBgNVBAMTCUVTVEVJRC1TSzAeFw0wNTAzMDgxMzA0MDFaFw0xMjAxMTIxMzA0MDFaMG8xCzAJBgNVBAYTAkVFMQ8wDQYDVQQKEwZFU1RFSUQxDTALBgNVBAsTBE9DU1AxJjAkBgNVBAMTHUVTVEVJRC1TSyBPQ1NQIFJFU1BPTkRFUiAyMDA1MRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAI8mLeLkRHLxMNCB5Pz8R5DnvPdVxBS91PoHboLnbhjlp1ecByVosjwGpXCGu8tUPuv81Azgqq97AsSugM1J7Pu0gj4bg0Mf6O/9XyoT7RI7H0BuEn4KJQlFcw7tXizI5KUWFFZ4Qg8kfg0xwrDrLIjusBtRbeRARG3DhH8dgZBpAgMBAAGjVzBVMBMGA1UdJQQMMAoGCCsGAQUFBwMJMB8GA1UdIwQYMBaAFHgXtQX5s1jNWYzeZ15EBkx1hmldMB0GA1UdDgQWBBRM+GJhloJeOPpJDgvA0clxQXdnVTANBgkqhkiG9w0BAQUFAAOCAQEAfD8dP+swtSeigLxL3uUXV/tmQkjre7Ww39Uey71LdtxQ6zC7MDjcsLW13JaU0pRuu/p/eGe6h4/w46tSMsBx/U+D1WnHeCj1ED9SFWwfNQFVz9FkM5JEkPDm7lw5hHoxIghRHAC3NMbR3sCrVQA2YELf2WypslROoz8XlRT1LN4pwVehpBeWO7xbQPUtoaxKrSCGumtxtxA3KRJ7POHPTAH4cvipxaZhS1ZcXbKtxsesGW+7KLZirpTBT17ICXEA1CFXDWmJ8MHRhbeNWK3G1PERgTiGtBQV7Z00CzmJPHmb1yfcT27+WZ1W9tRQsjhGEWyMVkNnZooWHIjLpNucQA== ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=ESTEID-SK OCSP RESPONDER 2005, OU=OCSP, O=ESTEID, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2005-03-08T14:04:01Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, ESTEID-SK 2007 OCSP RESPONDER ++ ++ ++ ++ MIIDnDCCAoSgAwIBAgIERZ0acjANBgkqhkiG9w0BAQUFADBbMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEPMA0GA1UECxMGRVNURUlEMRcwFQYDVQQDEw5FU1RFSUQtU0sgMjAwNzAeFw0wNzAxMDQxNTE3MDZaFw0xMDAxMDgxNTE3MDZaMG8xCzAJBgNVBAYTAkVFMQ8wDQYDVQQKEwZFU1RFSUQxDTALBgNVBAsTBE9DU1AxJjAkBgNVBAMTHUVTVEVJRC1TSyAyMDA3IE9DU1AgUkVTUE9OREVSMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJmoB3SJCpPzcoHNqK1J0tRNQjgr5iuB27uE1VacIbITjD/Nc1AefKz5ydNPIaBNehm4yKxBYGxEeWOSJHVXyhJMg53EAUOw/45c46gvznXupHuJ6TEiGjh1pxaXTeLSnTqzNDZDAGQsOTgIbwGLa5U5ad8rXYu2YkJKsAfo6jT5AgMBAAGjgdcwgdQwEwYDVR0lBAwwCgYIKwYBBQUHAwkwEgYJKwYEBQUHMAEFBAUwAwQBMDCBiQYDVR0jBIGBMH+AFEgG3r6Mh1eVgHhj+pwjKyugOhh1oWGkXzBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLggRFm6ANMB0GA1UdDgQWBBRJ/snw1GDL3fUH9n9Cpn8yhXiC7DANBgkqhkiG9w0BAQUFAAOCAQEAYzGkZD/uaXlWPeye1z5IiI83nmAjiJyvoj/r3BB9ZFWMX+ZY4Fz6/V/fzD0xXoeDpWbBKxcuctPXzXYxEH17n0/3yGOz8jhdJNBUCwRmd+96oHsU9aWSf+D2tiq1jPw6HVCiUYOhC/OWjg/+JpFlWsBV4gTW8/2PSGig85XlEsWLK7i7tIe60nnw/rWnfbCckMRcbrAF1L/JIlnUYUdkGOGQ9KPVqwR/MyWrwFIcSy2QIbcIaWMuiUc1nt8bmIXKoFZxbLzXYC00zba9cY7lSC4WPuhBtrQJ9JWb4OeoXd5j6O45UaH6XbarfrhER1GHL06cTyksT18p2L2GrMuEJg== ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=ESTEID-SK 2007 OCSP RESPONDER, OU=OCSP, O=ESTEID, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2007-01-04T16:17:06Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, ESTEID-SK 2007 OCSP RESPONDER 2010 ++ ++ ++ ++ MIIEkjCCA3qgAwIBAgIESxUPmTANBgkqhkiG9w0BAQUFADBbMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEPMA0GA1UECxMGRVNURUlEMRcwFQYDVQQDEw5FU1RFSUQtU0sgMjAwNzAeFw0wOTEyMDExMjQ1MDBaFw0xNjA4MjYxMzIzMDBaMIGHMQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECwwET0NTUDErMCkGA1UEAwwiRVNURUlELVNLIDIwMDcgT0NTUCBSRVNQT05ERVIgMjAxMDEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA48pyM/QfeiU1Kbu4AdcAUKXBiwbYbBl4gCltZHC5fZ77fKj2mqfPX2/XW1EqzbVvG0PYIkapkQzBr3R1S6Uaxh1DLC2Cc8BRnqmhXoE03o8En7N9xpN9dGGDBHp2aElBcVVZnAvF4jgbPDCNFAeo3cvpjIx18n0URiVOZFEdxDvF8PFo/exKXtjRM+jk3K6+9doHYvSXn9klFbT8Wge87Qdll3gQzZE3L8QMXF0z4xbBH1lyTmVLt5yZ0fxoE0jNlZFvn2w2EDnU4CKfId8w6Zjd5kdxomcwDzGuuLzdiJllPt05USJcY4FHn9YAVKWmofYY/o6xOUzU8fAz6yA1tQIDAQABo4IBLzCCASswEwYDVR0lBAwwCgYIKwYBBQUHAwkwaQYDVR0gBGIwYDBeBgorBgEEAc4fBAECMFAwJQYIKwYBBQUHAgIwGRoXU0sgdGltZSBzdGFtcGluZyBwb2xpY3kwJwYIKwYBBQUHAgEWG2h0dHA6Ly93d3cuc2suZWUvYWphdGVtcGVsLzCBiQYDVR0jBIGBMH+AFEgG3r6Mh1eVgHhj+pwjKyugOhh1oWGkXzBdMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLggRFm6ANMB0GA1UdDgQWBBQ4AhAwumZ6EXROIl5wZQXedXpOFDANBgkqhkiG9w0BAQUFAAOCAQEAJ/LvPUevNRcBp+J78fZRofhk/ifKNLxCUoh8T3MjtU9u5R0KojRlye+1NU8MqH/zrKhr6TPxuXD0cRrFQ9Hy60II7IzzaegrQVNgq7UgQINvCuNxWZcGtEa3ba9M7tBpQeFxqp3CpBytGeVuXn65hqOBKdp/zYEiMUUkYNAT5A6SSPYLAOgARCI/ydBx+cw0l0fwYvw72FKZa2Mlt5DmXBccCtrQ4l/sb95xfANCNe5n5sBvBhY4F+sIWZUVJ8fTVh7iGaVPSayQfeAAei0m/4/ksiXBwfx6qhzyB3yqcnSk489oBrrCegua/t+3LizfHpNZvDphKMPuAZ4uheLfQA== ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=ESTEID-SK 2007 OCSP RESPONDER 2010, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2009-12-01T13:45:00Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, EID-SK 2007 OCSP RESPONDER ++ ++ ++ ++ MIIDOjCCAiKgAwIBAgIERh9YjTANBgkqhkiG9w0BAQUFADBqMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMRQwEgYDVQQDEwtFSUQtU0sgMjAwNzAeFw0wNzA0MTMxMDE2NDVaFw0xMDA0MTcwOTE2NDVaMH8xCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMQ0wCwYDVQQLEwRPQ1NQMSMwIQYDVQQDExpFSUQtU0sgMjAwNyBPQ1NQIFJFU1BPTkRFUjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD+Z0LZ6TjBzx4x+UshExea1nIMsS86xAN6u/amLV8XQE+vodEld8iqtRsrvFiQ74isYOys1JKqiq+1ryic6j2FnMDZueLiXZl51QWyuhWu+aT4BwEaA8rUxMgKJ94zWksrqSf9cjoaap+9DlDhEsrDa+/89CPl2rlZIB5lqeHLQQIDAQABo1cwVTATBgNVHSUEDDAKBggrBgEFBQcDCTAfBgNVHSMEGDAWgBQcB/Scv6QlbLO0niIfH5RIG1h6jTAdBgNVHQ4EFgQUMsMzikmZqG6CcdgnD5VAXfQeCrgwDQYJKoZIhvcNAQEFBQADggEBAH0eUFQ7LznD4R8XWj/6rsNhe0fme3Os7cyZGNkx1EWenkgdMHCV/gN3SyIfrjW7sEJM62sS1X+8Ke2J+6b5YH0TcSmSDqYICn6zVbsq5MLtHW5wmwKucBJ5xFgoC3NNCEp8wVrzuQmm6xCvFWQVQ6uNhjuxCQxcDKgLwpL7iEcBEMmTTKkvqEtqrvu/LZ/a2OHytkEoXGheN8KlEcIv7AJBPVL8OCv4UpgyUOrVnmIeX2F/KG3wmo4U3kVupuF9kaPrOeOGYG3ZzK2HNwfRNkZ/Ej7AuPazkumAHdsJBbpTdBYq8d8er8XZKai24Ra/e5eEmcMye+O8IpxAA4ExY+I= ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=EID-SK 2007 OCSP RESPONDER, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2007-04-13T10:16:45Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, EID-SK 2007 OCSP RESPONDER 2010 ++ ++ ++ ++ MIIEMTCCAxmgAwIBAgIESxUA8TANBgkqhkiG9w0BAQUFADBqMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMRQwEgYDVQQDEwtFSUQtU0sgMjAwNzAeFw0wOTEyMDExMTQxMzBaFw0xNjA4MjYxMzIzMDBaMIGEMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECxMET0NTUDEoMCYGA1UEAxMfRUlELVNLIDIwMDcgT0NTUCBSRVNQT05ERVIgMjAxMDEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAso91KG7EHsjAxMairaCKUHSOyXp5rzxRq5Y9LfDyplVbHfh34fbB7M5G+wnu5CZgJsfJ7DF3MjpA7nlAHd5alAynIUl/CNXejf+XnJ/vyF1eQvAoWvnjBPVIS0mbaABgF54ybAGE2E7UKeZVOAj7RoQVAMHQcYVjxZW5OWz3yJX9KdaDZPOzqlGtRYKUASHiwAFwExKcqfaHOj0qO8+KdSvEBaVlpe5kunEVEvn+kgNKBtzdH2XFMjVFa4im31KW+iq7mNQwUiZDSe9ho6T6UrWu7g8yTQowx3SYLTqVxR0YVgcYNCx7nn1AVGNxK3oeonrHHqcBp6qSAIYXeQNfiQIDAQABo4HDMIHAMBMGA1UdJQQMMAoGCCsGAQUFBwMJMGkGA1UdIARiMGAwXgYKKwYBBAHOHwQBAjBQMCUGCCsGAQUFBwICMBkaF1NLIHRpbWUgc3RhbXBpbmcgcG9saWN5MCcGCCsGAQUFBwIBFhtodHRwOi8vd3d3LnNrLmVlL2FqYXRlbXBlbC8wHwYDVR0jBBgwFoAUHAf0nL+kJWyztJ4iHx+USBtYeo0wHQYDVR0OBBYEFPBOCDPMR+kfp7Ozk5U68E68/AseMA0GCSqGSIb3DQEBBQUAA4IBAQCRaqmxZgJiJ+MLamb/P4vyS6azr6/tj8dZCK++V/3GnecRm7CiZpR47EnW0NyDzCecGyTWSkVlnZPnNvXRx700Nn0M4Inia5pNhSuVmWS3p5eV70vCbsfRD26+6CZhkHWnL/J2xpqeacULtgPPz9gBTyC2ybQr17dv7W5Qc+3UFywmE5N8ozQuEJroGz7P+yCbBEssWcmIUNDNdO0xs6aQZ1f+DV4FUB0lajuILYFz4xM+81akYFVqaGPCVwbQgFSWRKmamj8FxfWjA4DCrgkHVR1rA3tZyirfCBK9cfWpTCLr8zq9Ur0jTAeGrHRzHlUrB9mYZwyr0kNOyl9293xh ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=EID-SK 2007 OCSP RESPONDER 2010, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2009-12-01T12:41:30Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, KLASS3-SK OCSP RESPONDER 2009 ++ ++ ++ ++ MIIDzzCCAregAwIBAgIEScskSjANBgkqhkiG9w0BAQUFADCBjjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMQowCAYDVQQFEwExMRIwEAYDVQQDEwlLTEFTUzMtU0swHhcNMDkwMzI2MDY0NDI2WhcNMTIwNTA0MDU0NDI2WjCBgjELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxDTALBgNVBAsTBE9DU1AxJjAkBgNVBAMTHUtMQVNTMy1TSyBPQ1NQIFJFU1BPTkRFUiAyMDA5MRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKi6weNl7Wj7sL6JD4YUNt/JXQ79KL53x5m4QGRsijGJaV5YggE5rJyVZGlsX4FSd9JFIV597ypAUGDbLPf0nDdlSIGteP7zamyETI3GI6bKfkeUuIE707r7uC+8FFe9iHOOL20+pi7WFzwnyXT9yuWs0eCoKdjQvLpMiq0MBIm9AgMBAAGjgcIwgb8wEwYDVR0lBAwwCgYIKwYBBQUHAwkwaAYDVR0gBGEwXzBdBgorBgEEAc4fBAECME8wJQYIKwYBBQUHAgIwGRoXU0sgdGltZSBzdGFtcGluZyBwb2xpY3kwJgYIKwYBBQUHAgEWGmh0dHA6Ly93d3cuc2suZWUvYWphdGVtcGVsMB8GA1UdIwQYMBaAFOU/DJ1xPW+8Gb+a9G6/Cf5A652WMB0GA1UdDgQWBBT59PTkSIzYXNBxQQnAhqH3BtED0TANBgkqhkiG9w0BAQUFAAOCAQEAhyl3H6fo1bz3mD0JcD4eY1slcwec92Qgkn6i9TsO5TlDQCJxiC/80zlh+H5dgIMcNQ6gNbr1cWsUw7xAanv2hGlg20IWq7uCyy5LDghFpO2BWDzTJjmiVTXzyVEvqST0W6efDiwi1tA8H7b+aAzc9ItWm7pYlucGvneKJq07t/UvU9ONSDUfVLPNMr8slwCMOexVDZ+eiBlvrLL3N7NouPs7UpFh/+m5JsERmeLbbrNYimHUUn2PJ/trJ3kBEVFToO+nFdBElfzC3bjSlbPXFxSOL+AqSgvRIaB4CEWUxa33wzoZNaVpCh5AupxQOGdr4u7ajw5hkV8Y9VZ7OFej6A== ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=KLASS3-SK OCSP RESPONDER 2009, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2009-03-26T07:44:26Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, KLASS3-SK 2010 OCSP RESPONDER ++ ++ ++ ++ MIIELzCCAxegAwIBAgICAMswDQYJKoZIhvcNAQEFBQAwbTELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxITAfBgNVBAsTGFNlcnRpZml0c2VlcmltaXN0ZWVudXNlZDEXMBUGA1UEAxMOS0xBU1MzLVNLIDIwMTAwHhcNMTAwNDA4MDgwMTMxWhcNMTYwODI1MjIwMDAwWjCBgjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECxMET0NTUDEmMCQGA1UEAxMdS0xBU1MzLVNLIDIwMTAgT0NTUCBSRVNQT05ERVIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDhWwGpngF0sdGCgOgiyT12A/Vdm9sMPr/cUwZhU7DA5C8rU1yJhbrh28fMpv0eas6/+IC1oDxI24zjfWIKfHwpBmhUTFsmvmKRIu4a1F6VwNwYEdoAZrQDpzZSve6H6R/+0Uy0BAolebdhPUK22pKd8V1CBY3de886Ray8uUJu09MAU8j+xsoUNOzyxiWdAVp1YTXRhhUt+EQVYJ22RBZ6+b9fPQvgb9aWgE/WwqUh7OrgTnrGZVzgO46prfE7zkALG0FYZCzQTCMH8aIqqte0E3HwSVlKh9qwbRPB9WTDCtCqajh4qgGRTXvWT4vATlHvx8GpJ3roZkp5AlQno3hTAgMBAAGjgcIwgb8waAYDVR0gBGEwXzBdBgorBgEEAc4fBAECME8wJQYIKwYBBQUHAgIwGRoXU0sgdGltZSBzdGFtcGluZyBwb2xpY3kwJgYIKwYBBQUHAgEWGmh0dHA6Ly93d3cuc2suZWUvYWphdGVtcGVsMBMGA1UdJQQMMAoGCCsGAQUFBwMJMB8GA1UdIwQYMBaAFF11FBGM9KWOQo97skBEo+7WejtyMB0GA1UdDgQWBBQ3MJkXG2Go/6j4bem465aue3P5qjANBgkqhkiG9w0BAQUFAAOCAQEAKhoVTII1ECecFkyt9Ogr0XW3WEFprrqTDE4IycMlx+LNjWk30aknMldEtzIC5nCDX27NCWkpbN1o/3ddBv0cKMa05ZK8sHQxU6A5Oev8DCp72/LFEChq5IDqgqW2BiHhyfPfr93JIuV03b/Wgq3fpRyBd21VE9254W4A90xeNxDvdpqxlrD2Lonzm/V/oomzEHsp4kKxXkPmRU4vGtTnxxAnxYp9OuLkvpUCLNoAWMbYqb4cbYzaZ9tQIkBy3nJ352Rs5obYDb3R/ZVWuYLLSocWL7b2QwlDP7LA8VNDqmQvioHt8GcyKXQ5/eWMvj2ePt58waVhwfSdd4nANKtq1g== ++ ++ ++ CN=KLASS3-SK 2010 OCSP RESPONDER, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE, EMAILADDRESS=pki@sk.ee ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2010-04-08T08:01:31Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, SK OCSP RESPONDER 2011 ++ ++ ++ ++ MIIEvDCCA6SgAwIBAgIQcpyVmdruRVxNgzI3N/NZQTANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMB4XDTExMDMxODEwMjE0M1oXDTI0MDMxODEwMjE0M1owgZ0xCzAJBgNVBAYTAkVFMQ4wDAYDVQQIEwVIYXJqdTEQMA4GA1UEBxMHVGFsbGlubjEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECxMET0NTUDEfMB0GA1UEAxMWU0sgT0NTUCBSRVNQT05ERVIgMjAxMTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAihvGyhMVrgReHluKln1za6gvCE/mlSREmWjJFpL9llvuEUZoPFIypYA8g5u1VfgkeW5gDq25jAOq4FyXeDGIa+pJn2h0o2Wc2aeppVG/emfGm/jA8jjeyMrwH8fAJrqVQ7c9X2xSwJEch/P2d8CfMZt5YF6gqLtPvG1b+n6otBZA5wjIFfJ/inJBMUvqHSz3+PLfxO2/T3Wyk/c8M9HIMqTelqyiMGRgWehiU1OsL9armv3dQrHs1wm6vHaxfpfWB9YAFpeo9aYqhPCxVt/zo2NQB6vxyZS0hsOrXL7SxRToOJaqsnvlbf0erPPFtRHUvbojYYgl+fzlz0Jt6QJoNwIDAQABo4IBHTCCARkwEwYDVR0lBAwwCgYIKwYBBQUHAwkwHQYDVR0OBBYEFKWhSGFt537NmJ50nCm7vYrecgxZMIGCBgNVHSAEezB5MHcGCisGAQQBzh8EAQIwaTA+BggrBgEFBQcCAjAyHjAAUwBLACAAdABpAG0AZQAgAHMAdABhAG0AcABpAG4AZwAgAHAAbwBsAGkAYwB5AC4wJwYIKwYBBQUHAgEWG2h0dHBzOi8vd3d3LnNrLmVlL2FqYXRlbXBlbDAfBgNVHSMEGDAWgBQS8lo+6lYcv80GrPHxJcmpS9QUmTA9BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vd3d3LnNrLmVlL3JlcG9zaXRvcnkvY3Jscy9lZWNjcmNhLmNybDANBgkqhkiG9w0BAQUFAAOCAQEAw2sKwvTHtYGtD8Jw9mNUuj/mWiBSBEBeY2LhW8V6tjBPAPp3s6iWOh0FbVR2LUyrqRwgT3fyWiGsiDm/6cIqM+IblLp/8ztfRQjquhW6XCD9SK02OQ9ZSdBwcmoAApZLGXQC34wdgmV/hLTTNxONnDACBKz9U+Dy9a4ZT4tpNkbH8jq/BMne8FzbvRt1bjpXBP7gjLX+zdx8/hp0Wq4tD+f9NVX0+vm9ahEKuzx4QzPnSB7hhWM9OnLZT7noRQa+KWk5c+e5VoR5R2t7MjVl8Cd+2llxiSxqMSbU5/23BzAKgN+NQdrBZAzpZ7lfaAuLFaICP+bAm6uW2JUrM6abOw== ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=SK OCSP RESPONDER 2011, OU=OCSP, O=AS Sertifitseerimiskeskus, L=Tallinn, ST=Harju, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2011-03-18T11:21:43Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, SK Proxy OCSP Responder 2009 ++ ++ ++ ++ MIIEUjCCAzqgAwIBAgIESg1N9TANBgkqhkiG9w0BAQUFADCBjjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMQowCAYDVQQFEwExMRIwEAYDVQQDEwlLTEFTUzMtU0swHhcNMDkwNTE1MTExMTQ5WhcNMTIwNTA1MTEwNzE3WjCBgTELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxDTALBgNVBAsTBE9DU1AxJTAjBgNVBAMTHFNLIFByb3h5IE9DU1AgUmVzcG9uZGVyIDIwMDkxGDAWBgkqhkiG9w0BCQEWCXBraUBzay5lZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6rr1AZFPunWKMJAse70wx9Utc57qgbrJdk8iiOrcUN2FApNal2wFnRIw9rsF8u9KPu3g47ZSuKKYkpdVVupTwt6gK+brQczfQShO3xOCj7cubcl5+6jDPXSh47zma10hh4tJ5VECOiCDBhIRfA/UJfMYj6BYgEhFuRQxEBgAF5yyEJX1X8Sco/GQcha4Er5SyEhHvXu/vvg0OVfLRqH/7gGBBRLPMOsDImmXf+C0UYKs7ywFBf+M0VnWH9u0p7E8XzA8s3m2ivTdU/JYIU5Zy7NFeV9NJgZw3iaLCO1dbV2gBIWpgGvqlwQ3coKHMs3tMBT25+WWmKVMsHFi254ysCAwEAAaOBwjCBvzATBgNVHSUEDDAKBggrBgEFBQcDCTBoBgNVHSAEYTBfMF0GCisGAQQBzh8EAQIwTzAlBggrBgEFBQcCAjAZGhdTSyB0aW1lIHN0YW1waW5nIHBvbGljeTAmBggrBgEFBQcCARYaaHR0cDovL3d3dy5zay5lZS9hamF0ZW1wZWwwHwYDVR0jBBgwFoAU5T8MnXE9b7wZv5r0br8J/kDrnZYwHQYDVR0OBBYEFCRXW4FmpJ/GGw3/AXu5czpgogbJMA0GCSqGSIb3DQEBBQUAA4IBAQB9U7sG/M/w7eXBQh5tDOZ7XLCRmhrmGk9+1RdAP54SmMzc1nnglmfgl13ncaizPleu0p8541a51XCYqQMJbry47YkEnq48ImiAjEpkbaCZsZhX06uUpA9DlstEW/wBZzSCUoGsklbBolwTWAP97B7trizPe102hNvD5IMaXrMqaH9hQcoYmKyJHBQnxW2bXxYjeXvIDcAQvevLP8IIOLqdib029GFcM7U889FaBcO4cPxx4kITXC2hAvdiZwGuDVAz15Byl8RAfNWrlmv+IBRSQpAecnLYozJYyRNcFPrYLd9aXbej6p6sRCHgC452czoM0VbMmisrK8pm6yZ0J1r+ ++ ++ ++ EMAILADDRESS=pki@sk.ee, CN=SK Proxy OCSP Responder 2009, OU=OCSP, O=AS Sertifitseerimiskeskus, C=EE ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2009-05-15T11:11:49Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, ESTEID-SK OCSP RESPONDER ++ ++ ++ ++ MIIDuDCCAqCgAwIBAgIEPJilyDANBgkqhkiG9w0BAQUFADB8MRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMQ8wDQYDVQQLEwZFU1RFSUQxCjAIBgNVBAQTATExEjAQBgNVBAMTCUVTVEVJRC1TSzAeFw0wMjAzMjAxNTA3NTJaFw0wNTAzMjQxNTA3NTJaMGoxCzAJBgNVBAYTAkVFMQ8wDQYDVQQKEwZFU1RFSUQxDTALBgNVBAsTBE9DU1AxITAfBgNVBAMTGEVTVEVJRC1TSyBPQ1NQIFJFU1BPTkRFUjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC10BeCObXZZWcDX298Wqfd16hpi9tuSbT4L+kowTj+aWz7PDsFpKQWqhxCdlicu67xCT0zAAjaK6x9cwasiIdre++IkscRi00w20G5nTPocxpwGTHqwHx4ED7cceK4t4pbj/zB8FluVNVii8ouG9ZEhH76j/Icx0X27Sq5AS0CwwIDAQABo4HXMIHUMBMGA1UdJQQMMAoGCCsGAQUFBwMJMBIGCSsGBAUFBzABBQQFMAMEATAwgYkGA1UdIwSBgTB/gBR4F7UF+bNYzVmM3mdeRAZMdYZpXaFhpF8wXTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEQMA4GA1UEAxMHSnV1ci1TS4IEPERcgjAdBgNVHQ4EFgQUzpYj2gwlDYK9ahyGyKa0AkK5ys0wDQYJKoZIhvcNAQEFBQADggEBADrq0tGkwsrddEqUbsOpXi75Xs4GVkOyseysNqZZCvLqCF7qTSMiC+fzRxQbXQDhuOT7QQvi3JAoA5zTIm2RvIO1fmrVnJ6CsObjxxvXtcSLI+bICG4uQYgEA+duDRgICpmtCCjtmxb+2/cSJLGioaKiwn0YwgeEowOgjDMh2o4otm6FjtyT1GZsZm56U7WkFa7tSwkHKw427iZUWVrED6W9AfATY14rNnAk8Jqz06w4rPnGE4kYjO+UqMLmFU2KImdrTp1O7h4YLCVlxH/e/He8r7FSgzXSG4EqlD/TMEdCLu7DSWR3SEgJPvKWCpNWzv2DRldHp+kQO3k+R/f2c80= ++ ++ ++ EMAILADDRESS=pki@sk.ee, C=EE, O=ESTEID, OU=OCSP, CN=ESTEID-SK OCSP RESPONDER ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2002-03-20T16:07:52Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP ++ ++ OCSP, KLASS3-SK OCSP RESPONDER (from 2003) ++ ++ ++ ++ MIIDXTCCAkWgAwIBAgIEPolzuzANBgkqhkiG9w0BAQUFADCBjjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMQowCAYDVQQFEwExMRIwEAYDVQQDEwlLTEFTUzMtU0swHhcNMDMwNDAxMTExMDUxWhcNMDYwNDA1MTAxMDUxWjB9MQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECxMET0NTUDEhMB8GA1UEAxMYS0xBU1MzLVNLIE9DU1AgUkVTUE9OREVSMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALXQF4I5tdllZwNfb3xap93XqGmL225JtPgv6SjBOP5pbPs8OwWkpBaqHEJ2WJy7rvEJPTMACNorrH1zBqyIh2t774iSxxGLTTDbQbmdM+hzGnAZMerAfHgQPtxx4ri3iluP/MHwWW5U1WKLyi4b1kSEfvqP8hzHRfbtKrkBLQLDAgMBAAGjVzBVMBMGA1UdJQQMMAoGCCsGAQUFBwMJMB8GA1UdIwQYMBaAFOU/DJ1xPW+8Gb+a9G6/Cf5A652WMB0GA1UdDgQWBBTOliPaDCUNgr1qHIbIprQCQrnKzTANBgkqhkiG9w0BAQUFAAOCAQEAd/8FCyPC9zXxcAZN67KCNU4+XNJ8e+LmG602lBe+lS7Pw4pOgMKebgULKh1fEBHQ2K7FSUWMZdPWkDHaKVRh646yVbFZbfEmKNq4LhRf13/hoUdrG5uRVmCsV03WSfgfUVfb1cZf8tDMIwCmsNXu22k9wykeHallpUmGUfbVZygqfKE2NVQpm2FULiKWBFKXqbMtW5R3xmDS3bjrAIAdUdYhxhfdCHCphsQf/FJlxb8UFOUa8SeRNr5eL7s8znLnrC5pKPpWGbUNSlrhLJZHIeXfwbOamae6UVvjto6bMqRe2sxCsMA0dGz+tMiglfmTVInxpEKBkyvF/on/2qwtVw== ++ ++ ++ EMAILADDRESS=pki@sk.ee, C=EE, O=AS Sertifitseerimiskeskus, OU=OCSP, CN=KLASS3-SK OCSP RESPONDER ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2003-04-01T11:10:51Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP/QC ++ ++ OCSP, KLASS3-SK OCSP RESPONDER (from 2006) ++ ++ ++ ++ MIIDXTCCAkWgAwIBAgIERCKLGDANBgkqhkiG9w0BAQUFADCBjjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMQowCAYDVQQFEwExMRIwEAYDVQQDEwlLTEFTUzMtU0swHhcNMDYwMzIzMTE0ODQwWhcNMDkwMzI3MTE0ODQwWjB9MQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czENMAsGA1UECxMET0NTUDEhMB8GA1UEAxMYS0xBU1MzLVNLIE9DU1AgUkVTUE9OREVSMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKKTI8Aex0Gva9eeeBkM3fGTiNOEvjj2McN3tOJBMAEvG/G7Npu0/2fAEKFFUv4NnPyH3MiC7s6R8PtPMhV5GBG6kWVztL/gQnlIjAbo1l654+jApIQjT3vdVZDIYyS6lKlYoAdG40CgLlVtRihargQ77azlfORkyRfhKZcSQe8tAgMBAAGjVzBVMBMGA1UdJQQMMAoGCCsGAQUFBwMJMB8GA1UdIwQYMBaAFOU/DJ1xPW+8Gb+a9G6/Cf5A652WMB0GA1UdDgQWBBQUQsudE6pYaIJSuWurylGItfy52DANBgkqhkiG9w0BAQUFAAOCAQEAV+Vu+qzrHe7HDjMHq9DdOQTz833QcMRY0huSgphMOgqNjqjPqTNpHPgNvE6HKGdQ0+VWr8IyRWcxnPMZNihmaCGMpFMpYuH0fx9nsjXDbjat8MfGuX2m1EADGOwjtjMuoYTEGEUe3MBeFkmPFDIYpeuS+I4Qv34tOsGvFOpsDkobSATq4EFw/5hI9WfWaEMYkmBXdeokoVjbNpt+gtdGKNBU42AlxLrcc+YzAE1hj5qH99/hl0X6r63pTjUb1ZMRjGQg7ELwmddms7wB5LKKi5kbfmag5hBtDKGs2s0xW1be4ylNOrT9lqUYuPn9lwcHNg1IS42mYVChV97Tlt/5vw== ++ ++ ++ EMAILADDRESS=pki@sk.ee, C=EE, O=AS Sertifitseerimiskeskus, OU=OCSP,CN=KLASS3-SK OCSP RESPONDER ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2006-03-23T12:48:40Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/Certstatus/OCSP ++ ++ OCSP, SK Proxy OCSP Responder 2008 ++ ++ ++ ++ MIIEgTCCA2mgAwIBAgIESQbcTzANBgkqhkiG9w0BAQUFADCBjjEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQswCQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECxMYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMQowCAYDVQQFEwExMRIwEAYDVQQDEwlLTEFTUzMtU0swHhcNMDgxMDI4MDkzMzAzWhcNMTExMTAyMDgzMzAzWjCBlTELMAkGA1UEBhMCRUUxIjAgBgNVBAoTGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxITAfBgNVBAsTGFNlcnRpZml0c2VlcmltaXN0ZWVudXNlZDElMCMGA1UEAxMcU0sgUHJveHkgT0NTUCBSZXNwb25kZXIgMjAwODEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnquvUBkU+6dYowkCx7vTDH1S1znuqBusl2TyKI6txQ3YUCk1qXbAWdEjD2uwXy70o+7eDjtlK4opiSl1VW6lPC3qAr5utBzN9BKE7fE4KPty5tyXn7qMM9dKHjvOZrXSGHi0nlUQI6IIMGEhF8D9Ql8xiPoFiASEW5FDEQGAAXnLIQlfVfxJyj8ZByFrgSvlLISEe9e7+++DQ5V8tGof/uAYEFEs8w6wMiaZd/4LRRgqzvLAUF/4zRWdYf27SnsTxfMDyzebaK9N1T8lghTlnLs0V5X00mBnDeJosI7V1tXaAEhamAa+qXBDdygocyze0wFPbn5ZaYpUywcWLbnjKwIDAQABo4HdMIHaMA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDCTBoBgNVHSAEYTBfMF0GCisGAQQBzh8EAQIwTzAlBggrBgEFBQcCAjAZGhdTSyB0aW1lIHN0YW1waW5nIHBvbGljeTAmBggrBgEFBQcCARYaaHR0cDovL3d3dy5zay5lZS9hamF0ZW1wZWwwHwYDVR0jBBgwFoAU5T8MnXE9b7wZv5r0br8J/kDrnZYwHQYDVR0OBBYEFCRXW4FmpJ/GGw3/AXu5czpgogbJMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQEFBQADggEBALnuqrbcM13+ISq6lzIbwaHr6Om2zAialZcAAU0i++lqs1lLTSA/cXoRuUIcjJ54Csh9pVPt3tJ76193H57ICkeKE+YhpHKFTdD3tPtgAU0prOlwiVq7Gh5MR+sMNX2TKaWTj0qd8Vgeui4MB5uWSUWYCNlKnmgoZbV+Zt0AyBHQVG9oRbqcEfK1iPUJw/sjkDUdghUHNUTcXpXfIPWCEvhQz+BX3TRNkR4NREvAwT/tHVtweJi+mr7RPrbtvdYBjdTppFwZVZDpGC34AM6KtL+mpVeGkK73h5V/pDvQ1rmLQn2L2GJe6n9ztghE/BB5zYJ1hWACaoJh5lEm+6xNPyU= ++ ++ ++ EMAILADDRESS=pki@sk.ee, C=EE, O=AS Sertifitseerimiskeskus, OU=Sertifitseerimisteenused, CN=SK Proxy OCSP Responder 2008 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2008-10-28T10:33:03Z ++ ++ http://ocsp.sk.ee ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ SK TIMESTAMPING AUTHORITY ++ ++ ++ ++ MIIEDTCCAvWgAwIBAgIQJK/s6xJo0AJUF/eG7W8BWTANBgkqhkiG9w0BAQsFADB1MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMB4XDTE0MDkxNjA4NDAzOFoXDTE5MDkxNjA4NDAzOFowYzELMAkGA1UEBhMCRUUxIjAgBgNVBAoMGUFTIFNlcnRpZml0c2VlcmltaXNrZXNrdXMxDDAKBgNVBAsMA1RTQTEiMCAGA1UEAwwZU0sgVElNRVNUQU1QSU5HIEFVVEhPUklUWTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJPa/dQKemSKCNSwlMUp9YKQY6zQOfs9vgUnbzTRHCRBRdsabZYknxTI4DqQ5+JPqw8MTkDvb6nfDZGd15t4oY4tHXXoCfRrbMjJ9+DV+M7bd+vrBI8vi7DBCM59/VAjxBAuZ9P7Tsg8o8BrVqqB9c0ezlSCtFg8X0x2ET3ZBtZ49UARh/XP07I7eRk/DtSLYauxJDPzXVEZmSJCIybclox93u8F5/o8GySbD5GYMhffOJgXmul/Vz7eR0d5SxCMvJIRrP7WfiJYaUjLYqL2wjFQe/nUltcGCn2KtqGCyH7vl+Xzefea6Xjc8ebTgan2FJ0UH0mHv98lWADKuTI2fXcCAwEAAaOBqjCBpzAOBgNVHQ8BAf8EBAMCBsAwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwgwHQYDVR0OBBYEFLGwvffmoGkWbCDlUftc9DBic1cnMB8GA1UdIwQYMBaAFBLyWj7qVhy/zQas8fElyalL1BSZMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly93d3cuc2suZWUvcmVwb3NpdG9yeS9jcmxzL2VlY2NyY2EuY3JsMA0GCSqGSIb3DQEBCwUAA4IBAQCopcU932wVPD6eed+sDBht4zt+kMPPFXv1pIX0RgbizaKvHWU4oHpRH8zcgo/gpotRLlLhZbHtu94pLFN6enpiyHNwevkmUyvrBWylONR1Yhwb4dLS8pBGGFR6eRdhGzoKAUF4B4dIoXOj4p26q1yYULF5ZkZHxhQFNi5uxak9tgCFlGtzXumjL5jBmtWeDTGE4YSa34pzDXjz8VAjPJ9sVuOmK2E0gyWxUTLXF9YevrWzRLzVFqw+qewBV2I4of/6miZOOT2wlA/meL7zr3hnfo7KSJQmMNUjZ6lh6RBIVvYI0t+A/fpTKiZfviz/Xn2e4PC6i57wmH5EgOOav0UK ++ ++ ++ C=EE, O=AS Sertifitseerimiskeskus, OU=TSA, CN=SK TIMESTAMPING AUTHORITY ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-09-16T08:40:38Z ++ ++ http://tsa.sk.ee ++ ++ ++ ++ ++ ++ ++ ++ ++ GuardTime AS ++ ++ ++ VATEE-101114112 ++ GuardTime AS ++ Guardtime ++ ++ ++ ++ ++ Tammsaare tee 60 ++ Tallinn ++ 11316 ++ EE ++ ++ ++ ++ mailto:info@guardtime.com ++ http://www.guardtime.com ++ ++ ++ ++ http://www.guardtime.com/policies/ ++ http://sr.riik.ee/en/registry/legal-framework.html ++ http://sr.riik.ee/et/register/oigusaktid.html ++ ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA0 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMDEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTExMDQyOTA5MTUxNVoXDTEyMDUyOTA5MTUxNVowJjENMAsGA1UEAxMEVFNBMDEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2WKqpwAceqQ1DNnsIvmj7AsSFgFR4g0U3ot8aLmIVT3cJ0rVN8PaQ4zuCIGf0xTM6mp1nQRqvtEScYkijZ9lSW44KDs4P71rC/8MYuX0NL/AwDlevmjCEkvHvqCQw7SAJ5gFkObc6FGjMcOzzVDTLc/0g9txSaFy6A2kTQYWY2a7DhqRDVBJphGhW8ir28DmH+AGRxj5I3vs6V8W/x1xy90yWunh8b/DNbS+29YKQ04phwPl0Ks59qvsgm1wPppix0xf/mp9HGC574q0zq2Ee7v4PAhu2FwY2t6Hj887KTWeVDUaRsVtwKqqDWJdmJBG/Pa96H/k9v1t5Lln8NlxHQIDAMm9MA0GCSqGSIb3DQEBCwUAA4IBAQBit30I5IzoldRcKYbWRLPrii5nNcmdLFfOVbjjfh/BcQV4G9cIaNtimuaw75Kq0eVuMaD1GBzn3gNSA7UFpCURt5xtEt/TNdO4ht+SLkVuFeW7AgRSlsJ/M1LiNrQei7qkPRTYrJwT4TGFbycy6oQVkHsFx0WSntG1TECDxNfutS4oKJQVp9pCwt99CVpt2M1sniIRFIsCgeYgwP6EqB0fwHpAZGZeX42VMmvLUFdkuijBgW8phGP5yxDWGWHkY/l+XDTZB2SlBbYcgDpQuS1k0lhGRZScIDSUr4g2ig1LBrbPlMakNXg/EWh74KkDeDDE8NSZFnh/cr2azvcXqt1G ++ ++ ++ O=GuardTime AS, CN=TSA0 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2011-04-29T12:15:15Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA1 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTExMDQyOTExMDMzOFoXDTEyMDUyOTExMDMzOFowJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3IeYUjkf9LPKTkMUrjeOofT57NjJd+5WUmrsTRDGJsW6CWN/rM405B4EbXdrxeKR5TXqvTc8uKB8vb7QdQTBYAEiy8y49jL0wApQ40B2wnAj7kpyeWHwvMLwqeVyAxFxcR+gytsUxdRXl601g7GvwlXpCqi8Alj4vKykx99SBgsrya0CnR63v+Rgwv+0tc3A24b5SiE395Dzh1R9N1pgXWYNOPqn98A1cYWGA0bwayHzpcqw+e4YcR6qQ1gykULsPNlnIGCkakiOshblezzB1WrSziT6lNAjNSev+M7Uo4j6bCB3sFRrv1NXJWM7AqLxn+zC1xVqihB+N9m0YmNkjQIDAPHnMA0GCSqGSIb3DQEBCwUAA4IBAQDUXshmA1Kx+fPyMrbQkOim5FrSoTuLw4Jaxhhcw5wQLTnI0H25IwciqGisi7ou4fYffaQISbLfbXEpGG2aaZ9DPGGeG//5NPvtLoxLYw3igmaCYi4QEQ+O8Q5bH/YgxJWIZha8qtDXYjBVq7giX+1Kkb4O87BcBm9yGWXnDbu/Cbjvv+lnbhLff3N9AGlhEVZW4y/WNgd4RjRANYuKHLsNdBBT2jnxTirGzHRbcQ3QwxJUcTO+z8f/WUJfq6b/VayReUnWrrmYG6btzU2iwUUusb+eZ2uvNNAjuIJS+ngc8g9FLlty5ZcTR+SadzU1H36mdCE1uGHVDl3L07SlHNja ++ ++ ++ O=GuardTime AS, CN=TSA1 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2011-04-29T14:03:38Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA1 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEwMDQwOTA5MzMzNFoXDTExMDUwOTA5MzMzNFowJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx77CtLsrKHF3SswUv5uBEilPF3hJS6J+W54dKIFj4fE0xkxl7J7yMlDMf3Gk2tunTpZolsOKDPCbsl/9SsV8dY7y+yCT7bRT467yfi2zqTrFybHjXduYGSlvagNpYVw260he6gVH27D/IdpQv2eWOOScGAWcBOZTr6pZxEuX7b24luq7sSci8hv4ARpJamWBTLQX6sdxfiPhjnyMIacEGOQuEQgUjPKxAxo45ApwSHWESD7lAm2PQNacSZJg8+pkxrOq0s/7FrsgfJzQxlDhyF9BA7u28ilsCL60WdVbxqshmQBp91yyuX3ZHAkJ8Wp0kT8EwVfVnLutFWxzXp/4gwIDAOHjMA0GCSqGSIb3DQEBCwUAA4IBAQAAYwPUlEPIzB88xdz9WTaC8/QNF/DbfYOYKOD5439rGPhWjJ0YBe6SliohQf3lK0tfBrnaCj+Nw8EwzJ7fUD6+9xJ4FLSSQPSsH3pxZliAdiLXKWXUNou6jiPTh9gSDBkkjHvWCMhHj7GNDdIEABbwfqsSlejzNsQZGUVu9Z7vP0+flTGvqC3qIJqschhpQWZqaD4YR73K06H+JEFn6vnGQ6UVsWM/KDaktvLStQui/OwIqK8kyEm2cpCQOdkVPJZ7vTcGDgonWvbwaxf78xPJUqHSNkuWIHveV6dFlS949v1eJYEwvcsv6DyVD6UI8A2efjnQmjA4KbXucmWzm0KY ++ ++ ++ O=GuardTime AS, CN=TSA1 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2010-04-09T12:33:34Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA2 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEwMDQxMjA3NTIyOVoXDTExMDUxMjA3NTIyOVowJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp430lCKJvdyzzdK95iX4IlSE3MyVDkiPcQWKdvM/O0K/skXMKxK9308G01VVPz4Q0Fe/zm9Hd/b0tF6lNehGpi+CUfS13eq32JZvfyI7UsGNZCiU0nnkuGUUfLCXqlEMVsqfxXu9RAhwaJE3Zw0GZLc4jSF9xJy1HRSSryUkgp09pOl/PP5l0IgBeUESM0U3ALPvS5xjgMpYJAOshZCIS+rsyO1Cp83ymVNyGAw2jUCgjHGHu/l+wbTw8b6C2pUnqcUacaemjctKhtf6hNs+5+uTPBW2q9oA8k2c0SQii7+V04H8L8rvSdLaeVuNDgjEjzqPIJV7oS62APrWlWOf3wIDAKlzMA0GCSqGSIb3DQEBCwUAA4IBAQCCHTCmS6YOLlnhSEMpOq6F6ZUPq7B4BIEVJPlZOkrPuGRnwXY3CP1CM01mM2FcNc7OMYwEVyJNt11Aj12kB2yoCGCqABdYij78P2n4MzQykakymH/IQhTiP6rZ1glB1stye5yboAvezm5Cor9IbdGSf9QEv7DPGYqqyEwDAqCIhIgyKWBDTixcKkRFlP7hvDWCzYaDaCzaxcxN0Cjv0KTMoTDzK97IZJ2+qrBcgP/9AEsZIfPOlvzObbrRpnmwowwgNvYT3p3il7irrIwHryQh8H1kU4AwxmHtuMDcVKvQQrxpCQuEITPlBlelY2MdXKRoCcu4q//X5lq9YYP1XIjH ++ ++ ++ O=GuardTime AS, CN=TSA2 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2010-04-12T10:52:29Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA1 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEyMDUwMzA4NDEwM1oXDTEzMDYwMzA4NDEwM1owJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0AjnC81sjs87Vv9e8XDGWcKaj7kJTxuaeWpC+WULglfyU2YSawqwb1PZbM9AT0Oi4Dz44tCG1o0Kcaeik+vWFe7AU3GSSC9K4Y3+jrhKZEOhySn1yI1DMdnl+Iv844R/IqS+XEKvP0c2LLnT0Bnmz6l8GIUh2c9MJWXIXfNyfgymldyT3ssw/RabL/IksTdqMsa9B7ar81vtmEG2rzsUjCl6I8U6N7Etv3hseALX/mcdWplpWn8uxAGUl8KqskF1itQ04BOU3P6Qk0WsLFBNCeQ2Rj+HcHPEdxtkT1eM0IbmOT71FuS7YZjC5fqza+CoiSPKBMJioU+28KG1qOFC1QIDAOwjMA0GCSqGSIb3DQEBCwUAA4IBAQBftgbUf5jzWS5EwcLmi7OgQ4ejPme6ZO5M+SX4OJh8cTViXOpqrF6JmIaFl7auqTKa4KNtgWmeGzjaqD3U9WamJ2aU3xmtf+t9rHWns9dBE+JRVdwNIjvOyEt+foSCENaFxtPRDqpaphx/fYC+jdCdNh+JHuKxqf1tW9ktBFNxG7qxmSeBa4eC+RosAXtt0gbmHBVMOQJOApGKIlQzruJ3c5YrCRzza/+D9jSkyp196VO+aYmt2epLMTK5CvJlgIjvF/vyuJuEXAnqd1Si6qUbfLxchWHgJ/dxUf7DxeqpPzJ8s+V0CD0fXYTIHa3p9Kz7/gLqpZMcuY8OH0nVnYOn ++ ++ ++ O=GuardTime AS, CN=TSA1 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-05-28T07:45:00Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA2 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEyMDUwMjEyMTM1M1oXDTEzMDYwMjEyMTM1M1owJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuWgbOYOThEhCRi61lnP3GSdD+V4sjuQCehCt9MJ+yyFvrEcJewvGhMaCBq7mUJul0yV5pCNoSH7gLDaO8XByJ4acmV8DxKAH1KlLSH/tashAjxQLMbReolA9c/qKiwO1oK12z5OCN7rA9C7PBO8gk/sCLFacOwgYtDCz7faY5l94AEaniIA62hT3PZ7Sd0IkcL5Gp9goJ2tZdQ+G58GBZawF+pfS2dzWSkKxWiV/lMzZahRdaXUF7vCGsXDsVHqS3AhL7ZblGCRVX0Thg+RCyRBqE12iPea8HWcVMxSJFHLhvSvKHTpj3iA6WVIOCJGUlhcz7h373WCKtgwGx7U+tQIDAMRFMA0GCSqGSIb3DQEBCwUAA4IBAQC4F/SnPubK6gaCyw5/7+sMTMILecuEGZ3W3ScAWLY4KP04pS7ViqlJxCvH3brl52dc9gUG0h602hRlEhdcXpk96tcd108er0mv666mGp97CT92vIL2E46mnz6QUG8uWyNfs+7K5SCgfkAflU7+lypM0NjOLXfDgCDRK2x3S7EAJh1mlqYSRHL9mst1sBLxjUMzi2xzOEGh5SaijIb0xelm2bp2J3JZrCvyjvGGA+95xRwHrGL9sMFdksrY6u66gG9zea8qurkSzRYBv0OGNUHwQWpw95QPZ47IITq9ipqC+J67FIEZheHTUtgPfvx1ch19IS8GiSM72M6rAeS8Kq19 ++ ++ ++ O=GuardTime AS, CN=TSA2 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-05-28T07:45:00Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA1 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQELBQAwJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEyMTAxOTE3MzE0M1oXDTEzMTAxOTE3MzE0M1owJjENMAsGA1UEAxMEVFNBMTEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+OA6jsb8QE/mLd3RPZFW40+l9RiGhpVWtaPSNgJAu1emrld4SFmLpOWM5BPsK6tVj2waLNucmEuRtG3r6H91E7EEgjsiBDxJaaREHytXMgpatMkt26X6Cg73Eb0pvD+5eBIh6VpksIWHtRrtq6ahde2wpb9CUmF8nb9IjfJqEsd3L9+EfsF4/EppRzOs4GDzKG+NGmBz95IEMGiIf0yh9Ot05b0Wj4xdOT7sJONbF0lC5qpQiPoXMKeLzsWWj6RfctjjhJZ9s2xEyLfwM89Yb4/vdwVVaa9Rk36ZkCvuoJeP1e+FKDXAJmNRGp2knEC1lQBZvXLG027bKmDdU0+WGwIDAKKPMA0GCSqGSIb3DQEBCwUAA4IBAQCR63M7Z45TV0MW2eA1bYO1vmRSryLbBK7fC4+2T8BqCXC8PYVxRtdMrQMdLUvXolibDY8bUDIC3GI4LLMDu1ivVcAcRJOCO4ii5KHxmK+mlmInif8v7YTZIlXAqPxbxJlYmpRNaEHFcDS7fciYzvohPzpbxRCKb4Nu9rfA0YqJv2s0vZmkZPTQ7W1vwHQw/+7KeRL3v/oY6/ANP0eKcNURwdhV3es2kya3RyEXH6sJuv3iUGOIPTAp5h8T7RV0xjlDxnz6BcRMSxxpFhyaUJHaA8ELKQXqHx1jjz0Ycri/AdIM21F3wc5Uq6855rm1STGythhxYFkrgx/dgLU7JeXc ++ ++ ++ O=GuardTime AS, CN=TSA1 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-10-19T16:31:00Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ TSA2 ++ ++ ++ ++ MIICwDCCAagCAQEwDQYJKoZIhvcNAQEFBQAwJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMB4XDTEzMDUxNTEyNDA1MVoXDTE0MDUxNTEyNDA1MVowJjENMAsGA1UEAxMEVFNBMjEVMBMGA1UEChMMR3VhcmRUaW1lIEFTMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmbkBqCyj5DTDvCRFqy9AubKiWtz1NczYGFG4Uu1YrtNpY7hOrutp2SxjBZGMwcXDXdzIceE28FCvuPjhTF1MsSmWA3wRqEFfdoKtwJ3hYM4N8NKB8GHgDKRYKw5nY++1anjt+KoxhpZsRbaAvPZSkbONr6trgSe9DUXE1WJ632LAvC0PGdd4LnUERxnernnhs5N/mQwv4BJmMPHcZ2lpiMfBCgJ2/v7r9UbodVRkGr/EHMzp9RdehneT3IQpMDV+7oL1niOyXi6KVdlbqaLzmL8QTpQuopfhaA6uKaAegWkkEaYOo50BK3xYKZjCUHwL+yH6Sw7ddgGNtBId7vtdpwIDALyRMA0GCSqGSIb3DQEBBQUAA4IBAQAjlFih75+4WvKgcTr7CHVgftiGLaSCa93uq57kmebap1raFqigOkCYpqg3Jx5DDhdGcx93VjdqTt6qC8IAvx2VJAywQXOisTtIrfiXK5hXUJMWlXzqT6q6Kv1q3Ac8603QySfStmVg5vehW504bg2UnjjL2oY0+X9e/D8nQRpeI8zVNAYYk2elAr3nNDrcR/kRtEfughvlK2F4fS5R4UrNO2P7xTaiNdQwRuq3CJZEkA2HjPRXE3kiJoL80p7aWU6DKOOHZr6VQjcOHJiK5T/ZUHeOT10tM3BCPHzmmHAs1ziMkFFfItOmAXooOXBsw8L3cOX5BiopaTnMzMw7Pwfo ++ ++ ++ O=GuardTime AS, CN=TSA2 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2013-05-15T11:40:51Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H1 ++ ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDExEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xMjExMjYxMjI1MDhaFw0xNDEyMjYxMjI1MDhaMCExCzAJBgNVBAMTAkgxMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6jdPpv5oA0BNHcFTVZpB8CEjGZvWix4KWgbAVbJiQaiLx2TgmRrimtAi7ogQ2qWPpJJbxgnKQUvpL/913tMH1blL2PXYk2fR6xU/jF3DoBvQBA7TrX39OlcTn+GO/noh9/hz3/a5ebyp452AyFow/g7IzvECf/kT8G+OcIj4aWK/M7qbmrj98eB/j6t5kuBF26llyLzExJr4iJOTSuCaR7BT3yWuLC3rAUtXJaG0XiQxkmTd6Ibt5GK8pSBtsQfKeJv9iTUS6I093rqZ8dSiP9/k2satrk9/hy464niGyXiKWfiEwWBeEe6okg7FwtZZ7ZHL42IATqLBRmbI9qvbXAgMBc7MwDQYJKoZIhvcNAQELBQADggEBAEbHvn6BZArTuTDE+opwN0NZ6FdtQ102tR1qWMcNGgKKICc1dvQpTCsUD5X4RL26pE0aNy9lB6HFa2vNlS4ZOz7LAbxKWn9DwSTHZVCBmDz7cThAop6YaVd+f2cYk6aP4FnIWr0dfSTTqxIWyFURip5TLC4vgu2FvJRuQU3LTBcpdbi5WwVSxxgS5VCzpEc5qUC7kZFGBV/aze6CAxUoE2nWrK3udj/8RUOSpUyaeF+f4oEAkR/xMKvd1xuWjl09rRyOD71h7WhfmNAJDHYZVRVthl6XBJbv+DMOkjpltfeFUHyvZm9eXEZnUh+KS8VpJ4O62VA+rNwV6e2QgaaVu7M= ++ ++ ++ O=Guardtime, CN=H1 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-11-26T12:25:08Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H2 ++ ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDIxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xMjExMjYxMjQwNDZaFw0xNDEyMjYxMjQwNDZaMCExCzAJBgNVBAMTAkgyMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGUFzXDI8KWQj8/UcZLf1BecHHG3+YYoA3FwfZfdNjlbRepRdwypQx8p0RNbvcZC5eP7TnOLz8tCA95jBclLXOOMEKLeIdbcEuERrVNNZ6MplCsLBfxf0rSZzPcgjUA8vnREZj+rLqYkUwt6P2qt3uwCT/Ymm6D25UG373TX/058+7+8YlftspEowUPZt1E23ZzpTrObervZSiqvy4V1+efOPQZq0B/h71hkmw0+/zuWJ9vjTUhS3sde86AqDf8s3q6G1FbVEH9ilnJ8XZipam95fZx+kRCeBQ/Yitw+lYeLcGFQKOJ0uZuqMo3HnFcJfNkd27uA1Ymi938SVOCypfAgMBbiswDQYJKoZIhvcNAQELBQADggEBAHR1TVGVIuBLeTtrflzXP4bnsczEudLu36D0dTKcwTvBeGB4YEnaBp69vKT2/boNbdeZ0Pm6ft7PQYRzQg5v8NVlqmYwq8pAxNhrywGOICOynoW7mnRbooDKVQ25Ct4vdJwdf/pcrJ0l9F1WX3MZ5rNgKTPW6sXrMReXojfFf/2YwAvdwPhATjtRvnXYhkkN0aeXvkgPiPMctEP0lEiZelwWm+DjVFHOy8l1d4+38rvh25tuChxxcl/p45/H7xpAndHO1qpKEu9DJy6q5eWBcNgvHVf7UTXSDtIuRCOcS6g0Q2yz72sdW1Z/m1W/67ToYjofQwvhc14CrhQkD05pRAA= ++ ++ ++ O=Guardtime, CN=H2 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-11-26T12:40:46Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H3 ++ ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDMxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xMjExMjYxMzAwMTZaFw0xNDEyMjYxMzAwMTZaMCExCzAJBgNVBAMTAkgzMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVkmSzH2Au23FOAGkCMTdCZUoHCcOHV7EPqVxFmwea01gS0nDfAjzFUcudvgYRtaw6r6r4ZPLC+pqBI0W7FjeVpRQAuKypYGhie2IEd2FAQLDB4gnJl68Z7K9B+Njc8rvwKbrqix+N3ReqFz9IENbwtGrXj90SMFBoCofkmUCe+fy5H/YYjhud7wnZUhYPw7DsYU+5eqAh9dNXNSD4gxOLDoZgID49G953fS2pkgdZKIWpZl+/hftiTDLD92NB0HYwoqEJZZGSM+RUKMxPeRiHz6goGcqoXp/WjeXyd5uiP4TQX8KsvAQQDTBrBs8DFbFlL7MOEzM+vvV2PdFdU0bRAgMBDskwDQYJKoZIhvcNAQELBQADggEBAL/Invma9hUUj7tcZAKKNlZm2bktd6jguW+eFUbf7m1zfSLw3sq85mwFkl8hSDlV/d4pasJJCd8KmGLki5T9BM/TAjvzf1g2orBGMArhZkYNnYkuJTHcxetLFqtyBxdMKGiObmhfTI1YNAckomnvsausJ8ejsKKFxFTcWQ1TOeL3v3N/sZ/c/pwVd80ZbTIo/k/dFwbRVkhuj3Q+DDi/8tlcGXSAppBVX+uFqDGudu3TZ8XQY7VX7ZSH/2rIO5SZm0CbgAOFYQitDLKLIXEBS6R4W4n559L+dXIaStAR3U8Jmx8WXWMSsa1FJVynyiVLUMMw07mVgQGUs2IK81ghXsY= ++ ++ ++ O=Guardtime, CN=H3 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-11-26T13:00:16Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H4 ++ ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDQxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xMjExMjYxMzA3NDdaFw0xNDEyMjYxMzA3NDdaMCExCzAJBgNVBAMTAkg0MRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNVtvh71sZgFYcsv6a/zRU3/iby6KWNztiEjzuLl2oaqsUEVHq4kpAAj6/Hl+UPpIEwPEckB6rpGRgeN/+K+4bWJTrxh/7S/k3sQiHozTAYIOf6TIC4xAK5rjkfRyJNWZMbKU5ShXGC+DMh5sn5ZLtxOLshP4bVjCDrKUb+bNJCxYE/UT4N3bSPj3j45CgYnwqANWu2MFYcuuwSI6M+BiLWRA9HNLwHF3nVibCCJtyo17gN4oa236h61/+hehqICa9xePBBRh9gao35dtFNOEUgEN+qjqXGkUBrcFst6SG0nGh67AGJcQeku3QKU8Z81qocY9NhUKeXordC1C/XPsfAgMBWGEwDQYJKoZIhvcNAQELBQADggEBAGAdaaN8Zy/BWVBH+hLT+LXFJLKmFxaqRKRiyPtuerCRHmKjlHw8JqlVjB1UDUy4BN1LL04k6iwcpZX/ahuvlG0cwrdfi2/ld++ngyMQ8ecFEvjvli5u9kqiWSFxwDtA7fU5rsTm+Qni5hklPA60VMQHkuylx5oHejoyvPoBEft/tQnQ3QL+re7Cs06in8hkBtWndYK9jyot7G99wWfR5TEYzYQkze1L0oTjmySW/+EkrsT66XmRWHQuYLgo5tL5D+oO6H2tfeiKQ5PO0+zDLwQJJYjvvITCVKudR7/sH1v6/B4nXuvch82gaAzlfHK3EP6TQ7CBC3cw+uZ7qkggdIY= ++ ++ ++ O=Guardtime, CN=H4 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-11-26T13:07:47Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H5 ++ ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDUxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xMjExMjYxMjUzMjJaFw0xNDEyMjYxMjUzMjJaMCExCzAJBgNVBAMTAkg1MRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzNmmpHjZG/rb8xYUBH5TgSkSE9tkVl+JgtkeokY0BLZvrJhM9TZ/XX3AbN5aagJWnMgxPDBCyTYcA7XzsW6lRlQK7gym+zbLi9bmLEcpQzEYdeQs4Bi39Hb4vtlHYOFQjdck5H0CCaiLoJVJxX4b5y1dczJjXN5n7pkBl/YXXuIt4h/41bdZKw25j/KxEGWU/CmlZdrrDPzYW85aYk++dbO+uKspRkkIQZV+impSUpbwjOoN0VjfrmbJ7s+iyvB94j6qvvSTl537uFY6TOK//W3O4OrtEd8ze3aiePC517yTM8IQaUOrNy/pojan7FkhvLcVi1duQILuAcDu7gaQjAgMBMMcwDQYJKoZIhvcNAQELBQADggEBADndrk/PCTqGVmbrtjFWmYIjLyFgbUihSoHHf2+kw66Mzi77LFkDc+CYSz5M1pIjsXQe+a+Kkrvpc9YKkvxnT81ttiSduRujCNw2ISrYfFVP91Hzxh6hl2mnRSF6LOLsNbZCaSJjkH4JPuFdnY7wUiozKFmt/6T/5qu4B7osH5o+sLuCJKcgk0fXgssx41JM+ZUWf5JhS/QUUaPiW18s4SOZmNmO5w1IYVVG70bUOXsoGsVmrBNuuQeikPPdE30OAf+4ODB82rudUZok/ZrSW69p+eiAbkLKqlVfd1Lx05xeLf/EBgIvlSXRUECHV2LDmTbwJq1wDjHh5NHN7Z8I22I= ++ ++ ++ O=Guardtime, CN=H5 ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2012-11-26T12:53:22Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H1 ++ ++ ++ ++ O=Guardtime,CN=H1 ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDExEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xNDEyMDkwODQ1NDNaFw0xNzAxMDkwODQ1NDNaMCExCzAJBgNVBAMTAkgxMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDLKt3SYJHx+Y0zQypj433j9k23BtR7VxLy+FDL54GkqmAiCmaknWz/nRy19FM+kDfciM92OySnneN+nOyykfoblJ0uL2CIhN5vYITV9QvHxNNsij0urOiWu5eXui6N6T+lZPOl938EmNeorJbgzG7FeDJid5W4kRBE9apiRBPp3YFehl0crycBgLY6kHlvvoH33AgwsW9Zbp2B7jWU92GdH1D3aBw5JwhEhSI01sqjcI7Odbh7PZaygsXpoVRyW1T5PzDDR1+qoWHoak/oN9J0NXMEAVyswpytQ0rckOIbnXhfA7va2WLQ8+GuIm7wKwquS2wtqgBPbyvO7rP4L/AfAgMB4EEwDQYJKoZIhvcNAQELBQADggEBAI52GHcEe75qB8Sps07G3TVA+XXh+PGFZYSMrH5bsn1uJvaDNDb1fl1dQCK+YibtoxzVM0pdyBVlHFWsex1wTpdmstsmZYP8Xaj9ezabN6nPSCz6pdzhFUKM2XG0kuny6JLAFuNjqsh13SxsATARL6yZv7L2PI5VclXHbcpRhNaqiTeTKxLfXqfTgSX1f1RGNJI/r4SoiTBT+PFJ2TcJfc5GTuRunaTeGVIe+QGIrv0fWXAlZylGTFszgq2e2hh/1i9KFlxD7gS1IPvSRrxHVWdTEjM9BHSjMd/y6L6jQ9Ti9qW+UYz2CRo8sOYgfB7axA1mVmv/W60TQr2pkCl7GDM= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-12-09T09:45:43Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H2 ++ ++ ++ ++ O=Guardtime,CN=H2 ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDIxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xNDEyMDMxMjIwMDZaFw0xNzAxMDMxMjIwMDZaMCExCzAJBgNVBAMTAkgyMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC8ojFnaqso7obLfS6sDn8Mj22s/ZcmY2NbwfGy12xX+1FpEjgwrwea8Uq6YS55Mvux/oRcBh2UsgFxnn0IlzSLgrmRx0t42PVuufygcXVGy+voYjxsOJUkP8uFqdv+QhLPUHTyVzMKHIYvVEa434dHKiSK2nwWkpFVqEQ2hITU/uSv3ZAX64F+7iJuIlraefdZ0QC6ucdOsxAFwC3FEH+HfPpV2rb6nhsBu8hxIGWOqDHoCcd3y0H2+7n/BE1pmOCkuT0j1tKU2NwUrEvWfRna2xyx+zNff9PmcNRrlT0yytr4ghCuQJbcGpA7+EGf5jGKfGjL1xL6GXwnb3W23SPDAgMBHWMwDQYJKoZIhvcNAQELBQADggEBALxmxs0QzRhDIlCmedBngmOGYIBd9sJ3TtWXak+4cJemPttrKPetWlDnSHyW2leuO6neIUtvKSXVETrIqbX0Y2bn37qPseBu3284qWLi2fAYhhOKfz2PEuUmck0+p3wKH6iDgsXgjmQuu6wO9m1+Y8qB/K+mSwi8gpxjBU38aPCgQrPZnIAbBPpju2NBb241ep+aOlonKQRO+KcsPMwYzLt0xEmkjopq4dRl0i+Nl/m3EVc1JCIslvSD37tUBQIbEpvv7OrXbv37xvY9Cr4JRWrrjrRO6n1d2NSxdagHjwobdBgPCQXGqroMxUNL0EprVmlbRNvWkxmj4wd6PYKfnaQ= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-12-03T13:20:06Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H3 ++ ++ ++ ++ O=Guardtime,CN=H3 ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDMxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xNDEyMDQwOTI4MTFaFw0xNzAxMDQwOTI4MTFaMCExCzAJBgNVBAMTAkgzMRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC15sVKLBcJ6NRMFmMZxyBy/kKCcBr8zwozbZ+3cyuKeRk8s2+9IEH0xklpE9MxCmDaW65rpk24aX01A9LvYaM/Jn8bzE9H955wuRTWZbUpW22iljLxjq3x6bM2mwMB/BRkWPK/0BZ8mO1XOXFGh6eRD5OqLXDen3AXno3LgxpibK7jHekfX1aT2G35c2zDcZmif86bQiFSxPxI/xJXiJcswX3Xl1CoEdoyiOhyYIl1756QKzNL/yzXy4W7Fczk5gjax+ke9snndPg/ZnPzKLHJowNyPzobhG0R7W7eG/S7BpxMTEG3alA3BZvV2gmVDw8Bp8t6mNNtxgbWL6fqKQdrAgMBb5cwDQYJKoZIhvcNAQELBQADggEBACyCZSs4DiVR9FvRRUCeXAU4zpvlO2+nlAqL/SnK657aHNbnnQKqtBdoW4N/Gf6Pxz27B7PB1c1p1qgmKzvVewKfwh+37XoCIxqenoLzwALGN0wPne3dVB1Jf8DMEMtECB5ktZMd/BI8fgc6VlYBDnDXa+qu13hbTHYuWV0dIokseNOoNU9twcABn14E0AsEwfalZpXps9LQgjVx609pZwDFRQo3igzY4qKxpivUD0xyrjjsh5UebldLj2K7gtFubrenuQuRerVFIJ82VmNsAdFFzyVsCXdUdULO+wxcnIjCUlAY2l8CEM70z/UXmuCCqnoqPmmXk/oEIdqPLZQqR3c= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-12-04T10:28:11Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H4 ++ ++ ++ ++ O=Guardtime,CN=H4 ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDQxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xNDEyMDUwOTQwMzVaFw0xNzAxMDUwOTQwMzVaMCExCzAJBgNVBAMTAkg0MRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCgdoH5rbrx9r/CkW7gdHjEGtJlVYP9/sF26W0yMVvyEApwXJk9ccM5FNeJlnHO94DQ4jQIYGU8MnFu0Xs8FlrRI47vPikjsdI/HfGW8zQFvPq/CGR2JWtoTW/OS3TLlhuKsgZ4ynsIZs7VrU9H1bk/OyAgtvK3sbdyELF6JYIy0t2mN5kXHPgFYs3PCifQteLEDsYLdxKKtwnEpR8Vyptw/9iNHPsvnqwpa/U5UL0Q/0dF4fxpYNwVdgTKL5bpjaI6I2NmYBdhI8L9aTdEXsP+kSA/+pB5iqNGZ9vlrfweRLsqb8fIILjgIheJwgOKMMTdfIsxfN8nJPr6ICAjd37DAgMBmHswDQYJKoZIhvcNAQELBQADggEBAHh80N8rHNR29mMguKbYl5b6Enhls0VWx/F3oDe+gfZ3p+ASXHPqZG8+e0BwDZh0QykZ3g8etSBL4yOEUi5PEhilECuny++NqFItHheyUXFFJih5qCqP8w+qiseVignIlRH/oumNXMt0HZUeWvh0G43Nc/6OdW2g2OtjUKjQ3WtbNP9Znx+okruUAzOrWpYN0V5PqE5FXrrsslykYb6ou3xThvmkowHddyl3x/koUd1nfra5YUAY9hzfFfUC8SdRg805OSy+EwI+dE006j91dR1EyNKZhqEg1Q5Wb2BGGRXbAYDOGeuX6NE9X+V2gKqD+kauxfz+t2f6lzWEueaexo8= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-12-05T10:40:35Z ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/Svctype/TSA/TSS-QC ++ ++ H5 ++ ++ ++ ++ O=Guardtime,CN=H5 ++ ++ ++ MIICtjCCAZ4CAQEwDQYJKoZIhvcNAQELBQAwITELMAkGA1UEAxMCSDUxEjAQBgNVBAoTCUd1YXJkdGltZTAeFw0xNDEyMDgwOTAzNDdaFw0xNzAxMDgwOTAzNDdaMCExCzAJBgNVBAMTAkg1MRIwEAYDVQQKEwlHdWFyZHRpbWUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC60wohNDbrmyAL/7WupGYRFg8sBizryJup1HDV/YJvhVAo7jt63nrzuxqnADeqlzeek2GuYugh5LbYRR8EeBtxE3ssIablc5TLKPZj1hzJ+Tsw39BrbYebQUwusxU+BUclQ9TpxgSAM6eXa5w2pi9o8eiHVMxzXQ5c5BE0XGSSH4IRRoej/xnealXgxNIFvEm14sFvkAg04WQQwD9ZTmWMY80WHeYDFr+v7N520r19GMyTc8YoR8DfWI0lLBYrcG1yDXu6gZlaLD+Xrb633Qn7WRgWD0ejCh9taWbEDBwoc6aM8yZDLfBsExYQSn8RMCcVXZjDZv5k7+IQaozgj0q7AgMBarkwDQYJKoZIhvcNAQELBQADggEBALnzytGvxyDEf8fDaErxIVaZpUcZrWSifiBc3jK3h3PvFTuaY98DT9keY2X1vM9mSeMBusRdMbIkFROA6+uUUNEXlp7lQEoZ9/N1H4vCGscvZWBOua668qw2PrUCQoD5pP1SDH/0JpK4wX+Xk8bdi+Q6cHu2p606r4PBtJVv2oR5y+LaghTC10pT+4+EQ8rDPmseiatvSa9dJdz3RM/bIR+Ki9OO5nBYpPBQJuvDTJ1rfWSfr7JD0ejDOVeG9OfN0j26L/sChV5uZxRMs/mvIlRibHqXU0+oeOGCCsZGb6YN27nLFh5TUdqtGRbJuu3f/8tYNLa7Gb/iI6afpO8nRXc= ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/Svcstatus/undersupervision ++ 2014-12-08T10:03:47Z ++ ++ ++ ++ ++ ++j+9gYt6p5wepZ2D+v4UMpi2ngnyACS2Xw7Mdl/UldVg=h/24vkRG/BCBuEIS+6inHtgAurioFNbkO2EkycN9uEQ=XYUUi+Ch9gcfrz0DfsifdcB6IDBCFicSO3ww2e8ssGy91XzQLuKfwC77ROHl6oApuPxYYeUkXUXZ15Im/kq6GjYcqrQJ0ZLoHpaxTgx2ztLwPAA4McdXNt1QoNSr5EBUxlk8sYkKh142PZWZ4kAxDyAfDlE0jnhUvGRekbUEoX/00BLCmX+KhTPcTIoj/OEhLMTwJPNPbryXpOrlxFF8NyAXX7o5tOu1mV6/ntyTpHte+AbXdL7DT2Aaj9htGS99fL0jPBAVRUkTdSB02u0xRP3t38nY6qDMV8FESfkJcWXmWjrc/qBCxaJEx1QvfoKESlp/2Un2FppsoEqs/FB4Tg==MIIDtDCCApygAwIBAgIJAOGr7PilHGMwMA0GCSqGSIb3DQEBBQUAMHExLjAsBgNVBAMTJUVzdG9uaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxCzAJBgNVBAYTAkVFMTIwMAYDVQQKEylFc3RvbmlhbiBUZWNobmljYWwgU3VydmVpbGxhbmNlIEF1dGhvcml0eTAeFw0xMDEwMjkxMzIyNTBaFw0yMDExMDUxMzIyNTBaMHExLjAsBgNVBAMTJUVzdG9uaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxCzAJBgNVBAYTAkVFMTIwMAYDVQQKEylFc3RvbmlhbiBUZWNobmljYWwgU3VydmVpbGxhbmNlIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALhdQ9c33Y98JC0pl34+rg+qXLgdjEQaBM9gpxOpIpeqwrcXi5xbLmh4mk6imennbRaZXgJRqrOkx77B+UsBwn6uPgeZenJ1kFGvAOR9aePbgxJ5AggMr4wJXSa03OSGDhptsmMFc86qtnht94mDf1UCn1CNYA7qQHzu4MQwqJ2Ist7IIki89VZD5I4Y5AItMKlEjnHAOw/dlMfI8SxE2vvxCIyQu+rhfGPfwotHi0POyKtkX9Y+JSqEVqRXNw7B2x+d9mRYUJ8EqDvj5ag9dtgyXLsfJ4HdUJMqvoT6QnfwlBbaFusTm3R8SNVXl/8LHDoM5naOSKAOGRSe2OnxAJ8CAwEAAaNPME0wDAYDVR0TBAUwAwIBADALBgNVHQ8EBAMCB4AwHQYDVR0OBBYEFAon+QooAKxPsgZlsTxvK/8synsxMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQUFAAOCAQEACansBzvd2iwBlZg50oueEtUlFyE+do+FmI4apydq2bM3kdeikWGERSbV1EzD86j7jpNKEOvlPTkV7fZl+7uCJ3OuCrzHEzuaZnvFPkN7Rmj4P1AGh5UK4UVWJwTceuhzIf4D6+/5CNY6U8iEHIqvAmTVOPSKEvxdBv7GKHy6x897icQa8ttHq+xCLmc0+6zpbzSZ5dOmFG3kzJuZPqtqa89Lqf7x6IRRKgUd+C+JsKDMjEde/eYnM8yxdVlzEWe6Z0qKVvPTuiCnhTNhaaQM3aiw61RMTes2Ik4wSGY75XZjQV5gVszHJBEntktcduGWCuJ24qS2lb1M2/8bE43Fkg==2016-01-13T11:30:12ZFLND/PjEXrla9sSFb5Npn5rUqkw=O=Estonian Technical Surveillance Authority,C=EE,CN=Estonian Trusted List Scheme Operator16261351432217453360text/xml +\ No newline at end of file +diff -ruN a/client/tl-mp.xml b/client/tl-mp.xml +--- a/client/tl-mp.xml 1970-01-01 03:00:00.000000000 +0300 ++++ b/client/tl-mp.xml 2016-04-27 10:17:23.977818782 +0300 +@@ -0,0 +1,2000 @@ ++ ++ ++ ++ 4 ++ 134 ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUlistofthelists ++ ++ European Commission ++ Европейска комисия ++ Comisión Europea ++ Evropská komise ++ Europa-Kommissionen ++ Europäische Kommission ++ Euroopa Komisjon ++ Ευρωπαϊκή Επιτροπή ++ Commission européenne ++ Commissione europea ++ Eiropas Komisija ++ Europos Komisija ++ Európai Bizottság ++ Il-Kummissjoni Ewropea ++ Europese Commissie ++ Komisja Europejska ++ Comissão Europeia ++ Comisia Europeană ++ Európska komisia ++ Evropska komisija ++ Euroopan komissio ++ Europeiska kommissionen ++ ++ ++ ++ ++ Rue de la Loi 200 ++ Bruxelles ++ 1049 ++ BE ++ ++ ++ Wetstraat 200 ++ Brussel ++ 1049 ++ BE ++ ++ ++ Rue de la Loi/Wetstraat 200 ++ Brussels ++ 1049 ++ BE ++ ++ ++ ++ mailto:EC-TL-Service@ec.europa.eu ++ https://ec.europa.eu/digital-agenda/en/eu-trusted-lists-certification-service-providers ++ ++ ++ ++ EU:Supervision/Accreditation Status List of certification services from Certification Service Providers, which are supervised/accredited by the referenced Scheme Operator’s Member State for compliance with the relevant provisions laid down in Directive 1999/93/EC of the European Parliament and of the Council of 13 December 1999 on a Community framework for electronic signatures. ++ EU:Списък, съдържащ в съответствие с член 2, параграф 4 от Решение 2009/767/ЕО на Комисията от 16 октомври 2009 г. за определяне на мерки, улесняващи прилагането на процедури с помощта на електронни средства чрез единични звена за контакт в съответствие с Директива 2006/123/ЕО на Европейския парламент и на Съвета относно услугите на вътрешния пазар, изменено с Решение 2010/425/ЕС на Комисията и Решение 2013/662/ЕС за изпълнение на Комисията, информацията, съобщена от държавите членки съгласно член 2, параграф 3 от Решение 2009/767/ЕО на Комисията. ++ EU:De conformidad con el artículo 2, apartado 4, de la Decisión 2009/767/CE de la Comisión, de 16 de octubre de 2009, por la que se adoptan medidas que facilitan el uso de procedimientos por vía electrónica a través de las «ventanillas únicas» con arreglo a la Directiva 2006/123/CE del Parlamento Europeo y del Consejo relativa a los servicios en el mercado interior, modificada por la Decisión 2010/425/UE de la Comisión y por la Decisión de Ejecución 2013/662/UE de la Comisión, la presente lista contiene la información proporcionada por los Estados miembros según lo previsto en el artículo 2, apartado 3, de la Decisión 2009/767/CE de la Comisión. ++ EU:Seznam zveřejněný podle čl. 2 odst. 4 rozhodnutí Komise 2009/767/ES ze dne 16. října 2009, kterým se stanovují opatření pro usnadnění užití postupů s využitím elektronických prostředků prostřednictvím „jednotných kontaktních míst“ podle směrnice Evropského parlamentu a Rady 2006/123/ES o službách na vnitřním trhu, ve znění rozhodnutí Komise 2010/425/EU a prováděcího rozhodnutí Komise 2013/662/EU, který obsahuje informace oznámené členskými státy v souladu s čl. 2 odst. 3 rozhodnutí Komise 2009/767/ES. ++ EU:Listen indeholder, jf. artikel 2, stk. 4, i Kommissionens beslutning 2009/767/EF af 16. oktober 2009 om fastlæggelse af foranstaltninger, der skal lette anvendelsen af elektroniske procedurer ved hjælp af "kvikskranker" i henhold til Europa-Parlamentets og Rådets direktiv 2006/123/EF om tjenesteydelser i det indre marked, som ændret ved Kommissionens afgørelse 2010/425/EU og Kommissionens gennemførelsesafgørelse 2013/662/EU, de oplysninger, der indgives af medlemsstaterne i henhold til artikel 2, stk. 3, i Kommissionens beslutning 2009/767/EF. ++ EU:Liste, die in Übereinstimmung mit Artikel 2 Absatz 4 der Entscheidung 2009/767/EG der Kommission vom 16. Oktober 2009 über Maßnahmen zur Erleichterung der Nutzung elektronischer Verfahren über „einheitliche Ansprechpartner“ gemäß der Richtlinie 2006/123/EG des Europäischen Parlaments und des Rates über Dienstleistungen im Binnenmarkt – geändert durch den Beschluss 2010/425/EU der Kommission und den Durchführungsbeschluss 2013/662/EU der Kommission – die von den Mitgliedstaaten gemäß Artikel 2 Absatz 3 der Entscheidung 2009/767/EG der Kommission übermittelten Informationen enthält: ++ EU:Nimekiri kooskõlas komisjoni 16. oktoobri 2009. aasta otsuse 2009/767/EÜ (millega kehtestatakse meetmed elektrooniliste haldustoimingute kasutamise lihtsustamiseks ühtsete kontaktpunktide kaudu, mis on sätestatud Euroopa Parlamendi ja nõukogu direktiivis 2006/123/EÜ teenuste kohta siseturul; muudetud komisjoni otsusega 2010/425/EL ja komisjoni rakendusotsusega 2013/662/EL) artikli 2 lõikega 4; nimekirjas esitatakse teave, mille liikmesriigid on edastanud komisjoni otsuse 2009/767/EÜ artikli 2 lõike 3 kohaselt. ++ EU:Ο παρών κατάλογος περιέχει - σύμφωνα με το άρθρο 2 παράγραφος 4 της απόφασης 2009/767/ΕΚ της Επιτροπής, της 16ης Οκτωβρίου 2009, σχετικά με τη θέσπιση μέτρων που διευκολύνουν τη χρήση διαδικασιών με ηλεκτρονικά μέσα μέσω των ενιαίων κέντρων εξυπηρέτησης βάσει της οδηγίας 2006/123/ΕΚ του Ευρωπαϊκού Κοινοβουλίου και του Συμβουλίου σχετικά με τις υπηρεσίες στην εσωτερική αγορά, όπως τροποποιήθηκε με την απόφαση 2010/425/ΕΕ της Επιτροπής και την εκτελεστική απόφαση 2013/662/ΕΕ της Επιτροπής - τις πληροφορίες που κοινοποιούνται από τα κράτη μέλη σύμφωνα με το άρθρο 2 παράγραφος 3 της απόφασης 2009/767/ΕΚ της Επιτροπής. ++ EU:Liste contenant, par application de l’article 2, paragraphe 4, de la décision 2009/767/CE de la Commission du 16 octobre 2009 établissant des mesures destinées à faciliter l’exécution de procédures par voie électronique par l’intermédiaire des «guichets uniques» conformément à la directive 2006/123/CE du Parlement européen et du Conseil relative aux services dans le marché intérieur, telle que modifiée par la décision 2010/425/UE de la Commission et la décision d'exécution 2013/662/UE de la Commission, les informations communiquées par les États membres en application de l'article 2, paragraphe 3, de la décision 2009/767/CE de la Commission. ++ EU:Conformemente all'articolo 2, paragrafo 4, della decisione 2009/767/CE della Commissione, del 16 ottobre 2009, che stabilisce misure per facilitare l'uso di procedure per via elettronica mediante gli "sportelli unici" di cui alla direttiva 2006/123/CE del Parlamento europeo e del Consiglio relativa ai servizi nel mercato interno, modificata dalla decisione 2010/425/UE della Commissione e dalla decisione di esecuzione 2013/662/UE della Commissione, il presente elenco UE contiene le informazioni comunicate dagli Stati membri a norma dell'articolo 2, paragrafo 3, della decisione 2009/767/CE. ++ EU:Saraksts, kas saskaņā ar 2. panta 4. punktu Komisijas 2009. gada 16. oktobra Lēmumā 2009/767/EK par pasākumiem, lai veicinātu procedūru veikšanu elektroniski, izmantojot vienotos kontaktpunktus atbilstoši Eiropas Parlamenta un Direktīva 2006/123/EK par pakalpojumiem iekšējā tirgū, kurā grozījumi izdarīti ar Komisijas Lēmumu 2010/425/ES un Komisijas Īstenošanas Lēmumu 2013/662/ES, ietver informāciju, ko dalībvalstis paziņojušas saskaņā ar Komisijas Lēmuma 2009/767/EK 2. panta 3. punktu. ++ EU:Sąrašas, kuriame pagal 2009 m. spalio 16 d. Komisijos sprendimo 2009/767/EB, kuriuo pagal Europos Parlamento ir Tarybos direktyvą 2006/123/EB dėl paslaugų vidaus rinkoje nustatomos priemonės procedūroms, atliekamoms naudojantis elektroninėmis priemonėmis ir kontaktinių centrų paslaugomis, palengvinti, su pakeitimais, padarytais Komisijos sprendimu 2010/425/ES ir Komisijos įgyvendinimo sprendimu 2013/662/ES, 2 straipsnio 4 dalį pateikiama informacija, kurią valstybės narės pateikė pagal Komisijos sprendimo 2009/767/EB 2 straipsnio 3 dalį. ++ EU:Jegyzék, amely az eljárásoknak a belső piaci szolgáltatásokról szóló 2006/123/EK európai parlamenti és tanácsi irányelv szerinti egyablakos ügyintézési pontokon keresztül elektronikus eszközökkel történő teljesítését lehetővé tevő rendelkezések meghatározásáról szóló, a 2010/425/EU bizottsági határozattal és a 2013/662/EU bizottsági végrehajtási határozattal módosított, 2009. október 16-i 2009/767/EK bizottsági határozat 2. cikkének (4) bekezdésével összhangban tartalmazza a tagállamok által a 2009/767/EK bizottsági határozat 2. cikke (3) bekezdésének megfelelően bejelentett információkat. ++ EU:Lista li fiha, skont l-Artikolu 2(4) tad-Deċiżjoni tal-Kummissjoni 2009/767/KE tas-16 ta’ Ottubru 2009 li tistipula miżuri li jiffaċilitaw l-użu ta’ proċeduri b’mezzi elettroniċi permezz tal-punti ta’ kuntatt waħdieni skont id-Direttiva 2006/123/KE tal-Parlament Ewropew u tal-Kunsill dwar is-servizzi fis-suq intern, kif emendata mid-Deċiżjoni tal-Kummissjoni 2010/425/UE u mid-Deċiżjoni ta' Implimentazzjoni tal-Kummissjoni 2013/662/UE, l-informazzjoni notifikata mill-Istati Membri skont l-Artikolu 2(3) tad-Deċiżjoni tal-Kummissjoni 2009/767/KE. ++ EU:Lijst waarin overeenkomstig artikel 2, lid 4, van Beschikking 2009/767/EG van de Commissie van 16 oktober 2009 inzake maatregelen voor een gemakkelijker gebruik van elektronische procedures via het „één- loket” in het kader van Richtlijn 2006/123/EG van het Europees Parlement en de Raad betreffende diensten op de interne markt, zoals gewijzigd bij Besluit 2010/425/EU van de Commissie en Uitvoeringsbesluit 2013/662/EU van de Commissie, de informatie is opgenomen die door de lidstaten overeenkomstig artikel 2, lid 3, van Beschikking 2009/767/EG van de Commissie is medegedeeld. ++ EU:Wykaz zawierający, zgodnie z art. 2 ust. 4 decyzji Komisji 2009/767/WE z dnia 16 października 2009 r. ustanawiającej środki ułatwiające korzystanie z procedur realizowanych drogą elektroniczną poprzez „pojedyncze punkty kontaktowe” zgodnie z dyrektywą 2006/123/WE Parlamentu Europejskiego i Rady dotyczącą usług na rynku wewnętrznym, zmienioną decyzją Komisji 2010/425/UE i decyzją wykonawczą Komisji 2013/662/UE, informacje przekazane przez państwa członkowskie zgodnie z art. 2 ust. 3 decyzji Komisji 2009/767/WE. ++ EU:Lista contendo, em conformidade com o artigo 2.º, n.º 4, da Decisão 2009/767/CE da Comissão, de 16 de outubro de 2009, que determina medidas destinadas a facilitar a utilização de procedimentos informatizados através de «balcões únicos», nos termos da Diretiva 2006/123/CE do Parlamento Europeu e do Conselho relativa aos serviços no mercado interno, com a redação que lhe foi dada pela Decisão 2010/425/UE da Comissão e pela Decisão de Execução 2013/662/UE da Comissão, as informações notificadas pelos Estados-Membros nos termos do artigo 2.º, n.º 3, da Decisão 2009/767/CE da Comissão. ++ EU:Listă care conține, în conformitate cu articolul 2 alineatul (4) din Decizia 2009/767/CE a Comisiei din 16 octombrie 2009 de stabilire a unor măsuri de facilitare a utilizării procedurilor prin mijloace electronice prin intermediul „ghișeelor unice” în temeiul Directivei 2006/123/CE a Parlamentului European și a Consiliului privind serviciile în cadrul pieței interne, astfel cum a fost modificată prin Decizia 2010/425/UE a Comisiei și Decizia de punere în aplicare 2013/662/UE a Comisiei, informațiile notificate de statele membre în temeiul articolului 2 alineatul (3) din Decizia 2009/767/CE a Comisiei. ++ EU:Zoznam, ktorý obsahuje v súlade s článkom 2 ods. 4 rozhodnutia Komisie 2009/767/ES zo 16. októbra 2009, ktorým sa ustanovujú opatrenia na uľahčenie postupov elektronickými spôsobmi prostredníctvom „miest jednotného kontaktu“ podľa smernice Európskeho parlamentu a Rady 2006/123/ES o službách na vnútornom trhu, zmeneného rozhodnutím Komisie 2010/425/EÚ a vykonávacím rozhodnutím Komisie 2013/662/EÚ, informácie oznámené členskými štátmi podľa článku 2 ods. 3 rozhodnutia Komisie 2009/767/ES. ++ EU:Seznam, ki v skladu s členom 2(4) Odločbe Komisije 2009/767/ES z dne 16. oktobra 2009 o vzpostavitvi ukrepov za pospeševanje uporabe postopkov po elektronski poti s pomočjo enotnih kontaktnih točk po Direktivi 2006/123/ES Evropskega parlamenta in Sveta o storitvah na notranjem trgu, kakor je bila spremenjena s Sklepom Komisije 2010/425/EU in Izvedbenim sklepom Komisije 2013/662/EU, vsebuje informacije, ki jih države članice sporočijo v skladu s členom 2(3) Odločbe Komisije 2009/767/ES. ++ EU:Luettelo, joka sisältää toimenpiteistä sähköisten menettelyjen käytön edistämiseksi keskitettyjä asiointipisteitä käyttäen palveluista sisämarkkinoilla annetun Euroopan parlamentin ja neuvoston direktiivin 2006/123/EY mukaisesti 16 päivänä lokakuuta 2009 tehdyn komission päätöksen 2009/767/EY, sellaisena kuin se on muutettuna komission päätöksellä 2010/425/EU ja komission täytäntöönpanopäätöksellä 2013/662/EU, 2 artiklan 4 kohdan mukaisesti tiedot, jotka jäsenvaltiot ovat ilmoittaneet komission päätöksen 2009/767/EY 2 artiklan 3 kohdan mukaisesti: ++ EU:Förteckning som, i enlighet med artikel 2.4 i kommissionens beslut av den 16 oktober 2009 om åtgärder som underlättar användningen av förfaranden på elektronisk väg genom gemensamma kontaktpunkter i enlighet med Europaparlamentets och rådets direktiv 2006/123/EG om tjänster på den inre marknaden, ändrat genom kommissionens beslut 2010/425/EU och kommissionens genomförandebeslut 2013/662/EU, innehåller den information som medlemsstaterna lämnat i enlighet med artikel 2.3 i kommissionens beslut 2009/767/EG. ++ EU:Popis koji, u skladu s člankom 2. stavkom 4. Odluke Komisije 2009/767/EZ od 16. listopada 2009. o utvrđivanju mjera kojima se olakšava uporaba postupaka elektroničkim putem preko „jedinstvenih kontaktnih točaka” u skladu s Direktivom 2006/123/EZ Europskog parlamenta i Vijeća o uslugama na unutarnjem tržištu, kako je izmijenjena Odlukom Komisije 2010/425/EU i Provedbenom odlukom Komisije 2013/662/EU, sadržava informacije o kojima su države članice izvijestile u skladu s člankom 2. stavkom 3. Odluke Komisije 2009/767/EZ: ++ ++ ++ http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.C_.2015.435.01.0001.01.ENG ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#en ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#bg ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#es ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#cs ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#da ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#de ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#et ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#el ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#fr ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#it ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#lv ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#lt ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#hu ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#mt ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#nl ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#pl ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#pt ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#ro ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#sk ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#sl ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#fi ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl.html#sv ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/StatusDetn/EUlistofthelists ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUlistofthelists ++ ++ EU ++ ++ In accordance with Art. 2 (4) of Commission Decision 2009/767/EC of 16 October 2009 setting out measures facilitating the use of procedures by electronic means through the ‘points of single contact’ under Directive 2006/123/EC of the European Parliament and of the Council on services in the internal market, as amended by Commission Decision 2010/425/EU and Commission Implementing Decision 2013/662/EU, the present list contains the information notified by Member States pursuant to Art. 2 (3) of Commission Decision 2009/767/EC. The European Commission maintains this website as an interoperability tool designed to facilitate the practical use of national Trusted Lists. Our goal is to keep this information timely and accurate. If errors are brought to our attention, we will try to correct them. However, the Commission accepts no responsibility or liability whatsoever with regard to the content of national Trusted Lists which lies exclusively with the Member States. It is our goal to minimize disruption caused by technical errors. However, some data or information on our site may have been created or structured in files or formats that are not error-free and we cannot guarantee that our service will not be interrupted or otherwise affected by such problems. The European Commission accepts no responsibility with regard to such problems incurred as a result of using this site or any linked external sites. This disclaimer is not intended to limit the liability of the European Commission in contravention of any requirements laid down in applicable national law nor to exclude its liability for matters which may not be excluded under that law. ++ Списък съгласно член 2, параграф 4 от Решение 2009/767/ЕО на Комисията от 16 октомври 2009 г. за определяне на мерки, улесняващи прилагането на процедури с помощта на електронни средства чрез „единични звена за контакт“ в съответствие с Директива 2006/123/ЕО на Европейския парламент и на Съвета относно услугите на вътрешния пазар, изменено с Решение 2010/425/ЕС на Комисията и с Решение за изпълнение 2013/662/EС на Комисията, съдържащ информацията, съобщена от държавите членки съгласно член 2, параграф 3 от Решение 2009/767/ЕО на Комисията. Европейската комисия поддържа този уебсайт като инструмент за оперативна съвместимост, чиято цел е да улесни използването на национални доверителни списъци. Наша цел е да поддържаме актуалността и точността на тази информация. Ако ни съобщите за допуснати грешки, ще се постараем да ги коригираме. Въпреки това Комисията не поема никаква отговорност по отношение на съдържанието на националните доверителни списъци, за което отговорност носят изцяло държавите-членки. Наша цел е да сведем до минимум проблемите, причинени от технически грешки. Въпреки това някои данни или информация на нашия сайт може да са създадени или структурирани във файлове или формати, податливи на грешки, и не можем да гарантираме, че нашите услуги няма да бъдат прекъснати или засегнати по друг начин от подобни проблеми. Европейската комисия не поема отговорност по отношение на такива проблеми, появили се в резултат от използването на този сайт или на други външни сайтове, свързани с него. Настоящият отказ от отговорност няма за цел да ограничава отговорността на Европейската комисия в разрез с изискванията, заложени в приложимото национално законодателство, нито да я освобождава от отговорност в области, в които това не е възможно съгласно това законодателство. ++ De conformidad con el artículo 2, apartado 4, de la Decisión 2009/767/CE de la Comisión, de 16 de octubre de 2009, por la que se adoptan medidas que facilitan el uso de procedimientos por vía electrónica a través de las ventanillas únicas con arreglo a la Directiva 2006/123/CE del Parlamento Europeo y del Consejo relativa a los servicios en el mercado interior, modificada por la Decisión 2010/425/UE de la Comisión y la Decisión de ejecución de la Comisión 2013/662/EU de 14 de octubre de 2013, la presente lista contiene la información notificada por los Estados miembros en virtud del artículo 2, apartado 3, de la Decisión 2009/767/CE de la Comisión. Con el presente sitio Internet la Comisión Europea quiere ofrecer una herramienta de interoperabilidad que facilite el uso práctico de las listas de confianza nacionales. Nuestro objetivo es mantener esta información actualizada y precisa. Trataremos de corregir los errores que se nos señalen. No obstante, la Comisión no asume responsabilidad alguna en relación con el contenido de las listas de confianza nacionales, que son de la exclusiva incumbencia de los Estados miembros. Queremos reducir al mínimo los problemas ocasionados por errores de carácter técnico. No obstante, algunos datos o informaciones de nuestro sitio pueden haber sido creados u organizados en archivos o formatos no exentos de errores, y no podemos garantizar que nuestro servicio no se vea interrumpido o afectado de alguna otra manera. La Comisión no asume responsabilidad alguna por los problemas que puedan surgir al utilizar este sitio o sitios externos con enlaces al mismo. La presente cláusula de exención de responsabilidad no tiene por objeto limitar la responsabilidad de la Comisión de forma contraria a lo dispuesto por las normativas nacionales aplicables ni excluir su responsabilidad en los casos en los que, en virtud de dichas normativas, no pueda excluirse. ++ V souladu s čl. 2 odst. 4 rozhodnutí Komise 2009/767/ES ze dne 16. října 2009, kterým se stanovují opatření pro usnadnění užití postupů s využitím elektronických prostředků prostřednictvím „jednotných kontaktních míst“ podle směrnice Evropského parlamentu a Rady 2006/123/ES o službách na vnitřním trhu, ve znění rozhodnutí Komise 2010/425/EU a prováděcího rozhodnutí Komise 2013/662/EU, tento seznam obsahuje informace oznámené členskými státy podle čl. 2 odst. 3 rozhodnutí Komise 2009/767/ES. Tyto internetové stránky spravuje Evropská komise s cílem usnadnit praktické využívání důvěryhodných seznamů z jednotlivých členských států. Snažíme se poskytovat aktualizované a přesné informace. Snažíme se rovněž opravovat všechny chyby, na něž nás upozorníte. Komise však vylučuje jakoukoli odpovědnost za obsah důvěryhodných seznamů, neboť tuto odpovědnost nesou výhradně členské státy. Snažíme se vyvarovat poruch způsobených technickými chybami. Některé údaje či informace na našich internetových stránkách však mohly být vytvořeny či strukturovány do souborů či formátů, které nejsou bezchybné, a proto nemůžeme zaručit, že naše služby nebudou v důsledku takových problémů přerušeny či jinak ovlivněny. Evropská komise odmítá jakoukoli odpovědnost za problémy, které nastanou v důsledku používání těchto stránek nebo externích stránek, na něž tyto stránky odkazují. Záměrem tohoto prohlášení není omezit odpovědnost Evropské komise v případě porušení platných vnitrostátních právních předpisů ani vyloučit její odpovědnost v záležitostech, ve kterých ji podle těchto předpisů vyloučit nelze. ++ I overensstemmelse med artikel 2, stk. 4, i Kommissionens beslutning 2009/767/EF om fastlæggelse af foranstaltninger, der skal lette anvendelsen af elektroniske procedurer ved hjælp af kvikskranker i henhold til Europa-Parlamentets og Rådets direktiv 2006/123/EF om tjenesteydelser i det indre marked, som ændret ved Kommissionens afgørelse 2010/425/EU og Kommissionens gennemførelsesforordning 2013/662/EU, indeholder denne liste de oplysninger, som medlemslandene har afgivet i henhold til artikel 2, stk. 3, i Kommissionens beslutning 2009/767/EF. Kommissionen har her på webstedet samlet information om de nationale positivlister, så det er lettere at anvende dem i praksis. Vi tilstræber, at oplysningerne er korrekte og ajourførte. Hvis vi bliver opmærksomme på fejl, søger vi at rette dem. Kommissionen påtager sig imidlertid intet ansvar for indholdet i de nationale positivlister. Ansvaret påhviler udelukkende medlemslandene. Vi tilstræber så vidt muligt at mindske forstyrrelser forårsaget af tekniske problemer. Dog kan visse data eller andre oplysninger på webstedet være blevet struktureret i filer eller formater, som ikke er fejlfrie, og vi kan ikke garantere, at vores service ikke afbrydes eller i øvrigt ikke påvirkes af den slags problemer. Kommissionen påtager sig intet ansvar for sådanne ulemper, der måtte opstå som følge af brugen af dette websted eller andre tilknyttede eksterne websteder. Hensigten med denne erklæring om ansvarsfraskrivelse er hverken at begrænse Kommissionens ansvar på en måde, der strider med eventuelle krav ifølge gældende national ret, eller at udelukke Europa-Kommissionens ansvar i tilfælde, hvor ansvar ikke kan udelukkes ifølge national ret. ++ Diese Liste enthält die von den Mitgliedstaaten übermittelten Angaben und steht damit im Einklang mit Artikel 2 Absatz 4 der Entscheidung 2009/767/EG der Kommission vom 16. Oktober 2009 über Maßnahmen zur Erleichterung der Nutzung elektronischer Verfahren über „einheitliche Ansprechpartner“ gemäß der Richtlinie 2006/123/EG des Europäischen Parlaments und des Rates über Dienstleistungen im Binnenmarkt – geändert durch die Entscheidung der Kommission Nr. 2010/425/EU und dem Durchführungsbeschluss der Kommission Nr. 2013/662/EU – in Übereinstimmung mit Artikel 2 Absatz 3 der Entscheidung der Kommission Nr. 2009/767/EG. Diese Website der Europäischen Kommission ist als Schnittstelle gedacht, die die Verwendung nationaler vertrauenswürdiger Listen in der Praxis vereinfachen soll. Wir sind bestrebt, die einschlägigen Informationen inhaltlich richtig und rechtzeitig bereitzustellen. Wir bemühen uns, Irrtümer zu berichtigen, die uns zur Kenntnis gebracht werden. Die Kommission übernimmt jedoch keine Verantwortung oder Haftung für den Inhalt der nationalen vertrauenswürdigen Listen, für die ausschließlich die Mitgliedstaaten zuständig sind. Wir arbeiten darauf hin, technisch bedingte Störungen auf ein Mindestmaß zu reduzieren. Dennoch kann es vorkommen, dass Daten oder Informationen auf unserer Website in fehlerhaften Dateien oder Formaten vorliegen. Wir können also nicht garantieren, dass der Arbeitsablauf durch derartige Probleme nicht gestört oder anderweitig beeinträchtigt wird. Die Europäische Kommission übernimmt für derartige Störungen beim Besuch dieser Website oder damit verbundener externer Sites keine Verantwortung. Mit der vorliegenden Haftungsausschlussklausel soll die Haftung der Europäischen Kommission bei Nichteinhaltung der einschlägigen nationalen Rechtsvorschriften weder eingeschränkt noch in Fällen ausgeschlossen werden, in denen ein Ausschluss nach diesen Rechtsvorschriften nicht möglich ist. ++ Vastavalt komisjoni 16. oktoobri 2009. aasta otsuse 2009/767/EÜ (millega kehtestatakse meetmed elektrooniliste haldustoimingute kasutamise lihtsustamiseks ühtsete kontaktpunktide kaudu, mis on sätestatud Euroopa Parlamendi ja nõukogu direktiivis 2006/123/EÜ teenuste kohta siseturul ning mida on muudetud komisjoni otsusega 2010/425/EL ja komisjoni rakendusotsusega 2013/662/EL) artikli 2 lõikele 4 sisaldab käesolev loetelu liikmesriikide vastavalt komisjoni otsuse 2009/767/EÜ artikli 2 lõikele 3 esitatud teavet. Euroopa Komisjon haldab asjaomast veebisaiti koostalitlusvõime vahendina, mis hõlbustab liikmesriikide usaldusnimekirjade praktilist kasutamist. Eesmärk on pakkuda õigeaegset ja täpset teavet. Märgatud vigu püüame parandada. Samas ei võta komisjon endale vastutust ega mingeid kohustusi liikmesriikide usaldusnimekirjade sisu suhtes, mille eest vastutavad üksnes liikmesriigid ise. Meie eesmärk on vähendada tehniliste vigade tõttu tekkinud häireid. Osa veebisaidil olevatest andmetest või teabest võib aga olla loodud või paigutatud vigastesse failidesse või vormingutesse ning seega ei saa me tagada, et sellised probleemid meie teenust ei häiri või muul moel ei mõjuta. Euroopa Komisjon ei võta endale vastutust seoses kõnealuste probleemidega, mis tulenevad käesoleva veebisaidi või seonduvate välissaitide kasutamisest. Käesoleva vastutamatusesätte eesmärk ei ole Euroopa Komisjoni vastutuse piiramine, mis oleks vastuolus kohaldatavas liikmesriigi õigusaktis sätestatud nõuetega ega komisjoni vastutuse kõrvaldamine küsimustes, mida ei tohi asjaomase õigusakti alusel kõrvale jätta. ++ Σύμφωνα με το άρθρο 2 παράγραφος 4 της απόφασης 2009/767/EΚ της Επιτροπής, της 16ης Οκτωβρίου 2009, σχετικά με τη θέσπιση μέτρων που διευκολύνουν τη χρήση διαδικασιών με ηλεκτρονικά μέσα μέσω των «ενιαίων κέντρων εξυπηρέτησης» βάσει της οδηγίας 2006/123/EΚ του Ευρωπαϊκού Κοινοβουλίου και του Συμβουλίου σχετικά με τις υπηρεσίες στην εσωτερική αγορά, όπως τροποποιήθηκε με τη απόφαση 2010/425/EΕ της Επιτροπής και την εκτελεστική απόφαση 2013/662/ΕΕ της Επιτροπής, ο παρών κατάλογος περιέχει τις πληροφορίες που γνωστοποιούν τα κράτη μέλη σύμφωνα με το άρθρο 2 παράγραφος 3 της απόφασης 2009/767/EΚ της Επιτροπής. Ο δικτυακός αυτός τόπος της Ευρωπαϊκής Επιτροπής είναι ένα διαλειτουργικό εργαλείο σχεδιασμένο για να διευκολύνει τη χρήση των εθνικών καταλόγων εμπίστευσης.. Στόχος μας είναι να παρέχουμε ακριβή και επικαιροποιημένα στοιχεία. Αν επισημανθούν σφάλματα θα καταβληθεί κάθε προσπάθεια για τη διόρθωσή τους.Ωστόσο, η Επιτροπή δεν φέρει καμία ευθύνη όσον αφορά το περιεχόμενο των εθνικών καταλόγων εμπίστευσης, για τους οποίους την αποκλειστική ευθύνη φέρουν τα κράτη μέλη. Καταβάλλουμε κάθε προσπάθεια ώστε να ελαχιστοποιήσουμε τις διακοπές που προκαλούνται από τεχνικά προβλήματα. Ωστόσο, ορισμένα δεδομένα ή πληροφορίες που περιέχει ο δικτυακός τόπος μπορεί να έχουν δημιουργηθεί ή οργανωθεί σε αρχεία ή μορφότυπους που περιέχουν σφάλματα και γι΄αυτό δεν μπορούμε να εγγυηθούμε ότι η υπηρεσία μας δεν θα διακοπεί, ή δεν θα επηρεαστεί με άλλο τρόπο, από τέτοια προβλήματα. Η Επιτροπή δεν φέρει καμιά ευθύνη όσον αφορά τέτοια προβλήματα που ανακύπτουν κατά τη χρήση αυτού του δικτυακού τόπου, ή οποιουδήποτε άλλου συνδεδεμένου δικτυακού τόπου. Η παρούσα δήλωση αποποίησης ευθύνης δεν έχει σκοπό να περιορίσει την ευθύνη της Ευρωπαϊκής Επιτροπής κατά τρόπο που αντίκειται στις απαιτήσεις της ισχύουσας εθνικής νομοθεσίας ούτε να αποκλείσει την ευθύνη της για ζητήματα για τα οποία δεν μπορεί να αποκλειστεί δυνάμει της εν λόγω νομοθεσίας. ++ Conformément à l'article 2, paragraphe 4, de la décision 2009/767/CE de la Commission du 16 octobre 2009 établissant des mesures destinées à faciliter l’exécution de procédures par voie électronique par l’intermédiaire des «guichets uniques» conformément à la directive 2006/123/CE du Parlement européen et du Conseil relative aux services dans le marché intérieur, modifiée par la décision 2010/425/UE de la Commission et par la décision d’exécution 2013/662/UE de la Commission, la présente liste contient les informations notifiées par les États membres conformément à l'article 2, paragraphe 3, de la décision 2009/767/CE de la Commission. Le présent site de la Commission européenne constitue un outil d'interopérabilité destiné à faciliter l'utilisation des listes de confiance nationales. Notre objectif est de diffuser des informations exactes et à jour. Nous nous efforcerons de corriger les erreurs qui nous seront signalées. Toutefois, la Commission n'assume pas la responsabilité du contenu des listes de confiance nationales, qui incombe exclusivement aux États membres. Nous souhaitons limiter autant que possible les inconvénients occasionnés par des erreurs techniques. Cependant, certaines données ou informations présentes sur notre site peuvent avoir été créées ou structurées dans des fichiers ou des formats qui ne sont pas exempts d'erreurs. Il nous est donc impossible de garantir que notre service ne sera pas interrompu ou autrement affecté par de tels problèmes. La Commission décline toute responsabilité quant aux éventuels problèmes de ce type, résultant d'une utilisation du présent site ou de tout autre site extérieur auquel il renvoie. La présente clause de non-responsabilité n'a pas pour but de limiter la responsabilité de la Commission de manière contraire aux dispositions prévues dans les législations nationales applicables ou de dégager sa responsabilité dans des cas où elle ne peut l'être en vertu desdites législations. ++ Conformemente all'articolo 2, paragrafo 4, della decisione della Commissione 2009/767/CE, del 16 ottobre 2009, che stabilisce misure per facilitare l’uso di procedure per via elettronica mediante gli sportelli unici di cui alla direttiva 2006/123/CE del Parlamento europeo e del Consiglio relativa ai servizi nel mercato interno, decisione modificata dalla decisione della Commissione 2010/425/UE e dalla decisione di esecuzione della Commissione 2013/662/UE , la presente lista contiene le informazioni notificate dagli Stati membri a norma dell'articolo 2, paragrafo 3, della decisione 2009/767/CE. Il presente sito della Commissione europea assicura l'interoperabilità necessaria per facilitare l'uso pratico degli elenchi di fiducia nazionali. L'obiettivo perseguito è quello di fornire un'informazione aggiornata e precisa. Qualora dovessero essere segnalati degli errori, si provvederà a correggerli. La Commissione non si assume alcuna responsabilità per quanto riguarda il contenuto degli elenchi di fiducia nazionali, che è di competenza esclusiva degli Stati membri. È nostra cura ridurre al minimo le disfunzioni imputabili a problemi tecnici. Parte dei dati o delle informazioni presenti nel sito potrebbero tuttavia essere stati inseriti o strutturati in archivi o formati non esenti da errori. Non possiamo pertanto garantire che il servizio non subisca interruzioni o che non sia in altro modo influenzato da tali problemi. La Commissione non si assume alcuna responsabilità per gli eventuali problemi derivanti dall'utilizzazione del presente sito o di eventuali siti esterni ad esso collegati. La presente clausola di esclusione della responsabilità non ha lo scopo di limitare la responsabilità della Commissione in violazione di disposizioni della legge nazionale applicabile, né di escluderla nei casi in cui non può essere esclusa in forza di detta legge. ++ Šajā sarakstā ir iekļauta informācija, kuru dalībvalstis Komisijai ir paziņojušas saskaņā ar 2. panta 4. punktu Komisijas 2009. gada 16. oktobra Lēmumā 2009/767/EK par pasākumiem, lai veicinātu procedūru veikšanu elektroniski, izmantojot vienotos kontaktpunktus atbilstoši Eiropas Parlamenta un Padomes Direktīvai 2006/123/EK par pakalpojumiem iekšējā tirgū (minētais Lēmums grozīts ar Komisijas Lēmumu 2010/425/ES un Komisijas Īstenošanas lēmumu 2013/662/ES). Šis saraksts publicēts atbilstīgi Komisijas Lēmuma 2009/767/EK 2. panta 4. punktam. Eiropas Komisija uztur šo tīmekļa vietni, lai sekmētu dalībvalstu uzticamo sarakstu praktisku un savstarpēju izmantošanu. Mēs darām visu, lai nodrošinātu, ka šī informācija ir sniegta laicīgi un ir pareiza. Centīsimies labot norādītās kļūdas. Tomēr Komisija neuzņemas nekādu atbildību vai saistības attiecībā uz dalībvalstu uzticamajos sarakstos sniegto informāciju, jo par tiem atbild vienīgi dalībvalstis. Mēs darām visu, lai līdz minimumam samazinātu traucējumus, ko rada tehniskas kļūmes. Tomēr atsevišķos gadījumos dati vai informācija, kas iekļauta mūsu vietnē, ir sagatavota vai organizēta datnēs vai formātos, kas nefunkcionē nevainojami, un mēs nevaram garantēt, ka šādas problēmas nepārtrauks vai citādi neietekmēs mūsu pakalpojumus. Eiropas Komisija neuzņemas nekādu atbildību par problēmām, kas rodas, izmantojot šo vietni vai kādu citu ārēju vietni, uz kuru esam snieguši hipersaiti. Šī atruna neierobežo Eiropas Komisijas atbildību tad, ja nav ievērotas spēkā esošo valsts tiesību aktu prasības, un neierobežo tās atbildību gadījumos, kad saskaņā ar tiesību aktiem tai atbildība ir jāuzņemas. ++ Remiantis 2009 m. spalio 16 d. Komisijos sprendimo 2009/767/EB, kuriuo pagal Europos Parlamento ir Tarybos direktyvą 2006/123/EB dėl paslaugų vidaus rinkoje nustatomos priemonės procedūroms, atliekamoms naudojantis elektroninėmis priemonėmis ir kontaktinių centrų paslaugomis, palengvinti, iš dalies pakeisto Komisijos sprendimu 2010/425/ES ir Komisijos įgyvendinimo sprendimu 2013/662/ES, 2 straipsnio 4 dalimi, šiame sąraše pateikiama informacija, kurią valstybės narės perdavė pagal Komisijos sprendimo 2009/767/EB 2 straipsnio 3 dalį. Ši Europos Komisijos administruojama interneto svetainė – sąveiki priemonė, skirta praktiniam naudojimuisi valstybių narių patikimais sąrašais palengvinti. Siekiame laiku teikti tikslią informaciją ir ištaisyti visas pastebėtas klaidas. Tačiau Komisija neprisiima atsakomybės ar teisinių įsipareigojimų dėl valstybių narių patikimų sąrašų turinio. Už jį atsakingos tik valstybės narės. Siekiame, kad būtų kuo mažiau nesklandumų dėl techninių klaidų. Tačiau tam tikri mūsų interneto svetainėje skelbiami duomenys gali būti sukurti ar susisteminti tokiose rinkmenose arba tokiais formatais, kuriuose pasitaiko klaidų, todėl negalime užtikrinti, kad tokios problemos nesutrikdys mūsų darbo ar jo kaip nors kitaip nepaveiks. Europos Komisija neprisiima atsakomybės už tokio pobūdžio problemas, kylančias naudojantis šia interneto svetaine arba kitomis su ja susietomis išorės svetainėmis. Šiuo atsakomybės apribojimu nesiekiama sumažinti Europos Komisijos teisinių įsipareigojimų nepažeisti jokių taikytinų nacionalinės teisės reikalavimų ar neprisiimti teisinių įsipareigojimų už tai, už ką pagal tą teisę nuo atsakomybės neatleidžiama. ++ A 2010/425/EU bizottsági határozattal és a 2013/662/EU bizottsági végrehajtási határozattal módosított, az eljárásoknak a belső piaci szolgáltatásokról szóló 2006/123/EK európai parlamenti és tanácsi irányelv szerinti egyablakos ügyintézési pontokon keresztül elektronikus eszközökkel történő teljesítését lehetővé tevő rendelkezések meghatározásáról szóló 2009. október 16-i 2009/767/EK bizottsági határozat 2. cikkének (4) bekezdése értelmében a jelen lista azokat az információkat tartalmazza, amelyeket a tagállamok a 2009/767/EK bizottsági határozat 2. cikkének (3) bekezdése értelmében jelentettek be. Az Európai Bizottság e weblapot a kölcsönös átjárhatóság elősegítésére tartja fönn, abból a célból, hogy megkönnyítse a megbízható szolgáltatók listájának használatát. Célunk az, hogy ezek az információk naprakészek és pontosak legyenek. Amennyiben arról értesülünk, hogy a webhelyen hibás információk szerepelnek, azokat igyekszünk kijavítani. A Bizottság semmilyen felelősséget sem vállal a nemzeti megbízható szolgáltatók listájának tartalmáért, mert azért kizárólag a tagállamok felelősek. Arra törekszünk, hogy az esetleges technikai hibák a lehető legkisebb mértékben okozzanak fennakadásokat a portál működésében. Előfordulhat ugyanakkor, hogy a portál oldalain található adatok vagy információk olyan fájlokban vagy formátumokban állnak rendelkezésre, amelyek nem mentesek a hibáktól; ilyen esetekben nem tudjuk garantálni, hogy ezek a problémák nem okoznak fennakadásokat a webhely használata során. Az Európai Bizottság nem vállal felelősséget a honlap (vagy a belinkelt külső honlapok) használatából fakadó problémákért. E jogi nyilatkozat nem korlátozza az Európai Bizottságnak az alkalmazandó közösségi jogban lefektetett követelményekből fakadó felelősségét, és nem zárja ki a Bizottság felelősségét olyan ügyekben, amelyekért az említett jog értelmében felelősségre vonható. ++ F'konformità mal-Art. 2(4) tad-Deċiżjoni tal-Kummissjoni 2009/767/KE tas-16 ta' Ottubru 2009 li tistipula miżuri li jiffaċilitaw l-użu ta’ proċeduri b’mezzi elettroniċi permezz tal-"punti ta’ kuntatt waħdieni" skont id-Direttiva 2006/123/KE tal-Parlament Ewropew u tal-Kunsill dwar is-servizzi fis-suq intern, kif emendata bid-Deċiżjoni tal-Kummissjoni 2010/425/UE, u d-Deċiżjoni ta' Implimentazzjoni tal-Kummissjoni 2013/662/UE, dan l-elenku fih l-informazzjoni notifikata mill-Istati Membri skont l-Art. 2 (3) tad-Deċiżjoni tal-Kummissjoni 2009/767/KE. Il-Kummissjoni Ewropea żżomm dan is-sit bħala strument ta' interoperabilità ddisinnjat biex jiffaċilita l-użu prattiku tal-Listi ta' Fiduċja nazzjonali. L-għan tagħna hu li nżommu din l-informazzjoni aġġornata u eżatta. Jekk tiġbdulna l-attenzjoni li hemm żbalji, aħna nippruvaw nikkoreġuhom. Madanakollu l-Kummissjoni ma taċċetta l-ebda responsabbiltà fir-rigward tal-kontenut tal-Listi ta' Fiduċja nazzjonali li taqa' esklussivament fuq l-Istati Membri. Huwa l-għan tagħna li nnaqqsu t-tfixkil ikkawżat mill-iżbalji tekniċi. Madanakollu, xi dejta jew informazzjoni fuq is-sit tagħna setgħet inħolqot jew ġiet strutturata f’fajls jew formati li mhumiex ħielsa mill-iżbalji u ma nistgħux niggarantixxu li s-servizz tagħna ma jiġix interrott jew b’xi mod effettwat minn problemi bħal dawn. Il-Kummissjoni ma tieħu l-ebda responsabbiltà għal dawn il-problemi mġarrba bħala riżultat tal-użu ta' dan is-sit jew kwalunkwe siti esterni relatati. Din ir-rinunzja mhijiex maħsuba biex tillimita r-responsabbiltà tal-Kummissjoni fil-kontravenzjoni ta' kwalunkwe rekwiżit stipulat fil-liġi applikabbli tal-Komunità, l-anqas biex tneħħi r-responsabbiltà għal kwistjonijiet li jistgħu ma jkunux esklużi taħt dik il-liġi. ++ Overeenkomstig artikel 2, lid 4, van Beschikking 2009/767/EG van de Commissie van 16 oktober 2009 inzake maatregelen voor een gemakkelijker gebruik van elektronische procedures via het één-loket in het kader van Richtlijn 2006/123/EG van het Europees Parlement en de Raad betreffende diensten op de interne markt, als gewijzigd bij Besluit 2010/425/EU van de Commissie en Uitvoeringsbesluit 2013/662/EU van de Commissie, bevat deze lijst de door de lidstaten meegedeelde gegevens op grond van artikel 2, lid 3, van Beschikking 2009/767/EG. De Europese Commissie wil met deze website het gebruik van de vertrouwenslijsten vergemakkelijken. Ons doel is up-to-date en nauwkeurige informatie aan te bieden. Gesignaleerde fouten worden zo snel mogelijk gecorrigeerd. De Commissie aanvaardt echter geen enkele verantwoordelijkheid of aansprakelijkheid met betrekking tot de informatie op de vertrouwenslijsten. De verantwoordelijkheid hiervoor ligt uitsluitend bij de EU-landen. Wij proberen onderbrekingen door technische storingen zoveel mogelijk te beperken. Sommige gegevens of informatie op onze site kan zijn aangemaakt of omgezet in bestanden of formaten die niet foutloos zijn. Wij kunnen niet uitsluiten dat onze dienstverlening door dergelijke problemen wordt verstoord. De Commissie aanvaardt geen aansprakelijkheid voor die problemen die zich als gevolg van het gebruik van deze site of van andere daarmee verbonden externe sites mochten voordoen. Met deze disclaimer wordt niet beoogd de aansprakelijkheid van de Commissie te beperken in strijd met de in de toepasselijke EU-wetgeving vervatte vereisten, noch haar aansprakelijkheid uit te sluiten voor aangelegenheden die uit hoofde van die wetgeving niet mogen worden uitgesloten. ++ Zgodnie z art. 2 ust. 4 decyzji Komisji 2009/767/WE z dnia 16 października 2009 r. ustanawiającej środki ułatwiające korzystanie z procedur realizowanych drogą elektroniczną poprzez „pojedyncze punkty kontaktowe” zgodnie z dyrektywą 2006/123/WE Parlamentu Europejskiego i Rady dotyczącą usług na rynku wewnętrznym, zmienionej decyzją Komisji 2010/425/UE i decyzją wykonawczą Komisji 2013/662/UE, wykaz ten zawiera informacje przekazane przez państwa członkowskie. Ta strona internetowa Komisji Europejskiej ma ułatwić korzystanie z krajowych zaufanych list. Naszym celem jest dostarczanie aktualnych i ścisłych informacji. Jeśli zostaniemy powiadomieni o błędach, dołożymy wszelkich starań, aby je skorygować. Komisja nie ponosi jednak żadnej odpowiedzialności za treść krajowych zaufanych list, za którą odpowiadają wyłącznie państwa członkowskie. Naszym celem jest ograniczenie do minimum zakłóceń wynikających z błędów technicznych. Jednak niektóre z zamieszczonych w tym serwisie danych lub informacji mogły być utworzone lub zamieszczone w plikach lub formatach, które nie są wolne od błędów, w związku z czym nie możemy zagwarantować, że problemy takie nie spowodują przerw w dostępie do serwisu lub innych zakłóceń w jego funkcjonowaniu. Komisja Europejska nie bierze odpowiedzialności w związku z tego rodzaju problemami będącymi następstwem korzystania z tego serwisu lub jakichkolwiek serwisów zewnętrznych, do których odsyła niniejszy serwis. Niniejsze zastrzeżenie nie ma na celu ograniczenia odpowiedzialności Komisji Europejskiej w przypadku naruszenia jakichkolwiek wymagań określonych w stosownych przepisach prawa krajowego ani wyłączenia jej odpowiedzialności za kwestie, które na gruncie tego prawa nie podlegają wyłączeniu. ++ Em conformidade com o n.º 4 do artigo 2.° da Decisão 2009/767/CE da Comissão, de 16 de Outubro de 2009, que determina medidas destinadas a facilitar a utilização de procedimentos informatizados através de balcões únicos, nos termos da Directiva 2006/123/CE do Parlamento Europeu e do Conselho relativa aos serviços no mercado interno, com a redacção que lhe foi dada pela Decisão 2010/425/EU e pela Decisão de Execução 2013/662/UE da Comissão, a presente lista contém as informações notificadas pelos Estados-Membros ao abrigo do n.º 3 do artigo 2.° da Decisão 2009/767/CE da Comissão. Este sítio Web da Comissão Europeia assegura a interoperabilidade necessária para facilitar uma utilização eficaz das listas aprovadas e tem por objectivo fornecer informações exactas e actualizadas. Procuraremos corrigir todos os erros que nos forem comunicados. Contudo, a Comissão declina toda e qualquer responsabilidade quanto ao conteúdo das listas aprovadas nacionais, que incumbe exclusivamente aos Estados-Membros. É nosso objectivo reduzir ao mínimo os inconvenientes causados por erros técnicos. Contudo, determinados dados constantes do nosso sítio podem ter sido criados ou estruturados em ficheiros ou formatos não isentos de erros, pelo que não podemos garantir um serviço sem interrupções ou perturbações. A Comissão declina qualquer responsabilidade por eventuais problemas que surjam na sequência da consulta deste sítio ou de quaisquer sítios externos a que as ligações dêem acesso. A presente declaração de exoneração de responsabilidade não pretende limitar a responsabilidade da Comissão Europeia de uma forma que contrarie o disposto na legislação nacional aplicável, nem excluir a sua responsabilidade nos casos em que tal não é permitido por essa legislação. ++ În conformitate cu articolul 2 alineatul (4) din Decizia Comisiei 2009/767/CE din 16 octombrie 2009 de stabilire a unor măsuri de facilitare a utilizării procedurilor prin mijloace electronice prin intermediul „ghișeelor unice” în temeiul Directivei 2006/123/CE a Parlamentului European și a Consiliului privind serviciile în cadrul pieței interne, așa cum a fost modificată prin Decizia Comisiei 2010/425/UE și prin Decizia de punere în aplicare 2013/662/UE a Comisiei, prezenta listă conține informațiile notificate de statele membre în conformitate cu articolul 2 alineatul (3) din Decizia Comisiei 2009/767/CE. Comisia Europeană utilizează acest site ca instrument de facilitare a utilizării Listelor naționale sigure, prin sporirea interoperabilității. Scopul nostru este ca aceste informații să fie actualizate și exacte. În cazul în care ni se vor semnala erori, vom încerca să le corectăm. Totuși, Comisia nu își asumă niciun fel de responsabilitate cu privire la conținutul Listelor naționale sigure, care intră, integral, în sarcina statelor membre. De asemenea, ne propunem să reducem consecințele negative cauzate de erori tehnice. Cu toate acestea, este posibil ca unele date sau informații de pe site-ul nostru să fi fost create sau structurate în fișiere sau formate care pot prezenta erori. Prin urmare, nu putem garanta că serviciile noastre nu vor fi întrerupte sau afectate de asemenea probleme. Comisia Europeană nu își asumă nicio responsabilitate cu privire la eventuale probleme survenite ca urmare a utilizării acestui site sau a oricăror alte site-uri externe la care face trimitere. Această denegare de responsabilitate nu este destinată să limiteze răspunderea Comisiei Europene într-un mod care contravine reglementărilor prevăzute de legislația internă aplicabilă și nu exclude răspunderea sa în cazuri care, în conformitate cu legislația respectivă, aceasta nu poate fi exclusă. ++ V súlade s článkom 2 ods. 4 rozhodnutia Komisie 2009/767/ES zo 16. októbra 2009, ktorým sa ustanovujú opatrenia na uľahčenie postupov elektronickými spôsobmi prostredníctvom miest jednotného kontaktu podľa smernice Európskeho parlamentu a Rady 2006/123/ES o službách na vnútornom trhu, zmeneného rozhodnutím Komisie 2010/425/EÚ a vykonávacím rozhodnutím Komisie 2013/662/EÚ, tento zoznam obsahuje informácie oznámené členskými štátmi podľa článku 2 ods. 3 rozhodnutia Komisie 2009/767/ES. Európska komisia spravuje tieto internetové stránky ako interoperabilný nástroj, ktorý slúži na uľahčenie praktického využitia zoznamov dôveryhodných informácií. Naším cieľom je poskytovať tieto informácie včas a správne. Ak budeme upozornení na chyby, pokúsime sa ich napraviť. Komisia však nepreberá žiadnu zodpovednosť, ani inak neručí za obsah zoznamov dôveryhodných informácií, ktoré poskytli členské štáty. Je naším cieľom minimalizovať technické chyby. Niektoré informácie alebo údaje na tejto webovej lokalite však mohli byť vytvorené v chybných súboroch alebo formátoch, a preto nemožno zaručiť, že tieto problémy nespôsobia výpadok alebo inú poruchu našej webovej lokality. Komisia nenesie žiadnu zodpovednosť za podobné chyby, ktoré sa zistia pri používaní tejto lokality alebo pridružených externých lokalít. Zámerom tohto vyhlásenia o odmietnutí zodpovednosti nie je obmedzenie zodpovednosti Európskej komisie v rozpore s požiadavkami ustanovenými v príslušných vnútroštátnych predpisoch ani vylúčenie jej zodpovednosti vo veciach, v ktorých ju podľa týchto predpisov nie je možné vylúčiť. ++ Seznam v skladu s členom 2(4) Odločbe Komisije 2009/767/ES z dne 16. oktobra 2009 o vzpostavitvi ukrepov za pospeševanje uporabe postopkov po elektronski poti s pomočjo „enotnih kontaktnih točk“ po Direktivi 2006/123/ES Evropskega parlamenta in Sveta o storitvah na notranjem trgu, kakor je bila spremenjena z Odločbo Komisije 2010/425/EU in Izvedbenim sklepom Komisije 2013/662/EU, vsebuje informacije, ki so jih v skladu s členom 2 (3) Odločbe Komisije 2009/767/ES sporočile države članice. Evropska komisija si prizadeva izboljšati praktično uporabo zanesljivih seznamov držav članic. Temu je namenjeno tudi to spletišče. Želimo zagotavljati pravočasne in točne informacije. Če nas boste opozorili na morebitne napake, jih bomo poskušali čimprej odpraviti. Komisija ne prevzema nikakršne zakonske ali druge odgovornosti glede vsebine nacionalnih zanesljivih seznamov, za katero so odgovorne izključno države članice. Uporabnikom želimo omogočiti nemoteno uporabo s čim manj tehničnimi napakami. Vendar so lahko nekateri podatki in informacije na našem spletišču v datotekah ali obliki, ki niso popolnoma brez napak, zato ne moremo zagotoviti, da takšne težave ne bodo vplivale na zagotavljanje naših storitev. Komisija ne prevzema nobene odgovornosti v zvezi s težavami, ki so posledica uporabe tega spletišča ali povezanega zunanjega spletišča. Izjava ne omejuje odgovornosti Evropske komisije pri kakršnem koli delovanju v nasprotju z veljavno nacionalno zakonodajo, niti ne izključuje odgovornosti za dejanja, ki jih v skladu s to zakonodajo ni mogoče izključiti. ++ Tämä luettelo sisältää komission päätöksen 2009/767/EY 2 artiklan 4 kohdan mukaisesti tiedot, jotka EU-maat ovat toimittaneet komissiolle päätöksen 2009/767/EY 2 artiklan 3 kohdan mukaisesti (komission päätös 2009/767/EY, tehty 16 päivänä lokakuuta 2009, toimenpiteistä sähköisten menettelyjen käytön edistämiseksi keskitettyjä asiointipisteitä käyttäen palveluista sisämarkkinoilla annetun Euroopan parlamentin ja neuvoston direktiivin 2006/123/EY mukaisesti, sellaisena kuin se on muutettuna komission päätöksellä 2010/425/EU ja komissio täytäntöönpanopäätöksellä 2013/662/EU). Euroopan komissio ylläpitää tätä verkkosivustoa helpottaakseen kansallisten luotettavien luetteloiden käyttöä. Pyrimme pitämään tiedot ajantasaisina ja virheettöminä. Pyrimme korjaamaan tietoomme tulleet virheet. Komissio ei kuitenkaan voi olla vastuussa kansallisten luotettavien luetteloiden sisällöstä, joka on yksinomaan jäsenvaltioiden vastuulla. Tavoitteenamme on minimoida teknisten häiriöiden aiheuttamat haitat. Jotkin tiedot sivustollamme on voitu luoda tai muotoilla sellaiseen muotoon tai sellaisiin tiedostoihin, jotka eivät ole virheettömiä, emmekä voi taata, ettei palvelumme keskeydy tai etteivät kyseiset ongelmat muutoin vaikuta siihen. Euroopan komissio ei vastaa ongelmista, jotka johtuvat tämän sivuston tai siihen linkitettyjen ulkopuolisten sivustojen käytöstä. Tämän vastuuvapauslausekkeen tarkoituksena ei ole rajoittaa Euroopan komission vastuuta vastoin sovellettavan kansallisen lain vaatimuksia tai poistaa komission vastuuta seikoista, joiden osalta vastuuta ei sovellettavan kansallisen lain mukaan voida poistaa. ++ Av listan framgår var du kan hitta den information som EU-länderna har anmält, och som kommissionen måste tillhandahålla, enligt artikel 2.3 och 2.4 i kommissionens beslut 2009/767/EG av den 16 oktober 2009 om åtgärder som underlättar användningen av förfaranden på elektronisk väg genom gemensamma kontaktpunkter i enlighet med Europaparlamentets och rådets direktiv 2006/123/EG om tjänster på den inre marknaden, ändrad genom kommissionens beslut 2010/425/EU och kommissionens genomförandebeslut 2013/662/EU. Vi har samlat informationen på den här webbplatsen, så att du lättare ska kunna använda den i praktiken. Vi strävar efter att hålla informationen aktuell och korrekt. Om felaktigheter kommer till vår kännedom, försöker vi att rätta till dem. Vi frånsäger oss dock allt ansvar för de nationella förteckningarna. Medlemsländerna ansvarar helt och hållet själva för innehållet. Vi strävar efter att så långt som möjligt undvika tekniska störningar. En del uppgifter eller information på vår sida kan dock ha skapats eller strukturerats i filer eller format som inte är felfria. Vi kan inte garantera att den service vi tillhandahåller kommer att vara fri från avbrott eller andra störningar som har att göra med sådana problem. Kommissionen frånsäger sig allt ansvar för problem som kan uppstå till följd av att denna webbplats eller någon av dess länkar har använts. Denna ansvarsfriskrivning är inte avsedd att inskränka kommissionens ansvar i strid med tillämplig nationell lagstiftning eller att utesluta ansvar för kommissionen i de fall där friskrivning inte får ske enligt sådan lagstiftning. ++ U skladu s člankom 2. stavkom 4. Odluke Komisije 2009/767/EZ od 16. listopada 2009. o utvrđivanju mjera kojima se olakšava uporaba postupaka elektroničkim putem preko „jedinstvenih kontaktnih točaka” u skladu s Direktivom 2006/123/EZ Europskog parlamenta i Vijeća o uslugama na unutarnjem tržištu, kako je izmijenjena Odlukom Komisije 2010/425/EU i Provedbenom odlukom Komisije 2013/662/EU, trenutačni popis sadržava informacije o kojima su države članice izvijestile u skladu s člankom 2. stavkom 3. Odluke Komisije 2009/767/EZ. Europska Komisija održava ovo web-mjesto kao sredstvo za postizanje interoperabilnosti koje je napravljeno kako bi olakšalo praktičnu primjenu nacionalnih pouzdanih popisa. Naš je cilj ove informacije održavati pravodobnim i točnim. Ukaže li nam se na pogreške, pokušat ćemo ih otkloniti. No, Komisija ne preuzima nikakvu odgovornost za sadržaj nacionalnih pouzdanih popisa, jer su za njega odgovorne isključivo države članice. Cilj nam je smetnje uzrokovane tehničkim pogreškama svesti na minimum. Međutim, postoji mogućnost da su neki podaci i informacije na našim stranicama izrađeni ili strukturirani u datotekama ili formatima koji nisu bez pogrešaka te stoga ne možemo jamčiti da će se naše usluge odvijati bez prekida ili da takvi problemi neće na neki drugi način utjecati na njih. Europska Komisija ne preuzima nikakvu odgovornost u vezi s problemima koji nastanu zbog uporabe ovih stranica ili bilo kojih povezanih vanjskih stranica. Ovom se izjavom o ograničenju odgovornosti ne ograničava odgovornost Europske Komisije u slučaju kršenja uvjeta propisanih primjenjivim nacionalnim pravom niti se isključuje njezina odgovornost u slučajevima u kojima u skladu s tim pravom to nije moguće. ++ ++ 65535 ++ ++ ++ ++ ++ ++ MIIEOzCCAyOgAwIBAgIJAKP8xLe3bmRsMA0GCSqGSIb3DQEBCwUAMFoxCzAJBgNVBAYTAkFUMS8wLQYDVQQKEyZSdW5kZnVuayB1bmQgVGVsZWtvbSBSZWd1bGllcnVuZ3MtR21iSDEaMBgGA1UEAxMRVHJ1c3RlZCBMaXN0IENBIDEwHhcNMTQwMTI4MTgxNTE4WhcNMTcwMTI4MTgxNTE4WjBXMQswCQYDVQQGEwJBVDEvMC0GA1UEChMmUnVuZGZ1bmsgdW5kIFRlbGVrb20gUmVndWxpZXJ1bmdzLUdtYkgxFzAVBgNVBAMTDlRydXN0ZWQgTGlzdCA0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuh3Ht0BXqmhmMcFDPgSV10WyLlwe3PFoIrgeg3cYQEF+YOtiV5nm6dJnlxoXcO5TJIfbXoSdSOYJTtCuQvZDySHTlSvM5Mr29GRjA489ZKE7pEaI9semFeMyvPaJ/EvaG3ShvrQlLebsS4ALk8JXTRTalZmBlbWi9jK2IFMQaLjQN88K2aUrDZqIqRR4WhBP7T4I3dSVYVmi0TR41JWyaVXKWp7b9WJULewVTf0g+72qwtd7VZo0zQuQgAUsT9bOv8K6PyNIMShh3fLXefaIlmXnPsua6bKc1VAjjR91f83koKUOmDIUciFCsyksa/HUV1tAcZdUZsYe/1JGEJ1CEwIDAQABo4IBBTCCAQEwHwYDVR0jBBgwFoAUsJT0MPOFfU37Ha8aHJ6ELK/YXBkwHQYDVR0OBBYEFNlVL81aLTXfTM3az8PKyBbeWvvFMA4GA1UdDwEB/wQEAwIHgDAWBgNVHSAEDzANMAsGCSooAA8AAQEBADAJBgNVHRMEAjAAMBEGA1UdJQQKMAgGBgQAkTcDADA2BgNVHR8ELzAtMCugKaAnhiVodHRwczovL3d3dy5zaWduYXR1ci5ydHIuYXQvdGxjYTEuY3JsMEEGCCsGAQUFBwEBBDUwMzAxBggrBgEFBQcwAoYlaHR0cHM6Ly93d3cuc2lnbmF0dXIucnRyLmF0L3RsY2ExLmNlcjANBgkqhkiG9w0BAQsFAAOCAQEAHrMrSL2PDCplhLKXmrspfEyjDcCxm6LtoHF58gtZ/kuPQEXzib/6ncxp8wu+HzkHLkZd38rVWgXObngHoKY2F6WtO48xtXgJ7zv2f3Km4yvEuXm/Ro7hzizDatuLZdzCiu97rnvRxCbaQV2XV73dmki+a87ybEGFQGVKBfSM0rEy0p0FD+fRtRvwYafvKjzbC93OJOD7FepEKsHO8CHFWG8X4VxPjkKy/R1yPn2tT/yio626AnKRDqy9/bUQFWITzKMHkVNZY1OMTL7WXjmWFc7L+b0Wt15xBO0YuNg3delXE8aNXdizYDlTzbJUpmq8EcuxHQlMMDQUBtyDcj0RcA== ++ ++ ++ ++ ++ MIIEOzCCAyOgAwIBAgIJAKP8xLe3bmRtMA0GCSqGSIb3DQEBCwUAMFoxCzAJBgNVBAYTAkFUMS8wLQYDVQQKEyZSdW5kZnVuayB1bmQgVGVsZWtvbSBSZWd1bGllcnVuZ3MtR21iSDEaMBgGA1UEAxMRVHJ1c3RlZCBMaXN0IENBIDEwHhcNMTQwMTI4MTgzMzI5WhcNMTgwMTI4MTgzMzI5WjBXMQswCQYDVQQGEwJBVDEvMC0GA1UEChMmUnVuZGZ1bmsgdW5kIFRlbGVrb20gUmVndWxpZXJ1bmdzLUdtYkgxFzAVBgNVBAMTDlRydXN0ZWQgTGlzdCA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxsSAzrdy4zFiN1bypCT2LZ5O07y9nTJxNlFXERfTzf0zSEtOKXTjxuRQvXvDSfvvar2au9QDuUEdA+jO9NlBFfHfl95ON/gGhQG/NLplVfVB80y4/iX08O43ZuDXcZbBaNdg6M/2qCwflXBakkwaiF7l2kJQyPl+w9hkSi3LBLRfssJOsk5K8VxaILW680gwVX+9BeShXKn5Fr5vde1G1rAKjs6kNtIlrGLWEXyVeAcdDZNKO16MynSMAUeoyz1k74vdWV1/ixrz2DtgeD/rJOnIiDrBqReJzFyZ74iCIsC4EtiIAg5nEah0krWPH6Yhsurqo8zKYDaZAhmJ2hK39wIDAQABo4IBBTCCAQEwHwYDVR0jBBgwFoAUsJT0MPOFfU37Ha8aHJ6ELK/YXBkwHQYDVR0OBBYEFC9vHwsF0o04l9zC+UONiidHmxfJMA4GA1UdDwEB/wQEAwIHgDAWBgNVHSAEDzANMAsGCSooAA8AAQEBADAJBgNVHRMEAjAAMBEGA1UdJQQKMAgGBgQAkTcDADA2BgNVHR8ELzAtMCugKaAnhiVodHRwczovL3d3dy5zaWduYXR1ci5ydHIuYXQvdGxjYTEuY3JsMEEGCCsGAQUFBwEBBDUwMzAxBggrBgEFBQcwAoYlaHR0cHM6Ly93d3cuc2lnbmF0dXIucnRyLmF0L3RsY2ExLmNlcjANBgkqhkiG9w0BAQsFAAOCAQEAfOCwly06iznOF0juUqqXkC0YoQDwVD8OqlevpJkrvAEl+uYTEa0XzBdTCZ+zXdJW6Icgt+pces+RjeFh4tIQgBkwqPWqmnTqw37ysxgqPO0EHXGu/zLdoA2+8TLLsu9csQ+NY4qNfxFXTWoFqlaUC6Af86Tds7QyjVyqOTMjxS8QKqNfI3bLvc9dSH+oi1v2xsFAl/igoKTqWRhad79lroBRKG6SqNR6Y5WqVFMHToZMD+cdulJE6jrKp3hZQrU/8qkKlqTiem6x2NkKAsGZ13+j25P9Pb3x6hh1gV0A1urI1kG+4cj8UDqLhpPXJN/ZtF95WBaioUhiEae3gojXlA== ++ ++ ++ ++ https://www.signatur.rtr.at/currenttl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ AT ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Rundfunk und Telekom Regulierungs-GmbH ++ Rundfunk und Telekom Regulierungs-GmbH ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/AT ++ ++ ++ ++ ++ ++ ++ ++ ++ MIID3zCCAsegAwIBAgIJAOOTbJMmowFCMA0GCSqGSIb3DQEBBQUAMIGHMS0wKwYDVQQDEyRCZWxnaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxSTBHBgNVBAoTQEZQUyBFY29ub215LCBTTUVzLCBTZWxmLWVtcGxveWVkIGFuZCBFbmVyZ3kgLSBRdWFsaXR5IGFuZCBTYWZldHkxCzAJBgNVBAYTAkJFMB4XDTE0MDIxOTEzMzcxNVoXDTI0MDIxNzEzMzcxNVowgYcxLTArBgNVBAMTJEJlbGdpYW4gVHJ1c3RlZCBMaXN0IFNjaGVtZSBPcGVyYXRvcjFJMEcGA1UEChNARlBTIEVjb25vbXksIFNNRXMsIFNlbGYtZW1wbG95ZWQgYW5kIEVuZXJneSAtIFF1YWxpdHkgYW5kIFNhZmV0eTELMAkGA1UEBhMCQkUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDAgEFkoDPTYDvGk+/IPnGSPm58NRE7mpzLHk8lxpYnTAtbMhn7FWru9GlNi+blYYNOEmzN2E5KO9+7AAAMmx2x8zmEMwc3oUQ7E0WN5Gl+Y+7n6NtX50D/4Sbw4IjVvwwRRru8Coj5vq5Hz3JKTgft8teEpwb5vSFZh6+o9irdX342RJU4AtG78sxZvzIqpa3WsddMf5XDyjnGK3dRgkDuOaBxWEexuUiN4LvO+MacwoaxEqLhEZ6TALGWS2WmNEW3OlUdf7nc0Tz/lnyQsuFn01c4pg56hjyxLtpjyHwNwbTDx+cjBpBveOT9Nb6UfKFHknC5AfrIOWnFLXUmyKD/AgMBAAGjTDBKMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgbAMB0GA1UdDgQWBBRf745pXfv0l1rxBwgOUhlQqteQUTARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQEFBQADggEBAG8j1gOIKEKTd904EepYs1MioBErjXxkAN2zvaZevh3awkB6cGeQUnmDz3ve4ZCJSB4MZ138EkUi2eobXaPyaLv01vl6sM6eUj6QhwNvfGXHP99AOHG8ZyH4IkJgB+8jImhg2danj4VcAosGtvTknYtZ2K+GhRevgAnoryhJ7A7jszwWzaahFwTnunymlBXlrwG9KyBSkg4IhWgc+IgYUgA7rpOZ6zXFPTJQJphiRg7pQECnV1Fvw9ediMGhBnNL3tE/5IKIug2XoJ3Mlh9lho6c8YAhyp2Q16inCLDJksZc1qUqRHo9lmwWnGANWfZvQWRJS0LJvrF7LSL5H/Y4yZo= ++ ++ ++ ++ ++ MIID3zCCAsegAwIBAgIJAIg4aOU7at17MA0GCSqGSIb3DQEBBQUAMIGHMS0wKwYDVQQDEyRCZWxnaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxSTBHBgNVBAoTQEZQUyBFY29ub215LCBTTUVzLCBTZWxmLWVtcGxveWVkIGFuZCBFbmVyZ3kgLSBRdWFsaXR5IGFuZCBTYWZldHkxCzAJBgNVBAYTAkJFMB4XDTE0MDIxOTEzMzcyN1oXDTI0MDYxNjEzMzcyN1owgYcxLTArBgNVBAMTJEJlbGdpYW4gVHJ1c3RlZCBMaXN0IFNjaGVtZSBPcGVyYXRvcjFJMEcGA1UEChNARlBTIEVjb25vbXksIFNNRXMsIFNlbGYtZW1wbG95ZWQgYW5kIEVuZXJneSAtIFF1YWxpdHkgYW5kIFNhZmV0eTELMAkGA1UEBhMCQkUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDAgEFkoDPTYDvGk+/IPnGSPm58NRE7mpzLHk8lxpYnTAtbMhn7FWru9GlNi+blYYNOEmzN2E5KO9+7AAAMmx2x8zmEMwc3oUQ7E0WN5Gl+Y+7n6NtX50D/4Sbw4IjVvwwRRru8Coj5vq5Hz3JKTgft8teEpwb5vSFZh6+o9irdX342RJU4AtG78sxZvzIqpa3WsddMf5XDyjnGK3dRgkDuOaBxWEexuUiN4LvO+MacwoaxEqLhEZ6TALGWS2WmNEW3OlUdf7nc0Tz/lnyQsuFn01c4pg56hjyxLtpjyHwNwbTDx+cjBpBveOT9Nb6UfKFHknC5AfrIOWnFLXUmyKD/AgMBAAGjTDBKMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgbAMB0GA1UdDgQWBBRf745pXfv0l1rxBwgOUhlQqteQUTARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQEFBQADggEBAARQuvNV68TF35U7OsMlmYQKaST7Ep2VytJXinRPFAmMJWM9f59ZkSH86BNi7bLo3llYyfUgEZYLwLQXFImMBvme0FmqNbtYsbz6pNi0kW7yYrNa0Gq27Mh5sMB7+6mWUWNU82zRoFGGAz5lE1ID/w2hLRb5vk+rpY3MatT9BRpGfQP8sxyD2PsWr6sTmR11FY/+iOGVkPnZ9ZzyIPKegEFVfyuuMZWS0Dovyqsk9V392e+Y2IyPZfLRAwlPPoXWNtZ70cu0w3ZSn7/0lHCJtijbSJtZ1fDGggwqDv3imx5dzEDkqKluFQ5YjVL7tSYu/tzplS6Qn2kubGpItEe7R8k= ++ ++ ++ ++ ++ MIID3zCCAsegAwIBAgIJAJH6V+OXuB7aMA0GCSqGSIb3DQEBBQUAMIGHMS0wKwYDVQQDEyRCZWxnaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxSTBHBgNVBAoTQEZQUyBFY29ub215LCBTTUVzLCBTZWxmLWVtcGxveWVkIGFuZCBFbmVyZ3kgLSBRdWFsaXR5IGFuZCBTYWZldHkxCzAJBgNVBAYTAkJFMB4XDTE0MDIxOTEzMzc0MFoXDTI0MTAxNDEzMzc0MFowgYcxLTArBgNVBAMTJEJlbGdpYW4gVHJ1c3RlZCBMaXN0IFNjaGVtZSBPcGVyYXRvcjFJMEcGA1UEChNARlBTIEVjb25vbXksIFNNRXMsIFNlbGYtZW1wbG95ZWQgYW5kIEVuZXJneSAtIFF1YWxpdHkgYW5kIFNhZmV0eTELMAkGA1UEBhMCQkUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDAgEFkoDPTYDvGk+/IPnGSPm58NRE7mpzLHk8lxpYnTAtbMhn7FWru9GlNi+blYYNOEmzN2E5KO9+7AAAMmx2x8zmEMwc3oUQ7E0WN5Gl+Y+7n6NtX50D/4Sbw4IjVvwwRRru8Coj5vq5Hz3JKTgft8teEpwb5vSFZh6+o9irdX342RJU4AtG78sxZvzIqpa3WsddMf5XDyjnGK3dRgkDuOaBxWEexuUiN4LvO+MacwoaxEqLhEZ6TALGWS2WmNEW3OlUdf7nc0Tz/lnyQsuFn01c4pg56hjyxLtpjyHwNwbTDx+cjBpBveOT9Nb6UfKFHknC5AfrIOWnFLXUmyKD/AgMBAAGjTDBKMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgbAMB0GA1UdDgQWBBRf745pXfv0l1rxBwgOUhlQqteQUTARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQEFBQADggEBABSri/BFtWHsvDgFri/fPFXJaQ9a5U1HgfOrg0pcVacnC2ezhZ3Ita1d+nWlaHfUBx2L7pp41G23TZE9Efcb/8RPuYDDcIv2TSKV/hIxthk+IP6avZ6cEuWL3iXhqusRM313QgH8G67EPDmTy9hX0t/3KnBQZ6gmb9SpTnG44pQ8LOfLvpzaT2Z1etBsXp0JED7P0OPJq459S3huIYoM3NTNaU8dLGAYJUR7D2fcvDySvt8xIjO7HtzHer79Uq4bNn8uRRHgKJ2LMBK0LvoVBX0PekQFSXi06xpPA9SjmozZ76dW0fK7uPUOFoXB9LtsZCFsMRjTL9+KhPyhSam2iy8= ++ ++ ++ ++ ++ MIID3zCCAsegAwIBAgIJAK7RpgGHETKPMA0GCSqGSIb3DQEBBQUAMIGHMS0wKwYDVQQDEyRCZWxnaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxSTBHBgNVBAoTQEZQUyBFY29ub215LCBTTUVzLCBTZWxmLWVtcGxveWVkIGFuZCBFbmVyZ3kgLSBRdWFsaXR5IGFuZCBTYWZldHkxCzAJBgNVBAYTAkJFMB4XDTE0MDIxOTEzMzc1MloXDTI1MDIxMTEzMzc1MlowgYcxLTArBgNVBAMTJEJlbGdpYW4gVHJ1c3RlZCBMaXN0IFNjaGVtZSBPcGVyYXRvcjFJMEcGA1UEChNARlBTIEVjb25vbXksIFNNRXMsIFNlbGYtZW1wbG95ZWQgYW5kIEVuZXJneSAtIFF1YWxpdHkgYW5kIFNhZmV0eTELMAkGA1UEBhMCQkUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDAgEFkoDPTYDvGk+/IPnGSPm58NRE7mpzLHk8lxpYnTAtbMhn7FWru9GlNi+blYYNOEmzN2E5KO9+7AAAMmx2x8zmEMwc3oUQ7E0WN5Gl+Y+7n6NtX50D/4Sbw4IjVvwwRRru8Coj5vq5Hz3JKTgft8teEpwb5vSFZh6+o9irdX342RJU4AtG78sxZvzIqpa3WsddMf5XDyjnGK3dRgkDuOaBxWEexuUiN4LvO+MacwoaxEqLhEZ6TALGWS2WmNEW3OlUdf7nc0Tz/lnyQsuFn01c4pg56hjyxLtpjyHwNwbTDx+cjBpBveOT9Nb6UfKFHknC5AfrIOWnFLXUmyKD/AgMBAAGjTDBKMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgbAMB0GA1UdDgQWBBRf745pXfv0l1rxBwgOUhlQqteQUTARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQEFBQADggEBABabI8rU/pW4uiTHk47X838qntx6FJ5iDCs+iaED142+yju/wQVU4J8rjS4UqsdO8wOM4sfyLjMLRRsK60saZ5o2u+tLIj0QrFRytTD1WIuPZxpBjQU8Zj/+aLkr4bQmyqgJ4XzJZ9BMvi3Yv18jQxJSjvGpXaWpUNLNnhENTuzKv8f/0vBn2Inmpg7cwgj2q8qhZ/3r1ZmHETSDmEdjV4ovYruAKX58jwwnRdgacTtgQpB88+zZDtAp3FVJxR9nefCdvjV2nuN++UgA2v8d2u9c8c7ObGd7dL6O9rQCfvBWbw6/h9nkXSJSAjKXS1uvnABtq3fQabHwxNc8rIQPkLk= ++ ++ ++ ++ ++ MIID3zCCAsegAwIBAgIJAOv7FV6q0Or/MA0GCSqGSIb3DQEBBQUAMIGHMS0wKwYDVQQDEyRCZWxnaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxSTBHBgNVBAoTQEZQUyBFY29ub215LCBTTUVzLCBTZWxmLWVtcGxveWVkIGFuZCBFbmVyZ3kgLSBRdWFsaXR5IGFuZCBTYWZldHkxCzAJBgNVBAYTAkJFMB4XDTE0MDIxOTEzMzgwNFoXDTI1MDYxMTEzMzgwNFowgYcxLTArBgNVBAMTJEJlbGdpYW4gVHJ1c3RlZCBMaXN0IFNjaGVtZSBPcGVyYXRvcjFJMEcGA1UEChNARlBTIEVjb25vbXksIFNNRXMsIFNlbGYtZW1wbG95ZWQgYW5kIEVuZXJneSAtIFF1YWxpdHkgYW5kIFNhZmV0eTELMAkGA1UEBhMCQkUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDAgEFkoDPTYDvGk+/IPnGSPm58NRE7mpzLHk8lxpYnTAtbMhn7FWru9GlNi+blYYNOEmzN2E5KO9+7AAAMmx2x8zmEMwc3oUQ7E0WN5Gl+Y+7n6NtX50D/4Sbw4IjVvwwRRru8Coj5vq5Hz3JKTgft8teEpwb5vSFZh6+o9irdX342RJU4AtG78sxZvzIqpa3WsddMf5XDyjnGK3dRgkDuOaBxWEexuUiN4LvO+MacwoaxEqLhEZ6TALGWS2WmNEW3OlUdf7nc0Tz/lnyQsuFn01c4pg56hjyxLtpjyHwNwbTDx+cjBpBveOT9Nb6UfKFHknC5AfrIOWnFLXUmyKD/AgMBAAGjTDBKMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgbAMB0GA1UdDgQWBBRf745pXfv0l1rxBwgOUhlQqteQUTARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQEFBQADggEBAJQt17IzKeqnxakdgysT1FlymocZUUHGhfbQAfr4OEm48LMoN4M5ZeeRMVIwk4jODURuhawtKJ3hRdGB+zTzIMLheOmAGGRDUNrDwctpn8G+RqEFjlgc5yi1ICHBZJrvyud7cPwz8AwMtV+K1iFmbEWqsGASZ96J9uilJJ+RkPcV3Olwtgi3+IxOxHfhmq0PCdRk1k8+c7frdT935Z8SfFgnaPy4RFg2eKdvC2qsvsF3J19eP/BKlGdVVe44yTB3UCE3KSLiySvgM/JXIQN5VE+lGPeURKnoXsW5E71IdUEi30Ptd0YBxTjEairZKyzhgGbZEnBUWSkn6n9uZ5Ai2lo= ++ ++ ++ ++ http://tsl.belgium.be/tsl-be.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ BE ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ FPS Economy, SMEs, Self-employed and Energy - Quality and Safety ++ SPF Economie, PME, Classes moyennes et Energie - Qualité et Sécurité ++ FOD Economie, KMO, Middenstand en Energie - Kwaliteit en Veiligheid ++ FÖD Wirtschaft, KMU, Mittelstand und Energie - Qualität und Sicherheit ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/BE ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIFUTCCBDmgAwIBAgIIM7DFMDyB1XwwDQYJKoZIhvcNAQEFBQAwgYcxgYQwCQYDVQQGDAJCRzAVBgNVBAMMDkNSQyBNZW1iZXJzIENBMBUGA1UECwwOQ1JDIE1lbWJlcnMgQ0EwHAYKCZImiZPyLGQBGRYOY3JjLW1lbWJlcnMtY2EwKwYDVQQKDCRDb21tdW5pY2F0aW9ucyBSZWd1bGF0aW9uIENvbW1pc3Npb24wHhcNMTIxMTE1MTEyODA1WhcNMTcxMTE1MTEyODA1WjCB6DGB5TAJBgNVBAYMAkJHMAsGA1UEEQwEMTAwMDAMBgNVBAcMBVNvZmlhMA8GA1UECwwIQ2hhaXJtYW4wEgYDVQQJDAs2IEd1cmtvIHN0cjAcBgkqhkiG9w0BCQEWD3Zib3poa292QGNyYy5iZzAcBgoJkiaJk/IsZAEZFg5jcmMtbWVtYmVycy1jYTArBgNVBAoMJENvbW11bmljYXRpb25zIFJlZ3VsYXRpb24gQ29tbWlzc2lvbjAvBgNVBAMMKNCS0LXRgdC10LvQuNC9INCR0L7QttC60L7QsiDQkdC+0LbQutC+0LIwggEjMA0GCSqGSIb3DQEBAQUAA4IBEAAwggELAoIBAQCKnw+xckNqW++OppSxnAqaSHILSgT8cR1t7vN4/4lS/kyOzsmyilRHP3MqdduPnx6bAl/oW4lxxU0scHK4qyPJM8RPqvcMNsM5Vlyp8+q5ytZQvbuWBsbHENZ68Nyj0dtaSsZWxaho1JYvE7feTUMQaAIxJ5HCSfij9nHP0PP9XA53MOpKZ+H7NNsBe2t4PFa2MaK5LuS54HYROofSrx6j0LRre0p3T3D/4ZfRH62k2IGikAvS9iK93e9u7GcS8ozNtObDys5AXMyJylgg7gvPccUAAC3tbHERyGp+7tDhRr7qsNgD8jKLVEIIQHgWzm3oA51p1Xppro0MPz4hkhI3AgQAqnrBo4IBWzCCAVcwDgYDVR0PAQH/BAQDAgbAMBEGA1UdJQQKMAgGBgQAkTcDADAkBggrBgEFBQcBAwQYMBYwFAYIKwYBBQUHCwEwCAYGBACORgEBMH8GA1UdIAR4MHYwdAYJKwYBBAH/FAECMGcwNwYIKwYBBQUHAgEWK2h0dHA6Ly93d3cuY3JjLmJnL2ZpbGVzL19iZy9tZW1iZXJzLWNhLmh0bWwwLAYIKwYBBQUHAgIwIBoeQ1JDIFRTTCBTaWduaW5nIENlcnRpZmljYXRlIENQMDoGA1UdHwQzMDEwL6AtoCuGKWh0dHA6Ly93d3cuZWdvdi5iZy9jcmwvY3JjLW1lbWJlcnMtY2EuY3JsMA8GA1UdEwEB/wQFMAMBAQAwHQYDVR0OBBYEFGKuRxwBsTCtBlelS0n99RamUm2/MB8GA1UdIwQYMBaAFAkINvmsvi5j6+G+YL3jm5fJ4lE4MA0GCSqGSIb3DQEBBQUAA4IBAQBnBn/q6hgNLO2RcQZ5BnYPYhG81/lcua8T6Um7lmO4JLP+BXhmFexheR24Hs6RpgDpTwNq4aWb3Juh5GMqtWALIGOMbbegQHQ4Sa0nrVcWsUVStI9oOv8LpRfrECKYHNLjNnVliOa9dYfHcWX5aFuDc78DlBp7HwPX7L1UbK0zMRIlm4dqNfAHGvUrv7pDa1j2etRMCxO9c6Fzzh7fMYJ+/1MP6nu7bz554jCFuz5Q+VVq3m7EyGT2TbGi/m2zCF2gWke6OJamhRf8Fy3dYIS3EDampRsaiNG32Qz3ZKyyRwb6QI9IZouy9zCMKwgDeXiXZP+r1WowMO9QRkmepCGd ++ ++ ++ ++ ++ MIIFWDCCBECgAwIBAgIJAIW0w8KGYDu+MA0GCSqGSIb3DQEBBQUAMIGHMYGEMAkGA1UEBgwCQkcwFQYDVQQDDA5DUkMgTWVtYmVycyBDQTAVBgNVBAsMDkNSQyBNZW1iZXJzIENBMBwGCgmSJomT8ixkARkWDmNyYy1tZW1iZXJzLWNhMCsGA1UECgwkQ29tbXVuaWNhdGlvbnMgUmVndWxhdGlvbiBDb21taXNzaW9uMB4XDTE0MDkwNDEwMDExNFoXDTE5MDkwNDEwMDExNFowge8xgewwCQYDVQQGDAJCRzALBgNVBBEMBDEwMDAwDAYDVQQHDAVTb2ZpYTARBgNVBAsMCkNSQyBNZW1iZXIwEgYDVQQJDAs2IEd1cmtvIHN0cjAcBgoJkiaJk/IsZAEZFg5jcmMtbWVtYmVycy1jYTAdBgkqhkiG9w0BCQEWEGlyb21hbnNrYUBjcmMuYmcwKwYDVQQKDCRDb21tdW5pY2F0aW9ucyBSZWd1bGF0aW9uIENvbW1pc3Npb24wMwYDVQQDDCzQmNGA0LjQvdCwINCh0YLQsNC90YfQtdCy0LAg0KDQvtC80LDQvdGB0LrQsDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALeau49s8E/Amx+zQnH76Vkep/eOntMOpFVKYp2KxhMX8p9pJ0N6iJgJs7DiPSbkqVQ1LnG8+Dj9Z0BQiPgh8Sg7EIxmCf6YVcmWc14naYxYzMqCwbBz3Uu5xOzfE8/0WIyGHQHpHa5DZk8bZBuyKICfGOoKrL1SlCHZ3pkXawPLyyupBjvInRBY3dCfPRDOq6XZVCJKwaQoWhiPYtjB3pgiWlU5Hd7RbiSh2EaV2vVdLvoQ5rb71FdnWUgiW4zjc+2KtoWnWQ0RBTfWCQL6XJgBdXyBA5d9ONUQRfbWKeyq1+9vMXR2H9arW5QD/Sra59NaN6ZaS4WWc6n7NrLhdU8CAwEAAaOCAVswggFXMA4GA1UdDwEB/wQEAwIGwDARBgNVHSUECjAIBgYEAJE3AwAwJAYIKwYBBQUHAQMEGDAWMBQGCCsGAQUFBwsBMAgGBgQAjkYBATB/BgNVHSAEeDB2MHQGCSsGAQQB/xQBAjBnMDcGCCsGAQUFBwIBFitodHRwOi8vd3d3LmNyYy5iZy9maWxlcy9fYmcvbWVtYmVycy1jYS5odG1sMCwGCCsGAQUFBwICMCAaHkNSQyBUU0wgU2lnbmluZyBDZXJ0aWZpY2F0ZSBDUDA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vd3d3LmVnb3YuYmcvY3JsL2NyYy1tZW1iZXJzLWNhLmNybDAPBgNVHRMBAf8EBTADAQEAMB0GA1UdDgQWBBRTRU7qRNyUTqcHzCscgHucWf61qjAfBgNVHSMEGDAWgBQJCDb5rL4uY+vhvmC945uXyeJRODANBgkqhkiG9w0BAQUFAAOCAQEAB3/B1OoF3Pm9fqgEmD1ug7+f8IeGYaRDQWKa3ieFm1Dl6VypydHilogYgFtUjvcOTJYi+INb0HglfOxoqx64RzzEleCSSz2tp5IlL0aKylMqv8Zoe/zPE5Qow7ZEx0M6vHRi8nM0v3RmzeMORdiFQWyvoNuJmPLtTO/UFC3DbabWozmNjGN8/OV8VOyLr637YEP6UpILbvPt9VVn3aC7Ll0SoxRH7kcfiCQ+RJYhB2DJVhvXnOXw1Jzeuyu9a8AVUrb2Aaw9sK3tSWQbCZeg1rxsMuEYpFUqM982ClVCAWG/X04S4DYthY1U9RDE1fGNzKKs/XtzdhiZTXtlW5jyFA== ++ ++ ++ ++ http://crc.bg/files/_bg/TSL-CRC-BG-signed.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ BG ++ ++ ++ application/pdf ++ ++ ++ ++ Communications Regulation Commission ++ Комисия за регулиране на съобщенията ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/BG ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIFUTCCBDmgAwIBAgIIM7DFMDyB1XwwDQYJKoZIhvcNAQEFBQAwgYcxgYQwCQYDVQQGDAJCRzAVBgNVBAMMDkNSQyBNZW1iZXJzIENBMBUGA1UECwwOQ1JDIE1lbWJlcnMgQ0EwHAYKCZImiZPyLGQBGRYOY3JjLW1lbWJlcnMtY2EwKwYDVQQKDCRDb21tdW5pY2F0aW9ucyBSZWd1bGF0aW9uIENvbW1pc3Npb24wHhcNMTIxMTE1MTEyODA1WhcNMTcxMTE1MTEyODA1WjCB6DGB5TAJBgNVBAYMAkJHMAsGA1UEEQwEMTAwMDAMBgNVBAcMBVNvZmlhMA8GA1UECwwIQ2hhaXJtYW4wEgYDVQQJDAs2IEd1cmtvIHN0cjAcBgkqhkiG9w0BCQEWD3Zib3poa292QGNyYy5iZzAcBgoJkiaJk/IsZAEZFg5jcmMtbWVtYmVycy1jYTArBgNVBAoMJENvbW11bmljYXRpb25zIFJlZ3VsYXRpb24gQ29tbWlzc2lvbjAvBgNVBAMMKNCS0LXRgdC10LvQuNC9INCR0L7QttC60L7QsiDQkdC+0LbQutC+0LIwggEjMA0GCSqGSIb3DQEBAQUAA4IBEAAwggELAoIBAQCKnw+xckNqW++OppSxnAqaSHILSgT8cR1t7vN4/4lS/kyOzsmyilRHP3MqdduPnx6bAl/oW4lxxU0scHK4qyPJM8RPqvcMNsM5Vlyp8+q5ytZQvbuWBsbHENZ68Nyj0dtaSsZWxaho1JYvE7feTUMQaAIxJ5HCSfij9nHP0PP9XA53MOpKZ+H7NNsBe2t4PFa2MaK5LuS54HYROofSrx6j0LRre0p3T3D/4ZfRH62k2IGikAvS9iK93e9u7GcS8ozNtObDys5AXMyJylgg7gvPccUAAC3tbHERyGp+7tDhRr7qsNgD8jKLVEIIQHgWzm3oA51p1Xppro0MPz4hkhI3AgQAqnrBo4IBWzCCAVcwDgYDVR0PAQH/BAQDAgbAMBEGA1UdJQQKMAgGBgQAkTcDADAkBggrBgEFBQcBAwQYMBYwFAYIKwYBBQUHCwEwCAYGBACORgEBMH8GA1UdIAR4MHYwdAYJKwYBBAH/FAECMGcwNwYIKwYBBQUHAgEWK2h0dHA6Ly93d3cuY3JjLmJnL2ZpbGVzL19iZy9tZW1iZXJzLWNhLmh0bWwwLAYIKwYBBQUHAgIwIBoeQ1JDIFRTTCBTaWduaW5nIENlcnRpZmljYXRlIENQMDoGA1UdHwQzMDEwL6AtoCuGKWh0dHA6Ly93d3cuZWdvdi5iZy9jcmwvY3JjLW1lbWJlcnMtY2EuY3JsMA8GA1UdEwEB/wQFMAMBAQAwHQYDVR0OBBYEFGKuRxwBsTCtBlelS0n99RamUm2/MB8GA1UdIwQYMBaAFAkINvmsvi5j6+G+YL3jm5fJ4lE4MA0GCSqGSIb3DQEBBQUAA4IBAQBnBn/q6hgNLO2RcQZ5BnYPYhG81/lcua8T6Um7lmO4JLP+BXhmFexheR24Hs6RpgDpTwNq4aWb3Juh5GMqtWALIGOMbbegQHQ4Sa0nrVcWsUVStI9oOv8LpRfrECKYHNLjNnVliOa9dYfHcWX5aFuDc78DlBp7HwPX7L1UbK0zMRIlm4dqNfAHGvUrv7pDa1j2etRMCxO9c6Fzzh7fMYJ+/1MP6nu7bz554jCFuz5Q+VVq3m7EyGT2TbGi/m2zCF2gWke6OJamhRf8Fy3dYIS3EDampRsaiNG32Qz3ZKyyRwb6QI9IZouy9zCMKwgDeXiXZP+r1WowMO9QRkmepCGd ++ ++ ++ ++ ++ MIIFWDCCBECgAwIBAgIJAIW0w8KGYDu+MA0GCSqGSIb3DQEBBQUAMIGHMYGEMAkGA1UEBgwCQkcwFQYDVQQDDA5DUkMgTWVtYmVycyBDQTAVBgNVBAsMDkNSQyBNZW1iZXJzIENBMBwGCgmSJomT8ixkARkWDmNyYy1tZW1iZXJzLWNhMCsGA1UECgwkQ29tbXVuaWNhdGlvbnMgUmVndWxhdGlvbiBDb21taXNzaW9uMB4XDTE0MDkwNDEwMDExNFoXDTE5MDkwNDEwMDExNFowge8xgewwCQYDVQQGDAJCRzALBgNVBBEMBDEwMDAwDAYDVQQHDAVTb2ZpYTARBgNVBAsMCkNSQyBNZW1iZXIwEgYDVQQJDAs2IEd1cmtvIHN0cjAcBgoJkiaJk/IsZAEZFg5jcmMtbWVtYmVycy1jYTAdBgkqhkiG9w0BCQEWEGlyb21hbnNrYUBjcmMuYmcwKwYDVQQKDCRDb21tdW5pY2F0aW9ucyBSZWd1bGF0aW9uIENvbW1pc3Npb24wMwYDVQQDDCzQmNGA0LjQvdCwINCh0YLQsNC90YfQtdCy0LAg0KDQvtC80LDQvdGB0LrQsDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALeau49s8E/Amx+zQnH76Vkep/eOntMOpFVKYp2KxhMX8p9pJ0N6iJgJs7DiPSbkqVQ1LnG8+Dj9Z0BQiPgh8Sg7EIxmCf6YVcmWc14naYxYzMqCwbBz3Uu5xOzfE8/0WIyGHQHpHa5DZk8bZBuyKICfGOoKrL1SlCHZ3pkXawPLyyupBjvInRBY3dCfPRDOq6XZVCJKwaQoWhiPYtjB3pgiWlU5Hd7RbiSh2EaV2vVdLvoQ5rb71FdnWUgiW4zjc+2KtoWnWQ0RBTfWCQL6XJgBdXyBA5d9ONUQRfbWKeyq1+9vMXR2H9arW5QD/Sra59NaN6ZaS4WWc6n7NrLhdU8CAwEAAaOCAVswggFXMA4GA1UdDwEB/wQEAwIGwDARBgNVHSUECjAIBgYEAJE3AwAwJAYIKwYBBQUHAQMEGDAWMBQGCCsGAQUFBwsBMAgGBgQAjkYBATB/BgNVHSAEeDB2MHQGCSsGAQQB/xQBAjBnMDcGCCsGAQUFBwIBFitodHRwOi8vd3d3LmNyYy5iZy9maWxlcy9fYmcvbWVtYmVycy1jYS5odG1sMCwGCCsGAQUFBwICMCAaHkNSQyBUU0wgU2lnbmluZyBDZXJ0aWZpY2F0ZSBDUDA6BgNVHR8EMzAxMC+gLaArhilodHRwOi8vd3d3LmVnb3YuYmcvY3JsL2NyYy1tZW1iZXJzLWNhLmNybDAPBgNVHRMBAf8EBTADAQEAMB0GA1UdDgQWBBRTRU7qRNyUTqcHzCscgHucWf61qjAfBgNVHSMEGDAWgBQJCDb5rL4uY+vhvmC945uXyeJRODANBgkqhkiG9w0BAQUFAAOCAQEAB3/B1OoF3Pm9fqgEmD1ug7+f8IeGYaRDQWKa3ieFm1Dl6VypydHilogYgFtUjvcOTJYi+INb0HglfOxoqx64RzzEleCSSz2tp5IlL0aKylMqv8Zoe/zPE5Qow7ZEx0M6vHRi8nM0v3RmzeMORdiFQWyvoNuJmPLtTO/UFC3DbabWozmNjGN8/OV8VOyLr637YEP6UpILbvPt9VVn3aC7Ll0SoxRH7kcfiCQ+RJYhB2DJVhvXnOXw1Jzeuyu9a8AVUrb2Aaw9sK3tSWQbCZeg1rxsMuEYpFUqM982ClVCAWG/X04S4DYthY1U9RDE1fGNzKKs/XtzdhiZTXtlW5jyFA== ++ ++ ++ ++ http://crc.bg/files/_bg/TSL-CRC-BG-signed.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ BG ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Communications Regulation Commission ++ Комисия за регулиране на съобщенията ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/BG ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDeDCCAmCgAwIBAgIFEgFbGzYwDQYJKoZIhvcNAQELBQAwVTELMAkGA1UEBhMCQ1kxMDAuBgNVBAoMJ0RlcGFydG1lbnQgb2YgRWxlY3Ryb25pYyBDb21tdW5pY2F0aW9uczEUMBIGA1UEAwwLVFNMIFNpZ25lcjIwHhcNMTQwNzAxMDAwMDAwWhcNMTgwNzAxMDAwMDAwWjBVMQswCQYDVQQGEwJDWTEwMC4GA1UECgwnRGVwYXJ0bWVudCBvZiBFbGVjdHJvbmljIENvbW11bmljYXRpb25zMRQwEgYDVQQDDAtUU0wgU2lnbmVyMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM2l0vZRrFtdWArytp3quq29byXDB/GbUbm6xKlB63bhyh/SxGDvxDx3PGt1T4b8a89bC0RnmeRpgGRGWwNON2xKnMcDzMYmCi4cmNS7IrTF6GhVbpgLXCsx5JOU+oz0BXE2ASlF3h/r6AuT3oUzGapacNX4LhKtjU8MCuES0xU/V3x0H/FCOu1ziwfnt7wv29wGm39y8h5CTkiAmKxoZThJT49EBnwnBTA09v+5q+qROABNQGYbVkrwyym5hbYEIxHfA5pRMd/QBJhUGL6HhYZQpgzIXjYCaH5+c4U1LqOJoPehW8uocesSnAvpE1lx3JyXkYclBCKO9jVE5UA1c4kCAwEAAaNPME0wHQYDVR0OBBYEFAfjuk4G4S9SC/QxPyHuCFHrN5KaMAkGA1UdEwQCMAAwDgYDVR0PAQH/BAQDAgbAMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAjj+4NRRsV840YvUwC2BwiqdvySnaJaDgjSx0+TQjEcpQhffDIsDTV2kZpz8rERzcQnf/W0IYXZ4XvHjjCgPocZp8lcKC8V2bK506C9vdMP7s0aiTQT2Xx8g2V89Z71mM7KFh2aNIHGfjbOZbzlG3aW/qPlQ0LtL7gKLc4LdBbhBbig1b7fCmuk29yAnxRNZ59ql+oCx9bT2axZf0E0BVsp503pVG5g872e+UUAZvc4vAYSFSY4d/wTr4fd1+Oiaq7GuIMdkaM5rdue9Eo5wib9TVG4OWtzTcx8Dgz3UT+lXmkW787EmZpVfnhD1L/SSo8V21uNXpq+qNC9bPkqWyYQ== ++ ++ ++ ++ ++ MIIDizCCAnOgAwIBAgIFEuB6lFUwDQYJKoZIhvcNAQELBQAwVTELMAkGA1UEBhMCQ1kxMDAuBgNVBAoMJ0RlcGFydG1lbnQgb2YgRWxlY3Ryb25pYyBDb21tdW5pY2F0aW9uczEUMBIGA1UEAwwLVFNMIFNpZ25lcjEwHhcNMTQwMTAxMDAwMDAwWhcNMTgwMTAxMDAwMDAwWjBVMQswCQYDVQQGEwJDWTEwMC4GA1UECgwnRGVwYXJ0bWVudCBvZiBFbGVjdHJvbmljIENvbW11bmljYXRpb25zMRQwEgYDVQQDDAtUU0wgU2lnbmVyMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgqtGqEzoVJC/xkzkYImpQE659JKIhlBfqHd0k59JGppdretL//imQPAccnauds6+VKVnDJnbGFZfyfsSXHR8BWUVdko8ih8gHUQSarPkQC1XxSegybrClx19+TNJKlQulaUFPFifU4RQWl34uzmCHdDqlswGiT4rxTMvvsiWELJ0xEEaZ6LiKPnFZYjJ8rwqkTiaVL6r+cfmmoQexzVhbeU2nVeQME6vlsmrIOD42X/9P5/380eTCaASLNxrO1iRiF0LhD5NwucexryYPs+TAPh2Lz+URSCKNygu4lJsG3TFvNkiSYoJHojcGg43Qf3v0aLk54d83xHFyMwnRsUY8CAwEAAaNiMGAwHQYDVR0OBBYEFPTmzt/K3ZC/RRr3CNowzdpCOqJlMAkGA1UdEwQCMAAwDgYDVR0PAQH/BAQDAgbAMBEGA1UdIAQKMAgwBgYEVR0gADARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQELBQADggEBABkEtoDdOZaE7l+mjihOhmUAfpCv/zxj7wdlno0IvNhCvAfUSP5b5oBJ30LdyerUPBH/ZQdPJoRKthUG7QDePxcRb9rNK84cCRFtM3RpLgfgOAAjUUvvo0MZFf0D3Fj3PP/Jq+/SdHrm1X9j2adG3JCSuVEl7Wp9TZ8rm1isE3+DlQyP1rHzT0gEwpg4YF0pI0vB8nUzHN6JqFu0FAQphA2zuuceIblNDkmljx4vtRUfEQEv9EIbh72j9QN1fObDi/rd8LutAsxxGLRDMJv9WC1uSmEo6pwJ4Vme0mx3uaxNL/Dbpb/SjXJdLrKtHMLKntGvOP6NvrmTr55mIPkaoWk= ++ ++ ++ ++ http://www.mcw.gov.cy/mcw/dec/dec.nsf/all/B28C11BBFDBAC045C2257E0D002937E9/$file/TSL-CY-sign.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ CY ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Department of Electronic Communications ++ Τμήμα Ηλεκτρονικών Επικοινωνιών ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/CY ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIFqDCCBJCgAwIBAgIEAKhcEzANBgkqhkiG9w0BAQsFADCBtzELMAkGA1UEBhMCQ1oxOjA4BgNVBAMMMUkuQ0EgLSBRdWFsaWZpZWQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHksIDA5LzIwMDkxLTArBgNVBAoMJFBydm7DrSBjZXJ0aWZpa2HEjW7DrSBhdXRvcml0YSwgYS5zLjE9MDsGA1UECww0SS5DQSAtIEFjY3JlZGl0ZWQgUHJvdmlkZXIgb2YgQ2VydGlmaWNhdGlvbiBTZXJ2aWNlczAeFw0xNTA2MDMxMTI4NTZaFw0xNjA2MDIxMTI4NTZaMH4xCzAJBgNVBAYTAkNaMR0wGwYDVQQDDBRJbmcuIFJhZG9tw61yIMWgaW1lazE3MDUGA1UECgwuTWluaXN0cnkgb2YgdGhlIEludGVyaW9yIG9mIHRoZSBDemVjaCBSZXB1YmxpYzEXMBUGA1UEBRMOSUNBIC0gMTAzNDQ4MjEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCawspfUgMcHE6NKJmbpUU0o3e1+qJPJnw7MMd/c+aSummSNw8DnoYrsjQmC7Iii1U4JIytzlYwJ/uOkvT7XG3z7dkkl9395RC8gVMnarGOIrkDbRo5PbzKUfKa92faFvbnn2uvHPZDIreEdHvX35hR4BOdaeH29gSmSzBhDvZ4xnH6uFyh/SX5cIv/5QJRHz399ZlfA4K9cZG2aAMJzh968ctQqxL7jjAmMI3Re2GZFLHO9J5dYkFmcHgty1Qp/PYUV473m2V8Y3nZi1imi9gSVxuERMjM+0BOUHWd1pyGCcqSSMN86jqNESJFW31fzR7fstd08UG5MPRj0/m8NpfRAgMBAAGjggHyMIIB7jARBgNVHSUECjAIBgYEAJE3AwAwgd8GA1UdIASB1zCB1DCB0QYNKwYBBAGBuEgBAR4DATCBvzCBvAYIKwYBBQUHAgIwga8agaxUZW50byBrdmFsaWZpa292YW55IGNlcnRpZmlrYXQgamUgdnlkYW4gcG9kbGUgemFrb25hIENlc2tlIHJlcHVibGlreSBjLiAyMjcvMjAwMCBTYi4gdiBwbGF0bmVtIHpuZW5pL1RoaXMgaXMgcXVhbGlmaWVkIGNlcnRpZmljYXRlIGFjY29yZGluZyB0byBDemVjaCBBY3QgTm8uIDIyNy8yMDAwIENvbGwuMIGBBgNVHR8EejB4MCagJKAihiBodHRwOi8vcWNybGRwMS5pY2EuY3ovcWljYTA5LmNybDAmoCSgIoYgaHR0cDovL3FjcmxkcDIuaWNhLmN6L3FpY2EwOS5jcmwwJqAkoCKGIGh0dHA6Ly9xY3JsZHAzLmljYS5jei9xaWNhMDkuY3JsMAkGA1UdEwQCMAAwDgYDVR0PAQH/BAQDAgZAMBgGCCsGAQUFBwEDBAwwCjAIBgYEAI5GAQEwHwYDVR0jBBgwFoAUecvQI+k6Z3CRdE/TUeLgIP3hKPswHQYDVR0OBBYEFC6CFzYHEofr962LdU1w+xy0PFJXMA0GCSqGSIb3DQEBCwUAA4IBAQCB2lBGEdViXN7Q3r5voDGlZGE4kzeK3+eXLlyDIFEPrRV/MeIN5+Rtk7MCWZmHUbbzFoJzsqvBG5yBY5uNlhJZZ4Ee7xrHykrxpCx4CrD+hkqLNeaI+IocTxMG/4y0adaEx7ooVZH7+elE+0WVIBzPPuWH298zVrdS6LKNAjodqFWK8R84lLZPjh+lFHciznwgaKOz+JKvBuBQYznP1DAvQ21Cspe6lB9XpVQA9O0mwoCiXD6buW1COz2MGwMLwn6k/eJKfEqWzOa8cdYm2GpdxAAnU9XE1aLnbjHBBlAf6uZ+/YOV8JgiDEOCCVmnt9aPZZmX8HIqh8FxC5ykQ46T ++ ++ ++ ++ ++ MIIFDzCCA/egAwIBAgIBATANBgkqhkiG9w0BAQsFADCBtjELMAkGA1UEBhMCQ1oxDzANBgNVBAcTBlByYWd1ZTE3MDUGA1UEChMuTWluaXN0cnkgb2YgdGhlIEludGVyaW9yIG9mIHRoZSBDemVjaCBSZXB1YmxpYzE3MDUGA1UEAxMuTWluaXN0cnkgb2YgdGhlIEludGVyaW9yIG9mIHRoZSBDemVjaCBSZXB1YmxpYzEkMCIGCSqGSIb3DQEJARYVcmFkb21pci5zaW1la0BtdmNyLmN6MB4XDTE0MDMwMTA1MjAwMFoXDTE5MDMwMTA1MjAwMFowgbYxCzAJBgNVBAYTAkNaMQ8wDQYDVQQHEwZQcmFndWUxNzA1BgNVBAoTLk1pbmlzdHJ5IG9mIHRoZSBJbnRlcmlvciBvZiB0aGUgQ3plY2ggUmVwdWJsaWMxNzA1BgNVBAMTLk1pbmlzdHJ5IG9mIHRoZSBJbnRlcmlvciBvZiB0aGUgQ3plY2ggUmVwdWJsaWMxJDAiBgkqhkiG9w0BCQEWFXJhZG9taXIuc2ltZWtAbXZjci5jejCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO3PmohbCGpwe/1BnjkOsTnULvFONX0/hUAFi7wJ4xSK9cShj2OLxJEa56tIdD7UBz5PMqsEhaGTH20/7qkT92uk/F+sZdveVbEha5VlVyAVGvO2ReVCC0e7NxJqyNVGzyFxIFfcIAO2aTQpu1+kAGRmPoqES+7zO9J2L1s5C0H8fzvCNEEA9k0aBigstyxrlWE3odzLXDlAYTT5fcMIZkuAOe7dbK4yOFDZpe/5yCG4PdiD021NIVjA/vm2t092uEcBzqIcaeziusWMn2EAACD7d9wkP538j5htpldsSFUPgatc2rkv96vk9gwPdR0IxUsUaEhxjGuN+p6h3puoFxECAwEAAaOCASQwggEgMAkGA1UdEwQCMAAwHQYDVR0OBBYEFFGuBukXCJgG9hD9xpOCmxGMW4BoMIHjBgNVHSMEgdswgdiAFFGuBukXCJgG9hD9xpOCmxGMW4BooYG8pIG5MIG2MQswCQYDVQQGEwJDWjEPMA0GA1UEBxMGUHJhZ3VlMTcwNQYDVQQKEy5NaW5pc3RyeSBvZiB0aGUgSW50ZXJpb3Igb2YgdGhlIEN6ZWNoIFJlcHVibGljMTcwNQYDVQQDEy5NaW5pc3RyeSBvZiB0aGUgSW50ZXJpb3Igb2YgdGhlIEN6ZWNoIFJlcHVibGljMSQwIgYJKoZIhvcNAQkBFhVyYWRvbWlyLnNpbWVrQG12Y3IuY3qCAQEwDgYDVR0PAQH/BAQDAgZAMA0GCSqGSIb3DQEBCwUAA4IBAQDS9g+4r+i0yu3dHp1L3K8nrdexpw9qTOgiNpydf2uDHltlnRVgXuyn38KBhyI89uDYILN32owBbMuygu04sehRB/sfcWMpeWbH7KAneShUaZijpD4UiUdoLHROEoxhC9hCH2Ygu4phZN4Wk+xIQ9LtiAIQsjdncIrUPd0+NGsAdedClDw9rjwAatohAHUTQEHzFolL7KVzj2ZtmeguR5t+QBeRchgoL4u5zE7B4uaH/zA00AKI1p5oVPekF29PGA0PVmj1BuLb5q845tNDVrprxjL8lcvVTobt6MVDAogwsnxPwY8V9cnWg1qxqeU72FIRbwy4EgkbpAHayyk9xAU1 ++ ++ ++ ++ http://tsl.gov.cz/publ/TSL_CZ.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ CZ ++ ++ ++ application/pdf ++ ++ ++ ++ Ministry of the Interior of the Czech Republic ++ Ministerstvo vnitra České republiky ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/CZ ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIFqDCCBJCgAwIBAgIEAKhcEzANBgkqhkiG9w0BAQsFADCBtzELMAkGA1UEBhMCQ1oxOjA4BgNVBAMMMUkuQ0EgLSBRdWFsaWZpZWQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHksIDA5LzIwMDkxLTArBgNVBAoMJFBydm7DrSBjZXJ0aWZpa2HEjW7DrSBhdXRvcml0YSwgYS5zLjE9MDsGA1UECww0SS5DQSAtIEFjY3JlZGl0ZWQgUHJvdmlkZXIgb2YgQ2VydGlmaWNhdGlvbiBTZXJ2aWNlczAeFw0xNTA2MDMxMTI4NTZaFw0xNjA2MDIxMTI4NTZaMH4xCzAJBgNVBAYTAkNaMR0wGwYDVQQDDBRJbmcuIFJhZG9tw61yIMWgaW1lazE3MDUGA1UECgwuTWluaXN0cnkgb2YgdGhlIEludGVyaW9yIG9mIHRoZSBDemVjaCBSZXB1YmxpYzEXMBUGA1UEBRMOSUNBIC0gMTAzNDQ4MjEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCawspfUgMcHE6NKJmbpUU0o3e1+qJPJnw7MMd/c+aSummSNw8DnoYrsjQmC7Iii1U4JIytzlYwJ/uOkvT7XG3z7dkkl9395RC8gVMnarGOIrkDbRo5PbzKUfKa92faFvbnn2uvHPZDIreEdHvX35hR4BOdaeH29gSmSzBhDvZ4xnH6uFyh/SX5cIv/5QJRHz399ZlfA4K9cZG2aAMJzh968ctQqxL7jjAmMI3Re2GZFLHO9J5dYkFmcHgty1Qp/PYUV473m2V8Y3nZi1imi9gSVxuERMjM+0BOUHWd1pyGCcqSSMN86jqNESJFW31fzR7fstd08UG5MPRj0/m8NpfRAgMBAAGjggHyMIIB7jARBgNVHSUECjAIBgYEAJE3AwAwgd8GA1UdIASB1zCB1DCB0QYNKwYBBAGBuEgBAR4DATCBvzCBvAYIKwYBBQUHAgIwga8agaxUZW50byBrdmFsaWZpa292YW55IGNlcnRpZmlrYXQgamUgdnlkYW4gcG9kbGUgemFrb25hIENlc2tlIHJlcHVibGlreSBjLiAyMjcvMjAwMCBTYi4gdiBwbGF0bmVtIHpuZW5pL1RoaXMgaXMgcXVhbGlmaWVkIGNlcnRpZmljYXRlIGFjY29yZGluZyB0byBDemVjaCBBY3QgTm8uIDIyNy8yMDAwIENvbGwuMIGBBgNVHR8EejB4MCagJKAihiBodHRwOi8vcWNybGRwMS5pY2EuY3ovcWljYTA5LmNybDAmoCSgIoYgaHR0cDovL3FjcmxkcDIuaWNhLmN6L3FpY2EwOS5jcmwwJqAkoCKGIGh0dHA6Ly9xY3JsZHAzLmljYS5jei9xaWNhMDkuY3JsMAkGA1UdEwQCMAAwDgYDVR0PAQH/BAQDAgZAMBgGCCsGAQUFBwEDBAwwCjAIBgYEAI5GAQEwHwYDVR0jBBgwFoAUecvQI+k6Z3CRdE/TUeLgIP3hKPswHQYDVR0OBBYEFC6CFzYHEofr962LdU1w+xy0PFJXMA0GCSqGSIb3DQEBCwUAA4IBAQCB2lBGEdViXN7Q3r5voDGlZGE4kzeK3+eXLlyDIFEPrRV/MeIN5+Rtk7MCWZmHUbbzFoJzsqvBG5yBY5uNlhJZZ4Ee7xrHykrxpCx4CrD+hkqLNeaI+IocTxMG/4y0adaEx7ooVZH7+elE+0WVIBzPPuWH298zVrdS6LKNAjodqFWK8R84lLZPjh+lFHciznwgaKOz+JKvBuBQYznP1DAvQ21Cspe6lB9XpVQA9O0mwoCiXD6buW1COz2MGwMLwn6k/eJKfEqWzOa8cdYm2GpdxAAnU9XE1aLnbjHBBlAf6uZ+/YOV8JgiDEOCCVmnt9aPZZmX8HIqh8FxC5ykQ46T ++ ++ ++ ++ ++ MIIFDzCCA/egAwIBAgIBATANBgkqhkiG9w0BAQsFADCBtjELMAkGA1UEBhMCQ1oxDzANBgNVBAcTBlByYWd1ZTE3MDUGA1UEChMuTWluaXN0cnkgb2YgdGhlIEludGVyaW9yIG9mIHRoZSBDemVjaCBSZXB1YmxpYzE3MDUGA1UEAxMuTWluaXN0cnkgb2YgdGhlIEludGVyaW9yIG9mIHRoZSBDemVjaCBSZXB1YmxpYzEkMCIGCSqGSIb3DQEJARYVcmFkb21pci5zaW1la0BtdmNyLmN6MB4XDTE0MDMwMTA1MjAwMFoXDTE5MDMwMTA1MjAwMFowgbYxCzAJBgNVBAYTAkNaMQ8wDQYDVQQHEwZQcmFndWUxNzA1BgNVBAoTLk1pbmlzdHJ5IG9mIHRoZSBJbnRlcmlvciBvZiB0aGUgQ3plY2ggUmVwdWJsaWMxNzA1BgNVBAMTLk1pbmlzdHJ5IG9mIHRoZSBJbnRlcmlvciBvZiB0aGUgQ3plY2ggUmVwdWJsaWMxJDAiBgkqhkiG9w0BCQEWFXJhZG9taXIuc2ltZWtAbXZjci5jejCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO3PmohbCGpwe/1BnjkOsTnULvFONX0/hUAFi7wJ4xSK9cShj2OLxJEa56tIdD7UBz5PMqsEhaGTH20/7qkT92uk/F+sZdveVbEha5VlVyAVGvO2ReVCC0e7NxJqyNVGzyFxIFfcIAO2aTQpu1+kAGRmPoqES+7zO9J2L1s5C0H8fzvCNEEA9k0aBigstyxrlWE3odzLXDlAYTT5fcMIZkuAOe7dbK4yOFDZpe/5yCG4PdiD021NIVjA/vm2t092uEcBzqIcaeziusWMn2EAACD7d9wkP538j5htpldsSFUPgatc2rkv96vk9gwPdR0IxUsUaEhxjGuN+p6h3puoFxECAwEAAaOCASQwggEgMAkGA1UdEwQCMAAwHQYDVR0OBBYEFFGuBukXCJgG9hD9xpOCmxGMW4BoMIHjBgNVHSMEgdswgdiAFFGuBukXCJgG9hD9xpOCmxGMW4BooYG8pIG5MIG2MQswCQYDVQQGEwJDWjEPMA0GA1UEBxMGUHJhZ3VlMTcwNQYDVQQKEy5NaW5pc3RyeSBvZiB0aGUgSW50ZXJpb3Igb2YgdGhlIEN6ZWNoIFJlcHVibGljMTcwNQYDVQQDEy5NaW5pc3RyeSBvZiB0aGUgSW50ZXJpb3Igb2YgdGhlIEN6ZWNoIFJlcHVibGljMSQwIgYJKoZIhvcNAQkBFhVyYWRvbWlyLnNpbWVrQG12Y3IuY3qCAQEwDgYDVR0PAQH/BAQDAgZAMA0GCSqGSIb3DQEBCwUAA4IBAQDS9g+4r+i0yu3dHp1L3K8nrdexpw9qTOgiNpydf2uDHltlnRVgXuyn38KBhyI89uDYILN32owBbMuygu04sehRB/sfcWMpeWbH7KAneShUaZijpD4UiUdoLHROEoxhC9hCH2Ygu4phZN4Wk+xIQ9LtiAIQsjdncIrUPd0+NGsAdedClDw9rjwAatohAHUTQEHzFolL7KVzj2ZtmeguR5t+QBeRchgoL4u5zE7B4uaH/zA00AKI1p5oVPekF29PGA0PVmj1BuLb5q845tNDVrprxjL8lcvVTobt6MVDAogwsnxPwY8V9cnWg1qxqeU72FIRbwy4EgkbpAHayyk9xAU1 ++ ++ ++ ++ http://tsl.gov.cz/publ/TSL_CZ.xtsl ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ CZ ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Ministry of the Interior of the Czech Republic ++ Ministerstvo vnitra České republiky ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/CZ ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIECjCCAvKgAwIBAgICBH8wDQYJKoZIhvcNAQENBQAwPzELMAkGA1UEBhMCREUxGjAYBgNVBAoMEUJ1bmRlc25ldHphZ2VudHVyMRQwEgYDVQQDDAsxNFItQ0EgMTpQTjAeFw0xNDA0MTEwODQ0NTJaFw0xOTA0MTEwNjM1MDBaMEAxCzAJBgNVBAYTAkRFMRowGAYDVQQKDBFCdW5kZXNuZXR6YWdlbnR1cjEVMBMGA1UEAwwMMTRSLVRTTCAxOlBOMIIBIzANBgkqhkiG9w0BAQEFAAOCARAAMIIBCwKCAQEAkyyMPdtWEDtPcT+eq+KKYaQ5G+6Hbpl9i6b3nBN6+3DROzqaVqtehrCpuE5CmUdqR2lixvHTbEjYIlk3jsmPTxtImfZ66mwKUoenulI6jE5/lvRNtqKWQbLTd7nrEJAecy/ouHWZ6xiDB/ytftxJhAREUqGPfJiWnCFoyRrDSW6GQ8QQbJnlHMLuxs30KNUIRbVOOX/jb8oeqFI0zXUeSH/AMrshRM3G8W941tee8nn5jK2CZvjOuYEI1hNpcXAzBTuaFRJhLdsvg0SfgW0T6tFhuUbG5eW9wraGOMCNdzfcNnjmFitVrBRtl9yIfyVn2Tgd2DfJ9cHLJGmbTBnUIwIEQAAAgaOCAQwwggEIMA4GA1UdDwEB/wQEAwIGQDAdBgNVHQ4EFgQUYqVd8yHV7CHE+JCq3zLhvyLM43wwEQYDVR0lBAowCAYGBACRNwMAMBgGCCsGAQUFBwEDBAwwCjAIBgYEAI5GAQEwHwYDVR0jBBgwFoAU/fNQhDCO7COa9TOy44EH3eTvgK4wSgYIKwYBBQUHAQEEPjA8MDoGCCsGAQUFBzABhi5odHRwOi8vb2NzcC5ucmNhLWRzLmRlOjgwODAvb2NzcC1vY3NwcmVzcG9uZGVyMBIGA1UdIAQLMAkwBwYFKyQIAQEwGwYJKwYBBAHAbQMFBA4wDAYKKwYBBAHAbQMFATAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBDQUAA4IBAQAMm2Fj5hoZBOeOOT4LPrky39cTYMPN1+Patx6BB+kuF/pXAI/GmDyOuFIZ+/Sf8bz336sbbIfnbDeV6Y6ZJvCnqzrUT8kBlf3+QTQ+JxOEYfw1bdRffjmYDCbM0S7Rw02eAaSykiHSkSp8kWA6rYWkhVakX/v/PdBUtkPHdq1P5ghLPx7Gk/ax/U3fDLlKGms5iJjz55AIMqlK4HWEc7xZk3QoD8w+lpRqT5QNYwex5ueXO/Mpd9ZtY5qm7bJKhRnKejQaaMO1frAWT+QM2Uve3TaZlgupa0K+FL9i532dMd/D4RjxtDTNfa5o8gcNFS6eDyuo0z8BJDp9LCLtNZYT ++ ++ ++ ++ ++ MIIECjCCAvKgAwIBAgICBM4wDQYJKoZIhvcNAQENBQAwPzELMAkGA1UEBhMCREUxGjAYBgNVBAoMEUJ1bmRlc25ldHphZ2VudHVyMRQwEgYDVQQDDAsxNFItQ0EgMTpQTjAeFw0xNDEyMDUwOTM5MDZaFw0xOTEyMDQyMzU5NTlaMEAxCzAJBgNVBAYTAkRFMRowGAYDVQQKDBFCdW5kZXNuZXR6YWdlbnR1cjEVMBMGA1UEAwwMMTRSLVRTTCAyOlBOMIIBIzANBgkqhkiG9w0BAQEFAAOCARAAMIIBCwKCAQEAsGI5qje99nNG7TKA7ebNH5LLJHns8wJN+2fiqXajL8Vn6ss/PRjnmZMZmZCEIjPiqZ44ClfFZfMG4i5FuQtQgy1QNoLvbGWXe4E7E8/QJrVgZDn3fWzXQijvSH1SDXF/yhNU/9/WirHuf0VuvXPQBOQNlboOII4jxdUq3hqIknzZ1RGSDw1OQkd/kiiN01DRqnIFOXGr9C8aYC/LFsT8bMyY1YwhkrsFjt5bEcTSTnp+W2ee3nizifEAivH5RINPqdMcGIZ0jt60n2eSNUwP5WiBODBxgGJz4v+/lRrKqGznS/vnTO/WfUGYsjphjY0zb+7aUfhEKLI8jOI0zZmmTwIEQAAAgaOCAQwwggEIMA4GA1UdDwEB/wQEAwIGQDAdBgNVHQ4EFgQUSKX4OarEbho7M1SjSBICi99U1EowEQYDVR0lBAowCAYGBACRNwMAMBgGCCsGAQUFBwEDBAwwCjAIBgYEAI5GAQEwHwYDVR0jBBgwFoAU/fNQhDCO7COa9TOy44EH3eTvgK4wSgYIKwYBBQUHAQEEPjA8MDoGCCsGAQUFBzABhi5odHRwOi8vb2NzcC5ucmNhLWRzLmRlOjgwODAvb2NzcC1vY3NwcmVzcG9uZGVyMBIGA1UdIAQLMAkwBwYFKyQIAQEwGwYJKwYBBAHAbQMFBA4wDAYKKwYBBAHAbQMFATAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBDQUAA4IBAQBcDV3Z88953Qg7BXrbGqcGLhD8Bb5TBhN9VAzypzLU65Qev9gyKWLwSR9yxWM/93hiANzRV500dHhEXOmblAuP9nHfmEEgs+wPoPHZlvwpvs5WaIMcsVu2SZHv3cESXZYbDOK1wPA3adqU6TnmHmT43w5F79tFbUoLbHjfxnq9ouQS21rQX3zrwgIfkNwYm0dHrUBlX4Yn1tpVpISYOxyy8XoOMaLIRQqDmTlp28BeGnt7gFicL4oZoy0ZECH1UseMSAWRNB8AGeS+gLssrDySMWwqsnS9XQpNN7co8iqBum3p1fDJ6CYV4qZ5P3iHdOL3ncVf2WP/FDqon3VoQpd1 ++ ++ ++ ++ https://www.nrca-ds.de/st/TSL-XML.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ DE ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Federal Network Agency ++ Bundesnetzagentur ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/DE ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIGITCCBQmgAwIBAgIEU3nnPTANBgkqhkiG9w0BAQsFADBAMQswCQYDVQQGEwJESzESMBAGA1UECgwJVFJVU1QyNDA4MR0wGwYDVQQDDBRUUlVTVDI0MDggT0NFUyBDQSBJSTAeFw0xNDA4MjcxMjQzMTVaFw0xNzA4MjcxMjQyMzNaMHsxCzAJBgNVBAYTAkRLMTEwLwYDVQQKDChEaWdpdGFsaXNlcmluZ3NzdHlyZWxzZW4gLy8gQ1ZSOjM0MDUxMTc4MTkwFQYDVQQDDA5UaG9tYXMgVmFuZ3NhYTAgBgNVBAUTGUNWUjozNDA1MTE3OC1SSUQ6NDY1OTM2MTkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCgjJ5A00v9n8o0LoW2nuaHiVgTQDEpGr+I4JeE3uV6Vq1XSzvCnI1Gl6yFlPZtgMEjEOh5Par85TH3fSAX38R+253h8cvbtg7NBdNGkirPZXlA4RCEjQx4b45s23JV1fhRtkR74PVvnjwApIFSrAK7m47SssssaFz/18MOrtx2BfsQ2mvcAHJcJqSc1HDV4c5KkDXGfIufd7qRLN+ytRPXDzdrX4ptAk9oNrsO7Bo9oSNC0kHWLucBBmidFFFBtoErJ51xJ3LvV4sDwapNsEJ13lcshQZg79+ETovAr/plJLCXzDhNRTx9EZklTUTQhmXyv2keYo0BfR4H0RZg+MDZAgMBAAGjggLmMIIC4jAOBgNVHQ8BAf8EBAMCBPAwgYkGCCsGAQUFBwEBBH0wezA1BggrBgEFBQcwAYYpaHR0cDovL29jc3AuaWNhMDIudHJ1c3QyNDA4LmNvbS9yZXNwb25kZXIwQgYIKwYBBQUHMAKGNmh0dHA6Ly9tLmFpYS5pY2EwMi50cnVzdDI0MDguY29tL29jZXMtaXNzdWluZzAyLWNhLmNlcjCCAUMGA1UdIASCATowggE2MIIBMgYKKoFQgSkBAQECBTCCASIwLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cudHJ1c3QyNDA4LmNvbS9yZXBvc2l0b3J5MIHuBggrBgEFBQcCAjCB4TAQFglUUlVTVDI0MDgwAwIBARqBzEZvciBhbnZlbmRlbHNlIGFmIGNlcnRpZmlrYXRldCBn5mxkZXIgT0NFUyB2aWxr5XIsIENQUyBvZyBPQ0VTIENQLCBkZXIga2FuIGhlbnRlcyBmcmEgd3d3LnRydXN0MjQwOC5jb20vcmVwb3NpdG9yeS4gQmVt5nJrLCBhdCBUUlVTVDI0MDggZWZ0ZXIgdmlsa+VyZW5lIGhhciBldCBiZWdy5m5zZXQgYW5zdmFyIGlmdC4gcHJvZmVzc2lvbmVsbGUgcGFydGVyLjAZBgNVHREEEjAQgQ50aG92YUBkaWdzdC5kazCBlgYDVR0fBIGOMIGLMC6gLKAqhihodHRwOi8vY3JsLmljYTAyLnRydXN0MjQwOC5jb20vaWNhMDIuY3JsMFmgV6BVpFMwUTELMAkGA1UEBhMCREsxEjAQBgNVBAoMCVRSVVNUMjQwODEdMBsGA1UEAwwUVFJVU1QyNDA4IE9DRVMgQ0EgSUkxDzANBgNVBAMMBkNSTDI4OTAfBgNVHSMEGDAWgBSZj7oNia4hGkJ6Cq4aTE4i/xDrjDAdBgNVHQ4EFgQUrQcZJBN9UFBcFU0ejOZzl2AQ20swCQYDVR0TBAIwADANBgkqhkiG9w0BAQsFAAOCAQEAnJGujDKn1cpIl6LlCMUjIDmcegkcG+VMCasfjm1svOqr/fxHArSUpDKURcZWoNq0dUiWk0JhBUJGEi0UrVZ783jR5Pn9m7VkDhkeqR7iigMgtPvZjwfcWsnjYr+DwLxrRDZADWroOceD6GF0AOkETcDhOunFcroiTd9n4LgzHCELyVhUv8L2nbaWtlCIVxCua861x8jHketSPd8EdcqYsX6TtVdnA5S+A8h88rwrYvrpy5f9e29V6pQzFkq9BTGQ+ZtrbLI6UWV3ja0IBo0tHt/fc+lNuHV56ipz3QGS94AwxkENPSgYKLtwDOoV5c/vI9heE3/FvP1W/409h0ETgw== ++ ++ ++ ++ ++ MIIGQjCCBSqgAwIBAgIETJqsxTANBgkqhkiG9w0BAQsFADA/MQswCQYDVQQGEwJESzESMBAGA1UECgwJVFJVU1QyNDA4MRwwGgYDVQQDDBNUUlVTVDI0MDggT0NFUyBDQSBJMB4XDTEzMDgxNDExMDcyOVoXDTE2MDgxNDExMDcxMlowfzELMAkGA1UEBhMCREsxMTAvBgNVBAoMKERpZ2l0YWxpc2VyaW5nc3N0eXJlbHNlbiAvLyBDVlI6MzQwNTExNzgxPTAZBgNVBAMMEkJlbmphbWluIEt5dnNnYWFyZDAgBgNVBAUTGUNWUjozNDA1MTE3OC1SSUQ6MjgxNjAxMTUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCPqu9WOsATGpHZF4Sm8+6VObPBgYpok7foFDQgkhLpqnEAOCLwWN6+eMugKJIS8IaQi9ZhibY8XDfo5NMdhI6hMbiUDVajZ+9qKAAAUPfL9nQrnNCCjff5/M206ih01d4ANh/k6rDczlRvfM6bFMW/CW+o5Bt/WxbIj/DpQTXjHx4Sxf68IGCi9sTc2YHQUVYrCYZkU6CJ3qUFoYTrRO59hDLqpLefp4CeqVmicv0DhgnRL3N0NXPje/Edj0goH+5xVeouvfwdwU3mOx/gAXCAbPQp6GC8vi+26RqQ3S+H75X+nrabyp5F2CH4sGJuif9IrTtXRPGmKuKL4PPQR91ZAgMBAAGjggMEMIIDADAOBgNVHQ8BAf8EBAMCA/gwgZ0GCCsGAQUFBwEBBIGQMIGNMD4GCCsGAQUFBzABhjJodHRwOi8vb2NzcC5vY2VzLWlzc3VpbmcwMS50cnVzdDI0MDguY29tL3Jlc3BvbmRlcjBLBggrBgEFBQcwAoY/aHR0cDovL20uYWlhLm9jZXMtaXNzdWluZzAxLnRydXN0MjQwOC5jb20vb2Nlcy1pc3N1aW5nMDEtY2EuY2VyMIIBQwYDVR0gBIIBOjCCATYwggEyBgoqgVCBKQEBAQIFMIIBIjAvBggrBgEFBQcCARYjaHR0cDovL3d3dy50cnVzdDI0MDguY29tL3JlcG9zaXRvcnkwge4GCCsGAQUFBwICMIHhMBAWCVRSVVNUMjQwODADAgEBGoHMRm9yIGFudmVuZGVsc2UgYWYgY2VydGlmaWthdGV0IGfmbGRlciBPQ0VTIHZpbGvlciwgQ1BTIG9nIE9DRVMgQ1AsIGRlciBrYW4gaGVudGVzIGZyYSB3d3cudHJ1c3QyNDA4LmNvbS9yZXBvc2l0b3J5LiBCZW3mcmssIGF0IFRSVVNUMjQwOCBlZnRlciB2aWxr5XJlbmUgaGFyIGV0IGJlZ3LmbnNldCBhbnN2YXIgaWZ0LiBwcm9mZXNzaW9uZWxsZSBwYXJ0ZXIuMBkGA1UdEQQSMBCBDkJFTktZQGRpZ3N0LmRrMIGgBgNVHR8EgZgwgZUwOKA2oDSGMmh0dHA6Ly9jcmwub2Nlcy1pc3N1aW5nMDEudHJ1c3QyNDA4LmNvbS9pY2EwMTEuY3JsMFmgV6BVpFMwUTELMAkGA1UEBhMCREsxEjAQBgNVBAoMCVRSVVNUMjQwODEcMBoGA1UEAwwTVFJVU1QyNDA4IE9DRVMgQ0EgSTEQMA4GA1UEAwwHQ1JMNjY3NDAfBgNVHSMEGDAWgBTcPiA5BFF1Chj9v4nVrqWlKktydzAdBgNVHQ4EFgQU2x/FpFgBGDFBJYMNttYcFRdvF18wCQYDVR0TBAIwADANBgkqhkiG9w0BAQsFAAOCAQEAbkhl3LHDnudbKAXwCc99tlAGVWMghkt7zJW1ouaNylxuRrppINCcoXye/hhMqIlSkDPXRNbItmonv5wN11uNe+iPZflo29xeE5XCQ3VVuuwXVWSeOeH4dpAErxfH2FWriLUDSYUtwSa30re4xYktpTA3a9bgHjfKUUuQK31gBiWH9cQ0y+XxcqOMUN+C53iLgxIKHmkPI67ThNMuBA2cOfF6rEDKGjEMh3A6Ntue7wHHgTOidbC/LqYer/2gssDHNqxSiIjlR4IWsJFM5LrQ4FOW8C7gbp47ek6lFK685ccYDEbnwLejlfHe4DQjVHl4a7qlBL4Vle2ogKNHvoEL5A== ++ ++ ++ ++ http://www.digst.dk/~/media/Files/Loesninger-og-infrastruktur/NemID/HumanReadabletldkxml.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ DK ++ ++ ++ application/pdf ++ ++ ++ ++ Danish Agency for Digitisation // CVR:34051178 ++ Digitaliseringsstyrelsen // CVR:34051178 ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/DK ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIGQjCCBSqgAwIBAgIETJqsxTANBgkqhkiG9w0BAQsFADA/MQswCQYDVQQGEwJESzESMBAGA1UECgwJVFJVU1QyNDA4MRwwGgYDVQQDDBNUUlVTVDI0MDggT0NFUyBDQSBJMB4XDTEzMDgxNDExMDcyOVoXDTE2MDgxNDExMDcxMlowfzELMAkGA1UEBhMCREsxMTAvBgNVBAoMKERpZ2l0YWxpc2VyaW5nc3N0eXJlbHNlbiAvLyBDVlI6MzQwNTExNzgxPTAZBgNVBAMMEkJlbmphbWluIEt5dnNnYWFyZDAgBgNVBAUTGUNWUjozNDA1MTE3OC1SSUQ6MjgxNjAxMTUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCPqu9WOsATGpHZF4Sm8+6VObPBgYpok7foFDQgkhLpqnEAOCLwWN6+eMugKJIS8IaQi9ZhibY8XDfo5NMdhI6hMbiUDVajZ+9qKAAAUPfL9nQrnNCCjff5/M206ih01d4ANh/k6rDczlRvfM6bFMW/CW+o5Bt/WxbIj/DpQTXjHx4Sxf68IGCi9sTc2YHQUVYrCYZkU6CJ3qUFoYTrRO59hDLqpLefp4CeqVmicv0DhgnRL3N0NXPje/Edj0goH+5xVeouvfwdwU3mOx/gAXCAbPQp6GC8vi+26RqQ3S+H75X+nrabyp5F2CH4sGJuif9IrTtXRPGmKuKL4PPQR91ZAgMBAAGjggMEMIIDADAOBgNVHQ8BAf8EBAMCA/gwgZ0GCCsGAQUFBwEBBIGQMIGNMD4GCCsGAQUFBzABhjJodHRwOi8vb2NzcC5vY2VzLWlzc3VpbmcwMS50cnVzdDI0MDguY29tL3Jlc3BvbmRlcjBLBggrBgEFBQcwAoY/aHR0cDovL20uYWlhLm9jZXMtaXNzdWluZzAxLnRydXN0MjQwOC5jb20vb2Nlcy1pc3N1aW5nMDEtY2EuY2VyMIIBQwYDVR0gBIIBOjCCATYwggEyBgoqgVCBKQEBAQIFMIIBIjAvBggrBgEFBQcCARYjaHR0cDovL3d3dy50cnVzdDI0MDguY29tL3JlcG9zaXRvcnkwge4GCCsGAQUFBwICMIHhMBAWCVRSVVNUMjQwODADAgEBGoHMRm9yIGFudmVuZGVsc2UgYWYgY2VydGlmaWthdGV0IGfmbGRlciBPQ0VTIHZpbGvlciwgQ1BTIG9nIE9DRVMgQ1AsIGRlciBrYW4gaGVudGVzIGZyYSB3d3cudHJ1c3QyNDA4LmNvbS9yZXBvc2l0b3J5LiBCZW3mcmssIGF0IFRSVVNUMjQwOCBlZnRlciB2aWxr5XJlbmUgaGFyIGV0IGJlZ3LmbnNldCBhbnN2YXIgaWZ0LiBwcm9mZXNzaW9uZWxsZSBwYXJ0ZXIuMBkGA1UdEQQSMBCBDkJFTktZQGRpZ3N0LmRrMIGgBgNVHR8EgZgwgZUwOKA2oDSGMmh0dHA6Ly9jcmwub2Nlcy1pc3N1aW5nMDEudHJ1c3QyNDA4LmNvbS9pY2EwMTEuY3JsMFmgV6BVpFMwUTELMAkGA1UEBhMCREsxEjAQBgNVBAoMCVRSVVNUMjQwODEcMBoGA1UEAwwTVFJVU1QyNDA4IE9DRVMgQ0EgSTEQMA4GA1UEAwwHQ1JMNjY3NDAfBgNVHSMEGDAWgBTcPiA5BFF1Chj9v4nVrqWlKktydzAdBgNVHQ4EFgQU2x/FpFgBGDFBJYMNttYcFRdvF18wCQYDVR0TBAIwADANBgkqhkiG9w0BAQsFAAOCAQEAbkhl3LHDnudbKAXwCc99tlAGVWMghkt7zJW1ouaNylxuRrppINCcoXye/hhMqIlSkDPXRNbItmonv5wN11uNe+iPZflo29xeE5XCQ3VVuuwXVWSeOeH4dpAErxfH2FWriLUDSYUtwSa30re4xYktpTA3a9bgHjfKUUuQK31gBiWH9cQ0y+XxcqOMUN+C53iLgxIKHmkPI67ThNMuBA2cOfF6rEDKGjEMh3A6Ntue7wHHgTOidbC/LqYer/2gssDHNqxSiIjlR4IWsJFM5LrQ4FOW8C7gbp47ek6lFK685ccYDEbnwLejlfHe4DQjVHl4a7qlBL4Vle2ogKNHvoEL5A== ++ ++ ++ ++ ++ MIIGITCCBQmgAwIBAgIEU3nnPTANBgkqhkiG9w0BAQsFADBAMQswCQYDVQQGEwJESzESMBAGA1UECgwJVFJVU1QyNDA4MR0wGwYDVQQDDBRUUlVTVDI0MDggT0NFUyBDQSBJSTAeFw0xNDA4MjcxMjQzMTVaFw0xNzA4MjcxMjQyMzNaMHsxCzAJBgNVBAYTAkRLMTEwLwYDVQQKDChEaWdpdGFsaXNlcmluZ3NzdHlyZWxzZW4gLy8gQ1ZSOjM0MDUxMTc4MTkwFQYDVQQDDA5UaG9tYXMgVmFuZ3NhYTAgBgNVBAUTGUNWUjozNDA1MTE3OC1SSUQ6NDY1OTM2MTkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCgjJ5A00v9n8o0LoW2nuaHiVgTQDEpGr+I4JeE3uV6Vq1XSzvCnI1Gl6yFlPZtgMEjEOh5Par85TH3fSAX38R+253h8cvbtg7NBdNGkirPZXlA4RCEjQx4b45s23JV1fhRtkR74PVvnjwApIFSrAK7m47SssssaFz/18MOrtx2BfsQ2mvcAHJcJqSc1HDV4c5KkDXGfIufd7qRLN+ytRPXDzdrX4ptAk9oNrsO7Bo9oSNC0kHWLucBBmidFFFBtoErJ51xJ3LvV4sDwapNsEJ13lcshQZg79+ETovAr/plJLCXzDhNRTx9EZklTUTQhmXyv2keYo0BfR4H0RZg+MDZAgMBAAGjggLmMIIC4jAOBgNVHQ8BAf8EBAMCBPAwgYkGCCsGAQUFBwEBBH0wezA1BggrBgEFBQcwAYYpaHR0cDovL29jc3AuaWNhMDIudHJ1c3QyNDA4LmNvbS9yZXNwb25kZXIwQgYIKwYBBQUHMAKGNmh0dHA6Ly9tLmFpYS5pY2EwMi50cnVzdDI0MDguY29tL29jZXMtaXNzdWluZzAyLWNhLmNlcjCCAUMGA1UdIASCATowggE2MIIBMgYKKoFQgSkBAQECBTCCASIwLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cudHJ1c3QyNDA4LmNvbS9yZXBvc2l0b3J5MIHuBggrBgEFBQcCAjCB4TAQFglUUlVTVDI0MDgwAwIBARqBzEZvciBhbnZlbmRlbHNlIGFmIGNlcnRpZmlrYXRldCBn5mxkZXIgT0NFUyB2aWxr5XIsIENQUyBvZyBPQ0VTIENQLCBkZXIga2FuIGhlbnRlcyBmcmEgd3d3LnRydXN0MjQwOC5jb20vcmVwb3NpdG9yeS4gQmVt5nJrLCBhdCBUUlVTVDI0MDggZWZ0ZXIgdmlsa+VyZW5lIGhhciBldCBiZWdy5m5zZXQgYW5zdmFyIGlmdC4gcHJvZmVzc2lvbmVsbGUgcGFydGVyLjAZBgNVHREEEjAQgQ50aG92YUBkaWdzdC5kazCBlgYDVR0fBIGOMIGLMC6gLKAqhihodHRwOi8vY3JsLmljYTAyLnRydXN0MjQwOC5jb20vaWNhMDIuY3JsMFmgV6BVpFMwUTELMAkGA1UEBhMCREsxEjAQBgNVBAoMCVRSVVNUMjQwODEdMBsGA1UEAwwUVFJVU1QyNDA4IE9DRVMgQ0EgSUkxDzANBgNVBAMMBkNSTDI4OTAfBgNVHSMEGDAWgBSZj7oNia4hGkJ6Cq4aTE4i/xDrjDAdBgNVHQ4EFgQUrQcZJBN9UFBcFU0ejOZzl2AQ20swCQYDVR0TBAIwADANBgkqhkiG9w0BAQsFAAOCAQEAnJGujDKn1cpIl6LlCMUjIDmcegkcG+VMCasfjm1svOqr/fxHArSUpDKURcZWoNq0dUiWk0JhBUJGEi0UrVZ783jR5Pn9m7VkDhkeqR7iigMgtPvZjwfcWsnjYr+DwLxrRDZADWroOceD6GF0AOkETcDhOunFcroiTd9n4LgzHCELyVhUv8L2nbaWtlCIVxCua861x8jHketSPd8EdcqYsX6TtVdnA5S+A8h88rwrYvrpy5f9e29V6pQzFkq9BTGQ+ZtrbLI6UWV3ja0IBo0tHt/fc+lNuHV56ipz3QGS94AwxkENPSgYKLtwDOoV5c/vI9heE3/FvP1W/409h0ETgw== ++ ++ ++ ++ http://www.digst.dk/~/media/Files/Loesninger-og-infrastruktur/NemID/TLDK.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ DK ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Digitaliseringsstyrelsen // CVR:34051178 ++ Danish Agency for Digitisation // CVR:34051178 ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/DK ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDtDCCApygAwIBAgIJAOGr7PilHGMwMA0GCSqGSIb3DQEBBQUAMHExLjAsBgNVBAMTJUVzdG9uaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxCzAJBgNVBAYTAkVFMTIwMAYDVQQKEylFc3RvbmlhbiBUZWNobmljYWwgU3VydmVpbGxhbmNlIEF1dGhvcml0eTAeFw0xMDEwMjkxMzIyNTBaFw0yMDExMDUxMzIyNTBaMHExLjAsBgNVBAMTJUVzdG9uaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxCzAJBgNVBAYTAkVFMTIwMAYDVQQKEylFc3RvbmlhbiBUZWNobmljYWwgU3VydmVpbGxhbmNlIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALhdQ9c33Y98JC0pl34+rg+qXLgdjEQaBM9gpxOpIpeqwrcXi5xbLmh4mk6imennbRaZXgJRqrOkx77B+UsBwn6uPgeZenJ1kFGvAOR9aePbgxJ5AggMr4wJXSa03OSGDhptsmMFc86qtnht94mDf1UCn1CNYA7qQHzu4MQwqJ2Ist7IIki89VZD5I4Y5AItMKlEjnHAOw/dlMfI8SxE2vvxCIyQu+rhfGPfwotHi0POyKtkX9Y+JSqEVqRXNw7B2x+d9mRYUJ8EqDvj5ag9dtgyXLsfJ4HdUJMqvoT6QnfwlBbaFusTm3R8SNVXl/8LHDoM5naOSKAOGRSe2OnxAJ8CAwEAAaNPME0wDAYDVR0TBAUwAwIBADALBgNVHQ8EBAMCB4AwHQYDVR0OBBYEFAon+QooAKxPsgZlsTxvK/8synsxMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQUFAAOCAQEACansBzvd2iwBlZg50oueEtUlFyE+do+FmI4apydq2bM3kdeikWGERSbV1EzD86j7jpNKEOvlPTkV7fZl+7uCJ3OuCrzHEzuaZnvFPkN7Rmj4P1AGh5UK4UVWJwTceuhzIf4D6+/5CNY6U8iEHIqvAmTVOPSKEvxdBv7GKHy6x897icQa8ttHq+xCLmc0+6zpbzSZ5dOmFG3kzJuZPqtqa89Lqf7x6IRRKgUd+C+JsKDMjEde/eYnM8yxdVlzEWe6Z0qKVvPTuiCnhTNhaaQM3aiw61RMTes2Ik4wSGY75XZjQV5gVszHJBEntktcduGWCuJ24qS2lb1M2/8bE43Fkg== ++ ++ ++ ++ ++ MIIDvjCCAqagAwIBAgIJAMx8n7ZaTrHwMA0GCSqGSIb3DQEBBQUAMHYxMzAxBgNVBAMTKkVzdG9uaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IgMjAxNDELMAkGA1UEBhMCRUUxMjAwBgNVBAoTKUVzdG9uaWFuIFRlY2huaWNhbCBTdXJ2ZWlsbGFuY2UgQXV0aG9yaXR5MB4XDTE0MDQxNzA4MTUzOFoXDTI0MDQyNDA4MTUzOFowdjEzMDEGA1UEAxMqRXN0b25pYW4gVHJ1c3RlZCBMaXN0IFNjaGVtZSBPcGVyYXRvciAyMDE0MQswCQYDVQQGEwJFRTEyMDAGA1UEChMpRXN0b25pYW4gVGVjaG5pY2FsIFN1cnZlaWxsYW5jZSBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC8iDN5MzWga97Mz6eQFjCsk2en4g8ujRUQemyIc/nJ3LDSTu0ZWXLksZAoHtHwPAgHafU70nUeAUZ25Wl/jk6SyX2wY29Wka97/mWgFCb5H066T1KI+euQf6R0jhsSqGNaZrhUrs0G4jRzjcQ303YT1JiJVMh9hdGVj5KrVsGymXZh0zYrp237AWlcvxNBeiYlskASaEKbRuEpEdw4jeK0nVvfPfDj3XkLfRvX9QXRikRlPyzMKzFf7bXJRQ90hWI9IqMUP0RkvDSqqrteYV0wB8GKEaDMnqjvEXuhhoGtqusm5K3F5no+cUiY7JsalTzs3MACJSTwjZrCSxAeKr5DAgMBAAGjTzBNMAwGA1UdEwQFMAMCAQAwCwYDVR0PBAQDAgeAMB0GA1UdDgQWBBRXB3a0i0xYnYUj4nzNK/pwBrmORTARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQEFBQADggEBAGoHM4yIlIXt8CxNLe1sNxymcJyB8oJbvJwlwCUvapaJieVCSQMmtIrn+3uAAdhMijZSQWPB+5DsLWk7ewyridr2bs+UOc0uJ+ay7zrHIj/g+YDIA0DQ7L6JYabiXNJlQhPNm1LxJ9UZSt+h5anl+nSUSV/C2HQgjtgw1Sm6vYf4/EGGaYGAwOvPPOcaYKbcvcpiKkNhhl+nnfAw/RSz4X5Ow5UWNqDsNSv/xIbuw8vORLn6FcYxVScCFAQQGLl4CYQ9IFyQhsvk7xbOCpD09hd4dqvoPHCRkNjuJt9MBO169WlAL6J+coJ2Xo9JxCgfAU2HI7iGbsAnBj4jdHaa+sI= ++ ++ ++ ++ http://sr.riik.ee/tsl/estonian-tsl.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ EE ++ ++ ++ application/pdf ++ ++ ++ ++ Estonian Technical Surveillance Authority ++ Tehnilise Järelevalve Amet ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EE ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDtDCCApygAwIBAgIJAOGr7PilHGMwMA0GCSqGSIb3DQEBBQUAMHExLjAsBgNVBAMTJUVzdG9uaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxCzAJBgNVBAYTAkVFMTIwMAYDVQQKEylFc3RvbmlhbiBUZWNobmljYWwgU3VydmVpbGxhbmNlIEF1dGhvcml0eTAeFw0xMDEwMjkxMzIyNTBaFw0yMDExMDUxMzIyNTBaMHExLjAsBgNVBAMTJUVzdG9uaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IxCzAJBgNVBAYTAkVFMTIwMAYDVQQKEylFc3RvbmlhbiBUZWNobmljYWwgU3VydmVpbGxhbmNlIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALhdQ9c33Y98JC0pl34+rg+qXLgdjEQaBM9gpxOpIpeqwrcXi5xbLmh4mk6imennbRaZXgJRqrOkx77B+UsBwn6uPgeZenJ1kFGvAOR9aePbgxJ5AggMr4wJXSa03OSGDhptsmMFc86qtnht94mDf1UCn1CNYA7qQHzu4MQwqJ2Ist7IIki89VZD5I4Y5AItMKlEjnHAOw/dlMfI8SxE2vvxCIyQu+rhfGPfwotHi0POyKtkX9Y+JSqEVqRXNw7B2x+d9mRYUJ8EqDvj5ag9dtgyXLsfJ4HdUJMqvoT6QnfwlBbaFusTm3R8SNVXl/8LHDoM5naOSKAOGRSe2OnxAJ8CAwEAAaNPME0wDAYDVR0TBAUwAwIBADALBgNVHQ8EBAMCB4AwHQYDVR0OBBYEFAon+QooAKxPsgZlsTxvK/8synsxMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQUFAAOCAQEACansBzvd2iwBlZg50oueEtUlFyE+do+FmI4apydq2bM3kdeikWGERSbV1EzD86j7jpNKEOvlPTkV7fZl+7uCJ3OuCrzHEzuaZnvFPkN7Rmj4P1AGh5UK4UVWJwTceuhzIf4D6+/5CNY6U8iEHIqvAmTVOPSKEvxdBv7GKHy6x897icQa8ttHq+xCLmc0+6zpbzSZ5dOmFG3kzJuZPqtqa89Lqf7x6IRRKgUd+C+JsKDMjEde/eYnM8yxdVlzEWe6Z0qKVvPTuiCnhTNhaaQM3aiw61RMTes2Ik4wSGY75XZjQV5gVszHJBEntktcduGWCuJ24qS2lb1M2/8bE43Fkg== ++ ++ ++ ++ ++ MIIDvjCCAqagAwIBAgIJAMx8n7ZaTrHwMA0GCSqGSIb3DQEBBQUAMHYxMzAxBgNVBAMTKkVzdG9uaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IgMjAxNDELMAkGA1UEBhMCRUUxMjAwBgNVBAoTKUVzdG9uaWFuIFRlY2huaWNhbCBTdXJ2ZWlsbGFuY2UgQXV0aG9yaXR5MB4XDTE0MDQxNzA4MTUzOFoXDTI0MDQyNDA4MTUzOFowdjEzMDEGA1UEAxMqRXN0b25pYW4gVHJ1c3RlZCBMaXN0IFNjaGVtZSBPcGVyYXRvciAyMDE0MQswCQYDVQQGEwJFRTEyMDAGA1UEChMpRXN0b25pYW4gVGVjaG5pY2FsIFN1cnZlaWxsYW5jZSBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC8iDN5MzWga97Mz6eQFjCsk2en4g8ujRUQemyIc/nJ3LDSTu0ZWXLksZAoHtHwPAgHafU70nUeAUZ25Wl/jk6SyX2wY29Wka97/mWgFCb5H066T1KI+euQf6R0jhsSqGNaZrhUrs0G4jRzjcQ303YT1JiJVMh9hdGVj5KrVsGymXZh0zYrp237AWlcvxNBeiYlskASaEKbRuEpEdw4jeK0nVvfPfDj3XkLfRvX9QXRikRlPyzMKzFf7bXJRQ90hWI9IqMUP0RkvDSqqrteYV0wB8GKEaDMnqjvEXuhhoGtqusm5K3F5no+cUiY7JsalTzs3MACJSTwjZrCSxAeKr5DAgMBAAGjTzBNMAwGA1UdEwQFMAMCAQAwCwYDVR0PBAQDAgeAMB0GA1UdDgQWBBRXB3a0i0xYnYUj4nzNK/pwBrmORTARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQEFBQADggEBAGoHM4yIlIXt8CxNLe1sNxymcJyB8oJbvJwlwCUvapaJieVCSQMmtIrn+3uAAdhMijZSQWPB+5DsLWk7ewyridr2bs+UOc0uJ+ay7zrHIj/g+YDIA0DQ7L6JYabiXNJlQhPNm1LxJ9UZSt+h5anl+nSUSV/C2HQgjtgw1Sm6vYf4/EGGaYGAwOvPPOcaYKbcvcpiKkNhhl+nnfAw/RSz4X5Ow5UWNqDsNSv/xIbuw8vORLn6FcYxVScCFAQQGLl4CYQ9IFyQhsvk7xbOCpD09hd4dqvoPHCRkNjuJt9MBO169WlAL6J+coJ2Xo9JxCgfAU2HI7iGbsAnBj4jdHaa+sI= ++ ++ ++ ++ http://sr.riik.ee/tsl/estonian-tsl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ EE ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Estonian Technical Surveillance Authority ++ Tehnilise Järelevalve Amet ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EE ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIE4DCCA8igAwIBAgIQKdcXmZiVNv8AQDkUhiQ4ZzANBgkqhkiG9w0BAQUFADCBpTELMAkGA1UEBhMCR1IxPjA8BgNVBAoTNUhlbGxlbmljIFB1YmxpYyBBZG1pbmlzdHJhdGlvbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzMQ8wDQYDVQQLEwZIUEFSQ0ExRTBDBgNVBAMTPEhlbGxlbmljIFB1YmxpYyBBZG1pbmlzdHJhdGlvbiBmb3IgTGVnYWwgRW50aXRpZXMgSXNzdWluZyBDQTAeFw0xNDAxMzEwMDAwMDBaFw0xODAxMzAyMzU5NTlaMH0xCzAJBgNVBAYTAkdSMQ8wDQYDVQQHFAZBVEhFTlMxDTALBgNVBAoUBEVFVFQxDTALBgNVBAsUBEVFVFQxPzA9BgNVBAMTNkhlbGxlbmljIFRlbGVjb21tdW5pY2F0aW9ucyBhbmQgUG9zdCBDb21taXNzaW9uIC0gRUVUVDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKTC8BJGIWKJwAyeRt5v3WFyRJr6VKeo4hRH1S1dbS/kNHOCkEaCQVRJuds61oaiAJmXdCtkNZrMJZ/YSzg7LZ7/M+EW5z1rOirTr7CPUxOVYzCnQrD1gaylWMPI6+CErA867UqnOTkuRckN5P0YoFvxUvrnqMWU0SgI2Fu5F1Hn93rwaOpcteYUx4gLDTgr8g6ply1alVTeWXEtNgSaqW/dGrWTduyDSXHiKurkjnDBA+Dabw51FAWY2R/MaFHtCN3nSaxoeaoCxsy5vQxQrrZOlwvV9wnEkLXaTxzZdRKgETt+3om4ZjAR5fC4CgtXHSV7tXM+u5bN2YtxXneWT6kCAwEAAaOCATEwggEtMAkGA1UdEwQCMAAwUQYDVR0gBEowSDBGBgwqgiwAhtsxAQcBAQcwNjA0BggrBgEFBQcCARYoaHR0cHM6Ly9wa2kuZXJtaXMuZ292LmdyL3JlcG9zaXRvcnkuaHRtbDBKBgNVHR8EQzBBMD+gPaA7hjlodHRwOi8vY3JsLmVybWlzLmdvdi5nci9IUEFSQ0FMZWdhbEVudGl0aWVzL0xhdGVzdENSTC5jcmwwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRScfRlSOyeduHtAYfzQN1Zstj2OTAfBgNVHSMEGDAWgBSEy+4igJ4tSDdTGxIHcx5vM3I7zTA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmVybWlzLmdvdi5ncjANBgkqhkiG9w0BAQUFAAOCAQEAKlHY+QHXmBMib/6iBOBQR7D/mWWvhMQCJaM69aLaXi9FHFEu2KrWFCaGh+ade92xzvhSYlMtTMDydActvyygV5etWLLBTi2YFuUFsU9niFdRSZ9ZF0LME+DcGnD8G5M9ThiLkQNMBfLX1zfrIEgGMMP8ADEGmngzdZThz984p2kTIJNDUkPhgnTNoUZs5DROxQP+NUkTw+9y5VcgSZnTWu65NXPh3Hqtq4CX/xwgomcQN31fySct63gU7HGNkXRjPvSekGOSpKuAYabTUWtGFP2YhuAJ6p2cmGzTqQuDJeilsMS7NxB/3fCOEGK8Huk9LpcGB7LVmczDrp/Q76ub8A== ++ ++ ++ ++ ++ MIIFJDCCBAygAwIBAgIQBPWIMN+uUlymArA205cJETANBgkqhkiG9w0BAQUFADCBpTELMAkGA1UEBhMCR1IxPjA8BgNVBAoTNUhlbGxlbmljIFB1YmxpYyBBZG1pbmlzdHJhdGlvbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzMQ8wDQYDVQQLEwZIUEFSQ0ExRTBDBgNVBAMTPEhlbGxlbmljIFB1YmxpYyBBZG1pbmlzdHJhdGlvbiBmb3IgTGVnYWwgRW50aXRpZXMgSXNzdWluZyBDQTAeFw0xNDAzMTAwMDAwMDBaFw0xODAzMDkyMzU5NTlaMIGtMQswCQYDVQQGEwJHUjEPMA0GA1UEBxQGQVRIRU5TMT4wPAYDVQQKFDVIZWxsZW5pYyBUZWxlY29tbXVuaWNhdGlvbnMgYW5kIFBvc3QgQ29tbWlzc2lvbiwgRUVUVDENMAsGA1UECxQERUVUVDE+MDwGA1UEAxM1SGVsbGVuaWMgVGVsZWNvbW11bmljYXRpb25zIGFuZCBQb3N0IENvbW1pc3Npb24sIEVFVFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDEcOAZE/t7SLkBwZCkhNiniAwJJyWADBCaceNMp5FV01jHhT5bFq0wECrQgIcNrCQq+z1KHBF/Zej7jhNWBO0ByKt2Y/3dB/YP9KNaJL9oAMg2/DacOehunHmeit1jXKteyV8dsf2obojUvvUGzd2/wpx0z0muSZPSMpgBsaHZOuctbjYFEhsIth1g+gIW+2hQ91QW+h+/Xo4olfLDwbEsyZh1u9cvROweXUITD7PfoJkpWyEoJYBQkODWqXJz7oTZYb+P7wIWNDoY4JCFGd+U14fKUb6qEkZQ+6nvm0/bUn0ezarQFEwKsXHcyu9q75/KKDZboFpo88r023920i0JAgMBAAGjggFEMIIBQDAJBgNVHRMEAjAAMFEGA1UdIARKMEgwRgYMKoIsAIbbMQEHAQEHMDYwNAYIKwYBBQUHAgEWKGh0dHBzOi8vcGtpLmVybWlzLmdvdi5nci9yZXBvc2l0b3J5Lmh0bWwwSgYDVR0fBEMwQTA/oD2gO4Y5aHR0cDovL2NybC5lcm1pcy5nb3YuZ3IvSFBBUkNBTGVnYWxFbnRpdGllcy9MYXRlc3RDUkwuY3JsMAsGA1UdDwQEAwIHgDAdBgNVHQ4EFgQUReYYDjHx2MVXPQrpZJXx5dsPDBowHwYDVR0jBBgwFoAUhMvuIoCeLUg3UxsSB3MebzNyO80wEQYDVR0lBAowCAYGBACRNwMAMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZXJtaXMuZ292LmdyMA0GCSqGSIb3DQEBBQUAA4IBAQBDaJ4ZYEdYU8keyGvMQYUUjfhx7k/zXwXqLgqWoORZN2aGvaDUtf/k/JhJ/xm+WnEIyKtEwtqKYf1dVS8nMY0fLpu/1cGx1qMzp8tEG3EJBls5Z2OPMoWBLE5mra1m2R8442ekWp6tSy7zoaa3xXtnUxB0Dvt1iVLHODtJcxUNKrl9nmu0ujficaSeEhprpAye917j6xVDtzLXFbGSAeNmGzVjUf+uo8ZQ6Q1F2aLjRyavy+Ph5bBwcKQ7DUocwn6gRJAqfmUJwy4H1vIqrrtaHbqVOpmgrjwZNcu3pimAOw4cd6uJThAx1acKCr2He4hii1Nxt1+SYmdIDD6WYfDt ++ ++ ++ ++ https://www.eett.gr/tsl/EL-TSL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ EL ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Hellenic Telecommunications and Post Commission, EETT ++ Εθνική Επιτροπή Τηλεπικοινωνιών και Ταχυδρομείων - EETT ++ EETT ++ EETT ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EL ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDyzCCArOgAwIBAgIJAL6B32RxtXxMMA0GCSqGSIb3DQEBCwUAMH4xKzApBgNVBAMTIlNQQU5JU0ggVFJVU1QgTElTVCBTQ0hFTUUgT1BFUkFUT1IxCzAJBgNVBAYTAkVTMTIwMAYDVQQKEylNSU5JU1RFUklPIERFIElORFVTVFJJQSBFTkVSR0lBIFkgVFVSSVNNTzEOMAwGA1UECxMFU0VUU0kwHhcNMTQwMzExMTIzMjUyWhcNMTkwMzExMTIzMjUyWjB+MSswKQYDVQQDEyJTUEFOSVNIIFRSVVNUIExJU1QgU0NIRU1FIE9QRVJBVE9SMQswCQYDVQQGEwJFUzEyMDAGA1UEChMpTUlOSVNURVJJTyBERSBJTkRVU1RSSUEgRU5FUkdJQSBZIFRVUklTTU8xDjAMBgNVBAsTBVNFVFNJMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAocIbYfDYGdw239aAMo08eEfZvn4ACaaYkHLd80Flq6ecAk/aDuwEnmldiBv8yTNdw9/ZqsIy+x0wB09a+9lZDDyq7dCqP8CYZzJW+hYPN4IhqRLDypVxYIKUHu4TYOmAIKhEnUOnY/OrpAtErhFMaA3IwmgMSaJ8vaxop/KcSnKlx+KazoEaPV+yIX6xeCtCzghq0hjjqU0Hlg9+hyna0TRo6K4ars7MceWl1ameMaBiRbAhxINnoEvLEuOx79/kafGNLDAP0ThGhbK9q7hEBylydzY+wVLgM5yCYZdcLllHkt5Fr2zxNU8FH2Jnl+83qbdZDPFYb+HMWZfhHNkz8QIDAQABo0wwSjAJBgNVHRMEAjAAMAsGA1UdDwQEAwIGQDAdBgNVHQ4EFgQUNab+5BisBkvbZfGGr5bY9s0pxT4wEQYDVR0lBAowCAYGBACRNwMAMA0GCSqGSIb3DQEBCwUAA4IBAQCQNx9/TYPACsgOJzBx06EcOHnvslBilvlMghtaQLygoatFTpaeX0JqFuYAZhfGF28k8eC3ENxUYPa30Zh4ZWRm0QlmLjBKBB/z3jJQIq7b0kqf6H8Vb/vvvSNsoWBwnWzv9X8t9D+S9TK5844dCtSvhlkTBlJYXZ+N9cbz0rk6GELzwY33VOSygcj0hyib4+Xb8dxX15omjVS+qk3FyWCq3DPibwKzD5irJL7EfRFkDoWwRVzaaeDCOJqFWeIpfY7/NocB1fbkvx7wMFzZ9xAFgPLirxi6ZVu0YKoDQq95HnvEzDMdoBUdAK+WtS1a3zJIjNAqb6YE9w4cbPpUXWUs ++ ++ ++ ++ ++ MIIDyzCCArOgAwIBAgIJAKWF81P5BqylMA0GCSqGSIb3DQEBCwUAMH4xKzApBgNVBAMTIlNQQU5JU0ggVFJVU1QgTElTVCBTQ0hFTUUgT1BFUkFUT1IxCzAJBgNVBAYTAkVTMTIwMAYDVQQKEylNSU5JU1RFUklPIERFIElORFVTVFJJQSBFTkVSR0lBIFkgVFVSSVNNTzEOMAwGA1UECxMFU0VUU0kwHhcNMTQwOTExMTEzODEyWhcNMTkwOTExMTEzODEyWjB+MSswKQYDVQQDEyJTUEFOSVNIIFRSVVNUIExJU1QgU0NIRU1FIE9QRVJBVE9SMQswCQYDVQQGEwJFUzEyMDAGA1UEChMpTUlOSVNURVJJTyBERSBJTkRVU1RSSUEgRU5FUkdJQSBZIFRVUklTTU8xDjAMBgNVBAsTBVNFVFNJMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3Tk6ThJZ/uBAqg8c0PWtC+xl8XQ4RyELaZSwcbaBJlyr/dj288QWjIBtOz+kZgEM7mINlTNW4/FVHNeJfY8dzUBdkhTccx7W3yK720U83DZp+OhBS47+T4/6krQPZ2uMhPI+U7sf7qcOVJ0AjxF2vrrFqTzm1pJ8TE1ys482b8s0o3A9ugLR28UcQhhUUPA2hMkEwzIY9TL1Umrip2XtlJT3N1IOKTMQpiqTJL5laF6WWVRtcTv461uePiohd9ZhBjOXstcaEczCOFeE7Zh6l9uSCwW78ool8b2VezEh5ZDaGv/iSxxPIoiOkd5/9yElqy3JLagJKs8LpTp33WvGhQIDAQABo0wwSjAJBgNVHRMEAjAAMAsGA1UdDwQEAwIGQDAdBgNVHQ4EFgQUkh8fb5AKQbc7caUcVmmK7FH1vUwwEQYDVR0lBAowCAYGBACRNwMAMA0GCSqGSIb3DQEBCwUAA4IBAQDJjFeyy4YBakY61DvbuuCb6FlrIhSbNPH2/o7fX4Ve+G+2WRJOEkE1dIezvnVyOvNnym66rngcZXQDoFMPK5SOQm4nNXrUDd5rWM3c84sHba7UuEdVgC9ZW0YR44/9bVxIHOBSXUDcWbUu6nVStZpNy/Gn11iEIRSU4TsE8YJK5cjZ/xaigYDt01BlLu34v60JoClwlbHeuPgHhUwPyGD8sD4g9+QQhsouv8pG9gbT5+KttS63jB/SmrWLAJOmg97WI/2jkSObJ8zwn0jVJdZtBGbiN2I3+wv1F+FvRZH4jdpE2P7aimucx5iMng+o/dKzFGThn5DwVa5pvplf8IEs ++ ++ ++ ++ https://sede.minetur.gob.es/Prestadores/TSL/TSL.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ ES ++ ++ ++ application/pdf ++ ++ ++ ++ MINISTRY OF INDUSTRY ENERGY AND TOURISM ++ MINISTERIO DE INDUSTRIA ENERGIA Y TURISMO ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/ES ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDyzCCArOgAwIBAgIJAL6B32RxtXxMMA0GCSqGSIb3DQEBCwUAMH4xKzApBgNVBAMTIlNQQU5JU0ggVFJVU1QgTElTVCBTQ0hFTUUgT1BFUkFUT1IxCzAJBgNVBAYTAkVTMTIwMAYDVQQKEylNSU5JU1RFUklPIERFIElORFVTVFJJQSBFTkVSR0lBIFkgVFVSSVNNTzEOMAwGA1UECxMFU0VUU0kwHhcNMTQwMzExMTIzMjUyWhcNMTkwMzExMTIzMjUyWjB+MSswKQYDVQQDEyJTUEFOSVNIIFRSVVNUIExJU1QgU0NIRU1FIE9QRVJBVE9SMQswCQYDVQQGEwJFUzEyMDAGA1UEChMpTUlOSVNURVJJTyBERSBJTkRVU1RSSUEgRU5FUkdJQSBZIFRVUklTTU8xDjAMBgNVBAsTBVNFVFNJMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAocIbYfDYGdw239aAMo08eEfZvn4ACaaYkHLd80Flq6ecAk/aDuwEnmldiBv8yTNdw9/ZqsIy+x0wB09a+9lZDDyq7dCqP8CYZzJW+hYPN4IhqRLDypVxYIKUHu4TYOmAIKhEnUOnY/OrpAtErhFMaA3IwmgMSaJ8vaxop/KcSnKlx+KazoEaPV+yIX6xeCtCzghq0hjjqU0Hlg9+hyna0TRo6K4ars7MceWl1ameMaBiRbAhxINnoEvLEuOx79/kafGNLDAP0ThGhbK9q7hEBylydzY+wVLgM5yCYZdcLllHkt5Fr2zxNU8FH2Jnl+83qbdZDPFYb+HMWZfhHNkz8QIDAQABo0wwSjAJBgNVHRMEAjAAMAsGA1UdDwQEAwIGQDAdBgNVHQ4EFgQUNab+5BisBkvbZfGGr5bY9s0pxT4wEQYDVR0lBAowCAYGBACRNwMAMA0GCSqGSIb3DQEBCwUAA4IBAQCQNx9/TYPACsgOJzBx06EcOHnvslBilvlMghtaQLygoatFTpaeX0JqFuYAZhfGF28k8eC3ENxUYPa30Zh4ZWRm0QlmLjBKBB/z3jJQIq7b0kqf6H8Vb/vvvSNsoWBwnWzv9X8t9D+S9TK5844dCtSvhlkTBlJYXZ+N9cbz0rk6GELzwY33VOSygcj0hyib4+Xb8dxX15omjVS+qk3FyWCq3DPibwKzD5irJL7EfRFkDoWwRVzaaeDCOJqFWeIpfY7/NocB1fbkvx7wMFzZ9xAFgPLirxi6ZVu0YKoDQq95HnvEzDMdoBUdAK+WtS1a3zJIjNAqb6YE9w4cbPpUXWUs ++ ++ ++ ++ ++ MIIDyzCCArOgAwIBAgIJAKWF81P5BqylMA0GCSqGSIb3DQEBCwUAMH4xKzApBgNVBAMTIlNQQU5JU0ggVFJVU1QgTElTVCBTQ0hFTUUgT1BFUkFUT1IxCzAJBgNVBAYTAkVTMTIwMAYDVQQKEylNSU5JU1RFUklPIERFIElORFVTVFJJQSBFTkVSR0lBIFkgVFVSSVNNTzEOMAwGA1UECxMFU0VUU0kwHhcNMTQwOTExMTEzODEyWhcNMTkwOTExMTEzODEyWjB+MSswKQYDVQQDEyJTUEFOSVNIIFRSVVNUIExJU1QgU0NIRU1FIE9QRVJBVE9SMQswCQYDVQQGEwJFUzEyMDAGA1UEChMpTUlOSVNURVJJTyBERSBJTkRVU1RSSUEgRU5FUkdJQSBZIFRVUklTTU8xDjAMBgNVBAsTBVNFVFNJMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3Tk6ThJZ/uBAqg8c0PWtC+xl8XQ4RyELaZSwcbaBJlyr/dj288QWjIBtOz+kZgEM7mINlTNW4/FVHNeJfY8dzUBdkhTccx7W3yK720U83DZp+OhBS47+T4/6krQPZ2uMhPI+U7sf7qcOVJ0AjxF2vrrFqTzm1pJ8TE1ys482b8s0o3A9ugLR28UcQhhUUPA2hMkEwzIY9TL1Umrip2XtlJT3N1IOKTMQpiqTJL5laF6WWVRtcTv461uePiohd9ZhBjOXstcaEczCOFeE7Zh6l9uSCwW78ool8b2VezEh5ZDaGv/iSxxPIoiOkd5/9yElqy3JLagJKs8LpTp33WvGhQIDAQABo0wwSjAJBgNVHRMEAjAAMAsGA1UdDwQEAwIGQDAdBgNVHQ4EFgQUkh8fb5AKQbc7caUcVmmK7FH1vUwwEQYDVR0lBAowCAYGBACRNwMAMA0GCSqGSIb3DQEBCwUAA4IBAQDJjFeyy4YBakY61DvbuuCb6FlrIhSbNPH2/o7fX4Ve+G+2WRJOEkE1dIezvnVyOvNnym66rngcZXQDoFMPK5SOQm4nNXrUDd5rWM3c84sHba7UuEdVgC9ZW0YR44/9bVxIHOBSXUDcWbUu6nVStZpNy/Gn11iEIRSU4TsE8YJK5cjZ/xaigYDt01BlLu34v60JoClwlbHeuPgHhUwPyGD8sD4g9+QQhsouv8pG9gbT5+KttS63jB/SmrWLAJOmg97WI/2jkSObJ8zwn0jVJdZtBGbiN2I3+wv1F+FvRZH4jdpE2P7aimucx5iMng+o/dKzFGThn5DwVa5pvplf8IEs ++ ++ ++ ++ https://sede.minetur.gob.es/Prestadores/TSL/TSL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ ES ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ MINISTRY OF INDUSTRY ENERGY AND TOURISM ++ MINISTERIO DE INDUSTRIA ENERGIA Y TURISMO ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/ES ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIGLjCCBBagAwIBAgIFFNaV71owDQYJKoZIhvcNAQENBQAwgYwxCzAJBgNVBAYTAkZJMREwDwYDVQQHDAhIZWxzaW5raTE0MDIGA1UECgwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTE0MDIGA1UEAwwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTAeFw0xNDAxMjkwMDAwMDBaFw0xNzAxMjkwMDAwMDBaMIGMMQswCQYDVQQGEwJGSTERMA8GA1UEBwwISGVsc2lua2kxNDAyBgNVBAoMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkxNDAyBgNVBAMMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDlBRvA314qdToNxTWlXnEL8BwrU7AE0FkYQdWwl9Pe8+3+pzZ1y1vTGgDNVX5qm6taGtMyKwLCuZ4HXUs1tV1LmKE4GHm49R5IjcxCocGyUmIQOzAlYEG087ol/nVuG3bVyOOv/OID8/drj13QvSmhkOXtfHKo0meF/HiGHO9oTBshQpdhCDCxcP+ERh92peCcn1XdO/fCIWdEfIxfyPvf0ktdjAQyeRE7PUusRAdVfPppW6x2+2dMjFwN6pL+eiTw8QX79mm47DVR9nxpvzhvO8JqniG7Oog9GdQF/kGK7AU7gmJq+mp+pl8S9dpooxg/JbmxpGyceHeIWtmqEv4rcI/futBjJ6W8xsMKu8Bhb/m8Fx9oiXCqYf/3nsDBtCnhF8zNxW65X5sqcxzC8j1WrTNMIZdIUsozZ4uWVsdVHnC913HmPg9iZj62t0d6BrEMe+OPyj9+2Klx2wBE2JoHK+7X3I3HWubTNqxRV2YpcTTzy/NoDlVszJh0gQywaYivciEDeTMufpRtAX21NdwzDx120x80WeZg7yiNLP9cdnxcFaUD/6JViqxjTfU68JvHto5f/Q4wgB1wtCfU2/LQyjoLXrZGgEoMhvOAwQzr0tRjL9Rob0kcghR9rJXZ3mlKJcjYFAFTiKusxQMWyZ00Sqw0VWlTnYrMtC42r/kaUwIDAQABo4GUMIGRMB0GA1UdDgQWBBStsWQJG5o1vkTC1ZRN7YIu/oMLMjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSAECjAIMAYGBFUdIAAwLwYDVR0RBCgwJoENdHNsQGZpY29yYS5maYYVaHR0cDovL3d3dy5maWNvcmEuZmkvMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQ0FAAOCAgEALIdGuCE+3QSRFO1G3Bckk5lzk5fLo3tuhQnG3sQUkLjN7RKU4kHLqxSBw5Xveg08gPbEQJUWllr+ggwEZGT4Pb5U+0A32uO9l+FzHTU08VuFNGJanGnl7yqpNDOfoJ+vEjobTJXrHztPHxIenM6Zi3vXq8lHK3kBMjwDDS7tONP8Buj5QZbTLcrqQaw2GnA1qD1jEG+HL5+DAqtz/b7lM3F2yaaKsKRA0QEELQhschxyXF5H0pwTU7wHHN5vyNsFtq4KvzR+nq8kdDpbH1UnS0sS6MsttPdDePwXWGwrldxW4qHH0ev0RdC5oUnF+Z+D8oAhRP7ZsRlBlJTVNyeMSZuw3N9tB2Rwde0CSkWpconGDmmt8u8rxYRrgfqWU1tlrPr3KA3GUA11knawTL09R8v0ts3xAQvWKZl8C3GwUkHdHr4Whno8gucptP5zq/6Tu6KWe8jTAbjLguj8ouEnzjutXEncCIXel0+YIUKjV0OeH3mKbg4mx8WAL0Ui1uNsPQGa7od0DgsMV6aOKZgHj4ne+UImn9sVJU2lM5ZqPNe5uhOj/dSrxpCAp++VRJhEr2x+LQe1r+AWE/xFsX1jK7S/YYgnFYF6oDt+k4pRZ71yKS0LtxvkJyo69xLNHF6ef2iCZ0VQLMmZy2O5je0BVeBX0MlhX5rjqr8gPBWHHaI= ++ ++ ++ ++ ++ MIIGLjCCBBagAwIBAgIFFF1sOa8wDQYJKoZIhvcNAQENBQAwgYwxCzAJBgNVBAYTAkZJMREwDwYDVQQHDAhIZWxzaW5raTE0MDIGA1UECgwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTE0MDIGA1UEAwwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTAeFw0xNDAxMjkwMDAwMDBaFw0xNzA1MjkwMDAwMDBaMIGMMQswCQYDVQQGEwJGSTERMA8GA1UEBwwISGVsc2lua2kxNDAyBgNVBAoMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkxNDAyBgNVBAMMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCj/Np9sC+sShirNn7st+aMFctbBTuWZJiit/jHekczvWKpMWt7JjWieZESkdcSEfDN8Ziu8a0rLsBgcKGKdNxW1EapJg5GolE+0P01kglCxQptOqUkc8t943p1TOsDx/u1vSHjnaV5SyCuqhbBaJOTZrOGePPyaOMKvQ/C/EqBuolfYfEC1TrrC7T0NA9t0F3MtKFvcrFPfEgOPmqcqHJfnOhb9ip4HSzOn09qUltJKsmZ/h9v2qcUdmjN6H7okMec1Pjnf8M5oEZk0Mr++ZAEOHQDfcN9rzVKdlUH2uckwHfOF0BYcdpyn7jry7BA9lDM8k/BnNmE+/hDYUGWODF8nw9qqcWgTMBngAvXeGAoZEq7L4Y/n/jASaHBaMrPB5+FFfM3bQp1yu94aPaVemuipG3tVOLwnJR7ITQXbVjwhK+oVc3OV7lMBcnumdrwPlQTDv2kYNDE9+agZsIldb86nAzF7KvT3E9BYW+Ki8OJrhpiCkZEOD6VjMOBWYXpB1t9QoQP8HNX8++3F0n637w9DfyD8EbbhPD9MmyYe97//jzl8dVJVbKp04EM+dYibS7t3Tv9vTXP/ZrBtXlV++FN3c7X4MFmeS1BqmGGcWENLgTy5+wal35c/Tl8i4w/9DsiOweUTtApE4lbd0YjYDlRtpIZHv5rWxzYKZf5QyvJAwIDAQABo4GUMIGRMB0GA1UdDgQWBBTyJSvYrLIitCRLQ7chsEd0fIW2GjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSAECjAIMAYGBFUdIAAwLwYDVR0RBCgwJoENdHNsQGZpY29yYS5maYYVaHR0cDovL3d3dy5maWNvcmEuZmkvMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQ0FAAOCAgEARutGlCEPO6KVboOz76YpIRzAtFsAdztsNpNqnalAorAeN3Wnvm2fGiNR+zpkEE91Iqv79WNGNY9clADQTmksmUubHH9jSky9nQbM7wmEqcLAF8jGYQz0Pvya4p/3rZ2Q6b46wyb4E+GWyYAqp35nEizIf+iNnPuCrFjWjsVnhZWYMbNO/4PGBsQTSv6t6q7zAp21bw5slYbAfiYvLxR017btGq29sMRsei1olbleLHMM+L+eepU0fmXrwQEOJgqU2H8xw1NPLJu8ZVq8oM/nGPEzweKoCE0/PWjoVH1GryNmN+tz55Z7VejkdxHEwjnRJABC+HLjqF5awLUxXbwC6qZ7UzCEnf0AygStNi1PFf4Xn6iN8qP1tSHxSdOj25yQ3Ovqq/GERLlW/Im7oNBqXJDuoI0x7VeQRKbRflS8fyUbwSbg7TQo0yoSefHevk+bXF74NLB3kh2Leu/i6wPY3A5X4sucESYJmVUqRt6E32EIvdy/dPZtLDGqlqHMxJmXGdehSJ1UOUXgYmAVT+yRVOYTROBkqk3VzdkuDrzHiYGO7x7t+XyI9I/jQJTXvPNqWq3JtZDsyxI8nHAr1MKcm8FnZr3DL/RUOhxRTPCRX9BtXehy+izYdaWb/PcS6LtSFWrXvQLXGLFzgVfjBDWsLS9XfLylZTaox/BBp2JjCyY= ++ ++ ++ ++ https://www.viestintavirasto.fi/attachments/HumanReadable_TSL-Ficora.xml.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ FI ++ ++ ++ application/pdf ++ ++ ++ ++ Finnish Communications Regulatory Authority ++ Viestintavirasto ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/FI ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIGLjCCBBagAwIBAgIFFNaV71owDQYJKoZIhvcNAQENBQAwgYwxCzAJBgNVBAYTAkZJMREwDwYDVQQHDAhIZWxzaW5raTE0MDIGA1UECgwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTE0MDIGA1UEAwwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTAeFw0xNDAxMjkwMDAwMDBaFw0xNzAxMjkwMDAwMDBaMIGMMQswCQYDVQQGEwJGSTERMA8GA1UEBwwISGVsc2lua2kxNDAyBgNVBAoMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkxNDAyBgNVBAMMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDlBRvA314qdToNxTWlXnEL8BwrU7AE0FkYQdWwl9Pe8+3+pzZ1y1vTGgDNVX5qm6taGtMyKwLCuZ4HXUs1tV1LmKE4GHm49R5IjcxCocGyUmIQOzAlYEG087ol/nVuG3bVyOOv/OID8/drj13QvSmhkOXtfHKo0meF/HiGHO9oTBshQpdhCDCxcP+ERh92peCcn1XdO/fCIWdEfIxfyPvf0ktdjAQyeRE7PUusRAdVfPppW6x2+2dMjFwN6pL+eiTw8QX79mm47DVR9nxpvzhvO8JqniG7Oog9GdQF/kGK7AU7gmJq+mp+pl8S9dpooxg/JbmxpGyceHeIWtmqEv4rcI/futBjJ6W8xsMKu8Bhb/m8Fx9oiXCqYf/3nsDBtCnhF8zNxW65X5sqcxzC8j1WrTNMIZdIUsozZ4uWVsdVHnC913HmPg9iZj62t0d6BrEMe+OPyj9+2Klx2wBE2JoHK+7X3I3HWubTNqxRV2YpcTTzy/NoDlVszJh0gQywaYivciEDeTMufpRtAX21NdwzDx120x80WeZg7yiNLP9cdnxcFaUD/6JViqxjTfU68JvHto5f/Q4wgB1wtCfU2/LQyjoLXrZGgEoMhvOAwQzr0tRjL9Rob0kcghR9rJXZ3mlKJcjYFAFTiKusxQMWyZ00Sqw0VWlTnYrMtC42r/kaUwIDAQABo4GUMIGRMB0GA1UdDgQWBBStsWQJG5o1vkTC1ZRN7YIu/oMLMjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSAECjAIMAYGBFUdIAAwLwYDVR0RBCgwJoENdHNsQGZpY29yYS5maYYVaHR0cDovL3d3dy5maWNvcmEuZmkvMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQ0FAAOCAgEALIdGuCE+3QSRFO1G3Bckk5lzk5fLo3tuhQnG3sQUkLjN7RKU4kHLqxSBw5Xveg08gPbEQJUWllr+ggwEZGT4Pb5U+0A32uO9l+FzHTU08VuFNGJanGnl7yqpNDOfoJ+vEjobTJXrHztPHxIenM6Zi3vXq8lHK3kBMjwDDS7tONP8Buj5QZbTLcrqQaw2GnA1qD1jEG+HL5+DAqtz/b7lM3F2yaaKsKRA0QEELQhschxyXF5H0pwTU7wHHN5vyNsFtq4KvzR+nq8kdDpbH1UnS0sS6MsttPdDePwXWGwrldxW4qHH0ev0RdC5oUnF+Z+D8oAhRP7ZsRlBlJTVNyeMSZuw3N9tB2Rwde0CSkWpconGDmmt8u8rxYRrgfqWU1tlrPr3KA3GUA11knawTL09R8v0ts3xAQvWKZl8C3GwUkHdHr4Whno8gucptP5zq/6Tu6KWe8jTAbjLguj8ouEnzjutXEncCIXel0+YIUKjV0OeH3mKbg4mx8WAL0Ui1uNsPQGa7od0DgsMV6aOKZgHj4ne+UImn9sVJU2lM5ZqPNe5uhOj/dSrxpCAp++VRJhEr2x+LQe1r+AWE/xFsX1jK7S/YYgnFYF6oDt+k4pRZ71yKS0LtxvkJyo69xLNHF6ef2iCZ0VQLMmZy2O5je0BVeBX0MlhX5rjqr8gPBWHHaI= ++ ++ ++ ++ ++ MIIGLjCCBBagAwIBAgIFFF1sOa8wDQYJKoZIhvcNAQENBQAwgYwxCzAJBgNVBAYTAkZJMREwDwYDVQQHDAhIZWxzaW5raTE0MDIGA1UECgwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTE0MDIGA1UEAwwrRmlubmlzaCBDb21tdW5pY2F0aW9ucyBSZWd1bGF0b3J5IEF1dGhvcml0eTAeFw0xNDAxMjkwMDAwMDBaFw0xNzA1MjkwMDAwMDBaMIGMMQswCQYDVQQGEwJGSTERMA8GA1UEBwwISGVsc2lua2kxNDAyBgNVBAoMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkxNDAyBgNVBAMMK0Zpbm5pc2ggQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCj/Np9sC+sShirNn7st+aMFctbBTuWZJiit/jHekczvWKpMWt7JjWieZESkdcSEfDN8Ziu8a0rLsBgcKGKdNxW1EapJg5GolE+0P01kglCxQptOqUkc8t943p1TOsDx/u1vSHjnaV5SyCuqhbBaJOTZrOGePPyaOMKvQ/C/EqBuolfYfEC1TrrC7T0NA9t0F3MtKFvcrFPfEgOPmqcqHJfnOhb9ip4HSzOn09qUltJKsmZ/h9v2qcUdmjN6H7okMec1Pjnf8M5oEZk0Mr++ZAEOHQDfcN9rzVKdlUH2uckwHfOF0BYcdpyn7jry7BA9lDM8k/BnNmE+/hDYUGWODF8nw9qqcWgTMBngAvXeGAoZEq7L4Y/n/jASaHBaMrPB5+FFfM3bQp1yu94aPaVemuipG3tVOLwnJR7ITQXbVjwhK+oVc3OV7lMBcnumdrwPlQTDv2kYNDE9+agZsIldb86nAzF7KvT3E9BYW+Ki8OJrhpiCkZEOD6VjMOBWYXpB1t9QoQP8HNX8++3F0n637w9DfyD8EbbhPD9MmyYe97//jzl8dVJVbKp04EM+dYibS7t3Tv9vTXP/ZrBtXlV++FN3c7X4MFmeS1BqmGGcWENLgTy5+wal35c/Tl8i4w/9DsiOweUTtApE4lbd0YjYDlRtpIZHv5rWxzYKZf5QyvJAwIDAQABo4GUMIGRMB0GA1UdDgQWBBTyJSvYrLIitCRLQ7chsEd0fIW2GjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSAECjAIMAYGBFUdIAAwLwYDVR0RBCgwJoENdHNsQGZpY29yYS5maYYVaHR0cDovL3d3dy5maWNvcmEuZmkvMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQ0FAAOCAgEARutGlCEPO6KVboOz76YpIRzAtFsAdztsNpNqnalAorAeN3Wnvm2fGiNR+zpkEE91Iqv79WNGNY9clADQTmksmUubHH9jSky9nQbM7wmEqcLAF8jGYQz0Pvya4p/3rZ2Q6b46wyb4E+GWyYAqp35nEizIf+iNnPuCrFjWjsVnhZWYMbNO/4PGBsQTSv6t6q7zAp21bw5slYbAfiYvLxR017btGq29sMRsei1olbleLHMM+L+eepU0fmXrwQEOJgqU2H8xw1NPLJu8ZVq8oM/nGPEzweKoCE0/PWjoVH1GryNmN+tz55Z7VejkdxHEwjnRJABC+HLjqF5awLUxXbwC6qZ7UzCEnf0AygStNi1PFf4Xn6iN8qP1tSHxSdOj25yQ3Ovqq/GERLlW/Im7oNBqXJDuoI0x7VeQRKbRflS8fyUbwSbg7TQo0yoSefHevk+bXF74NLB3kh2Leu/i6wPY3A5X4sucESYJmVUqRt6E32EIvdy/dPZtLDGqlqHMxJmXGdehSJ1UOUXgYmAVT+yRVOYTROBkqk3VzdkuDrzHiYGO7x7t+XyI9I/jQJTXvPNqWq3JtZDsyxI8nHAr1MKcm8FnZr3DL/RUOhxRTPCRX9BtXehy+izYdaWb/PcS6LtSFWrXvQLXGLFzgVfjBDWsLS9XfLylZTaox/BBp2JjCyY= ++ ++ ++ ++ https://www.viestintavirasto.fi/attachments/TSL-Ficora.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ FI ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Finnish Communications Regulatory Authority ++ Viestintavirasto ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/FI ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIEfjCCA2agAwIBAgISESFFIhi7LsGOut4p3YeL6MH7MA0GCSqGSIb3DQEBCwUAMIGUMQswCQYDVQQGEwJGUjEwMC4GA1UECgwnQWdlbmNlIE5hdGlvbmFsZSBkZXMgVGl0cmVzIFPDqWN1cmlzw6lzMRcwFQYDVQQLEw4wMDAyIDEzMDAwMzI2MjE6MDgGA1UEAwwxQXV0b3JpdMOpIGRlIGNlcnRpZmljYXRpb24gcG9ydGV1ciBBQUUgMyDDqXRvaWxlczAeFw0xNDAzMjYxNTEwMTJaFw0xNzAzMjYxNDEwMTJaMH0xCzAJBgNVBAYTAkZSMS4wLAYDVQQKEyVBZ2VuY2UgTmF0aW9uYWxlIGRlcyBUaXRyZXMgU2VjdXJpc2VzMRcwFQYDVQQLEw4wMDAyIDEzMDAwMzI2MjElMCMGA1UEAxMcTGF1cmVudCBWb2lsbG90IDIzMTAwMDExNTN2bDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKjtrKgkGxUMgxtItb0taMxoKdUFZIo7mUnhuWa5ozlnHvF1QZ+GlrgUCcRZtvMkzRkjzzsduwe3d0pXTXbddjs2CPD5nnyXpVCw0RG9tgBSwSkNMB2BFPDeNoShLNh6GgJ5pYpfPj+Xj4AG9s4wZAPtNBXNoZj25lK85XPbNCwroOXStJVqWryr6A8Wa/IIBui3uxyQcgEhQTK0TmXRsnWOI6YCOhVeQm7Nj8yelWu6j4zqqf9IoFbn8U7YQ+kgRAhZjpUlQBiXRzyCAPYZn/GE7v8xAodEppwpQ3MEwUMul++ENVixJnPhCTK+1DXuk33FC5eh8l3pJsWMfJFWVAECAwEAAaOB3zCB3DAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGQDAXBgNVHSAEEDAOMAwGCiqBegGBSAIDAQEwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybC5hbnRzLmdvdXYuZnIvYW50c3YyL2FjX3BvcnRldXJfYWFlLmNybDAiBggrBgEFBQcBAwQWMBQwCAYGBACORgEBMAgGBgQAjkYBBDAdBgNVHQ4EFgQUO8vG9yPdo2CH7zThOxpkoirLy/IwHwYDVR0jBBgwFoAUrS1vABmDqTgbf4cj78PA932oJUkwDQYJKoZIhvcNAQELBQADggEBAKqCs2JJe0jjmqQUARdsLDAB27S9glO6UHWprnkUG3OoJRRnDewACyo4MTdst2WgB6kAuQ80lMsTGCpRTN4TppbZDvHtcv6QsAV+878m0zdzBfCLp8F9pMxQaQZNFjBD3o0TsGz4plY1KCgHBviSRqwdAT7SqY68XAjMj+e3WhJ0693nEMmurXMpqe2OE1s5Y5BExlxhffImyrhDzry4/V0ZEnAb99DW0zr+WTNZFlkpz9CwZgPWTpuGHagU8/aFCJ2hbrmYZYsPhHMBLbBKfphJ9rrojQmY7SWpvd7ygGIfi9migV7EFMq/v8XyXuwFq1jt7QgturXnb39dgU7MT9A= ++ ++ ++ ++ http://references.modernisation.gouv.fr/sites/default/files/TSL-FR_xml.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ FR ++ ++ ++ application/pdf ++ ++ ++ ++ Directorate General for State Modernisation ++ Direction Générale de la Modernisation de l'Etat (DGME ) ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/FR ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIEfjCCA2agAwIBAgISESFFIhi7LsGOut4p3YeL6MH7MA0GCSqGSIb3DQEBCwUAMIGUMQswCQYDVQQGEwJGUjEwMC4GA1UECgwnQWdlbmNlIE5hdGlvbmFsZSBkZXMgVGl0cmVzIFPDqWN1cmlzw6lzMRcwFQYDVQQLEw4wMDAyIDEzMDAwMzI2MjE6MDgGA1UEAwwxQXV0b3JpdMOpIGRlIGNlcnRpZmljYXRpb24gcG9ydGV1ciBBQUUgMyDDqXRvaWxlczAeFw0xNDAzMjYxNTEwMTJaFw0xNzAzMjYxNDEwMTJaMH0xCzAJBgNVBAYTAkZSMS4wLAYDVQQKEyVBZ2VuY2UgTmF0aW9uYWxlIGRlcyBUaXRyZXMgU2VjdXJpc2VzMRcwFQYDVQQLEw4wMDAyIDEzMDAwMzI2MjElMCMGA1UEAxMcTGF1cmVudCBWb2lsbG90IDIzMTAwMDExNTN2bDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKjtrKgkGxUMgxtItb0taMxoKdUFZIo7mUnhuWa5ozlnHvF1QZ+GlrgUCcRZtvMkzRkjzzsduwe3d0pXTXbddjs2CPD5nnyXpVCw0RG9tgBSwSkNMB2BFPDeNoShLNh6GgJ5pYpfPj+Xj4AG9s4wZAPtNBXNoZj25lK85XPbNCwroOXStJVqWryr6A8Wa/IIBui3uxyQcgEhQTK0TmXRsnWOI6YCOhVeQm7Nj8yelWu6j4zqqf9IoFbn8U7YQ+kgRAhZjpUlQBiXRzyCAPYZn/GE7v8xAodEppwpQ3MEwUMul++ENVixJnPhCTK+1DXuk33FC5eh8l3pJsWMfJFWVAECAwEAAaOB3zCB3DAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGQDAXBgNVHSAEEDAOMAwGCiqBegGBSAIDAQEwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDovL2NybC5hbnRzLmdvdXYuZnIvYW50c3YyL2FjX3BvcnRldXJfYWFlLmNybDAiBggrBgEFBQcBAwQWMBQwCAYGBACORgEBMAgGBgQAjkYBBDAdBgNVHQ4EFgQUO8vG9yPdo2CH7zThOxpkoirLy/IwHwYDVR0jBBgwFoAUrS1vABmDqTgbf4cj78PA932oJUkwDQYJKoZIhvcNAQELBQADggEBAKqCs2JJe0jjmqQUARdsLDAB27S9glO6UHWprnkUG3OoJRRnDewACyo4MTdst2WgB6kAuQ80lMsTGCpRTN4TppbZDvHtcv6QsAV+878m0zdzBfCLp8F9pMxQaQZNFjBD3o0TsGz4plY1KCgHBviSRqwdAT7SqY68XAjMj+e3WhJ0693nEMmurXMpqe2OE1s5Y5BExlxhffImyrhDzry4/V0ZEnAb99DW0zr+WTNZFlkpz9CwZgPWTpuGHagU8/aFCJ2hbrmYZYsPhHMBLbBKfphJ9rrojQmY7SWpvd7ygGIfi9migV7EFMq/v8XyXuwFq1jt7QgturXnb39dgU7MT9A= ++ ++ ++ ++ http://references.modernisation.gouv.fr/sites/default/files/TSL-FR.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ FR ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Directorate General for State Modernisation ++ Direction Générale de la Modernisation de l'Etat (DGME ) ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/FR ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIEzDCCA7SgAwIBAgIEPy+YtjANBgkqhkiG9w0BAQUFADAqMQswCQYDVQQGEwJIUjENMAsGA1UEChMERklOQTEMMAoGA1UECxMDUkRDMB4XDTE1MDcwNjA4NDkwNloXDTE2MTIyMDIxMjQzMFowgYQxCzAJBgNVBAYTAkhSMSIwIAYDVQQKExlNaW5pc3RhcnN0dm8gZ29zcG9kYXJzdHZhMQ8wDQYDVQQHEwZaYWdyZWIxQDAZBgNVBAUTEkhSMjI0MTM0NzI5MDAuMy4xMTAjBgNVBAMTHENyb2F0aWFuIFRydXN0ZWQgTGlzdCBTaWduZXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvcLGSL/PPQAG28dGf6M+nyAFfxmYzVgFVkyoRLpR/v0MtGZRon75CxU+hrhC6sWRyT7v1yMafFmWGe7gPx2pDrgyID32GIiCrCVHxFmg5GGaWsYBKFYm4WnAo++rANA7MS8BeZP43c1uJQBRDAWI2ocgqKl9AM4c0UPpFUq59wxzy8VqQTRv1GCSZUk3OjH+JVykiWzdGjYPO3VXYaHz4B2itKwfsMLQu2khqjGUBoIJyP5yekcPwbo0qBYmlAVOl1ImecN9z7UDHlaYcSdSgyPoHr/qhAAtlxSdv/wooJcdfvTWQ6ncCi/y3nTNqOt3LA+ydgNS4P9LGdleIbPzJAgMBAAGjggGdMIIBmTAOBgNVHQ8BAf8EBAMCB4AwEQYDVR0lBAowCAYGBACRNwMAMEsGA1UdIAREMEIwQAYJK3yIUAULCAQCMDMwMQYIKwYBBQUHAgEWJWh0dHA6Ly9yZGMuZmluYS5oci9jcC9hbWR0MV9jcDQtMC5wZGYwgcYGA1UdHwSBvjCBuzBDoEGgP6Q9MDsxCzAJBgNVBAYTAkhSMQ0wCwYDVQQKEwRGSU5BMQwwCgYDVQQLEwNSREMxDzANBgNVBAMTBkNSTDc2NDB0oHKgcIZNbGRhcDovL3JkYy1sZGFwLmZpbmEuaHIvb3U9UkRDLG89RklOQSxjPUhSP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3QlM0JiaW5hcnmGH2h0dHA6Ly9yZGMuZmluYS5oci9jcmxzL3JkYy5jcmwwKwYDVR0QBCQwIoAPMjAxNTA3MDYwODQ5MDZagQ8yMDE2MTIyMDIxMjQzMFowEwYDVR0jBAwwCoAIR0UAbvBXpsAwEQYDVR0OBAoECE+N/2c+OEmXMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQEFBQADggEBAFifLeogwhrxMNKmKhU59mEAH5JRLY9cz0rPA9YjY7Orh/2RmkJF4QyOCw0tNntK+sGqOVG2aac73kPFOM+OFfcACRYcvMpSIf5AZQh+YtF7Gn2yKj8hltGH8SNAFLn8q8YbWd1Lh9xuPXwgVDbbOSqkUO+CkKu3gfdB3cntJYQ6ggf9eEbwNqDrtSE6pdhY9YJQnCmwZlP7VnZGvys55u/awTvbXv/gAfKjVfjHhdo5o7dkOZStkCuUWYk2WNzuUu5R26OI1YI7c/6m9aXcFHsc178CsITO+WSmq/FpKzqG8k1xCfmd38tpiuKL8T/hoSyOhoXjdoGUJ4XIsxqp6DI= ++ ++ ++ ++ ++ MIIG3TCCBMWgAwIBAgIEVlc9fDANBgkqhkiG9w0BAQsFADBEMQswCQYDVQQGEwJIUjEdMBsGA1UEChMURmluYW5jaWpza2EgYWdlbmNpamExFjAUBgNVBAMTDUZpbmEgUkRDIDIwMTUwHhcNMTYwMzI0MTIzODA1WhcNMTgwMzI0MDEwMjQ4WjCBhDELMAkGA1UEBhMCSFIxIjAgBgNVBAoTGU1pbmlzdGFyc3R2byBnb3Nwb2RhcnN0dmExDzANBgNVBAcTBlphZ3JlYjFAMBkGA1UEBRMSSFIyMjQxMzQ3MjkwMC4xLjExMCMGA1UEAxMcQ3JvYXRpYW4gVHJ1c3RlZCBMaXN0IFNpZ25lcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5zRisNyaJBtqRiLZrHDP1Gx1uyiropw40XVof+HLLdR1hVecZ/EPN+u2o58RLTyn1sf/jrvJB7449KQMXdVXWM2vDiUo5FazClWqw80d1fvPStU9jtGVShWEygmDxwJ9lHrPWyzwRgYWgEbpnsMiH/7FF/l3ufEqlyNUyE30yH4r2ghlOgFsoDm0cBY2jDt5uuj9+19iKeaLNQFCLBV2ySai7hBeGrsDjhurdvMBdMDF5vAclGhY9XWSSWeMl0S6j4sO0QlU/P1jqpbJmNCiw3xSA8WMNmfz5V78g6ERUuaSiKBKyY4Jvu14ZrUNfsFfl1w9colaHHVCuAhBUW2iECAwEAAaOCApQwggKQMA4GA1UdDwEB/wQEAwIHgDARBgNVHSUECjAIBgYEAJE3AwAwgZ4GA1UdIASBljCBkzCBkAYJK3yIUAUMCAQCMIGCMD8GCCsGAQUFBwIBFjNodHRwOi8vcmRjLmZpbmEuaHIvUkRDMjAxNS9GaW5hUkRDMjAxNS1DUDUtMC1oci5wZGYwPwYIKwYBBQUHAgEWM2h0dHA6Ly9yZGMuZmluYS5oci9SREMyMDE1L0ZpbmFSREMyMDE1LUNQNS0wLWVuLnBkZjBpBggrBgEFBQcBAQRdMFswHwYIKwYBBQUHMAGGE2h0dHA6Ly9vY3NwLmZpbmEuaHIwOAYIKwYBBQUHMAKGLGh0dHA6Ly9yZGMuZmluYS5oci9SREMyMDE1L0ZpbmFSRENDQTIwMTUuY2VyMIIBEgYDVR0fBIIBCTCCAQUwgaSggaGggZ6GLGh0dHA6Ly9yZGMuZmluYS5oci9SREMyMDE1L0ZpbmFSRENDQTIwMTUuY3Jshm5sZGFwOi8vcmRjLWxkYXAyLmZpbmEuaHIvY249RmluYSUyMFJEQyUyMDIwMTUsbz1GaW5hbmNpanNrYSUyMGFnZW5jaWphLGM9SFI/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdCUzQmJpbmFyeTBcoFqgWKRWMFQxCzAJBgNVBAYTAkhSMR0wGwYDVQQKExRGaW5hbmNpanNrYSBhZ2VuY2lqYTEWMBQGA1UEAxMNRmluYSBSREMgMjAxNTEOMAwGA1UEAxMFQ1JMNzIwHwYDVR0jBBgwFoAUFGMRu3szA2h0HBXt5izBPEgbmCEwHQYDVR0OBBYEFHpXJs/yaae5uhYTkj4IpJTT7C4BMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggIBAHgCRzYtPPy2CQLP9S8kOSWckY/iPYPEDgRuCvzLrByc233wSalVLn397WI28rR9m9AgNOVby/81kiUo/dHihuXfmPNlE767fzajvEjGd8i+OuIQS8oaC+M1UXzbVnBm3ONnbrZuhsmbfPX3qlRo339Xbw/+CeUzZY0olSQy+cf1jjP9GnKIRk44mpX1G79vI0yzdxspshqN7ePyOPOjP0t6zDq58UjSpOovUwNBNJln6VZxgSPgFEOqu23iUh92NYdg6EbaNBGPvNOPGJSNS/Bkf9PsFycHixF/+4w2IEdTYBQk0f3D3OBfC6oTbbdVGsIAf2nYpf0g0nfltd2EIGRMm2U0rSB5+cNANwlQjPHmSUHbsERNJfdA+TbiHEnxIJ0wEwHdI6tsAkmJEYCdmexQg7qQR0PTUED0UDLhXhs4MJpQYC4XQw7eHoowq8qgwoV0CFJBLZLeiQFDtN1EaXA92D9lfkTmeQ+T4WPCJwhLeO1nviM/M4+yBqvobglo5Ua3E7Na+SNS0J4V9IwlYdbVgEJo0JPH+n5CMacc3WXk3/5jDR9TchpuBVC3l4ImidiCrV5DO3a6ibLEWSgX8YtaIIl1kuwJ79qWH19Njrry3nDA5oLoFKivSNZR9XRpIgOReYYafJ1N1A+MdevHF2IYSt3KS8oBJlDQ58vSi1++ ++ ++ ++ ++ http://www.mingo.hr/public/trgovina/TSL-HR.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ HR ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Ministry of the economy ++ Ministarstvo gospodarstva ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/HR ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIEPDCCAySgAwIBAgIEARgHXjANBgkqhkiG9w0BAQsFADCBlDELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MUEwPwYDVQQKDDhOYXRpb25hbCBNZWRpYSBhbmQgSW5mb2NvbW11bmljYXRpb25zIEF1dGhvcml0eSwgSHVuZ2FyeTEvMC0GA1UEAwwmSHVuZ2FyaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IwHhcNMTUwODI0MDkzNzQ3WhcNMTcwMjI0MTAzNzQ3WjCBlDELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MUEwPwYDVQQKDDhOYXRpb25hbCBNZWRpYSBhbmQgSW5mb2NvbW11bmljYXRpb25zIEF1dGhvcml0eSwgSHVuZ2FyeTEvMC0GA1UEAwwmSHVuZ2FyaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCAo4FwCpPc/XcgwXgK+lVlehlXqdOZRPCYgloaoPbVk8UFMszNrSZlnMSORTKBIsHbJLlEE//hrt92XFzbIwMNnm1ZtbMNtBOvin05ziJqXm4DypQ2tHpX9afTp0Q+Xngfi5P8QvMQJ+4641uhBEvUcUY7rDrmCphU4JGk1FboGEL0ONNiGHB17bT03uW9mUQAnrUMZ8D17pg6WYOPPl3FAcQj712RtOl1QwgIql5li2QC73Nwaoz19sna/Crd8JHycYK4zeMcD3DyuG3jbyxeI2NhLauuIj4lBZCFxXmzD7UXPYDsyunWu7hJv99yAf638M0HxWXRIbnBSG5DDaIjAgMBAAGjgZMwgZAwHwYDVR0jBBgwFoAUmiiNX5RgD9JlIjwXD3ht+tCyOM4wHQYDVR0OBBYEFJoojV+UYA/SZSI8Fw94bfrQsjjOMA4GA1UdDwEB/wQEAwIGQDAdBgNVHREEFjAUgRJUTG9wZXJhdG9yQG5taGguaHUwDAYDVR0TAQH/BAIwADARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQELBQADggEBAAUQb9qC0NOLg9dadgS+8gVps1YFZrJjDVSAIJesQww+Vc7m2lvE4YoMAEBZMgkepKHgfVyR0DqgRJfFHW4D0jYbb82m+ETgWebmce3ZdFsKdj9m7yvVTvDqfjZ+moyR7Pw8JdTCwNgrYaKNVQu7AzzZpdlZs5gjSbGngUmsL/HUl9iEF+aFCsHT6Qn9J7pwIDNptvOp2sF1YBMtM+O/sR9hWhnTzfmTQK2bzpWNbWO/PAf7UDrHLEGPB5oF2uRR/pcEMR6879lVHUdbEAvRrAEIT9598ohAT4C+YD/Ig1rFl9lzmxJh8fE4wvlEXBjMc2PPDppKWBEusSFhpPLnNqM= ++ ++ ++ ++ ++ MIIEPDCCAySgAwIBAgIEBYPk+TANBgkqhkiG9w0BAQsFADCBlDELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MUEwPwYDVQQKDDhOYXRpb25hbCBNZWRpYSBhbmQgSW5mb2NvbW11bmljYXRpb25zIEF1dGhvcml0eSwgSHVuZ2FyeTEvMC0GA1UEAwwmSHVuZ2FyaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IwHhcNMTUwODI0MDkzOTAyWhcNMTcwODI0MDkzOTAyWjCBlDELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MUEwPwYDVQQKDDhOYXRpb25hbCBNZWRpYSBhbmQgSW5mb2NvbW11bmljYXRpb25zIEF1dGhvcml0eSwgSHVuZ2FyeTEvMC0GA1UEAwwmSHVuZ2FyaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDWMX7RdV8krU56N5reRPnr6ld9qVOxuKI7o2qsbk3dvlEe98kgslGmL6aCXUJP7vtGUtegmjs1JQwzLdeW9CITjIAwDsQdpw6MKDl0Txz9sWFDx0kqu0w+Dn2l2yahYDYYQ/oa5fxRpqd05CH574HJbq5ulTCujKDsEKROhxbtnter37CtQicsYF3vtiaQRxRcXYmwalSRuWnr7SyquKB2nfKXSJTOf3jwbNgc/fUzEHDGaT+gexK8Dbt4VFrXSFBhdTW4rTovdNereMb/t1f+HI6oXcYUABFIVcKoIZJCuAayeuC+xz2QyjvAUKPgfikcSy8Murz4PK6lGNOVQPdLAgMBAAGjgZMwgZAwHwYDVR0jBBgwFoAUW7v+j7zE+s3WH7Y4uB0RhwG9IvUwHQYDVR0OBBYEFFu7/o+8xPrN1h+2OLgdEYcBvSL1MA4GA1UdDwEB/wQEAwIGQDAdBgNVHREEFjAUgRJUTG9wZXJhdG9yQG5taGguaHUwDAYDVR0TAQH/BAIwADARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQELBQADggEBAG4YdNbWPF58uKSGQofgjf43IK9bbJazgHz2CQavCWB4o4x/iKNMUYuTI9DY3aHm9DxbT/yxk5jd+dQZfOUFop2Teec72uECicLXvLL4PIMrGZcpzIJXav/JSIngWqnHsdbyMNF/yftTBrJ1cN0HtFQDgPTCRTrnnCrZLfia1J0ItgXCw+q67j1UI+CWv7OXorSUKWZlRarx8EOm9R9nWRrQN2NCV+4JHP5JHrAEXf5QHVXbLiEv/z8ZT/KnBXmz7d6G8LF7emaQq1VIPLL5EpYGAYfha6+ydLR835dHjEuAFqHKYFMhZC2TkmVjFBxrENflRPQr3rhCb22I2YVmKbI= ++ ++ ++ ++ http://www.nmhh.hu/tl/pub/HU_TL.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ HU ++ ++ ++ application/pdf ++ ++ ++ ++ National Media and Infocommunications Authority, Hungary ++ Nemzeti Média- és Hírközlési Hatóság ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/HU ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIEPDCCAySgAwIBAgIEARgHXjANBgkqhkiG9w0BAQsFADCBlDELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MUEwPwYDVQQKDDhOYXRpb25hbCBNZWRpYSBhbmQgSW5mb2NvbW11bmljYXRpb25zIEF1dGhvcml0eSwgSHVuZ2FyeTEvMC0GA1UEAwwmSHVuZ2FyaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IwHhcNMTUwODI0MDkzNzQ3WhcNMTcwMjI0MTAzNzQ3WjCBlDELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MUEwPwYDVQQKDDhOYXRpb25hbCBNZWRpYSBhbmQgSW5mb2NvbW11bmljYXRpb25zIEF1dGhvcml0eSwgSHVuZ2FyeTEvMC0GA1UEAwwmSHVuZ2FyaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCAo4FwCpPc/XcgwXgK+lVlehlXqdOZRPCYgloaoPbVk8UFMszNrSZlnMSORTKBIsHbJLlEE//hrt92XFzbIwMNnm1ZtbMNtBOvin05ziJqXm4DypQ2tHpX9afTp0Q+Xngfi5P8QvMQJ+4641uhBEvUcUY7rDrmCphU4JGk1FboGEL0ONNiGHB17bT03uW9mUQAnrUMZ8D17pg6WYOPPl3FAcQj712RtOl1QwgIql5li2QC73Nwaoz19sna/Crd8JHycYK4zeMcD3DyuG3jbyxeI2NhLauuIj4lBZCFxXmzD7UXPYDsyunWu7hJv99yAf638M0HxWXRIbnBSG5DDaIjAgMBAAGjgZMwgZAwHwYDVR0jBBgwFoAUmiiNX5RgD9JlIjwXD3ht+tCyOM4wHQYDVR0OBBYEFJoojV+UYA/SZSI8Fw94bfrQsjjOMA4GA1UdDwEB/wQEAwIGQDAdBgNVHREEFjAUgRJUTG9wZXJhdG9yQG5taGguaHUwDAYDVR0TAQH/BAIwADARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQELBQADggEBAAUQb9qC0NOLg9dadgS+8gVps1YFZrJjDVSAIJesQww+Vc7m2lvE4YoMAEBZMgkepKHgfVyR0DqgRJfFHW4D0jYbb82m+ETgWebmce3ZdFsKdj9m7yvVTvDqfjZ+moyR7Pw8JdTCwNgrYaKNVQu7AzzZpdlZs5gjSbGngUmsL/HUl9iEF+aFCsHT6Qn9J7pwIDNptvOp2sF1YBMtM+O/sR9hWhnTzfmTQK2bzpWNbWO/PAf7UDrHLEGPB5oF2uRR/pcEMR6879lVHUdbEAvRrAEIT9598ohAT4C+YD/Ig1rFl9lzmxJh8fE4wvlEXBjMc2PPDppKWBEusSFhpPLnNqM= ++ ++ ++ ++ ++ MIIEPDCCAySgAwIBAgIEBYPk+TANBgkqhkiG9w0BAQsFADCBlDELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MUEwPwYDVQQKDDhOYXRpb25hbCBNZWRpYSBhbmQgSW5mb2NvbW11bmljYXRpb25zIEF1dGhvcml0eSwgSHVuZ2FyeTEvMC0GA1UEAwwmSHVuZ2FyaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IwHhcNMTUwODI0MDkzOTAyWhcNMTcwODI0MDkzOTAyWjCBlDELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MUEwPwYDVQQKDDhOYXRpb25hbCBNZWRpYSBhbmQgSW5mb2NvbW11bmljYXRpb25zIEF1dGhvcml0eSwgSHVuZ2FyeTEvMC0GA1UEAwwmSHVuZ2FyaWFuIFRydXN0ZWQgTGlzdCBTY2hlbWUgT3BlcmF0b3IwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDWMX7RdV8krU56N5reRPnr6ld9qVOxuKI7o2qsbk3dvlEe98kgslGmL6aCXUJP7vtGUtegmjs1JQwzLdeW9CITjIAwDsQdpw6MKDl0Txz9sWFDx0kqu0w+Dn2l2yahYDYYQ/oa5fxRpqd05CH574HJbq5ulTCujKDsEKROhxbtnter37CtQicsYF3vtiaQRxRcXYmwalSRuWnr7SyquKB2nfKXSJTOf3jwbNgc/fUzEHDGaT+gexK8Dbt4VFrXSFBhdTW4rTovdNereMb/t1f+HI6oXcYUABFIVcKoIZJCuAayeuC+xz2QyjvAUKPgfikcSy8Murz4PK6lGNOVQPdLAgMBAAGjgZMwgZAwHwYDVR0jBBgwFoAUW7v+j7zE+s3WH7Y4uB0RhwG9IvUwHQYDVR0OBBYEFFu7/o+8xPrN1h+2OLgdEYcBvSL1MA4GA1UdDwEB/wQEAwIGQDAdBgNVHREEFjAUgRJUTG9wZXJhdG9yQG5taGguaHUwDAYDVR0TAQH/BAIwADARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQELBQADggEBAG4YdNbWPF58uKSGQofgjf43IK9bbJazgHz2CQavCWB4o4x/iKNMUYuTI9DY3aHm9DxbT/yxk5jd+dQZfOUFop2Teec72uECicLXvLL4PIMrGZcpzIJXav/JSIngWqnHsdbyMNF/yftTBrJ1cN0HtFQDgPTCRTrnnCrZLfia1J0ItgXCw+q67j1UI+CWv7OXorSUKWZlRarx8EOm9R9nWRrQN2NCV+4JHP5JHrAEXf5QHVXbLiEv/z8ZT/KnBXmz7d6G8LF7emaQq1VIPLL5EpYGAYfha6+ydLR835dHjEuAFqHKYFMhZC2TkmVjFBxrENflRPQr3rhCb22I2YVmKbI= ++ ++ ++ ++ http://www.nmhh.hu/tl/pub/HU_TL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ HU ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ National Media and Infocommunications Authority, Hungary ++ Nemzeti Média- és Hírközlési Hatóság ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/HU ++ ++ ++ ++ ++ ++ ++ ++ ++ MIICwTCCAiqgAwIBAgIJAJXDVBeDkXK3MA0GCSqGSIb3DQEBBQUAMHQxCzAJBgNVBAYTAklFMQ8wDQYDVQQHEwZEdWJsaW4xHjAcBgNVBAoTFURlcGFydG1lbnQgb2YgRmluYW5jZTENMAsGA1UECxMEQ01PRDElMCMGA1UEAxMcRXZlbnQgUHVibGlzaGluZyBJbnRlcm5hbCBDQTAeFw0xMDA3MDUxNDI3MjVaFw0yMDA3MDIxNDI3MjVaMFQxCzAJBgNVBAYTAklFMR4wHAYDVQQKExVEZXBhcnRtZW50IG9mIEZpbmFuY2UxDTALBgNVBAsTBENNT0QxFjAUBgNVBAMTDVRhZGdoIE8nTGVhcnkwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAL2eMyRkdde3Brd1N6gh1inG5j8gRbYQ6T/2BwiUlStHEeP/DmKcWKghQKEs6SBMSY/HGZw3ffrqe8tbzDBDeM0Z/F4xgSgYpcVL2QKTtQx4Wv61TESxNH7w5Jc9K2ZpeZz2bAcT2jrFdvBNcwtZ8hNyRsny2xNI8YuvpaZiLw1LAgMBAAGjezB5MAkGA1UdEwQCMAAwLAYJYIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRlMB0GA1UdDgQWBBTxbALrhi0E0ebV6LpbNTNCvGXorzAfBgNVHSMEGDAWgBRfcPgfLU4sDzxy8r51M+iEDQIcjTANBgkqhkiG9w0BAQUFAAOBgQB4UDYDlveQZFbeN/za2UxQs+RqVZ9u+vT+lG4c+ecxmuFb6vpREjM28WciOAzzJ6hXcXxSZHgYbtVcL6F0JcPBT1HCFGTuHOWlBXzKL4zsuUmMYMPKD+2OojFDmAAvqlsqJT7bWA22EpxRHSf29twbbUuOw04rDAWh6RPDhg7zRg== ++ ++ ++ ++ ++ MIIC5DCCAk2gAwIBAgIJAJXDVBeDkXNiMA0GCSqGSIb3DQEBBQUAMHQxCzAJBgNVBAYTAklFMQ8wDQYDVQQHEwZEdWJsaW4xHjAcBgNVBAoTFURlcGFydG1lbnQgb2YgRmluYW5jZTENMAsGA1UECxMEQ01PRDElMCMGA1UEAxMcRXZlbnQgUHVibGlzaGluZyBJbnRlcm5hbCBDQTAeFw0xNDA2MTYwOTU2MTJaFw0yNDA2MTMwOTU2MTJaMHcxCzAJBgNVBAYTAklFMTQwMgYDVQQKEytEZXBhcnRtZW50IG9mIFB1YmxpYyBFeHBlbmRpdHVyZSBhbmQgUmVmb3JtMRowGAYDVQQLExFHb3Zlcm5tZW50IFJlZm9ybTEWMBQGA1UEAxMNVGFkZ2ggTyBMZWFyeTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0+AtJZLHW+Nkc/Rho8qflL2lEr8OoChQ3nzhiGHSIW/QmpHzzm54mPL6dybLmnpE5/I2lum0c0DohkQKH07Ouz46Lk/AGs7qpRNE14y1WOtbL7JkW5Y7Ktv/gqv8neg77feAUiZNJaQZ2nhIaQi3OyXqwqzEGafzpWsj2BxId2cCAwEAAaN7MHkwCQYDVR0TBAIwADAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBHZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFMVbM3lCFwp+r61i88s1hisafmA+MB8GA1UdIwQYMBaAFF9w+B8tTiwPPHLyvnUz6IQNAhyNMA0GCSqGSIb3DQEBBQUAA4GBAAxyDOqFkdqel1AxOGm04dl87WdBvoew1wxaEp4AhUtk4nAmu7EgmB3scop6Q43hq+dWScvSxWPZAyKUGEmc/qsUnq9NRQGqpB8g9CJKYEC9HHkbNn7b/LbNRdvd49YEfC5qAPgj0SDmQffcahrIGyU2lzZfTW4I00cXn7ogUqu5 ++ ++ ++ ++ ++ MIIHZjCCBk6gAwIBAgIEQnrNujANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJJRTEQMA4GA1UEChMHQW4gUG9zdDEYMBYGA1UECxMPUG9zdC5UcnVzdCBMdGQuMSIwIAYDVQQDExlQb3N0LlRydXN0IE9wZXJhdGlvbmFsIENBMB4XDTE0MDYxODEzMjI0NloXDTE3MDYxODEzMjI0NlowgfQxCzAJBgNVBAYTAklFMQ8wDQYDVQQIDAZEdWJsaW4xQjBABgNVBAoMOURlcGFydG1lbnQgb2YgQ29tbXVuaWNhdGlvbnMgRW5lcmd5IGFuZCBOYXR1cmFsIFJlc291cmNlczEeMBwGA1UECwwVUXVhbGlmaWVkIENlcnRpZmljYXRlMTowOAYDVQQLDDFDb21tdW5pY2F0aW9ucyAoQnVzaW5lc3MgYW5kIFRlY2hub2xvZ3kpIERpdmlzaW9uMR4wHAYDVQQFExU5MDQxMTA3Mi9QVDIxMTA1MjEwNDMxFDASBgNVBAMMC1JvcnkgSGluY2h5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyr4qcfKk4GhcoHYRQaLWtDSMBXUttCPLAJiHE52CIgb3wdDcqrSSDOAMdr/ui8v5+HB6/GwabQ0H8OdoQnLoBTFv56NW4u9dlzmR7A5ubvpQ1vKCLJyn+OxlAPmEsal3vrwVgb+r1MaB5STTI0/2Dj90TgPhVZKURj0i+lvLHvwkq2NfYWXaIi+aP1qfAe1PHvFN78vltviL45gomiq6RudbB9+O49uXfIKp/S4SsPt0VCLUrNhkDA6Oux5eUR8+ccKwH7hV+IrGK2t7Y7yfANL3qzObVKpFYVu8jMSmbmiuouU5bGZcU2OJkV1MEHb7/xD2czluzzWW/uj/Uf+v7wIDAQABo4IDlDCCA5AwggHHBgNVHSAEggG+MIIBujCBmAYGBACLMAEBMIGNMIGKBggrBgEFBQcCAjB+DHxJc3N1ZWQgYXMgYSBRdWFsaWZpZWQgQ2VydGlmaWNhdGUgYWNjb3JkaW5nIHRvIEFubmV4IEkgYW5kIElJIG9mIERpcmVjdGl2ZSAxOTk5LzkzL0VDLCBhcyBpbXBsZW1lbnRlZCBpbiB0aGUgbGF3IG9mIElyZWxhbmQuMIIBGwYJKoZIhvcvAQIBMIIBDDCBxQYIKwYBBQUHAgIwgbgMgbVJc3N1ZWQgc3ViamVjdCB0byBQb3N0LlRydXN0IENQUyB0ZXJtcyBhbmQgY29uZGl0aW9ucyB3aGljaCBsaW1pdCB3YXJyYW50aWVzIGFuZCBsaWFiaWxpdHkgb2YgUG9zdC5UcnVzdC4gQnkgYWNjZXB0aW5nLCB0aGUgcmVseWluZyBwYXJ0eSBhY2tub3dsZWRnZXMgaXQgaGFzIHJlYWQgYW5kIGFjY2VwdGVkIGJvdGguMEIGCCsGAQUFBwIBFjZodHRwOi8vd3d3LnBvc3QudHJ1c3QuaWUvZG93bmxvYWRzL3Bvc3R0cnVzdGNkc2Nwcy5wZGYwPQYIKwYBBQUHAQMEMTAvMAgGBgQAjkYBATAWBgYEAI5GAQIwDBMDRVVSAgICewIBAjALBgYEAI5GAQMCAQowSwYKKoZIhvcvAQEJAQQ9MDsCAQGGNmh0dHA6Ly90aW1lc3RhbXAudHJ1c3QuaWUvdHNzLXdlYmNsaWVudC9SZXF1ZXN0SGFuZGxlcjAMBgNVHRMBAf8EAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSUECjAIBgYEAJE3AwAwdQYDVR0jBG4wbIAITLE1xb0jxdWhWqRYMFYxCzAJBgNVBAYTAklFMRAwDgYDVQQKEwdBbiBQb3N0MRgwFgYDVQQLEw9Qb3N0LlRydXN0IEx0ZC4xGzAZBgNVBAMTElBvc3QuVHJ1c3QgUm9vdCBDQYIEOaaXHzBwBgNVHR8EaTBnMGWgY6BhpF8wXTELMAkGA1UEBhMCSUUxEDAOBgNVBAoMB0FuIFBvc3QxGDAWBgNVBAsMD1Bvc3QuVHJ1c3QgTHRkLjEiMCAGA1UEAwwZUG9zdC5UcnVzdCBPcGVyYXRpb25hbCBDQTAdBgNVHQ4EFgQUMjerH60XfHjiGICDZKxyJj/NsmYwDQYJKoZIhvcNAQELBQADggEBAK0PGS1oiSA3p+HuVCBO+H/qQjHvVmwIY3fz7njma/GU6WztcdzA8DAF9f/lI467rhiptozW6NU74KWf3UOarnki39sMBgAO4AhYYpdQgSqa5y+2zqKtSQKtxPYwck+NTptqH5iHTv1C78f9wNd83+6cBntwLu8aDYF+siR8h4DKltutXik6Sv5rfSr0SfclBWqmmMCMlunpYBido50mudWLwgRk+F3ZzqottRBgm4DcxznghV4+cRR1cNwo0XiqaBvSqZKJ7eNI4PQapeHI7PmXRqTxFIFGVzGYVYmXNqzS1hclag7rbZ+2nR+hRcafVAQs7JfJK6+ofEz7GrpkMyw= ++ ++ ++ ++ http://www.dcenr.gov.ie/NR/rdonlyres/A2D966E8-48E1-4709-BFAA-83FA07F3C7F7/0/HumanReadable_signed_tresignedxml.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IE ++ ++ ++ application/pdf ++ ++ ++ ++ Department of Communications, Energy and Natural Resources ++ An Roinn Cumarsáide, Fuinnimh agus Acmhainní Nádúrtha ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IE ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ MIICwTCCAiqgAwIBAgIJAJXDVBeDkXK3MA0GCSqGSIb3DQEBBQUAMHQxCzAJBgNVBAYTAklFMQ8wDQYDVQQHEwZEdWJsaW4xHjAcBgNVBAoTFURlcGFydG1lbnQgb2YgRmluYW5jZTENMAsGA1UECxMEQ01PRDElMCMGA1UEAxMcRXZlbnQgUHVibGlzaGluZyBJbnRlcm5hbCBDQTAeFw0xMDA3MDUxNDI3MjVaFw0yMDA3MDIxNDI3MjVaMFQxCzAJBgNVBAYTAklFMR4wHAYDVQQKExVEZXBhcnRtZW50IG9mIEZpbmFuY2UxDTALBgNVBAsTBENNT0QxFjAUBgNVBAMTDVRhZGdoIE8nTGVhcnkwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAL2eMyRkdde3Brd1N6gh1inG5j8gRbYQ6T/2BwiUlStHEeP/DmKcWKghQKEs6SBMSY/HGZw3ffrqe8tbzDBDeM0Z/F4xgSgYpcVL2QKTtQx4Wv61TESxNH7w5Jc9K2ZpeZz2bAcT2jrFdvBNcwtZ8hNyRsny2xNI8YuvpaZiLw1LAgMBAAGjezB5MAkGA1UdEwQCMAAwLAYJYIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRlMB0GA1UdDgQWBBTxbALrhi0E0ebV6LpbNTNCvGXorzAfBgNVHSMEGDAWgBRfcPgfLU4sDzxy8r51M+iEDQIcjTANBgkqhkiG9w0BAQUFAAOBgQB4UDYDlveQZFbeN/za2UxQs+RqVZ9u+vT+lG4c+ecxmuFb6vpREjM28WciOAzzJ6hXcXxSZHgYbtVcL6F0JcPBT1HCFGTuHOWlBXzKL4zsuUmMYMPKD+2OojFDmAAvqlsqJT7bWA22EpxRHSf29twbbUuOw04rDAWh6RPDhg7zRg== ++ ++ ++ ++ ++ MIIC5DCCAk2gAwIBAgIJAJXDVBeDkXNiMA0GCSqGSIb3DQEBBQUAMHQxCzAJBgNVBAYTAklFMQ8wDQYDVQQHEwZEdWJsaW4xHjAcBgNVBAoTFURlcGFydG1lbnQgb2YgRmluYW5jZTENMAsGA1UECxMEQ01PRDElMCMGA1UEAxMcRXZlbnQgUHVibGlzaGluZyBJbnRlcm5hbCBDQTAeFw0xNDA2MTYwOTU2MTJaFw0yNDA2MTMwOTU2MTJaMHcxCzAJBgNVBAYTAklFMTQwMgYDVQQKEytEZXBhcnRtZW50IG9mIFB1YmxpYyBFeHBlbmRpdHVyZSBhbmQgUmVmb3JtMRowGAYDVQQLExFHb3Zlcm5tZW50IFJlZm9ybTEWMBQGA1UEAxMNVGFkZ2ggTyBMZWFyeTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0+AtJZLHW+Nkc/Rho8qflL2lEr8OoChQ3nzhiGHSIW/QmpHzzm54mPL6dybLmnpE5/I2lum0c0DohkQKH07Ouz46Lk/AGs7qpRNE14y1WOtbL7JkW5Y7Ktv/gqv8neg77feAUiZNJaQZ2nhIaQi3OyXqwqzEGafzpWsj2BxId2cCAwEAAaN7MHkwCQYDVR0TBAIwADAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBHZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFMVbM3lCFwp+r61i88s1hisafmA+MB8GA1UdIwQYMBaAFF9w+B8tTiwPPHLyvnUz6IQNAhyNMA0GCSqGSIb3DQEBBQUAA4GBAAxyDOqFkdqel1AxOGm04dl87WdBvoew1wxaEp4AhUtk4nAmu7EgmB3scop6Q43hq+dWScvSxWPZAyKUGEmc/qsUnq9NRQGqpB8g9CJKYEC9HHkbNn7b/LbNRdvd49YEfC5qAPgj0SDmQffcahrIGyU2lzZfTW4I00cXn7ogUqu5 ++ ++ ++ ++ ++ MIIHZjCCBk6gAwIBAgIEQnrNujANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJJRTEQMA4GA1UEChMHQW4gUG9zdDEYMBYGA1UECxMPUG9zdC5UcnVzdCBMdGQuMSIwIAYDVQQDExlQb3N0LlRydXN0IE9wZXJhdGlvbmFsIENBMB4XDTE0MDYxODEzMjI0NloXDTE3MDYxODEzMjI0NlowgfQxCzAJBgNVBAYTAklFMQ8wDQYDVQQIDAZEdWJsaW4xQjBABgNVBAoMOURlcGFydG1lbnQgb2YgQ29tbXVuaWNhdGlvbnMgRW5lcmd5IGFuZCBOYXR1cmFsIFJlc291cmNlczEeMBwGA1UECwwVUXVhbGlmaWVkIENlcnRpZmljYXRlMTowOAYDVQQLDDFDb21tdW5pY2F0aW9ucyAoQnVzaW5lc3MgYW5kIFRlY2hub2xvZ3kpIERpdmlzaW9uMR4wHAYDVQQFExU5MDQxMTA3Mi9QVDIxMTA1MjEwNDMxFDASBgNVBAMMC1JvcnkgSGluY2h5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyr4qcfKk4GhcoHYRQaLWtDSMBXUttCPLAJiHE52CIgb3wdDcqrSSDOAMdr/ui8v5+HB6/GwabQ0H8OdoQnLoBTFv56NW4u9dlzmR7A5ubvpQ1vKCLJyn+OxlAPmEsal3vrwVgb+r1MaB5STTI0/2Dj90TgPhVZKURj0i+lvLHvwkq2NfYWXaIi+aP1qfAe1PHvFN78vltviL45gomiq6RudbB9+O49uXfIKp/S4SsPt0VCLUrNhkDA6Oux5eUR8+ccKwH7hV+IrGK2t7Y7yfANL3qzObVKpFYVu8jMSmbmiuouU5bGZcU2OJkV1MEHb7/xD2czluzzWW/uj/Uf+v7wIDAQABo4IDlDCCA5AwggHHBgNVHSAEggG+MIIBujCBmAYGBACLMAEBMIGNMIGKBggrBgEFBQcCAjB+DHxJc3N1ZWQgYXMgYSBRdWFsaWZpZWQgQ2VydGlmaWNhdGUgYWNjb3JkaW5nIHRvIEFubmV4IEkgYW5kIElJIG9mIERpcmVjdGl2ZSAxOTk5LzkzL0VDLCBhcyBpbXBsZW1lbnRlZCBpbiB0aGUgbGF3IG9mIElyZWxhbmQuMIIBGwYJKoZIhvcvAQIBMIIBDDCBxQYIKwYBBQUHAgIwgbgMgbVJc3N1ZWQgc3ViamVjdCB0byBQb3N0LlRydXN0IENQUyB0ZXJtcyBhbmQgY29uZGl0aW9ucyB3aGljaCBsaW1pdCB3YXJyYW50aWVzIGFuZCBsaWFiaWxpdHkgb2YgUG9zdC5UcnVzdC4gQnkgYWNjZXB0aW5nLCB0aGUgcmVseWluZyBwYXJ0eSBhY2tub3dsZWRnZXMgaXQgaGFzIHJlYWQgYW5kIGFjY2VwdGVkIGJvdGguMEIGCCsGAQUFBwIBFjZodHRwOi8vd3d3LnBvc3QudHJ1c3QuaWUvZG93bmxvYWRzL3Bvc3R0cnVzdGNkc2Nwcy5wZGYwPQYIKwYBBQUHAQMEMTAvMAgGBgQAjkYBATAWBgYEAI5GAQIwDBMDRVVSAgICewIBAjALBgYEAI5GAQMCAQowSwYKKoZIhvcvAQEJAQQ9MDsCAQGGNmh0dHA6Ly90aW1lc3RhbXAudHJ1c3QuaWUvdHNzLXdlYmNsaWVudC9SZXF1ZXN0SGFuZGxlcjAMBgNVHRMBAf8EAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSUECjAIBgYEAJE3AwAwdQYDVR0jBG4wbIAITLE1xb0jxdWhWqRYMFYxCzAJBgNVBAYTAklFMRAwDgYDVQQKEwdBbiBQb3N0MRgwFgYDVQQLEw9Qb3N0LlRydXN0IEx0ZC4xGzAZBgNVBAMTElBvc3QuVHJ1c3QgUm9vdCBDQYIEOaaXHzBwBgNVHR8EaTBnMGWgY6BhpF8wXTELMAkGA1UEBhMCSUUxEDAOBgNVBAoMB0FuIFBvc3QxGDAWBgNVBAsMD1Bvc3QuVHJ1c3QgTHRkLjEiMCAGA1UEAwwZUG9zdC5UcnVzdCBPcGVyYXRpb25hbCBDQTAdBgNVHQ4EFgQUMjerH60XfHjiGICDZKxyJj/NsmYwDQYJKoZIhvcNAQELBQADggEBAK0PGS1oiSA3p+HuVCBO+H/qQjHvVmwIY3fz7njma/GU6WztcdzA8DAF9f/lI467rhiptozW6NU74KWf3UOarnki39sMBgAO4AhYYpdQgSqa5y+2zqKtSQKtxPYwck+NTptqH5iHTv1C78f9wNd83+6cBntwLu8aDYF+siR8h4DKltutXik6Sv5rfSr0SfclBWqmmMCMlunpYBido50mudWLwgRk+F3ZzqottRBgm4DcxznghV4+cRR1cNwo0XiqaBvSqZKJ7eNI4PQapeHI7PmXRqTxFIFGVzGYVYmXNqzS1hclag7rbZ+2nR+hRcafVAQs7JfJK6+ofEz7GrpkMyw= ++ ++ ++ ++ http://files.dcenr.gov.ie/rh/Irelandtslsigned.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IE ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Department of Communications, Energy and Natural Resources ++ An Roinn Cumarsáide, Fuinnimh agus Acmhainní Nádúrtha ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IE ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIF4DCCBMigAwIBAgIDDm0kMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAklTMRMwEQYDVQQFEwo1MjEwMDAyNzkwMRUwEwYDVQQKEwxBdWRrZW5uaSBoZi4xJzAlBgNVBAsTHlV0Z2VmYW5kaSBmdWxsZ2lsZHJhIHNraWxyaWtqYTEaMBgGA1UEAxMRRnVsbGdpbHQgYXVka2VubmkwHhcNMTQwODE5MDkwNjEwWhcNMTYwODE5MjM1OTAwWjCBnzELMAkGA1UEBhMCSVMxFjAUBgNVBAoTDU5leXRlbmRhc3RvZmExFzAVBgNVBAsTDnN0YXJmc3NraWxyaWtpMRMwEQYDVQQLEwpVbmRpcnJpdHVuMQowCAYDVQQLEwE2MR4wHAYDVQQFExUyMTA3ODcyMjQ5OjY5MDYwNTM0MTAxHjAcBgNVBAMMFUhlbGdhIFNpZ211bmRzZMOzdHRpcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANH6JKmfzU9dqh+QQfYp15Ntp36Z5uvmCokUaJpHeLznM+WS6TN3+7lXBQSa4MfAiExHBS0zaSUH98pahZ6op4b+MfKIX88JStguJ1jpO8g+ZgKnjE6A4AbFNrwr3+ZS4ma7ncXzDQZepDJ+6VfRtAbVHkto9GxsZDpnL50lkU1DvwfyvD2MdLeVV1WRfS+qh7rRYzcFMQibDKNjfrH/1nT4ytHXSaZJEDa/bx7te9pfPNbfgdOBvksVM9i1UbunkNXWFgzTIIsCOJjxKiG0Inw8v366+bC/+m4Jc8X01tHKjnCY01hLaMgePQhTbd93eTv9JHJP0zpdxn4FfQZ82fkCAwEAAaOCAkMwggI/MAwGA1UdEwEB/wQCMAAwdwYIKwYBBQUHAQEEazBpMCMGCCsGAQUFBzABhhdodHRwOi8vb2NzcC5hdWRrZW5uaS5pczBCBggrBgEFBQcwAoY2aHR0cDovL2NkcC5pc2xhbmRzcm90LmlzL3NraWxyaWtpL2Z1bGxnaWx0YXVka2VubmkucDdiMIH8BgNVHSAEgfQwgfEwge4GCWCCYAECAQEBATCB4DCBpgYIKwYBBQUHAgIwgZkagZZUaGlzIGNlcnRpZmljYXRlIGlzIGludGVuZGVkIGZvciBzaWduaW5nLiBUaGlzIGNlcnRpZmljYXRlIGlzIGlzc3VlZCBhcyBhIHF1YWxpZmllZCBjZXJ0aWZpY2F0ZSBpbiBhY2NvcmRhbmNlIHdpdGggYWN0IDI4LzIwMDEgYW5kIERpcmVjdGl2ZSA5OS85My9FQy4wNQYIKwYBBQUHAgEWKWh0dHA6Ly9jcC5hdWRrZW5uaS5pcy9mdWxsZ2lsdGF1ZGtlbm5pL2NwMCIGCCsGAQUFBwEDBBYwFDAIBgYEAI5GAQEwCAYGBACORgEEMA4GA1UdDwEB/wQEAwIGQDAfBgNVHSMEGDAWgBTCKT6G/4bE2jUfaaak/wGDPEozqTBDBgNVHR8EPDA6MDigNqA0hjJodHRwOi8vY3JsLmF1ZGtlbm5pLmlzL2Z1bGxnaWx0YXVka2VubmkvbGF0ZXN0LmNybDAdBgNVHQ4EFgQU6QuMrhZ86v0UE5vpL7HnbQg1ZiUwDQYJKoZIhvcNAQEFBQADggEBABva0ImZ6fmYhWclBD2XKy5mlyoMyq4ofUZN+SYDYvdrzxbIWZDFNLK+aOrA/74Q+40x2C0tKhETuY5XakN8JwR/ZNj16KbNPzomlLNKt2hJVI5sJICfjbncgihPVIFaZRW4gsbjGl+o2IqXQHK/uf+sbR7fUJ9JVzeTbK+30JCPbE6Ftm4m+GsKtm90rWJ/oFkjS5U5o3/ocGtv5l6DU0oZBXyecgpl9tnsuUV1AViFk9vv8aTOEY8az+jpUqnm96nlNy3EWFcG3GdkdxdFHVVrn406y7QG/eXHMVnTAN6tDEbFX8iSB34d+Ey7xeQaDsNQxjAIKJRUOHOcaTmJpJk= ++ ++ ++ ++ ++ MIIF3DCCBMSgAwIBAgIDDjttMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAklTMRMwEQYDVQQFEwo1MjEwMDAyNzkwMRUwEwYDVQQKEwxBdWRrZW5uaSBoZi4xJzAlBgNVBAsTHlV0Z2VmYW5kaSBmdWxsZ2lsZHJhIHNraWxyaWtqYTEaMBgGA1UEAxMRRnVsbGdpbHQgYXVka2VubmkwHhcNMTQwNzI0MDkwMzMxWhcNMTgwNzI0MjM1OTAwWjCBmzELMAkGA1UEBhMCSVMxFjAUBgNVBAoTDU5leXRlbmRhc3RvZmExFzAVBgNVBAsTDnN0YXJmc3NraWxyaWtpMRMwEQYDVQQLEwpVbmRpcnJpdHVuMQswCQYDVQQLEwIxNzEeMBwGA1UEBRMVMDUxMDU3NTg5OTo2OTA2MDUzNDEwMRkwFwYDVQQDExBUcnlnZ3ZpIEF4ZWxzc29uMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsRt3U/2RSZrGL0hZ1V3iXppW7ocqUEmYKfq8iyWUDOTH2FOgo8uD+ke4uB0SOudqOYKZXOTt0L4UKg8+VJI92SMhpFc6T1rxTyZJcZDOr0dp6+ATMqC25/mSBBxGqBYCTmF2V0tGXPYYipEFYq9kpQSzFa+oz2iEigwu/h3l+iF0+by3B3kUES4fOkoC13soPnnpOW3gu/u1TR1vBixK5z/SDZkAltcSO/hHu3HuSREgy1skd6IQ3n47QnW1XBbafF3vIaKiLG2l2tg73Kz6ldlrBPMBNxSldlYykUQfWJPrzj9l3YiJJCmus7MkIhJfxye2i+b02LWeleY/rOffVQIDAQABo4ICQzCCAj8wDAYDVR0TAQH/BAIwADB3BggrBgEFBQcBAQRrMGkwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLmF1ZGtlbm5pLmlzMEIGCCsGAQUFBzAChjZodHRwOi8vY2RwLmlzbGFuZHNyb3QuaXMvc2tpbHJpa2kvZnVsbGdpbHRhdWRrZW5uaS5wN2IwgfwGA1UdIASB9DCB8TCB7gYJYIJgAQIBAQEBMIHgMIGmBggrBgEFBQcCAjCBmRqBllRoaXMgY2VydGlmaWNhdGUgaXMgaW50ZW5kZWQgZm9yIHNpZ25pbmcuIFRoaXMgY2VydGlmaWNhdGUgaXMgaXNzdWVkIGFzIGEgcXVhbGlmaWVkIGNlcnRpZmljYXRlIGluIGFjY29yZGFuY2Ugd2l0aCBhY3QgMjgvMjAwMSBhbmQgRGlyZWN0aXZlIDk5LzkzL0VDLjA1BggrBgEFBQcCARYpaHR0cDovL2NwLmF1ZGtlbm5pLmlzL2Z1bGxnaWx0YXVka2VubmkvY3AwIgYIKwYBBQUHAQMEFjAUMAgGBgQAjkYBATAIBgYEAI5GAQQwDgYDVR0PAQH/BAQDAgZAMB8GA1UdIwQYMBaAFMIpPob/hsTaNR9ppqT/AYM8SjOpMEMGA1UdHwQ8MDowOKA2oDSGMmh0dHA6Ly9jcmwuYXVka2VubmkuaXMvZnVsbGdpbHRhdWRrZW5uaS9sYXRlc3QuY3JsMB0GA1UdDgQWBBRsO3AsM3ELY5Otus03djbptmIKqzANBgkqhkiG9w0BAQUFAAOCAQEAnS8dJH5krGtUoGwrNmWBU6EKVP5vF/vdJ4TXrB0azeoiSIwQbNdtRimkV6SzNGL5OhKNAbYKrft9FXaIB5mlhFGBqO2NDEHmLmYBGvbJpYJt2KCGscGgAl6DaHSpM/7X985xmCBaEiqzL1qz116Sys7QtBgaSSxU//FsywjDgI0gBtEz2Qk1+Ae2yK3ibwcQVPAViTobNzv099jH0kqYB02day4LatlMt+uRfRMZKM9fxAHrqrRXyuKSJScJWeC+B3ySzyCF95IXxMI9gqDI1Go0bEnfs5R7GiYEJd79X7n76db5/bj7NgwakW2IUty+hfwT2X1O5419BgKJWvjF8g== ++ ++ ++ ++ http://www.neytendastofa.is/library/Files/TSl/tsl.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IS ++ ++ ++ application/pdf ++ ++ ++ ++ The Consumer Agency ++ Neytendastofa ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IS ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIF4DCCBMigAwIBAgIDDm0kMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAklTMRMwEQYDVQQFEwo1MjEwMDAyNzkwMRUwEwYDVQQKEwxBdWRrZW5uaSBoZi4xJzAlBgNVBAsTHlV0Z2VmYW5kaSBmdWxsZ2lsZHJhIHNraWxyaWtqYTEaMBgGA1UEAxMRRnVsbGdpbHQgYXVka2VubmkwHhcNMTQwODE5MDkwNjEwWhcNMTYwODE5MjM1OTAwWjCBnzELMAkGA1UEBhMCSVMxFjAUBgNVBAoTDU5leXRlbmRhc3RvZmExFzAVBgNVBAsTDnN0YXJmc3NraWxyaWtpMRMwEQYDVQQLEwpVbmRpcnJpdHVuMQowCAYDVQQLEwE2MR4wHAYDVQQFExUyMTA3ODcyMjQ5OjY5MDYwNTM0MTAxHjAcBgNVBAMMFUhlbGdhIFNpZ211bmRzZMOzdHRpcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANH6JKmfzU9dqh+QQfYp15Ntp36Z5uvmCokUaJpHeLznM+WS6TN3+7lXBQSa4MfAiExHBS0zaSUH98pahZ6op4b+MfKIX88JStguJ1jpO8g+ZgKnjE6A4AbFNrwr3+ZS4ma7ncXzDQZepDJ+6VfRtAbVHkto9GxsZDpnL50lkU1DvwfyvD2MdLeVV1WRfS+qh7rRYzcFMQibDKNjfrH/1nT4ytHXSaZJEDa/bx7te9pfPNbfgdOBvksVM9i1UbunkNXWFgzTIIsCOJjxKiG0Inw8v366+bC/+m4Jc8X01tHKjnCY01hLaMgePQhTbd93eTv9JHJP0zpdxn4FfQZ82fkCAwEAAaOCAkMwggI/MAwGA1UdEwEB/wQCMAAwdwYIKwYBBQUHAQEEazBpMCMGCCsGAQUFBzABhhdodHRwOi8vb2NzcC5hdWRrZW5uaS5pczBCBggrBgEFBQcwAoY2aHR0cDovL2NkcC5pc2xhbmRzcm90LmlzL3NraWxyaWtpL2Z1bGxnaWx0YXVka2VubmkucDdiMIH8BgNVHSAEgfQwgfEwge4GCWCCYAECAQEBATCB4DCBpgYIKwYBBQUHAgIwgZkagZZUaGlzIGNlcnRpZmljYXRlIGlzIGludGVuZGVkIGZvciBzaWduaW5nLiBUaGlzIGNlcnRpZmljYXRlIGlzIGlzc3VlZCBhcyBhIHF1YWxpZmllZCBjZXJ0aWZpY2F0ZSBpbiBhY2NvcmRhbmNlIHdpdGggYWN0IDI4LzIwMDEgYW5kIERpcmVjdGl2ZSA5OS85My9FQy4wNQYIKwYBBQUHAgEWKWh0dHA6Ly9jcC5hdWRrZW5uaS5pcy9mdWxsZ2lsdGF1ZGtlbm5pL2NwMCIGCCsGAQUFBwEDBBYwFDAIBgYEAI5GAQEwCAYGBACORgEEMA4GA1UdDwEB/wQEAwIGQDAfBgNVHSMEGDAWgBTCKT6G/4bE2jUfaaak/wGDPEozqTBDBgNVHR8EPDA6MDigNqA0hjJodHRwOi8vY3JsLmF1ZGtlbm5pLmlzL2Z1bGxnaWx0YXVka2VubmkvbGF0ZXN0LmNybDAdBgNVHQ4EFgQU6QuMrhZ86v0UE5vpL7HnbQg1ZiUwDQYJKoZIhvcNAQEFBQADggEBABva0ImZ6fmYhWclBD2XKy5mlyoMyq4ofUZN+SYDYvdrzxbIWZDFNLK+aOrA/74Q+40x2C0tKhETuY5XakN8JwR/ZNj16KbNPzomlLNKt2hJVI5sJICfjbncgihPVIFaZRW4gsbjGl+o2IqXQHK/uf+sbR7fUJ9JVzeTbK+30JCPbE6Ftm4m+GsKtm90rWJ/oFkjS5U5o3/ocGtv5l6DU0oZBXyecgpl9tnsuUV1AViFk9vv8aTOEY8az+jpUqnm96nlNy3EWFcG3GdkdxdFHVVrn406y7QG/eXHMVnTAN6tDEbFX8iSB34d+Ey7xeQaDsNQxjAIKJRUOHOcaTmJpJk= ++ ++ ++ ++ ++ MIIF3DCCBMSgAwIBAgIDDjttMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAklTMRMwEQYDVQQFEwo1MjEwMDAyNzkwMRUwEwYDVQQKEwxBdWRrZW5uaSBoZi4xJzAlBgNVBAsTHlV0Z2VmYW5kaSBmdWxsZ2lsZHJhIHNraWxyaWtqYTEaMBgGA1UEAxMRRnVsbGdpbHQgYXVka2VubmkwHhcNMTQwNzI0MDkwMzMxWhcNMTgwNzI0MjM1OTAwWjCBmzELMAkGA1UEBhMCSVMxFjAUBgNVBAoTDU5leXRlbmRhc3RvZmExFzAVBgNVBAsTDnN0YXJmc3NraWxyaWtpMRMwEQYDVQQLEwpVbmRpcnJpdHVuMQswCQYDVQQLEwIxNzEeMBwGA1UEBRMVMDUxMDU3NTg5OTo2OTA2MDUzNDEwMRkwFwYDVQQDExBUcnlnZ3ZpIEF4ZWxzc29uMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsRt3U/2RSZrGL0hZ1V3iXppW7ocqUEmYKfq8iyWUDOTH2FOgo8uD+ke4uB0SOudqOYKZXOTt0L4UKg8+VJI92SMhpFc6T1rxTyZJcZDOr0dp6+ATMqC25/mSBBxGqBYCTmF2V0tGXPYYipEFYq9kpQSzFa+oz2iEigwu/h3l+iF0+by3B3kUES4fOkoC13soPnnpOW3gu/u1TR1vBixK5z/SDZkAltcSO/hHu3HuSREgy1skd6IQ3n47QnW1XBbafF3vIaKiLG2l2tg73Kz6ldlrBPMBNxSldlYykUQfWJPrzj9l3YiJJCmus7MkIhJfxye2i+b02LWeleY/rOffVQIDAQABo4ICQzCCAj8wDAYDVR0TAQH/BAIwADB3BggrBgEFBQcBAQRrMGkwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLmF1ZGtlbm5pLmlzMEIGCCsGAQUFBzAChjZodHRwOi8vY2RwLmlzbGFuZHNyb3QuaXMvc2tpbHJpa2kvZnVsbGdpbHRhdWRrZW5uaS5wN2IwgfwGA1UdIASB9DCB8TCB7gYJYIJgAQIBAQEBMIHgMIGmBggrBgEFBQcCAjCBmRqBllRoaXMgY2VydGlmaWNhdGUgaXMgaW50ZW5kZWQgZm9yIHNpZ25pbmcuIFRoaXMgY2VydGlmaWNhdGUgaXMgaXNzdWVkIGFzIGEgcXVhbGlmaWVkIGNlcnRpZmljYXRlIGluIGFjY29yZGFuY2Ugd2l0aCBhY3QgMjgvMjAwMSBhbmQgRGlyZWN0aXZlIDk5LzkzL0VDLjA1BggrBgEFBQcCARYpaHR0cDovL2NwLmF1ZGtlbm5pLmlzL2Z1bGxnaWx0YXVka2VubmkvY3AwIgYIKwYBBQUHAQMEFjAUMAgGBgQAjkYBATAIBgYEAI5GAQQwDgYDVR0PAQH/BAQDAgZAMB8GA1UdIwQYMBaAFMIpPob/hsTaNR9ppqT/AYM8SjOpMEMGA1UdHwQ8MDowOKA2oDSGMmh0dHA6Ly9jcmwuYXVka2VubmkuaXMvZnVsbGdpbHRhdWRrZW5uaS9sYXRlc3QuY3JsMB0GA1UdDgQWBBRsO3AsM3ELY5Otus03djbptmIKqzANBgkqhkiG9w0BAQUFAAOCAQEAnS8dJH5krGtUoGwrNmWBU6EKVP5vF/vdJ4TXrB0azeoiSIwQbNdtRimkV6SzNGL5OhKNAbYKrft9FXaIB5mlhFGBqO2NDEHmLmYBGvbJpYJt2KCGscGgAl6DaHSpM/7X985xmCBaEiqzL1qz116Sys7QtBgaSSxU//FsywjDgI0gBtEz2Qk1+Ae2yK3ibwcQVPAViTobNzv099jH0kqYB02day4LatlMt+uRfRMZKM9fxAHrqrRXyuKSJScJWeC+B3ySzyCF95IXxMI9gqDI1Go0bEnfs5R7GiYEJd79X7n76db5/bj7NgwakW2IUty+hfwT2X1O5419BgKJWvjF8g== ++ ++ ++ ++ http://www.neytendastofa.is/library/Files/TSl/tsl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IS ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ The Consumer Agency ++ Neytendastofa ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IS ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIExjCCA66gAwIBAgIQNdl1lNG2dU22NkLLterPzzANBgkqhkiG9w0BAQsFADA7MQswCQYDVQQGEwJJVDEQMA4GA1UEChMHRGlnaXRQQTEaMBgGA1UEAxMRVWZmaWNpbyBTaWN1cmV6emEwHhcNMTAwNTIwMDgzOTQ2WhcNMjAwNTE3MDgzOTQ2WjBbMQswCQYDVQQGEwJJVDEQMA4GA1UEChMHRGlnaXRQQTEQMA4GA1UEKhMHVWZmaWNpbzESMBAGA1UEBBMJU2ljdXJlenphMRQwEgYDVQQFEws5NzEwMzQyMDU4MDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAI6sLMeL0AXS/zG30Nvh+mmtimUFvIVLeFZLaqg47bi5d7E1/IpkQnAwTyTT4yJGfrYrIrPnAK13wLcB4Za0WhYlBueW69uNHXhpkueIiGO9Wfeasx9T5tYcnrOUsoQTigTx3zcwY36DETwNqECu0uVH7K0al51s53SE5eVbQKMgJKa/uvP6hLxcvDdilsv9kyR4oNWOxlFeCSxl2aMVzs4zpSyNnmHwt2mQAgbzREnVvcjwOKAgRH9Kg6z5WiWsM2rNGRIeEkUIzHIxoc5WxkdNrBHppa79cmUCEIuBIE2ZtaNjOIVXvzYwkLq5TpgD5rSauUQZO3nduZxiPHVWmrMCAwEAAaOCAaQwggGgMAwGA1UdEwEB/wQCMAAwDgYDVR0PAQH/BAQDAgZAMCgGA1UdCQQhMB8wHQYIKwYBBQUHCQExERgPMjAxMDA1MTMyMjAwMDBaMEEGA1UdHwQ6MDgwNqA0oDKGMGh0dHBzOi8vYXBwbGljYXppb25pLmNuaXBhLmdvdi5pdC9UU0wvSVRfVFNMLmNybDCBsAYDVR0gBIGoMIGlMIGiBgMrTBAwgZowJgYIKwYBBQUHAgEWGmh0dHA6Ly93d3cuZGlnaXRwYS5nb3YuaXQvMHAGCCsGAQUFBwICMGQwDhYHRGlnaXRQQTADAgEBGlJLZXlzIHVzZWQgdG8gZ2VuZXJhdGUgY2VydGlmaWNhdGVzIHRvIHN1YnNjcmliZSBuYXRpb25hbCBUcnVzdCBTZXJ2aWNlIHN0YXR1cyBMaXN0MB0GA1UdDgQWBBRIk1ErMuBTlDGOEariH5O7InkS7TAfBgNVHSMEGDAWgBS5A9dz6beQZDceQKN59MYviqnwqjAgBgNVHREEGTAXgRVJVF9UU0xAZGlnaXRwYS5nb3YuaXQwDQYJKoZIhvcNAQELBQADggEBACsvm2YLT0bB2Rgk5W1iG9mMYZCWE7rA+1h6Y9DmxS5zwdzFlwCr7EQ7DbWElQD0glq0hYO5COP6Z0YRhQsn2LypxLrzpWN/qhDBvA8Tol4/MPUqYznU1yBttt3aopqn0GR5iGlTCCYhDF3G8qj4sgOUsG6kJ/TGVbFiV9YRyUBUv7+3FN9ed95mtV2Cy0NVuG1JDSGot60qZfekHn1ZCg1KdaGnoYzk7Dzh2yio0/fEBPP9+r8sVCJCuujQYx+M5qQB/NHyAGXMUS//F3/4qhZAElz5/D/kN6Q3eYTtw04XIShGt89pbGsP7lXmvSLHSKPz98xBFQLqEwJn1QcWDLE= ++ ++ ++ ++ ++ MIIEdzCCA1+gAwIBAgIQBSTQoxxf8UaYEMZNtexORDANBgkqhkiG9w0BAQsFADA7MQswCQYDVQQGEwJJVDEQMA4GA1UEChMHRGlnaXRQQTEaMBgGA1UEAxMRVWZmaWNpbyBTaWN1cmV6emEwHhcNMTQwMjEwMTE0MjM5WhcNMjAxMjMxMTE0MjM5WjBbMQswCQYDVQQGEwJJVDEQMA4GA1UEChMHRGlnaXRQQTESMBAGA1UEBBMJU2ljdXJlenphMRAwDgYDVQQqEwdVZmZpY2lvMRQwEgYDVQQFEws5NzEwMzQyMDU4MDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIPOYhltsTauooCfL6ggktmvRogcxVMRHPh7R9PifTJQBSR67L23u7bp4lY+Vd9w9h60z0rzp+vNvNgc12zXcgHcoue2VdFEJTlptElj3t3OICulC4QA4vFEUuFp2fKxEIr0KdzvLlHfcHYBhC4flx9k0hdpbfkjn+hwC/WOusj7JBMXgl3P1PSjKWpXNhVOnvrr+m6AbmERazIk7aBCSy6joz+QrRgCLiXRuqJxV3FirlQnmLB8np4Mebd+JwwwTgcT6hhx+f8s31cv7HFQDeIUd1i2aTCg04OrpuawZVmZjgGNHj+79YGouuQfCys7jW6t0Lety6LsonaSxHpAQgECAwEAAaOCAVUwggFRMAwGA1UdEwEB/wQCMAAwDgYDVR0PAQH/BAQDAgZAMD8GA1UdHwQ4MDYwNKAyoDCGLmh0dHBzOi8vYXBwbGljYXppb25pLmNuaXBhLmdvdi5pdC9UU0wvdGVzdC5jcmwwga4GA1UdIASBpjCBozCBoAYDK0wQMIGYMCYGCCsGAQUFBwIBFhpodHRwOi8vd3d3LmRpZ2l0cGEuZ292Lml0LzBuBggrBgEFBQcCAjBiMA4WB0RpZ2l0UEEwAwIBARpQQ0EgdXNlZCB0byBnZW5lcmF0ZSBjZXJ0aWZpY2F0ZXMgdG8gc3Vic2NyaWJlIG5hdGlvbmFsIFRydXN0IFNlcnZpY2Ugc3RhdHVzIExpc3QwHQYDVR0OBBYEFIZ211SuCQDJ//4sjSI7DacHi7EaMCAGA1UdEQQZMBeBFUlUX1RTTEBkaWdpdHBhLmdvdi5pdDANBgkqhkiG9w0BAQsFAAOCAQEBNSU/P4X7Dllqg4tXIrxsAjlQrSS0Znt6et8+zW21GI8QmYSq0R8qHjFQs+dfl5B/qmftebhVpVe6vSzyJndKWycMtdMX0gkC2o66Wpl6fMZ55voYCF8ZTqBDcqMMvCt8o9TzlIPdcaWUZmlj3QfH+nGiC2/3cY4ZK9IWtWrYlZYk7tQGA1RCvQFLz3Uy9kbK5XcpF5prPCwQ/f5VjZBfWut2TuqO3NUbQ0RUK5JPDHiInV7VwN9sMj5nbRfhOiMH5AENLU8/x9Mk7V9YsXXEXq/Qms8I/yk7HejSn0Rd/DurIUUP8UbBM3GCv5cAYoea1R3sG52tMZUxke88uOCLkg== ++ ++ ++ ++ https://applicazioni.cnipa.gov.it/TSL/IT_TSL_HR.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IT ++ ++ ++ application/pdf ++ ++ ++ ++ Agenzia per l'Italia Digitale ++ Agenzia per l'Italia Digitale ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IT ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIExjCCA66gAwIBAgIQNdl1lNG2dU22NkLLterPzzANBgkqhkiG9w0BAQsFADA7MQswCQYDVQQGEwJJVDEQMA4GA1UEChMHRGlnaXRQQTEaMBgGA1UEAxMRVWZmaWNpbyBTaWN1cmV6emEwHhcNMTAwNTIwMDgzOTQ2WhcNMjAwNTE3MDgzOTQ2WjBbMQswCQYDVQQGEwJJVDEQMA4GA1UEChMHRGlnaXRQQTEQMA4GA1UEKhMHVWZmaWNpbzESMBAGA1UEBBMJU2ljdXJlenphMRQwEgYDVQQFEws5NzEwMzQyMDU4MDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAI6sLMeL0AXS/zG30Nvh+mmtimUFvIVLeFZLaqg47bi5d7E1/IpkQnAwTyTT4yJGfrYrIrPnAK13wLcB4Za0WhYlBueW69uNHXhpkueIiGO9Wfeasx9T5tYcnrOUsoQTigTx3zcwY36DETwNqECu0uVH7K0al51s53SE5eVbQKMgJKa/uvP6hLxcvDdilsv9kyR4oNWOxlFeCSxl2aMVzs4zpSyNnmHwt2mQAgbzREnVvcjwOKAgRH9Kg6z5WiWsM2rNGRIeEkUIzHIxoc5WxkdNrBHppa79cmUCEIuBIE2ZtaNjOIVXvzYwkLq5TpgD5rSauUQZO3nduZxiPHVWmrMCAwEAAaOCAaQwggGgMAwGA1UdEwEB/wQCMAAwDgYDVR0PAQH/BAQDAgZAMCgGA1UdCQQhMB8wHQYIKwYBBQUHCQExERgPMjAxMDA1MTMyMjAwMDBaMEEGA1UdHwQ6MDgwNqA0oDKGMGh0dHBzOi8vYXBwbGljYXppb25pLmNuaXBhLmdvdi5pdC9UU0wvSVRfVFNMLmNybDCBsAYDVR0gBIGoMIGlMIGiBgMrTBAwgZowJgYIKwYBBQUHAgEWGmh0dHA6Ly93d3cuZGlnaXRwYS5nb3YuaXQvMHAGCCsGAQUFBwICMGQwDhYHRGlnaXRQQTADAgEBGlJLZXlzIHVzZWQgdG8gZ2VuZXJhdGUgY2VydGlmaWNhdGVzIHRvIHN1YnNjcmliZSBuYXRpb25hbCBUcnVzdCBTZXJ2aWNlIHN0YXR1cyBMaXN0MB0GA1UdDgQWBBRIk1ErMuBTlDGOEariH5O7InkS7TAfBgNVHSMEGDAWgBS5A9dz6beQZDceQKN59MYviqnwqjAgBgNVHREEGTAXgRVJVF9UU0xAZGlnaXRwYS5nb3YuaXQwDQYJKoZIhvcNAQELBQADggEBACsvm2YLT0bB2Rgk5W1iG9mMYZCWE7rA+1h6Y9DmxS5zwdzFlwCr7EQ7DbWElQD0glq0hYO5COP6Z0YRhQsn2LypxLrzpWN/qhDBvA8Tol4/MPUqYznU1yBttt3aopqn0GR5iGlTCCYhDF3G8qj4sgOUsG6kJ/TGVbFiV9YRyUBUv7+3FN9ed95mtV2Cy0NVuG1JDSGot60qZfekHn1ZCg1KdaGnoYzk7Dzh2yio0/fEBPP9+r8sVCJCuujQYx+M5qQB/NHyAGXMUS//F3/4qhZAElz5/D/kN6Q3eYTtw04XIShGt89pbGsP7lXmvSLHSKPz98xBFQLqEwJn1QcWDLE= ++ ++ ++ ++ ++ MIIEdzCCA1+gAwIBAgIQBSTQoxxf8UaYEMZNtexORDANBgkqhkiG9w0BAQsFADA7MQswCQYDVQQGEwJJVDEQMA4GA1UEChMHRGlnaXRQQTEaMBgGA1UEAxMRVWZmaWNpbyBTaWN1cmV6emEwHhcNMTQwMjEwMTE0MjM5WhcNMjAxMjMxMTE0MjM5WjBbMQswCQYDVQQGEwJJVDEQMA4GA1UEChMHRGlnaXRQQTESMBAGA1UEBBMJU2ljdXJlenphMRAwDgYDVQQqEwdVZmZpY2lvMRQwEgYDVQQFEws5NzEwMzQyMDU4MDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIPOYhltsTauooCfL6ggktmvRogcxVMRHPh7R9PifTJQBSR67L23u7bp4lY+Vd9w9h60z0rzp+vNvNgc12zXcgHcoue2VdFEJTlptElj3t3OICulC4QA4vFEUuFp2fKxEIr0KdzvLlHfcHYBhC4flx9k0hdpbfkjn+hwC/WOusj7JBMXgl3P1PSjKWpXNhVOnvrr+m6AbmERazIk7aBCSy6joz+QrRgCLiXRuqJxV3FirlQnmLB8np4Mebd+JwwwTgcT6hhx+f8s31cv7HFQDeIUd1i2aTCg04OrpuawZVmZjgGNHj+79YGouuQfCys7jW6t0Lety6LsonaSxHpAQgECAwEAAaOCAVUwggFRMAwGA1UdEwEB/wQCMAAwDgYDVR0PAQH/BAQDAgZAMD8GA1UdHwQ4MDYwNKAyoDCGLmh0dHBzOi8vYXBwbGljYXppb25pLmNuaXBhLmdvdi5pdC9UU0wvdGVzdC5jcmwwga4GA1UdIASBpjCBozCBoAYDK0wQMIGYMCYGCCsGAQUFBwIBFhpodHRwOi8vd3d3LmRpZ2l0cGEuZ292Lml0LzBuBggrBgEFBQcCAjBiMA4WB0RpZ2l0UEEwAwIBARpQQ0EgdXNlZCB0byBnZW5lcmF0ZSBjZXJ0aWZpY2F0ZXMgdG8gc3Vic2NyaWJlIG5hdGlvbmFsIFRydXN0IFNlcnZpY2Ugc3RhdHVzIExpc3QwHQYDVR0OBBYEFIZ211SuCQDJ//4sjSI7DacHi7EaMCAGA1UdEQQZMBeBFUlUX1RTTEBkaWdpdHBhLmdvdi5pdDANBgkqhkiG9w0BAQsFAAOCAQEBNSU/P4X7Dllqg4tXIrxsAjlQrSS0Znt6et8+zW21GI8QmYSq0R8qHjFQs+dfl5B/qmftebhVpVe6vSzyJndKWycMtdMX0gkC2o66Wpl6fMZ55voYCF8ZTqBDcqMMvCt8o9TzlIPdcaWUZmlj3QfH+nGiC2/3cY4ZK9IWtWrYlZYk7tQGA1RCvQFLz3Uy9kbK5XcpF5prPCwQ/f5VjZBfWut2TuqO3NUbQ0RUK5JPDHiInV7VwN9sMj5nbRfhOiMH5AENLU8/x9Mk7V9YsXXEXq/Qms8I/yk7HejSn0Rd/DurIUUP8UbBM3GCv5cAYoea1R3sG52tMZUxke88uOCLkg== ++ ++ ++ ++ https://applicazioni.cnipa.gov.it/TSL/IT_TSL_signed.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ IT ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Agenzia per l'Italia Digitale ++ Agenzia per l'Italia Digitale ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/IT ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIEIDCCAwigAwIBAgIJAOi9vb6/aYZ/MA0GCSqGSIb3DQEBCwUAMEoxCzAJBgNVBAYTAkxJMR8wHQYDVQQKDBZBbXQgZsO8ciBLb21tdW5pa2F0aW9uMRowGAYDVQQDExFUcnVzdGVkIExpc3QgQ0EgMTAeFw0xNDAyMTAwOTUyMzBaFw0xNzAyMTAwOTUyMzBaMEcxCzAJBgNVBAYTAkxJMR8wHQYDVQQKDBZBbXQgZsO8ciBLb21tdW5pa2F0aW9uMRcwFQYDVQQDEw5UcnVzdGVkIExpc3QgMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALRpptzN5mxrcRZ2MbyvTgF4huOe30lbI6sWrCq0gKTy6hk+Ussk7TYnE2tyN7IMFIEfQocdxNfMG2L30/jKGFRJ/NNrl2WWwV664I3P0qoIwJQ2RY8u7myyy8uF1WKjDRDbYqyf7jQSS1Onrmz9fPWltpDqyrgIvspb0owH+G2n70v3KUx1Itbr7Hc/4nbBIDTqr30xCCQsaUdti1beWgO9D7Ito3t0kozNbghClLBzr8fduSgaC2ucChIQA68UqXvqrzi81XCPBYymnOwGn2WaAwhtlBiHCg28NtPOYSFFrjZO7TBqFD5Ww+R1HkOcqRQbduMpLL1oKDq7bWyUZXcCAwEAAaOCAQowggEGMB8GA1UdIwQYMBaAFP1jbZk6PKL8QB/DFq6sVyuQJFSqMB0GA1UdDgQWBBTth+rnNQPRdw83reDey1xqpqcjWTAOBgNVHQ8BAf8EBAMCB4AwFwYDVR0gBBAwDjAMBgpggzYKCgAAAQEAMAkGA1UdEwQCMAAwEQYDVR0lBAowCAYGBACRNwMAMDgGA1UdHwQxMC8wLaAroCmGJ2h0dHBzOi8vd3d3Lmxsdi5saS9jcmwtbGx2LWFrLXRsY2ExLmNybDBDBggrBgEFBQcBAQQ3MDUwMwYIKwYBBQUHMAKGJ2h0dHBzOi8vd3d3Lmxsdi5saS9jZXItbGx2LWFrLXRsY2ExLmNlcjANBgkqhkiG9w0BAQsFAAOCAQEAXSlH+SmUacYJ8YoE+GBU3a3dfanh2jp4CIOId0MpPm1BGv9TkbNSFrT8n77vi5eIggr6NivPLM+hN+TAPymjE0+VIPme6AwL3zZadHx/oNmi7NRaCDuMfZ1jyAF/2dTtoY2kPi+XNlP/7m8bystWNV+zFBCr4NZcK+kwrkIB5y5iGoEos9e3zwHWSr7C2uyaYLlCLIBGhWLX6Ajgc2c8smLLc+GwzHwNgb+/HAN/yXRpO1Q7xLmkIPcsIdO0BvPRztwsjXD5799TILnnw2JPot37PXmgvzzx+HCKgzq2gr7rVcBLKDq2gJIT7OJQ5/b3z+Nst3LtngC904FRj9woeg== ++ ++ ++ ++ ++ MIIEIDCCAwigAwIBAgIJAOi9vb6/aYaAMA0GCSqGSIb3DQEBCwUAMEoxCzAJBgNVBAYTAkxJMR8wHQYDVQQKDBZBbXQgZsO8ciBLb21tdW5pa2F0aW9uMRowGAYDVQQDExFUcnVzdGVkIExpc3QgQ0EgMTAeFw0xNDAyMTAwOTUzMTNaFw0xODAyMTAwOTUzMTNaMEcxCzAJBgNVBAYTAkxJMR8wHQYDVQQKDBZBbXQgZsO8ciBLb21tdW5pa2F0aW9uMRcwFQYDVQQDEw5UcnVzdGVkIExpc3QgMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANnBAphC80GVlYVCFS9M/MlodzN4TIrp+dh22HkIFlvOZYoBPVOqy3MCCC5CF4hRuE8VLud4qdU8WY2a4HstI3OFPwpFHdijADH5M0LT5bEieP0JbGhjGc7ONB7x0haDiFRxdSpAc6IObc/63IjuFwKF+/wBAfer0v8YuSsmanoJhOQ9C7DdUECp0CmouIoM0omY8MBt28AYeVSA1MdIxGc6w1M5dmc2Op2eMHmVoypEWJKLL3HZZlESSBTKKv/nhA9XflYpPSCTZ40pfS1xuXhHha3222XzZM36Lt+WgizCZy24Hp+NlqdFbHmvH0oTcgn3xYKFhPh2Ji5Zs+5L53MCAwEAAaOCAQowggEGMB8GA1UdIwQYMBaAFP1jbZk6PKL8QB/DFq6sVyuQJFSqMB0GA1UdDgQWBBQf4Ft9JUhBqcpokFM69a0H5Pjl2DAOBgNVHQ8BAf8EBAMCB4AwFwYDVR0gBBAwDjAMBgpggzYKCgAAAQEAMAkGA1UdEwQCMAAwEQYDVR0lBAowCAYGBACRNwMAMDgGA1UdHwQxMC8wLaAroCmGJ2h0dHBzOi8vd3d3Lmxsdi5saS9jcmwtbGx2LWFrLXRsY2ExLmNybDBDBggrBgEFBQcBAQQ3MDUwMwYIKwYBBQUHMAKGJ2h0dHBzOi8vd3d3Lmxsdi5saS9jZXItbGx2LWFrLXRsY2ExLmNlcjANBgkqhkiG9w0BAQsFAAOCAQEAFLeKftx23euwqrtAHlVW2uGK9ckzCcIsQVAKLgWj2+2Kux71G1+qiOc4CRcNUKWtKa4AGUKDmAcOJye/v3y8I3mX00UlLXPQqnNXNHK6K0YlYHQ5iyoHlkT/ep/nyMjRhMEg4q3oz6wqagGk2b2IDvqcMx6Nm4QLIV6Ckfl8/a+6XDLw6EypugkbcrITLFS/Xv6asEq73FMX5MjZIx5+r5GOWkauhebFRnP8usuUKVHCh7KJQD0OgABI1TbL9wR/DbIMIEf5hQA9Uo1DB4w11xsgyf+QQuqYl3A+etSPPTVZGDqQAAlhQ+KXsLTDFrkkzJWmO6GC2k1NHg1bzgm5IA== ++ ++ ++ ++ http://www.llv.li/files/ak/xml-llv-ak-tsl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ LI ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Office for Communications ++ Amt für Kommunikation ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/LI ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDwzCCAqugAwIBAgIFEuK7zLkwDQYJKoZIhvcNAQELBQAwcTELMAkGA1UEBhMCTFQxSTBHBgNVBAoMQENvbW11bmljYXRpb25zIFJlZ3VsYXRvcnkgQXV0aG9yaXR5IG9mIHRoZSBSZXB1YmxpYyBvZiBMaXRodWFuaWExFzAVBgNVBAMMDk5lcmlqdXMgQmxhenlzMB4XDTE0MDEwMTAwMDAwMFoXDTE3MDEwMTAwMDAwMFowcTELMAkGA1UEBhMCTFQxSTBHBgNVBAoMQENvbW11bmljYXRpb25zIFJlZ3VsYXRvcnkgQXV0aG9yaXR5IG9mIHRoZSBSZXB1YmxpYyBvZiBMaXRodWFuaWExFzAVBgNVBAMMDk5lcmlqdXMgQmxhenlzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwKBYP2yM8004HUNQGbKU/6HJqXV5SaI1p/d56imQaweezz80T4yUwU5Ghfp+1X+2AC6H3HZrPxhuHEqEvUtlgzpPJDbMI7keJsQvwbv0kUG/tbSS1diP7VaRx1/unO92kkwdJgKv9EaCO4yU5Z+eVfLoQx72ZWp/nab0TllywmNVWhZj4nOl+Rm8p6hvWu/Kwt2ky0lTkSrHTvmpQkM+ZiMS3NS6IPHCovHtjLqs04u97BfOemAzy8ZcsGmcF4dIF4Zn3rgdZsV0dq1AVrfa8tRrCU6eD31TAGS6DQAwD/qn4PMdEiqYNGeY2CAQ9YjpboV5g/U4GHRwc+UjLaF3YQIDAQABo2IwYDAdBgNVHQ4EFgQU1PbRhXoxr0fYWtavjCnXbQKb+5QwCQYDVR0TBAIwADAOBgNVHQ8BAf8EBAMCBsAwEQYDVR0gBAowCDAGBgRVHSAAMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQsFAAOCAQEAe5vJOlbUuz75xFt8JnkjjAJWct9cczvhFwZGNLsdvkiUdV6qiIefPyw6e2Hsc+mON9yYM+Km5X0ugsdy7V8vI2ycp/794mHscfPyoX3rgbPY7zPBMYJxtqfDHPcBRRGfuXxMHFou13jiM6fSYNchhlcpHkxYt5xyMOgnernV6FsGhPNgJomXnsJBQn1ClHYTXTudgHRzgAw9I+IKbONgnVZqDjqyaEar/DfduPFPh0hWXfCnIaTcDSbdWjy3llqWpxMofsTwXFpoYgDO3iG+IIZl3eipAMe2PJPqbIn5Y9FKEtssmmG1KcLPJpAT76NPWIK4nj/mYtZUhnLFsEhwQg== ++ ++ ++ ++ ++ MIIDxzCCAq+gAwIBAgIFFD1WPq8wDQYJKoZIhvcNAQELBQAwczELMAkGA1UEBhMCTFQxSTBHBgNVBAoMQENvbW11bmljYXRpb25zIFJlZ3VsYXRvcnkgQXV0aG9yaXR5IG9mIHRoZSBSZXB1YmxpYyBvZiBMaXRodWFuaWExGTAXBgNVBAMMEFZhaWRvdGFzIFJhbW9uYXMwHhcNMTYwMTAxMDAwMDAwWhcNMTkwMTAxMDAwMDAwWjBzMQswCQYDVQQGEwJMVDFJMEcGA1UECgxAQ29tbXVuaWNhdGlvbnMgUmVndWxhdG9yeSBBdXRob3JpdHkgb2YgdGhlIFJlcHVibGljIG9mIExpdGh1YW5pYTEZMBcGA1UEAwwQVmFpZG90YXMgUmFtb25hczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKaAn16pu+wmSKcOF+XAwinNPt+cOEcVTp0kfJvMbu1+g5a6Sbjp60iofbxtjj8CI6uJQ0BPhwxV3WuTSNO3V4+MaMK4D7hsYV4hbx5AFUc8l88qLxAFMtoBmrfHM8LEDGP62pbgLAkk7Wye2Jb2V9FHzIooCBpws+l7TxtWg4m7pmmRyU0wXiwztkLbYypyX98cQZyT0vJAaYGZIFt7PWaQtgdmJQsPXsyLU5k740EupGzgGOnsc187ll0cByHRuUQeZi5zBMJtCEECt/eClYVajV6yr0frYw59676Afe5W/ecF0uLPiJl05PLjjFF19BjCHAt7z7hKn7k+CHeTJT0CAwEAAaNiMGAwHQYDVR0OBBYEFFnVjew3yC3Q+lU+Z3pwRZk7QkglMAkGA1UdEwQCMAAwDgYDVR0PAQH/BAQDAgbAMBEGA1UdIAQKMAgwBgYEVR0gADARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQELBQADggEBAIns4XuCL9eqwZUkjZfcfsDJNfotALSvdYN0VALyBZtDSIFi7uLQITM7GVczL7PYY+/VvQ3jAVQcXeF1tofsqcuk5/Ae/qb7gM/+qKjUA3fdoqxZ/dCmaloL8WEF0y1taS8Ii44XnQb9Hy3STLKqdsfawJ7bZ3MLXvBWPyAil1mfVWivttuYh0lJ0ejMd/JrYxM5ewJSzMRF9q42U+lramRik3BiuW0JvHosKbWjbvgggx4MB7f658Ul4cvB9hwewFupYlKmXUnWFLUS4/Y249N6DzxY1nYtL5cf1laA34i9SpImjlwMJSV8cBqPnbH/54hvnbUT9B8nGYMyLKs1XVg= ++ ++ ++ ++ http://www.rrt.lt/failai/LT-TSL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ LT ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Communications Regulatory Authority of the Republic of Lithuania ++ Lietuvos Respublikos ryšių reguliavimo tarnyba ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/LT ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIGEzCCBPugAwIBAgIDC0wwMA0GCSqGSIb3DQEBCwUAMEwxCzAJBgNVBAYTAkxVMRYwFAYDVQQKEw1MdXhUcnVzdCBTLkEuMSUwIwYDVQQDExxMdXhUcnVzdCBHbG9iYWwgUXVhbGlmaWVkIENBMB4XDTE0MDYwMzA2MDUxMVoXDTE3MDYwMzA2MDUxMVowggEWMQswCQYDVQQGEwJGUjELMAkGA1UEBxMCTFUxDjAMBgNVBAoTBUlMTkFTMRMwEQYDVQQLEwpMVTIyOTU5NDYzMSwwKgYDVQQDEyNKRUFOLVBISUxJUFBFIFBJRVJSRSBKVUxJRU4gSFVNQkVSVDEQMA4GA1UEBBMHSFVNQkVSVDEkMCIGA1UEKhMbSkVBTi1QSElMSVBQRSBQSUVSUkUgSlVMSUVOMR0wGwYDVQQFExQxMTEwNTg3NTA2MDAzMjIzMjM5MDEyMDAGCSqGSIb3DQEJARYjamVhbi1waGlsaXBwZS5odW1iZXJ0QGlsbmFzLmV0YXQubHUxHDAaBgNVBAwTE1Byb2Zlc3Npb25hbCBQZXJzb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCkJS3Cl5PSHpwyJ2vdiaYFt20+OC+YAToHK9POubXp0o5vt2Cp7scmOaqUb4Qo6wRPgcBQIhvyDN5Loar/JXpfcq533jKbPnFDwRwT4cwfH3aG8bhkjBOWNjKi5PL5K1YRG18EcggoiXsrXTHHUdXtUBII9fPDxMHG2iPGVWMWRPwF0EWE/lmlrXo0V1PFoQiHmv8tRyXnFr45FzwRn1iTbrZP9SQrq76UTZi6HjfgJYQK+Tbu5GrMgLKYMtBE/7BqsgrMnqHtgLTgj00/bLSeoZ0fMEvpEAF0QioKOSd3wn+4WfHPfXzjHVZ0zm1jB+E4LhOyZNvcvleaLeL7sUzfAgMBAAGjggIwMIICLDAMBgNVHRMBAf8EAjAAMGEGCCsGAQUFBwEBBFUwUzAjBggrBgEFBQcwAYYXaHR0cDovL29jc3AubHV4dHJ1c3QubHUwLAYIKwYBBQUHMAKGIGh0dHA6Ly9jYS5sdXh0cnVzdC5sdS9MVEdRQ0EuY3J0MIIBHgYDVR0gBIIBFTCCAREwggEDBggrgSsBAQoDATCB9jCBxwYIKwYBBQUHAgIwgboagbdMdXhUcnVzdCBRdWFsaWZpZWQgQ2VydGlmaWNhdGUgb24gU1NDRCBDb21wbGlhbnQgd2l0aCBFVFNJIFRTIDEwMSA0NTYgUUNQKyBjZXJ0aWZpY2F0ZSBwb2xpY3kuIEtleSBHZW5lcmF0aW9uIGJ5IENTUC4gU29sZSBBdXRob3Jpc2VkIFVzYWdlOiBTdXBwb3J0IG9mIFF1YWxpZmllZCBFbGVjdHJvbmljIFNpZ25hdHVyZS4wKgYIKwYBBQUHAgEWHmh0dHBzOi8vcmVwb3NpdG9yeS5sdXh0cnVzdC5sdTAIBgYEAIswAQEwIgYIKwYBBQUHAQMEFjAUMAgGBgQAjkYBATAIBgYEAI5GAQQwCwYDVR0PBAQDAgZAMB8GA1UdIwQYMBaAFDQWG/HTZGdiTKM0vA2zU6R8ofEXMDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9jcmwubHV4dHJ1c3QubHUvTFRHUUNBLmNybDARBgNVHQ4ECgQIT+0vf3rcAoMwDQYJKoZIhvcNAQELBQADggEBAC1FnczzNUtm3n8rhkvhCPI2kZl110v/g3bPYV2cb2ifqczKN9suYU/cTpSzd/HKO285Skkc/SxDxN1ayctLt04DAdXnSgUCmWLNAgYUp2igrVyp8ZO5DTU5QlQuYUBZfbyVczi9r8E91XvO8DVKXbmP+b0tkRMpCWDLFnquE3e26dsKFmxxL89V7OvAjKyC4faoKK1XCZ9uZKAl0pH/hMqagk09glewuPO4WcRPdOgVqvOzllLh2o13uJhJ70OUdc4bg0WgLtDZqVqQ7gFjR/kG9c1J20vhAwGA9gksE2apeS3fTRH6FCuWInHlxMx4m7fc7hMjzX7/MihVYL5cZGs= ++ ++ ++ ++ ++ MIIF+DCCBOCgAwIBAgIDCrXJMA0GCSqGSIb3DQEBCwUAMEwxCzAJBgNVBAYTAkxVMRYwFAYDVQQKEw1MdXhUcnVzdCBTLkEuMSUwIwYDVQQDExxMdXhUcnVzdCBHbG9iYWwgUXVhbGlmaWVkIENBMB4XDTE0MDIxOTA4NTk0OVoXDTE3MDIxOTA4NTk0OVowgfwxCzAJBgNVBAYTAkxVMQswCQYDVQQHEwJMVTEOMAwGA1UEChMFSUxOQVMxEzARBgNVBAsTCkxVMjI5NTk0NjMxITAfBgNVBAsTGERpZ2l0YWwgdHJ1c3QgZGVwYXJ0bWVudDETMBEGA1UEAxMKQWxhaW4gV2FobDENMAsGA1UEBBMEV2FobDEOMAwGA1UEKhMFQWxhaW4xHTAbBgNVBAUTFDExMTA1ODg3NzUwMDMxNTcwMTI3MScwJQYJKoZIhvcNAQkBFhhhbGFpbi53YWhsQGlsbmFzLmV0YXQubHUxHDAaBgNVBAwTE1Byb2Zlc3Npb25hbCBQZXJzb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC4gbOHXYhqHTbSC9C/YMYeY82K6PP8CsVgbK8RH7i8T+870jmrbfgQyK5/voNJrp76lZpBny3fO5LwfzdMmmcsO8WPcpnQ/DTQhPoYkgkKSWwKpmrtSGeOyGkM2zcVgwBsyER8Nmm3ySqsBUDrVi5fsT587QQvj+gihslTD1dhkvPSQtCsmUjhCOHzX9G5AxSr/0RNtJIGysQDs9/8RuZL8A/+FjYIUAbkLLvFzmTK6NVqroWfU0o1QZ3i8j3Am144q/hZHcyNkB/jG/gsuxnskOMlUa2GbyffCPJlxnb7Ca1FgMl52kGIASFx6Li1T3ubP5y/6qSslP/kVnwJefRJAgMBAAGjggIwMIICLDAMBgNVHRMBAf8EAjAAMGEGCCsGAQUFBwEBBFUwUzAjBggrBgEFBQcwAYYXaHR0cDovL29jc3AubHV4dHJ1c3QubHUwLAYIKwYBBQUHMAKGIGh0dHA6Ly9jYS5sdXh0cnVzdC5sdS9MVEdRQ0EuY3J0MIIBHgYDVR0gBIIBFTCCAREwggEDBggrgSsBAQoDATCB9jCBxwYIKwYBBQUHAgIwgboagbdMdXhUcnVzdCBRdWFsaWZpZWQgQ2VydGlmaWNhdGUgb24gU1NDRCBDb21wbGlhbnQgd2l0aCBFVFNJIFRTIDEwMSA0NTYgUUNQKyBjZXJ0aWZpY2F0ZSBwb2xpY3kuIEtleSBHZW5lcmF0aW9uIGJ5IENTUC4gU29sZSBBdXRob3Jpc2VkIFVzYWdlOiBTdXBwb3J0IG9mIFF1YWxpZmllZCBFbGVjdHJvbmljIFNpZ25hdHVyZS4wKgYIKwYBBQUHAgEWHmh0dHBzOi8vcmVwb3NpdG9yeS5sdXh0cnVzdC5sdTAIBgYEAIswAQEwIgYIKwYBBQUHAQMEFjAUMAgGBgQAjkYBATAIBgYEAI5GAQQwCwYDVR0PBAQDAgZAMB8GA1UdIwQYMBaAFDQWG/HTZGdiTKM0vA2zU6R8ofEXMDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9jcmwubHV4dHJ1c3QubHUvTFRHUUNBLmNybDARBgNVHQ4ECgQIR2vHCdq/rJAwDQYJKoZIhvcNAQELBQADggEBAAUwL95Qob7946jCFDjS1lA8tYTduCpWwHgfj/hCkJZBRv3bPD5Q+UxbEca+R6lXyAaym5olPw+8wRZbsVYxmC7UuESltk3+BqmsLLCCdHDuY6A9pXrB8rtfHbKM6l7cutaqCF2UXIysXaNqFxl0rRbV+GvGZBrUbcaZWKXaVyYpLkSxOwcux9penyG7xPuV94hxVZeXFmVBwzQwxJZpOJVMcTGV/h83TU5eRj5Sm38RFAXik60I1CJfw/oNOmqnJdVdLh72gMad2zNECzqxPwAWWcxlm8sccjBq5UEZNsFOZsTUrC2S7ERMb8OoiMCF/FeGawkBZk644/DATAXfTj4= ++ ++ ++ ++ http://www.portail-qualite.public.lu/fr/publications/confiance-numerique/liste-confiance-nationale/tsl-pdf/TSL-PDF.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ LU ++ ++ ++ application/pdf ++ ++ ++ ++ ILNAS ++ ILNAS ++ ILNAS ++ Institut Luxembourgeois de la Normalisation, de l'Accréditation, de la Sécurité et qualité des produits et services ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/LU ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIGEzCCBPugAwIBAgIDC0wwMA0GCSqGSIb3DQEBCwUAMEwxCzAJBgNVBAYTAkxVMRYwFAYDVQQKEw1MdXhUcnVzdCBTLkEuMSUwIwYDVQQDExxMdXhUcnVzdCBHbG9iYWwgUXVhbGlmaWVkIENBMB4XDTE0MDYwMzA2MDUxMVoXDTE3MDYwMzA2MDUxMVowggEWMQswCQYDVQQGEwJGUjELMAkGA1UEBxMCTFUxDjAMBgNVBAoTBUlMTkFTMRMwEQYDVQQLEwpMVTIyOTU5NDYzMSwwKgYDVQQDEyNKRUFOLVBISUxJUFBFIFBJRVJSRSBKVUxJRU4gSFVNQkVSVDEQMA4GA1UEBBMHSFVNQkVSVDEkMCIGA1UEKhMbSkVBTi1QSElMSVBQRSBQSUVSUkUgSlVMSUVOMR0wGwYDVQQFExQxMTEwNTg3NTA2MDAzMjIzMjM5MDEyMDAGCSqGSIb3DQEJARYjamVhbi1waGlsaXBwZS5odW1iZXJ0QGlsbmFzLmV0YXQubHUxHDAaBgNVBAwTE1Byb2Zlc3Npb25hbCBQZXJzb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCkJS3Cl5PSHpwyJ2vdiaYFt20+OC+YAToHK9POubXp0o5vt2Cp7scmOaqUb4Qo6wRPgcBQIhvyDN5Loar/JXpfcq533jKbPnFDwRwT4cwfH3aG8bhkjBOWNjKi5PL5K1YRG18EcggoiXsrXTHHUdXtUBII9fPDxMHG2iPGVWMWRPwF0EWE/lmlrXo0V1PFoQiHmv8tRyXnFr45FzwRn1iTbrZP9SQrq76UTZi6HjfgJYQK+Tbu5GrMgLKYMtBE/7BqsgrMnqHtgLTgj00/bLSeoZ0fMEvpEAF0QioKOSd3wn+4WfHPfXzjHVZ0zm1jB+E4LhOyZNvcvleaLeL7sUzfAgMBAAGjggIwMIICLDAMBgNVHRMBAf8EAjAAMGEGCCsGAQUFBwEBBFUwUzAjBggrBgEFBQcwAYYXaHR0cDovL29jc3AubHV4dHJ1c3QubHUwLAYIKwYBBQUHMAKGIGh0dHA6Ly9jYS5sdXh0cnVzdC5sdS9MVEdRQ0EuY3J0MIIBHgYDVR0gBIIBFTCCAREwggEDBggrgSsBAQoDATCB9jCBxwYIKwYBBQUHAgIwgboagbdMdXhUcnVzdCBRdWFsaWZpZWQgQ2VydGlmaWNhdGUgb24gU1NDRCBDb21wbGlhbnQgd2l0aCBFVFNJIFRTIDEwMSA0NTYgUUNQKyBjZXJ0aWZpY2F0ZSBwb2xpY3kuIEtleSBHZW5lcmF0aW9uIGJ5IENTUC4gU29sZSBBdXRob3Jpc2VkIFVzYWdlOiBTdXBwb3J0IG9mIFF1YWxpZmllZCBFbGVjdHJvbmljIFNpZ25hdHVyZS4wKgYIKwYBBQUHAgEWHmh0dHBzOi8vcmVwb3NpdG9yeS5sdXh0cnVzdC5sdTAIBgYEAIswAQEwIgYIKwYBBQUHAQMEFjAUMAgGBgQAjkYBATAIBgYEAI5GAQQwCwYDVR0PBAQDAgZAMB8GA1UdIwQYMBaAFDQWG/HTZGdiTKM0vA2zU6R8ofEXMDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9jcmwubHV4dHJ1c3QubHUvTFRHUUNBLmNybDARBgNVHQ4ECgQIT+0vf3rcAoMwDQYJKoZIhvcNAQELBQADggEBAC1FnczzNUtm3n8rhkvhCPI2kZl110v/g3bPYV2cb2ifqczKN9suYU/cTpSzd/HKO285Skkc/SxDxN1ayctLt04DAdXnSgUCmWLNAgYUp2igrVyp8ZO5DTU5QlQuYUBZfbyVczi9r8E91XvO8DVKXbmP+b0tkRMpCWDLFnquE3e26dsKFmxxL89V7OvAjKyC4faoKK1XCZ9uZKAl0pH/hMqagk09glewuPO4WcRPdOgVqvOzllLh2o13uJhJ70OUdc4bg0WgLtDZqVqQ7gFjR/kG9c1J20vhAwGA9gksE2apeS3fTRH6FCuWInHlxMx4m7fc7hMjzX7/MihVYL5cZGs= ++ ++ ++ ++ ++ MIIF+DCCBOCgAwIBAgIDCrXJMA0GCSqGSIb3DQEBCwUAMEwxCzAJBgNVBAYTAkxVMRYwFAYDVQQKEw1MdXhUcnVzdCBTLkEuMSUwIwYDVQQDExxMdXhUcnVzdCBHbG9iYWwgUXVhbGlmaWVkIENBMB4XDTE0MDIxOTA4NTk0OVoXDTE3MDIxOTA4NTk0OVowgfwxCzAJBgNVBAYTAkxVMQswCQYDVQQHEwJMVTEOMAwGA1UEChMFSUxOQVMxEzARBgNVBAsTCkxVMjI5NTk0NjMxITAfBgNVBAsTGERpZ2l0YWwgdHJ1c3QgZGVwYXJ0bWVudDETMBEGA1UEAxMKQWxhaW4gV2FobDENMAsGA1UEBBMEV2FobDEOMAwGA1UEKhMFQWxhaW4xHTAbBgNVBAUTFDExMTA1ODg3NzUwMDMxNTcwMTI3MScwJQYJKoZIhvcNAQkBFhhhbGFpbi53YWhsQGlsbmFzLmV0YXQubHUxHDAaBgNVBAwTE1Byb2Zlc3Npb25hbCBQZXJzb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC4gbOHXYhqHTbSC9C/YMYeY82K6PP8CsVgbK8RH7i8T+870jmrbfgQyK5/voNJrp76lZpBny3fO5LwfzdMmmcsO8WPcpnQ/DTQhPoYkgkKSWwKpmrtSGeOyGkM2zcVgwBsyER8Nmm3ySqsBUDrVi5fsT587QQvj+gihslTD1dhkvPSQtCsmUjhCOHzX9G5AxSr/0RNtJIGysQDs9/8RuZL8A/+FjYIUAbkLLvFzmTK6NVqroWfU0o1QZ3i8j3Am144q/hZHcyNkB/jG/gsuxnskOMlUa2GbyffCPJlxnb7Ca1FgMl52kGIASFx6Li1T3ubP5y/6qSslP/kVnwJefRJAgMBAAGjggIwMIICLDAMBgNVHRMBAf8EAjAAMGEGCCsGAQUFBwEBBFUwUzAjBggrBgEFBQcwAYYXaHR0cDovL29jc3AubHV4dHJ1c3QubHUwLAYIKwYBBQUHMAKGIGh0dHA6Ly9jYS5sdXh0cnVzdC5sdS9MVEdRQ0EuY3J0MIIBHgYDVR0gBIIBFTCCAREwggEDBggrgSsBAQoDATCB9jCBxwYIKwYBBQUHAgIwgboagbdMdXhUcnVzdCBRdWFsaWZpZWQgQ2VydGlmaWNhdGUgb24gU1NDRCBDb21wbGlhbnQgd2l0aCBFVFNJIFRTIDEwMSA0NTYgUUNQKyBjZXJ0aWZpY2F0ZSBwb2xpY3kuIEtleSBHZW5lcmF0aW9uIGJ5IENTUC4gU29sZSBBdXRob3Jpc2VkIFVzYWdlOiBTdXBwb3J0IG9mIFF1YWxpZmllZCBFbGVjdHJvbmljIFNpZ25hdHVyZS4wKgYIKwYBBQUHAgEWHmh0dHBzOi8vcmVwb3NpdG9yeS5sdXh0cnVzdC5sdTAIBgYEAIswAQEwIgYIKwYBBQUHAQMEFjAUMAgGBgQAjkYBATAIBgYEAI5GAQQwCwYDVR0PBAQDAgZAMB8GA1UdIwQYMBaAFDQWG/HTZGdiTKM0vA2zU6R8ofEXMDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9jcmwubHV4dHJ1c3QubHUvTFRHUUNBLmNybDARBgNVHQ4ECgQIR2vHCdq/rJAwDQYJKoZIhvcNAQELBQADggEBAAUwL95Qob7946jCFDjS1lA8tYTduCpWwHgfj/hCkJZBRv3bPD5Q+UxbEca+R6lXyAaym5olPw+8wRZbsVYxmC7UuESltk3+BqmsLLCCdHDuY6A9pXrB8rtfHbKM6l7cutaqCF2UXIysXaNqFxl0rRbV+GvGZBrUbcaZWKXaVyYpLkSxOwcux9penyG7xPuV94hxVZeXFmVBwzQwxJZpOJVMcTGV/h83TU5eRj5Sm38RFAXik60I1CJfw/oNOmqnJdVdLh72gMad2zNECzqxPwAWWcxlm8sccjBq5UEZNsFOZsTUrC2S7ERMb8OoiMCF/FeGawkBZk644/DATAXfTj4= ++ ++ ++ ++ http://www.portail-qualite.public.lu/fr/publications/confiance-numerique/liste-confiance-nationale/tsl-xml/TSL-XML.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ LU ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ ILNAS ++ ILNAS ++ Institut Luxembourgeois de la Normalisation, de l'Accréditation, de la Sécurité et qualité des produits et services ++ ILNAS ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/LU ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIGHzCCBQegAwIBAgIOVdHN3GH/hnsABAAU4ygwDQYJKoZIhvcNAQEFBQAwTzELMAkGA1UEBhMCTFYxKDAmBgNVBAsTH1NlcnRpZmlrYWNpamFzIHBha2FscG9qdW11IGRhbGExFjAUBgNVBAMTDUUtTUUgU0kgKENBMSkwHhcNMTQwODI2MTI1NTM0WhcNMTgwODI1MTI1NTM0WjB4MQswCQYDVQQGEwJMVjEfMB0GA1UEChMWRGF0dSB2YWxzdHMgaW5zcGVrY2lqYTEbMBkGA1UECxMSTFYgVFNMIHNpZ25hdHVyZSAxMSswKQYDVQQDEyJMYXR2aWFuIFRydXN0IExpc3QgU2NoZW1lIE9wZXJhdG9yMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtHMwFE2pSlMGpRdK/TbJvuAYllFKCKPPKA/ZNKsf6oDSziOgzVocZaJKeYLBGVuwhDtDG0EDp2ZJ8B+O1aKlN4l4IKGQ4jhwmjax4we2No5681zNj3ofnL8ARIEV5cz+Fq47K3WBhD46Khk9xGN6tJnpUFH/O8Aptp/ue1AuZujFGUuTgyjjaaWJY6/gsCQZesEho5yqJ2Bw4YLwN6aSq69/xFNzMTcFcI2vC7VVKpOwGzXvQ8hBjtcNO8OcLX7e4JWrFeWKutTnelYhRWIUymrZ7cFF9aOJPiJm/ocEFoFGDkCEUOZ3c9DnEKj1k9nz74Z+ETOmmVA5eoZxxzjEKQIDAQABo4ICzjCCAsowHQYDVR0OBBYEFKfHsxCpx5cohHTvaDoSAipI4S2oMB8GA1UdIwQYMBaAFH/spibD8LJv/ruFlJkuVozQtdq1MIHhBgNVHR8EgdkwgdYwgdOggdCggc2GLmh0dHA6Ly93d3cuZW1lLmx2L2NkcC9FLU1FJTIwU0klMjAoQ0ExKSg0KS5jcmyGgZpsZGFwOi8vZW1lLmx2L2NuPUUtTUUlMjBTSSUyMChDQTEpKDQpLG91PVNlcnRpZmlrYWNpamFzJTIwcGFrYWxwb2p1bXUlMjBkYWxhLG89RS1NRSxjPWx2P2NlcnRpZmljYXRlcmV2b2NhdGlvbmxpc3Q/YmFzZT9vYmplY3RjbGFzcz1jZXJ0aWZpY2F0aW9uYXV0aG9yaXR5MIIBGwYIKwYBBQUHAQEEggENMIIBCTA6BggrBgEFBQcwAoYuaHR0cDovL3d3dy5lbWUubHYvYWlhL0UtTUUlMjBTSSUyMChDQTEpKDQpLmNydDAtBggrBgEFBQcwAYYhaHR0cHM6Ly9vY3NwLmVtZS5sdi9yZXNwb25kZXIuZW1lMIGbBggrBgEFBQcwAoaBjmxkYXA6Ly9lbWUubHYvY249RS1NRSUyMFNJJTIwKENBMSkoNCksb3U9U2VydGlmaWthY2lqYXMlMjBwYWthbHBvanVtdSUyMGRhbGEsbz1FLU1FLGM9bHY/Y2FjZXJ0aWZpY2F0ZT9iYXNlP29iamVjdGNsYXNzPWNlcnRpZmljYXRpb25hdXRob3JpdHkwDAYDVR0TAQH/BAIwADALBgNVHQ8EBAMCBkAwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIgrySbtKyZ4L5jwXNummCwJdhgSSC0dMwhdawFwIBZAIBCTARBgNVHSUECjAIBgYEAJE3AwAwGQYJKwYBBAGCNxUKBAwwCjAIBgYEAJE3AwAwDQYJKoZIhvcNAQEFBQADggEBACbE+/J+cQ6YPJI+0TzsIt8SR0h9Z8As/YWH1Awuqz4+XWS6Vja8lt38xxjRUnEY45ENjiJssgpIErT85tSKOUemZqed2oVw4vfsEb3/miZrFSZRfEVFHDq+qXcpmEZTW8qoScFLoe2snA0LFEnOKANm3F39W97eIKGCSbkzp6SHtXSuHOlTAF1jCc1BQY56utCOyStSn3V2lbD1MKK4vPwMmZYw45+bZuTzEwr00b1D77i3QZF6FemvdQl8JEJdbzzOKKV8CVFcUykJCkrJTKeJTrQpXtB5ffDE0r0j1rX5Xaqq2qQwTeYOafrgPVdiWEIJzM/7XGfAjqL3jvbiDAw= ++ ++ ++ ++ ++ MIIGHzCCBQegAwIBAgIOVdHN3GH/hnsABAAV2LYwDQYJKoZIhvcNAQEFBQAwTzELMAkGA1UEBhMCTFYxKDAmBgNVBAsTH1NlcnRpZmlrYWNpamFzIHBha2FscG9qdW11IGRhbGExFjAUBgNVBAMTDUUtTUUgU0kgKENBMSkwHhcNMTQxMDA3MDgwMjQ5WhcNMTcxMDA2MDgwMjQ5WjB4MQswCQYDVQQGEwJMVjEfMB0GA1UEChMWRGF0dSB2YWxzdHMgaW5zcGVrY2lqYTEbMBkGA1UECxMSTFYgVFNMIHNpZ25hdHVyZSAyMSswKQYDVQQDEyJMYXR2aWFuIFRydXN0IExpc3QgU2NoZW1lIE9wZXJhdG9yMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAu+ds9FjOl2ByQ7MvUWZUFBxHkMT+94TvmjmmUDfFFmQ4mV/GJkdjLKw3CAVmE9QpfVu4+CwtPr0qVTV14KJUgwm89CbI7CcWL+dUBZvFctEAcvTUAD69gZu8iaKrS1jK4NDaVXbJSjAMyqMc1ezG5pFnUoYiaFjphmHaa9uHJaFogBrMnF+z+dZAtcVf/eqCO1gaLayMRJGpm/TuX5ploouIYQF+djQ+BYmtzx/p2/knt3ij+C0kIkYu94KegROx7w45DK6N9vGH5S3VPq4dAY5JrZfRFqw+nQgF4AiRJbYWgKU8A5aQEL4Aqo2rtmqaUBZBUpnzKCcfUssEod3u/QIDAQABo4ICzjCCAsowHQYDVR0OBBYEFISl6Smqc1SZkdtfbUC4NReg4nIOMB8GA1UdIwQYMBaAFH/spibD8LJv/ruFlJkuVozQtdq1MIHhBgNVHR8EgdkwgdYwgdOggdCggc2GLmh0dHA6Ly93d3cuZW1lLmx2L2NkcC9FLU1FJTIwU0klMjAoQ0ExKSg0KS5jcmyGgZpsZGFwOi8vZW1lLmx2L2NuPUUtTUUlMjBTSSUyMChDQTEpKDQpLG91PVNlcnRpZmlrYWNpamFzJTIwcGFrYWxwb2p1bXUlMjBkYWxhLG89RS1NRSxjPWx2P2NlcnRpZmljYXRlcmV2b2NhdGlvbmxpc3Q/YmFzZT9vYmplY3RjbGFzcz1jZXJ0aWZpY2F0aW9uYXV0aG9yaXR5MIIBGwYIKwYBBQUHAQEEggENMIIBCTA6BggrBgEFBQcwAoYuaHR0cDovL3d3dy5lbWUubHYvYWlhL0UtTUUlMjBTSSUyMChDQTEpKDQpLmNydDAtBggrBgEFBQcwAYYhaHR0cHM6Ly9vY3NwLmVtZS5sdi9yZXNwb25kZXIuZW1lMIGbBggrBgEFBQcwAoaBjmxkYXA6Ly9lbWUubHYvY249RS1NRSUyMFNJJTIwKENBMSkoNCksb3U9U2VydGlmaWthY2lqYXMlMjBwYWthbHBvanVtdSUyMGRhbGEsbz1FLU1FLGM9bHY/Y2FjZXJ0aWZpY2F0ZT9iYXNlP29iamVjdGNsYXNzPWNlcnRpZmljYXRpb25hdXRob3JpdHkwDAYDVR0TAQH/BAIwADALBgNVHQ8EBAMCBkAwPAYJKwYBBAGCNxUHBC8wLQYlKwYBBAGCNxUIgrySbtKyZ4L5jwXNummCwJdhgSSC0dMwhdawFwIBZAIBCjARBgNVHSUECjAIBgYEAJE3AwAwGQYJKwYBBAGCNxUKBAwwCjAIBgYEAJE3AwAwDQYJKoZIhvcNAQEFBQADggEBADKXV4IbJktD4j2y0bGHkIgQAb906PYcKx8KSRM78niv0r8mRyCaaCPLCms58ueb9/eDTOCMJllL3sre8BPZVJQcQ3KjxrPrBv2JGP/5igoGObLaCe+ZZVyXkHXqi4uJAu2PdiWVosO/dHyDsdUGtdlWDqjOjrr98ouGpkv+i5Rp8hfK2/SmDTg7mHy+pPoYAHQ4/2pmVWCSppjLFNCTsz0R4K0AnCRkdkX+/RqsKP0sxpfiomusIPR6PDAXQO3ATGJH+v5nNsTEtwUskCCwYT9dc18zqSoQ/aiKrU8MZ6gR0XuituYmQMCoyiURcy/6EfIlTYJiLcF7Ccsy3vLBm84= ++ ++ ++ ++ http://www.dvi.gov.lv/en/wp-content/uploads/TSL/tsl-lv.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ LV ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Data State Inspectorate ++ Datu valsts inspekcija ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/LV ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDtTCCAp2gAwIBAgIJAPXsVjGOrIQXMA0GCSqGSIb3DQEBCwUAMEkxCzAJBgNVBAYTAk1UMREwDwYDVQQHEwhGbG9yaWFuYTEnMCUGA1UEChMeTWFsdGEgQ29tbXVuaWNhdGlvbnMgQXV0aG9yaXR5MB4XDTE0MDUyMDA5NTE1NloXDTE4MDUxOTA5NTE1NlowSTELMAkGA1UEBhMCTVQxETAPBgNVBAcTCEZsb3JpYW5hMScwJQYDVQQKEx5NYWx0YSBDb21tdW5pY2F0aW9ucyBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDKPl3MKhU9x9uDAU01z90WiEL1r9L7v5BQ3vd3F9FQ3fXaxgKlGxEbaMoGYlFgIfuq5ryG+JDq2r4Rk7PW0POoFKHWZofzVSU0GLKn5z3aqnuuL5CN2yQb8j4hKECeWiVzVd5R67UrS/yjIlRvFSjbGU+q2x4AGUP+M24seGmPjbFjTQmPdxal9crrrI0dUJ62fAI6XDqsfJf/OJ2GZziJoBEDwmlDJfGlE0FhKXqwGN9wnfE35BcCyyJ9f1zdOtOE7LheLzslMXC0i6qyZ1FNHpXKyCjVPIrEjdagZcY3K+V+TUh/SFTgRck3TqN2F+kCrN+xVEcOf9oQgb8vAv7nAgMBAAGjgZ8wgZwwYwYDVR0jBFwwWqFNpEswSTELMAkGA1UEBhMCTVQxETAPBgNVBAcTCEZsb3JpYW5hMScwJQYDVQQKEx5NYWx0YSBDb21tdW5pY2F0aW9ucyBBdXRob3JpdHmCCQD17FYxjqyEFzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIGwDAdBgNVHQ4EFgQU/dPIsI60+QT7YKYnhx45VDdb9YkwDQYJKoZIhvcNAQELBQADggEBAGWWjEBsICFiNXowAHFd2kzhWKBPvcPOYJ3hW0BjQvCxcRK+zM1jUU6SMTOv8k56mm3gfakEmlCWGYj1tyXmGwYtthBkJtkthOygX00RrwAVXXZY6yf1H2SB1vvM0+NL41apSBPDI6tQhD2uw7wHLZBnaIoC4iqUAQBdH3+DQ4KZ9fYg7ULu3W1s5SKa96yj6zKyO+NQnZd9e/WCJrlAtrf0f8BHmMSkbJB3u6bvEc4tWnj1h5oV+esIFi0nbfZMpREExCF2V4eq1gBOe6zz/pfXhO8evjb4Kn7Loyw8Sr2GXMIbypbn67e50BqQdtUVeukD+l50/UCA/7xI2VXSp+Y= ++ ++ ++ ++ ++ MIIDtTCCAp2gAwIBAgIJANGZrDHpPeweMA0GCSqGSIb3DQEBCwUAMEkxCzAJBgNVBAYTAk1UMREwDwYDVQQHEwhGbG9yaWFuYTEnMCUGA1UEChMeTWFsdGEgQ29tbXVuaWNhdGlvbnMgQXV0aG9yaXR5MB4XDTE0MDUyMDA5NTcyNVoXDTIwMDUwODA5NTcyNVowSTELMAkGA1UEBhMCTVQxETAPBgNVBAcTCEZsb3JpYW5hMScwJQYDVQQKEx5NYWx0YSBDb21tdW5pY2F0aW9ucyBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzlByjEn5W2DyrJG4r6SA6HiC0+7xzJH4Fl/EqIomyoeSBkci32aW17Bhx1MyYq+uLb6IURMUoqSIs1ZNh4lj4yycgCq/UHh0GttERM643wAOQtrxb3/Ds3txIkJSJ+DCRVMOyDJO2uWqcXFa1V6e62xH2ZWSp/TbrmlRGzWlpVyu80xE/pIn6Gs7pEAyz8TUOiPsPOw5h3kJttrRURmq3WafcRW4eDiVUIehL1rGv8635qyB+JKG7pWw8OsfVylIAcj75UUTOqM4I6oHKyOJPLXM3DcPjzwfDwWlbXABgtNEDJYIfpQd9vdjEgXsXkmsSNzgd5vPh7MbOE58ShsgfAgMBAAGjgZ8wgZwwYwYDVR0jBFwwWqFNpEswSTELMAkGA1UEBhMCTVQxETAPBgNVBAcTCEZsb3JpYW5hMScwJQYDVQQKEx5NYWx0YSBDb21tdW5pY2F0aW9ucyBBdXRob3JpdHmCCQDRmawx6T3sHjAJBgNVHRMEAjAAMAsGA1UdDwQEAwIGwDAdBgNVHQ4EFgQUTU4Fh/R+vnm6W3aZdKQNAtGpfT8wDQYJKoZIhvcNAQELBQADggEBAAgU3PUUWGxToG5cDdZAVBimax+O6LbdSrxi2V2Sy4RmKcMZzT/9G9Gw+nHgFrb/4nkZD550RWArzhBpv4+2+G3WFroZ6ThYxsPpLdayU7Rj7JtRoCkE7qOPzerTE7k4jMIb7ejdrNvMRZz3BjEu5PE80hpUByXGHVTqBq8lw/CehgdfYD/CtLZ2hJK9o1KPqi8DPKMAvFQyYcSZ5G5GqMnhbwyZKo1YB/cEl73KsZ3OF4asKSSh5vQwbRpxd/AQTVLr9Y6VyQ+xl4NXBUhIgKoNyLm3B43tel3l4E314L5ihFJK6Kz/P6IfTeU8orCpTFfC4ylogdhMwlLgXlaoNwM= ++ ++ ++ ++ http://www.mca.org.mt/tsl/MT_TSL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ MT ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Malta Communications Authority ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/MT ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIF/jCCA+agAwIBAgIFEuuke34wDQYJKoZIhvcNAQELBQAwdDELMAkGA1UEBhMCTkwxKjAoBgNVBAoMIUF1dGhvcml0eSBmb3IgQ29uc3VtZXJzICYgTWFya2V0czEWMBQGA1UEAwwNTkwgVFNMIFNJR05FUjEVMBMGA1UEFBMMKzMxNzA3MjIyMDAwMQowCAYDVQQFEwEyMB4XDTEzMDQwMTAwMDAwMFoXDTIwMDMyNTAwMDAwMFowdDELMAkGA1UEBhMCTkwxKjAoBgNVBAoMIUF1dGhvcml0eSBmb3IgQ29uc3VtZXJzICYgTWFya2V0czEWMBQGA1UEAwwNTkwgVFNMIFNJR05FUjEVMBMGA1UEFBMMKzMxNzA3MjIyMDAwMQowCAYDVQQFEwEyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAriEnqugEYAIKecxPDpGzACCuO+qGAdHHlrIjE2RxqIwGGY0poppNoxAETuKUiU7VmdRk366UFtGWvl6xb1lAL5d4SL8695oZcKX47u04uCusceEEyujfzrRAm62UWL/1+CChpPeZLqgnVc60152qjUwR2ogOCV13HZXegWrVUxXMwlag5mSF0Di1E93wVMHH3+4jAj/BRDtpmaFBRQ5X1xOZN73jVU6y8S8i96CHFem2jiDh/FPV+jvZALObhwNZ3bFWNZDt1thHufUMrLz1wYb65ilOXeSBYUXRDLGALZUvNPnKwkv1O4xU2tCpJ+29mPkRiBuzc8qZ40mo85UG0TQfqXbOEW4bRIkk57ewqHyLtXjCHXznXDt4mp19MYwIQ+0sDWnsw14G1U/XvlcFgAnz054X1f4B38WVYvuVemHr64s3T/cQsvhL/bAoBi3NDzq9xBl6e2TlHL5LLavp+Yw37+CYv2mZveVi3NcMer8Vgzy3M9PT00/ZG9cjtv7sheRbxMqZjpfLyEtULSw/ecK9APhOPrUn5CYFfBZeh6XRSkI5mZ8NUmJDQ4mN62EUP2ayetSpaugAkUUbNc/RYwZrxgH+2ey/6LOvOFmv6OOg34saFLdKdUddZpFcQe+ID8N0TKTG3nhN+JqV8QAzbsPCRF6DP2dIKC6TwgezxBUCAwEAAaOBljCBkzAdBgNVHQ4EFgQUtusU1UVT6Rll2H8hMx/m+2RWJfcwCQYDVR0TBAIwADAOBgNVHQ8BAf8EBAMCBsAwEQYDVR0gBAowCDAGBgRVHSAAMDEGA1UdEQQqMCiBCnR0cEBhY20ubmyGGmh0dHBzOi8vd3d3LmFjbS5ubC9lbi90c2wvMBEGA1UdJQQKMAgGBgQAkTcDADANBgkqhkiG9w0BAQsFAAOCAgEAXMD8Y/0+FNwWfhcBcN5aMp8eRQHURDQe5LvkjF5YRj+Ws4KIse1O/bjD+BTvRUbhmTOH3cxfvHzGiO6EML4+a2ovToZvPXEWw9v3qN5bl0ShYLUbZA9IHTljuZUTab2ILtwX98YDqiiBl7mR0X5SeqeULBBzv29EBctgxpkGNvxRRsT6HFUsjEy3y018euYGgL/uKXnLoNz4MXWOmPfk705br16kM9/cg0p14k5kg4UZCFzGwMEzqpHUK/Ps/KH/xkgN0IlVxu/h+rLugJEVqJ1cumEteqHsbuyxLOrqIPU8utDtm71zkc06nery3xXU8L5+bjtYRlGzgioK0nNwXhuXaJT/hA3cYlXHnw6R9CqWJ4loSueg5dM/JO1YpMhLQrCSAPteW7D9+2zXeQ8YXE69ZQZ5oiB0MiGnU03r6cH2sls9loX3e3vQZ3XNkct1m20AzZ2GZucPI56S765nRHZzHfTz4AalEG2zyk/5dUz1bUR5jwYc9ccErJj20ynIKFKqIQwrAG2ZXRvi4YZNosckVYn/8dsOPW1XNVTwj7B6qcMlovqFZmZkVSZbFJxRWeM8qMOgaYK6UeknIMwUZdiQg96W6LdgiW25XE8VOWfJppG0dDw6xbwTr1xPMwuZdGu1HPF04iBFMZmjZa+CY2W3Ub1fJMRWw9Pewk0csKQ= ++ ++ ++ ++ ++ MIIFzzCCA7egAwIBAgIFEpzEZsgwDQYJKoZIhvcNAQELBQAwXTELMAkGA1UEBhMCTkwxKjAoBgNVBAoMIUF1dGhvcml0eSBmb3IgQ29uc3VtZXJzICYgTWFya2V0czEWMBQGA1UEAwwNTkwgVFNMIFNJR05FUjEKMAgGA1UEBRMBMzAeFw0xNDAxMDkwMDAwMDBaFw0yMDAzMjUwMDAwMDBaMF0xCzAJBgNVBAYTAk5MMSowKAYDVQQKDCFBdXRob3JpdHkgZm9yIENvbnN1bWVycyAmIE1hcmtldHMxFjAUBgNVBAMMDU5MIFRTTCBTSUdORVIxCjAIBgNVBAUTATMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDqOstItu84JkhN6hgxcV1YiGYUuhM9DduuaSuqiYwI0LtdTCbzRo9hbvU5KrvcmgcNBUVnOECAKOmP7h4U2+BZhM4ldf6rT4bv/arwuwwOQR7Po5erjMUhaxA6zcYsO1jPYYfI0+MZOCIZir3c4u5NdfPHhfzvv/lwob5OZ8/mhCaCVxwLvxto309L8yjzuYHc3H22veUoNxEN6pwhJWMPNVe1ERSPpG/7lCfaGVl3igvgQAA5oAQ21Ze23fSUJ/Tj6Xgj8Mai1HkD7+Lsq6q+faSZ62fel4xY8jquzm2AxLXNZl8nopzPYvzoUj7vCS52L1G4l475rS1hmm+Wr0NxlupJ61BF2S6tr9CCzBoeBT1vdNI8nbYkIwQuUI//etCjptvjXcGu4fD4u5zrAGceu92hxz4xHbztUjpsLEaioFPoCnWsyqFGtkvYDCyXxJ0fKmkB3KUpAoGh8Dhsi6JWr0nnMYrZUcRBAF1cie5qKBRMmD+/2wBTO4fEVmTFMiRexAz6kW45zQROpQ1405M7zyc77MgcgXvPwwJ4HJgEKzHDjYpCxWI2qlOPtkoNs8WAtn8Mbqxj/cuU9KlmGlCK+WQGDUOS4ziuwP12iIlxg0CROJmJu3wmVl8KvlwZjexub18n4K8VpznIXQWjt2MEBYNUSXFTM9Ms4Bamb57QYwIDAQABo4GVMIGSMB0GA1UdDgQWBBTuca7VbkGi4o0pPmNhW4X1+l+3iTAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSAECjAIMAYGBFUdIAAwMAYDVR0RBCkwJ4EKdHRwQGFjbS5ubIYZaHR0cDovL3d3dy5hY20ubmwvZW4vdHNsLzARBgNVHSUECjAIBgYEAJE3AwAwDQYJKoZIhvcNAQELBQADggIBALT6Uj/x8zfdpMY+78PM6yuWUvvKjA/Tqf1TAEPsWQY38PHA48td9tW8uy9gxoSaGvaAAQmrGI7D9e5u669I0exo0zN+7/eMIZp5eWxTmvRUrGhxuErbTmpxhWB2B8pm8vIfUGsAzC2YLsILp2Rv5rXApQwF/4gPPs4iWMb081SJ4cDL0iMvvLYYYfJY7Ob/3MrmsO4Uasj8YKQtuarFkEKOTP6DBRaUCnBpFfttdhF8MGOZPIMwO1YalKyjMzEQDz/L4nB1ZYtqyevqgj5+SxokugzY3/Ais05wjM0y3K4/Bj0ddWZCPfAiBpCqHNCW0j3FrJc2HodO9eKa/dl+b5g0hNu3xoHyLMe+KCe9MQpwu/dUBFLkg69UxX3RvgTLEfYpa1A1QMRt987xFqk65IL0pH68DWTL3RY4e6NvXg81nXeDzhKMRRk+PmHHS75s7WYZlXSPE1lLRBsN0CVoQSaGPWB2oLo54C/fuw6uq7KbXWVdisiHH7sZckSjkRl5yTNOjp6FT6niYH2S5a/qoR8zclL+AFmX1fLJ/IS4dYFDIaR2KAW4t7Bk+sIjGVZ2/k3+TsTKOH+iHPOxaYOyUn6olG4Bg4GJwpPB74EmRw8P2xnsXX4qevHA1KuNj/6YkvU4/uOiWjjphKSEFZoDkcHdwXdr2EuhJX89od0H8tAz ++ ++ ++ ++ https://www.acm.nl/download/bestand/current-tsl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ NL ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Authority for Consumers & Markets ++ Autoriteit Consument en Markt ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/NL ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIE8zCCA9ugAwIBAgILB2ZLeEvsahPcLG8wDQYJKoZIhvcNAQELBQAwSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDMgQ0EgMzAeFw0xNTAxMTMwOTE3NTRaFw0xODAxMTMyMjU5MDBaMIGJMQswCQYDVQQGEwJOTzEpMCcGA1UECgwgTkFTSk9OQUwgS09NTVVOSUtBU0pPTlNNWU5ESUdIRVQxEDAOBgNVBAsMB05ldHQvTkUxKTAnBgNVBAMMIE5BU0pPTkFMIEtPTU1VTklLQVNKT05TTVlORElHSEVUMRIwEAYDVQQFEwk5NzQ0NDY4NzEwggEfMA0GCSqGSIb3DQEBAQUAA4IBDAAwggEHAoH/ANeweXbKKHrkQW35hOpV9H1GwIRIqwJQf+aBtoMd4SHKRXcBKGEiNpnqhS6kdur52VuDwzGvogv0ax+uWok12yMoLKwjN2UhYX5HtkzkcXys0k4BY3DpggZ5jrzWWvDNoOsgraom68OOBaXOVwswiexPDZ6aDxz0mDJBfNEodEzcR84zW+om31wvoe+RHEARvsM/6lWmIW6A9moze/350L/cXMCDynRn3RKAWi9XbIqo7Qrve9O+ezobdj7a6ynNYdS3/BWUrx13dC6RObnAsxW5YJN7lmrvHYTCno5PFPUb0P4yNXkuODoYUitIV0GHROrB1qivhGBsWNbKhY17AgMBAAGjggGaMIIBljAJBgNVHRMEAjAAMB8GA1UdIwQYMBaAFMzD+Ae3nG16TvWnKx0F+bNHHJHRMB0GA1UdDgQWBBRmTbuN0c7EqTSY57PDZomR8/hWKTAOBgNVHQ8BAf8EBAMCBkAwFQYDVR0gBA4wDDAKBghghEIBGgEDBTCBpQYDVR0fBIGdMIGaMC+gLaArhilodHRwOi8vY3JsLmJ1eXBhc3Mubm8vY3JsL0JQQ2xhc3MzQ0EzLmNybDBnoGWgY4ZhbGRhcDovL2xkYXAuYnV5cGFzcy5uby9kYz1CdXlwYXNzLGRjPU5PLENOPUJ1eXBhc3MlMjBDbGFzcyUyMDMlMjBDQSUyMDM/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdDB6BggrBgEFBQcBAQRuMGwwMwYIKwYBBQUHMAGGJ2h0dHA6Ly9vY3NwLmJ1eXBhc3Mubm8vb2NzcC9CUENsYXNzM0NBMzA1BggrBgEFBQcwAoYpaHR0cDovL2NydC5idXlwYXNzLm5vL2NydC9CUENsYXNzM0NBMy5jZXIwDQYJKoZIhvcNAQELBQADggEBALS/sVxRLfnPGbwofV3Lhi8aIK0q6zJiexeNya18eOhhb/uIlFBY1OqsStfYHbG6HeB7kW8uEg2eekUOMZnq7hzVGhH6zl2gwfQijQ4Z2EGzwnMGAxo1ECzCom/U8A2Vedfna6dTJ/Be+wuwH9fAeIkLJ4XIGRTDiB6+5vVyNVx+ABkrUMxLvcFGDu7Tig0tCdhfkTNV604InVAcjVFNb1meyo/TjMmqx6TIYfjqCwi7EaThi3IKEB1Y+yxcU9TCweznyWobBfNOanq55vfemlTZm6+xooo3bAgsCp6AxF6ozVNpkSCRnGNjBICM2IqXiqNnsFwstfhB1zqwsmtaOGs= ++ ++ ++ ++ ++ MIIE8zCCA9ugAwIBAgILB60XOtlOKDyeNGYwDQYJKoZIhvcNAQELBQAwSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDMgQ0EgMzAeFw0xNTA1MTExMDIxMzVaFw0xODA1MTEyMTU5MDBaMIGJMQswCQYDVQQGEwJOTzEpMCcGA1UECgwgTkFTSk9OQUwgS09NTVVOSUtBU0pPTlNNWU5ESUdIRVQxEDAOBgNVBAsMB05ldHQvTkUxKTAnBgNVBAMMIE5BU0pPTkFMIEtPTU1VTklLQVNKT05TTVlORElHSEVUMRIwEAYDVQQFEwk5NzQ0NDY4NzEwggEfMA0GCSqGSIb3DQEBAQUAA4IBDAAwggEHAoH/AOLRUA+xKHVDzi9jvgJsoLnprCicC3znjuVw/r4Rh4NtMmJjfd+e1x17Um009EyPX8+gZpu3ra2Ie87uFQ2llKVByH9gflvapnb4wXevwkC6f6sdQHzDV2j3D67xQ8HulLSEcQN5FFH/AmN3r7S1WBUY8LuF5//ej0QJPEMiufojilJiQQPlixbCBFlCLmqlJ3kACZ87/xRI9TDYEsNDV0WJQJFP2Ex1V+yNP1RnaEiH2UCeXoY91nOpzltQFdAdRXsp8J4SRjP2Y7lIyGo6IWz5JVNjboXHrO/LfAx57x3eP70reYorBfZJufm3oYJ3uuBtFnD4eX0XiVey3e4LAgMBAAGjggGaMIIBljAJBgNVHRMEAjAAMB8GA1UdIwQYMBaAFMzD+Ae3nG16TvWnKx0F+bNHHJHRMB0GA1UdDgQWBBQQQqOR56u9hXZEtg3lIC/zsc0tCDAOBgNVHQ8BAf8EBAMCBkAwFQYDVR0gBA4wDDAKBghghEIBGgEDBTCBpQYDVR0fBIGdMIGaMC+gLaArhilodHRwOi8vY3JsLmJ1eXBhc3Mubm8vY3JsL0JQQ2xhc3MzQ0EzLmNybDBnoGWgY4ZhbGRhcDovL2xkYXAuYnV5cGFzcy5uby9kYz1CdXlwYXNzLGRjPU5PLENOPUJ1eXBhc3MlMjBDbGFzcyUyMDMlMjBDQSUyMDM/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdDB6BggrBgEFBQcBAQRuMGwwMwYIKwYBBQUHMAGGJ2h0dHA6Ly9vY3NwLmJ1eXBhc3Mubm8vb2NzcC9CUENsYXNzM0NBMzA1BggrBgEFBQcwAoYpaHR0cDovL2NydC5idXlwYXNzLm5vL2NydC9CUENsYXNzM0NBMy5jZXIwDQYJKoZIhvcNAQELBQADggEBACheabFtAi3vC5m8cLjy1LEoigFQzzuVKiadkEpSS0tbIf61Jlr3avUxfUAMVA1yPMqWu+dxf0UvMBknMVHz92VKGZwqS1eR8KbsFj6HqAQb+xCQcVXrroQ+QGxM9/p6A1MS6nKIEO7SipUNbl1ww0YtFDyTa9FL/SHAZvGTEoRECVAl+uiu/HuvCoQFTzo2cYvwlDVbfb63SYwzukn992w8wbAh0MYeoGVO0stJ0oS+Utqk60g3jWjPy0cPLIV/x/wUxmgKRwaMuuUeN9EQcgj2Lnk7kPSmc+pT+mr+ZVHGvKEgS89HGDivgjYDeG8ocTV8n/nzKcVIUPXLVY4cBlg= ++ ++ ++ ++ http://www.nkom.no/TSL/NO_TSL.PDF ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ NO ++ ++ ++ application/pdf ++ ++ ++ ++ NASJONAL KOMMUNIKASJONSMYNDIGHET ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/NO ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIE8zCCA9ugAwIBAgILB2ZLeEvsahPcLG8wDQYJKoZIhvcNAQELBQAwSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDMgQ0EgMzAeFw0xNTAxMTMwOTE3NTRaFw0xODAxMTMyMjU5MDBaMIGJMQswCQYDVQQGEwJOTzEpMCcGA1UECgwgTkFTSk9OQUwgS09NTVVOSUtBU0pPTlNNWU5ESUdIRVQxEDAOBgNVBAsMB05ldHQvTkUxKTAnBgNVBAMMIE5BU0pPTkFMIEtPTU1VTklLQVNKT05TTVlORElHSEVUMRIwEAYDVQQFEwk5NzQ0NDY4NzEwggEfMA0GCSqGSIb3DQEBAQUAA4IBDAAwggEHAoH/ANeweXbKKHrkQW35hOpV9H1GwIRIqwJQf+aBtoMd4SHKRXcBKGEiNpnqhS6kdur52VuDwzGvogv0ax+uWok12yMoLKwjN2UhYX5HtkzkcXys0k4BY3DpggZ5jrzWWvDNoOsgraom68OOBaXOVwswiexPDZ6aDxz0mDJBfNEodEzcR84zW+om31wvoe+RHEARvsM/6lWmIW6A9moze/350L/cXMCDynRn3RKAWi9XbIqo7Qrve9O+ezobdj7a6ynNYdS3/BWUrx13dC6RObnAsxW5YJN7lmrvHYTCno5PFPUb0P4yNXkuODoYUitIV0GHROrB1qivhGBsWNbKhY17AgMBAAGjggGaMIIBljAJBgNVHRMEAjAAMB8GA1UdIwQYMBaAFMzD+Ae3nG16TvWnKx0F+bNHHJHRMB0GA1UdDgQWBBRmTbuN0c7EqTSY57PDZomR8/hWKTAOBgNVHQ8BAf8EBAMCBkAwFQYDVR0gBA4wDDAKBghghEIBGgEDBTCBpQYDVR0fBIGdMIGaMC+gLaArhilodHRwOi8vY3JsLmJ1eXBhc3Mubm8vY3JsL0JQQ2xhc3MzQ0EzLmNybDBnoGWgY4ZhbGRhcDovL2xkYXAuYnV5cGFzcy5uby9kYz1CdXlwYXNzLGRjPU5PLENOPUJ1eXBhc3MlMjBDbGFzcyUyMDMlMjBDQSUyMDM/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdDB6BggrBgEFBQcBAQRuMGwwMwYIKwYBBQUHMAGGJ2h0dHA6Ly9vY3NwLmJ1eXBhc3Mubm8vb2NzcC9CUENsYXNzM0NBMzA1BggrBgEFBQcwAoYpaHR0cDovL2NydC5idXlwYXNzLm5vL2NydC9CUENsYXNzM0NBMy5jZXIwDQYJKoZIhvcNAQELBQADggEBALS/sVxRLfnPGbwofV3Lhi8aIK0q6zJiexeNya18eOhhb/uIlFBY1OqsStfYHbG6HeB7kW8uEg2eekUOMZnq7hzVGhH6zl2gwfQijQ4Z2EGzwnMGAxo1ECzCom/U8A2Vedfna6dTJ/Be+wuwH9fAeIkLJ4XIGRTDiB6+5vVyNVx+ABkrUMxLvcFGDu7Tig0tCdhfkTNV604InVAcjVFNb1meyo/TjMmqx6TIYfjqCwi7EaThi3IKEB1Y+yxcU9TCweznyWobBfNOanq55vfemlTZm6+xooo3bAgsCp6AxF6ozVNpkSCRnGNjBICM2IqXiqNnsFwstfhB1zqwsmtaOGs= ++ ++ ++ ++ ++ MIIE8zCCA9ugAwIBAgILB60XOtlOKDyeNGYwDQYJKoZIhvcNAQELBQAwSzELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MR0wGwYDVQQDDBRCdXlwYXNzIENsYXNzIDMgQ0EgMzAeFw0xNTA1MTExMDIxMzVaFw0xODA1MTEyMTU5MDBaMIGJMQswCQYDVQQGEwJOTzEpMCcGA1UECgwgTkFTSk9OQUwgS09NTVVOSUtBU0pPTlNNWU5ESUdIRVQxEDAOBgNVBAsMB05ldHQvTkUxKTAnBgNVBAMMIE5BU0pPTkFMIEtPTU1VTklLQVNKT05TTVlORElHSEVUMRIwEAYDVQQFEwk5NzQ0NDY4NzEwggEfMA0GCSqGSIb3DQEBAQUAA4IBDAAwggEHAoH/AOLRUA+xKHVDzi9jvgJsoLnprCicC3znjuVw/r4Rh4NtMmJjfd+e1x17Um009EyPX8+gZpu3ra2Ie87uFQ2llKVByH9gflvapnb4wXevwkC6f6sdQHzDV2j3D67xQ8HulLSEcQN5FFH/AmN3r7S1WBUY8LuF5//ej0QJPEMiufojilJiQQPlixbCBFlCLmqlJ3kACZ87/xRI9TDYEsNDV0WJQJFP2Ex1V+yNP1RnaEiH2UCeXoY91nOpzltQFdAdRXsp8J4SRjP2Y7lIyGo6IWz5JVNjboXHrO/LfAx57x3eP70reYorBfZJufm3oYJ3uuBtFnD4eX0XiVey3e4LAgMBAAGjggGaMIIBljAJBgNVHRMEAjAAMB8GA1UdIwQYMBaAFMzD+Ae3nG16TvWnKx0F+bNHHJHRMB0GA1UdDgQWBBQQQqOR56u9hXZEtg3lIC/zsc0tCDAOBgNVHQ8BAf8EBAMCBkAwFQYDVR0gBA4wDDAKBghghEIBGgEDBTCBpQYDVR0fBIGdMIGaMC+gLaArhilodHRwOi8vY3JsLmJ1eXBhc3Mubm8vY3JsL0JQQ2xhc3MzQ0EzLmNybDBnoGWgY4ZhbGRhcDovL2xkYXAuYnV5cGFzcy5uby9kYz1CdXlwYXNzLGRjPU5PLENOPUJ1eXBhc3MlMjBDbGFzcyUyMDMlMjBDQSUyMDM/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdDB6BggrBgEFBQcBAQRuMGwwMwYIKwYBBQUHMAGGJ2h0dHA6Ly9vY3NwLmJ1eXBhc3Mubm8vb2NzcC9CUENsYXNzM0NBMzA1BggrBgEFBQcwAoYpaHR0cDovL2NydC5idXlwYXNzLm5vL2NydC9CUENsYXNzM0NBMy5jZXIwDQYJKoZIhvcNAQELBQADggEBACheabFtAi3vC5m8cLjy1LEoigFQzzuVKiadkEpSS0tbIf61Jlr3avUxfUAMVA1yPMqWu+dxf0UvMBknMVHz92VKGZwqS1eR8KbsFj6HqAQb+xCQcVXrroQ+QGxM9/p6A1MS6nKIEO7SipUNbl1ww0YtFDyTa9FL/SHAZvGTEoRECVAl+uiu/HuvCoQFTzo2cYvwlDVbfb63SYwzukn992w8wbAh0MYeoGVO0stJ0oS+Utqk60g3jWjPy0cPLIV/x/wUxmgKRwaMuuUeN9EQcgj2Lnk7kPSmc+pT+mr+ZVHGvKEgS89HGDivgjYDeG8ocTV8n/nzKcVIUPXLVY4cBlg= ++ ++ ++ ++ http://www.nkom.no/TSL/NO_TSL.XML ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ NO ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ NASJONAL KOMMUNIKASJONSMYNDIGHET ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/NO ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDaTCCAlGgAwIBAgIJAOXz92Z7yWyiMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAlBMMSAwHgYDVQQKExdOYXRpb25hbCBCYW5rIG9mIFBvbGFuZDEcMBoGA1UEAxMTUG9saXNoIFRTTCBPcGVyYXRvcjAeFw0xNTA5MTQxMTMzNDBaFw0xNzA5MTMxMTMzNDBaME0xCzAJBgNVBAYTAlBMMSAwHgYDVQQKExdOYXRpb25hbCBCYW5rIG9mIFBvbGFuZDEcMBoGA1UEAxMTUG9saXNoIFRTTCBPcGVyYXRvcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOQzS6rDZWLH4OudgpJxkLQfh/3ZbrDRbFI69ElV1EwD7M8Sza2k7uMRsUQMaK5Ox58y5v7rBMWyVdaTLsnkemo7Coh1S85ai8bU5MUDrRqUUSvMk7IKwbBPA1WcTYkr0i17yEbiUbncz54XEmuYzuHiXjzWA0yCtkn7xL3vDnVLEYEBjmncuXG1AndibC9ZT9qYOT1D7QrxydK4S+3jmuL9saBFThDsrogqVcc4NoUdZiwxhbbKfGsIDXokfUTHURC1SzhG+IXkg/lAvpnx/p0jVNjiEbAWGB1T4u6Pl24xSw6b9cbX/QhaYFewcdJt2qSf+wBfIWxUBabtq1R9nNcCAwEAAaNMMEowCwYDVR0PBAQDAgeAMBEGA1UdJQQKMAgGBgQAkTcDADAJBgNVHRMEAjAAMB0GA1UdDgQWBBT6ZZUcqcsVEsQLnStCkPszCUqoxDANBgkqhkiG9w0BAQsFAAOCAQEAB1CDhQ/cTKp5Wy2Wf/VTI8qM9CsWG4P5XldKF8UxgRnbK9WvXfNShgGOaI/zd0HV22I7kxXNUJkWdNzUHgaBlpSvyuYSWQaYrLcqLzBFnnsl+NuZY/qVhXsHeQX2R7mygvnfueJq4B/37M4wCOC79F/iKuubooX9hJKhq78ii7EAsT7WxVZMo36xUMHGCxc9DSdwQPE5aAQBj7yIgksr5t7FJTy6DyN6GHmWvvbQ3TfgZG06COBrRPbXvhdtQAji5TxRlvvNzLNVBCtzzyQWR8iZIKvp4ILue+ARZnhQ+t0pkPFkG+x+3GYgzClzWwcilufcBpwx1Si20iIGKbnl4A== ++ ++ ++ ++ ++ LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlEYVRDQ0FsR2dBd0lCQWdJSkFPNEZ5RmJjSFJLK01BMEdDU3FHU0liM0RRRUJDd1VBTUUweEN6QUpCZ05WDQpCQVlUQWxCTU1TQXdIZ1lEVlFRS0V4ZE9ZWFJwYjI1aGJDQkNZVzVySUc5bUlGQnZiR0Z1WkRFY01Cb0dBMVVFDQpBeE1UVUc5c2FYTm9JRlJUVENCUGNHVnlZWFJ2Y2pBZUZ3MHhOakF4TWpBd09UQTJNRE5hRncweU1UQXhNVGd3DQpPVEEyTUROYU1FMHhDekFKQmdOVkJBWVRBbEJNTVNBd0hnWURWUVFLRXhkT1lYUnBiMjVoYkNCQ1lXNXJJRzltDQpJRkJ2YkdGdVpERWNNQm9HQTFVRUF4TVRVRzlzYVhOb0lGUlRUQ0JQY0dWeVlYUnZjakNDQVNJd0RRWUpLb1pJDQpodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUtZcFlpSUZoT3J0ZHhNbms4UUpGTFowbkpjZmFGcFFrYnBGDQpkaVJiaXBXbzhLTjcyZGVIS0RQTDVRUk9GZXBqVjI2V25xWmc1SkRSZG9YN0R2QmppaTR0bGxwR1NZUkJBdk82DQpFRXJWMzJTYVRvVm5ydytiZ2xTZWlTaEtPUHNacEVOOEJYQTU5RXhDVXdEZFRTc3NPa2ZXZ2g0NmRUaXdLamo2DQphMVFKVG9OR256TllScVJtOUwzSlBxL05tR2ZQSHZaZ1hWajIyZnRtdkpMYVg1ZktQL0R5dUlQbzYzanZ0Um42DQp1VUtNVjFEMTZZdHBPSFNyTjNwZHUzVzF4QUhndStyL3FSNU95aEx4VWMwMTkyQmZxY1N5dm9GNklhN215OHpUDQp3V1RKT1p6RjhvMnpIL0M4WDlNK2VlRmQ4NE10bVdEM2hqSktXL2VFb2FiUVhhUFFvNDhDQXdFQUFhTk1NRW93DQpDd1lEVlIwUEJBUURBZ2VBTUJFR0ExVWRKUVFLTUFnR0JnUUFrVGNEQURBSkJnTlZIUk1FQWpBQU1CMEdBMVVkDQpEZ1FXQkJUNVRXZjZxODVUYzBldDJSSUQvZGY1eU9nTEV6QU5CZ2txaGtpRzl3MEJBUXNGQUFPQ0FRRUFOeTBrDQpVbm5rbjZqRVdXNHlzZUJSMWxTam1KZjRITW9NRUJLL3lxbWZKZTlEamxnQnBoek1Sa09NcXpsWWMwMmZ2UUorDQpTNmgvZERrdTFoaE9YN2Rvckd0bVoxTWwyMVZMYkE4K2I0eUlLSC9EbFFtVWoxNHdiUndyWGRxQVlJZ3ZFR3F1DQpwS3hkSW8zZVJqMlFPTGZML056dzlsVGV2MitGaFJxN2dBZ0MzWnNrL1YvZTVuTnViTS9LSnR3Q3pvSkdBd2tqDQpqTzJxemlhbFJ3N3ZUYW45TmpQY0ZyYVBnbXUvQ0N2Z25odU1jbHArSVQ3SnVyVTRKVk9ybTROQXBzejE2S3ltDQpnNmtjcVlpeXErSXFQalZZRjJ4ckhpblA4Z0I1RHY1eVlEZ2trZVc5WTdWTW9XVGxKRXIyZytURlI1dlB6bHgyDQpnL0RiVjA4SDJZZngvT29MZmc9PQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0KDQo= ++ ++ ++ ++ https://www.nccert.pl/tsl/PL_TSL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ PL ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ National Bank of Poland ++ Narodowy Bank Polski ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/PL ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIEhzCCA2+gAwIBAgIQPW8jjMRIcatWAnnZ/MBrMzANBgkqhkiG9w0BAQsFADBCMQswCQYDVQQGEwJQVDENMAsGA1UECgwEU0NFRTERMA8GA1UECwwIRUNFc3RhZG8xETAPBgNVBAMMCEVDQ0UgMDAxMB4XDTE1MDkyMzEwMDcyMVoXDTIwMDkyMzEwMDcyMVowZzEuMCwGA1UEAwwlUE9SVFVHVUVTRSBUUlVTVCBMSVNUIFNDSEVNRSBPUEVSQVRPUjEoMCYGA1UECgwfR2FiaW5ldGUgTmFjaW9uYWwgZGUgU2VndXJhbsOnYTELMAkGA1UEBhMCUFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD40F9lHY68oq8UMkQHYNgS6HIYkelokkHlRpu74cybuValpoGRskLMg1QMGjPuxmr1EFF+jdd+zeOpk9rHGrWAsfDYFyxIcPVOSlcCmoenYfHxJaqSdyHVNB2oS5xkzZ/bIPUCupolRpiLauptJ4x4OK4Ep5pwzOsocGjkur19FCCVCQ3luDqyOiEgwz5Qie+JGQnzS/b03tQRnVq2gEjSilyCw+2PP27gmv6T+dIL9BIsr5uThNmgq6O1YdhItihTCAchmfXXCaBTIXattPvYQAIpEzNlLOs+keAeBkj8aeI8pC9/E4bTiWlQVT1lKQD8is6ExywWwe/YxFaUpAofAgMBAAGjggFSMIIBTjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGQDARBgNVHSUECjAIBgYEAJE3AwAwHQYDVR0OBBYEFJUfhchtKhfRNLlQLhVA9wMYCxMgMB8GA1UdIwQYMBaAFOMa2JoMNlrUDiOsDphvgVKeLl0FMDsGA1UdIAQ0MDIwMAYEVR0gADAoMCYGCCsGAQUFBwIBFhpodHRwOi8vd3d3LmVjY2UuZ292LnB0L2RwYzBmBggrBgEFBQcBAQRaMFgwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLmVjY2UuZ292LnB0MDEGCCsGAQUFBzAChiVodHRwOi8vdHJ1c3QuZWNjZS5nb3YucHQvZWNjZS0wMDEuY3J0MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmxzLmVjY2UuZ292LnB0L2NybHMvY3JsLTAwMS5jcmwwDQYJKoZIhvcNAQELBQADggEBAIBQ0C4eP4ZozMkty6o6KWK71T+NrUwL+vdffIJFqL0zhYeeTfTk5MKP3wRSnstYgeOzgYs1GW0/elRtBs82fmLdzcAi397viJNSUVz9HGBqPVNR4yeXA7dO08VfQimuXKYb/ETlF1dxmkPtXTJPKp++nnbUDQ9WKio2OIPys9Vvj28KLR2nx1wVIrMlza3T6LC5qqjbgwyP0ghHSOSdpGvfGQBlBBTXXfliGcDOGHEqnlDxG7cHiPSe49k12vO2H99G4s8Di4CvDNI0bdhZMvRVmg7GunXXURn0/yTswQuMydft73f6a/gaZRjS1/+94R7EZXfIb8u855a/rMYoH5k= ++ ++ ++ ++ ++ MIIEhzCCA2+gAwIBAgIQDJcks6HEEGlWBAfuOznaDDANBgkqhkiG9w0BAQsFADBCMQswCQYDVQQGEwJQVDENMAsGA1UECgwEU0NFRTERMA8GA1UECwwIRUNFc3RhZG8xETAPBgNVBAMMCEVDQ0UgMDAxMB4XDTE1MDkyNDE0MjU0OVoXDTE4MDkyNDE0MjU0OVowZzEuMCwGA1UEAwwlUE9SVFVHVUVTRSBUUlVTVCBMSVNUIFNDSEVNRSBPUEVSQVRPUjEoMCYGA1UECgwfR2FiaW5ldGUgTmFjaW9uYWwgZGUgU2VndXJhbsOnYTELMAkGA1UEBhMCUFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0nAx4AAv12e97tcqc4/VAKTmcb541DSq/E64gEyqWVkdQbHlA+IQctcjLNOfH9lJoIqYQRJujJKieKTCK7UDMsvG8i+8xoXq5WiFXxFAr8F1RLaXH92IoXPx3sfYjXKmQhFNn5/v05Va5rILOStA5nX0PEmoWbncMYVN2Bg5SVTLsZbypT02qRu12FaCH0IAguOvx+Ch71OvutqojklJFWpjd83TxExkxZztWh5uhdUURwH/0paku0tFaNjBQbjDTYb6dKxPfmoCMjeQFKFwK6bKwxH+21FZ3Ucls7TyeFEpho8g1Ssb9ESGzwkOPjIj6SRm5bnAQVcCEM6nB0UiBAgMBAAGjggFSMIIBTjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGQDARBgNVHSUECjAIBgYEAJE3AwAwHQYDVR0OBBYEFBw+elLRULpJu8Z4E+QodKVSuv3LMB8GA1UdIwQYMBaAFOMa2JoMNlrUDiOsDphvgVKeLl0FMDsGA1UdIAQ0MDIwMAYEVR0gADAoMCYGCCsGAQUFBwIBFhpodHRwOi8vd3d3LmVjY2UuZ292LnB0L2RwYzBmBggrBgEFBQcBAQRaMFgwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLmVjY2UuZ292LnB0MDEGCCsGAQUFBzAChiVodHRwOi8vdHJ1c3QuZWNjZS5nb3YucHQvZWNjZS0wMDEuY3J0MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmxzLmVjY2UuZ292LnB0L2NybHMvY3JsLTAwMS5jcmwwDQYJKoZIhvcNAQELBQADggEBALITw5agdwrEwIE1d6cU3q6ikbFCxWeIzMu192Vy2JpQyuaCgQxHZxhO/Kgv2njq2ouwvoQX+aC/k0SYbRmAKkGhGzXwySw9K/Fmw6amdna8W07xq3odv+5o9eLDpXXShyx1gIZrw6p1QCUFgOMgriOSFUI6UPguXMGRddre8IXpUD13lOa7jrjLKWXkV+fEYNvYlyqQvfe9rQulo92pVQ+TiqpAjX0G7AcEr3HKgAPIaB7E5a83QAQePH50UqChrYtOiwSFfrEkxEtJokIwYIH3MC0hIWEVkVtJNY1U9cizrW7BOxeM4qpSvIPHpTdltpD5TTD+/G4TOufEYFap8ug= ++ ++ ++ ++ ++ MIIEhzCCA2+gAwIBAgIQDJcks6HEEGlWBAfuOznaDDANBgkqhkiG9w0BAQsFADBCMQswCQYDVQQGEwJQVDENMAsGA1UECgwEU0NFRTERMA8GA1UECwwIRUNFc3RhZG8xETAPBgNVBAMMCEVDQ0UgMDAxMB4XDTE1MDkyNDE0MjU0OVoXDTE4MDkyNDE0MjU0OVowZzEuMCwGA1UEAwwlUE9SVFVHVUVTRSBUUlVTVCBMSVNUIFNDSEVNRSBPUEVSQVRPUjEoMCYGA1UECgwfR2FiaW5ldGUgTmFjaW9uYWwgZGUgU2VndXJhbsOnYTELMAkGA1UEBhMCUFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0nAx4AAv12e97tcqc4/VAKTmcb541DSq/E64gEyqWVkdQbHlA+IQctcjLNOfH9lJoIqYQRJujJKieKTCK7UDMsvG8i+8xoXq5WiFXxFAr8F1RLaXH92IoXPx3sfYjXKmQhFNn5/v05Va5rILOStA5nX0PEmoWbncMYVN2Bg5SVTLsZbypT02qRu12FaCH0IAguOvx+Ch71OvutqojklJFWpjd83TxExkxZztWh5uhdUURwH/0paku0tFaNjBQbjDTYb6dKxPfmoCMjeQFKFwK6bKwxH+21FZ3Ucls7TyeFEpho8g1Ssb9ESGzwkOPjIj6SRm5bnAQVcCEM6nB0UiBAgMBAAGjggFSMIIBTjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGQDARBgNVHSUECjAIBgYEAJE3AwAwHQYDVR0OBBYEFBw+elLRULpJu8Z4E+QodKVSuv3LMB8GA1UdIwQYMBaAFOMa2JoMNlrUDiOsDphvgVKeLl0FMDsGA1UdIAQ0MDIwMAYEVR0gADAoMCYGCCsGAQUFBwIBFhpodHRwOi8vd3d3LmVjY2UuZ292LnB0L2RwYzBmBggrBgEFBQcBAQRaMFgwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLmVjY2UuZ292LnB0MDEGCCsGAQUFBzAChiVodHRwOi8vdHJ1c3QuZWNjZS5nb3YucHQvZWNjZS0wMDEuY3J0MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmxzLmVjY2UuZ292LnB0L2NybHMvY3JsLTAwMS5jcmwwDQYJKoZIhvcNAQELBQADggEBALITw5agdwrEwIE1d6cU3q6ikbFCxWeIzMu192Vy2JpQyuaCgQxHZxhO/Kgv2njq2ouwvoQX+aC/k0SYbRmAKkGhGzXwySw9K/Fmw6amdna8W07xq3odv+5o9eLDpXXShyx1gIZrw6p1QCUFgOMgriOSFUI6UPguXMGRddre8IXpUD13lOa7jrjLKWXkV+fEYNvYlyqQvfe9rQulo92pVQ+TiqpAjX0G7AcEr3HKgAPIaB7E5a83QAQePH50UqChrYtOiwSFfrEkxEtJokIwYIH3MC0hIWEVkVtJNY1U9cizrW7BOxeM4qpSvIPHpTdltpD5TTD+/G4TOufEYFap8ug= ++ ++ ++ ++ https://www.gns.gov.pt/media/1891/TSLPTHR.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ PT ++ ++ ++ application/pdf ++ ++ ++ ++ National Security Cabinet of Portugal ++ Gabinete Nacional de Segurança ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/PT ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIEhzCCA2+gAwIBAgIQPW8jjMRIcatWAnnZ/MBrMzANBgkqhkiG9w0BAQsFADBCMQswCQYDVQQGEwJQVDENMAsGA1UECgwEU0NFRTERMA8GA1UECwwIRUNFc3RhZG8xETAPBgNVBAMMCEVDQ0UgMDAxMB4XDTE1MDkyMzEwMDcyMVoXDTIwMDkyMzEwMDcyMVowZzEuMCwGA1UEAwwlUE9SVFVHVUVTRSBUUlVTVCBMSVNUIFNDSEVNRSBPUEVSQVRPUjEoMCYGA1UECgwfR2FiaW5ldGUgTmFjaW9uYWwgZGUgU2VndXJhbsOnYTELMAkGA1UEBhMCUFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD40F9lHY68oq8UMkQHYNgS6HIYkelokkHlRpu74cybuValpoGRskLMg1QMGjPuxmr1EFF+jdd+zeOpk9rHGrWAsfDYFyxIcPVOSlcCmoenYfHxJaqSdyHVNB2oS5xkzZ/bIPUCupolRpiLauptJ4x4OK4Ep5pwzOsocGjkur19FCCVCQ3luDqyOiEgwz5Qie+JGQnzS/b03tQRnVq2gEjSilyCw+2PP27gmv6T+dIL9BIsr5uThNmgq6O1YdhItihTCAchmfXXCaBTIXattPvYQAIpEzNlLOs+keAeBkj8aeI8pC9/E4bTiWlQVT1lKQD8is6ExywWwe/YxFaUpAofAgMBAAGjggFSMIIBTjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGQDARBgNVHSUECjAIBgYEAJE3AwAwHQYDVR0OBBYEFJUfhchtKhfRNLlQLhVA9wMYCxMgMB8GA1UdIwQYMBaAFOMa2JoMNlrUDiOsDphvgVKeLl0FMDsGA1UdIAQ0MDIwMAYEVR0gADAoMCYGCCsGAQUFBwIBFhpodHRwOi8vd3d3LmVjY2UuZ292LnB0L2RwYzBmBggrBgEFBQcBAQRaMFgwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLmVjY2UuZ292LnB0MDEGCCsGAQUFBzAChiVodHRwOi8vdHJ1c3QuZWNjZS5nb3YucHQvZWNjZS0wMDEuY3J0MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmxzLmVjY2UuZ292LnB0L2NybHMvY3JsLTAwMS5jcmwwDQYJKoZIhvcNAQELBQADggEBAIBQ0C4eP4ZozMkty6o6KWK71T+NrUwL+vdffIJFqL0zhYeeTfTk5MKP3wRSnstYgeOzgYs1GW0/elRtBs82fmLdzcAi397viJNSUVz9HGBqPVNR4yeXA7dO08VfQimuXKYb/ETlF1dxmkPtXTJPKp++nnbUDQ9WKio2OIPys9Vvj28KLR2nx1wVIrMlza3T6LC5qqjbgwyP0ghHSOSdpGvfGQBlBBTXXfliGcDOGHEqnlDxG7cHiPSe49k12vO2H99G4s8Di4CvDNI0bdhZMvRVmg7GunXXURn0/yTswQuMydft73f6a/gaZRjS1/+94R7EZXfIb8u855a/rMYoH5k= ++ ++ ++ ++ ++ MIIEhzCCA2+gAwIBAgIQDJcks6HEEGlWBAfuOznaDDANBgkqhkiG9w0BAQsFADBCMQswCQYDVQQGEwJQVDENMAsGA1UECgwEU0NFRTERMA8GA1UECwwIRUNFc3RhZG8xETAPBgNVBAMMCEVDQ0UgMDAxMB4XDTE1MDkyNDE0MjU0OVoXDTE4MDkyNDE0MjU0OVowZzEuMCwGA1UEAwwlUE9SVFVHVUVTRSBUUlVTVCBMSVNUIFNDSEVNRSBPUEVSQVRPUjEoMCYGA1UECgwfR2FiaW5ldGUgTmFjaW9uYWwgZGUgU2VndXJhbsOnYTELMAkGA1UEBhMCUFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0nAx4AAv12e97tcqc4/VAKTmcb541DSq/E64gEyqWVkdQbHlA+IQctcjLNOfH9lJoIqYQRJujJKieKTCK7UDMsvG8i+8xoXq5WiFXxFAr8F1RLaXH92IoXPx3sfYjXKmQhFNn5/v05Va5rILOStA5nX0PEmoWbncMYVN2Bg5SVTLsZbypT02qRu12FaCH0IAguOvx+Ch71OvutqojklJFWpjd83TxExkxZztWh5uhdUURwH/0paku0tFaNjBQbjDTYb6dKxPfmoCMjeQFKFwK6bKwxH+21FZ3Ucls7TyeFEpho8g1Ssb9ESGzwkOPjIj6SRm5bnAQVcCEM6nB0UiBAgMBAAGjggFSMIIBTjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGQDARBgNVHSUECjAIBgYEAJE3AwAwHQYDVR0OBBYEFBw+elLRULpJu8Z4E+QodKVSuv3LMB8GA1UdIwQYMBaAFOMa2JoMNlrUDiOsDphvgVKeLl0FMDsGA1UdIAQ0MDIwMAYEVR0gADAoMCYGCCsGAQUFBwIBFhpodHRwOi8vd3d3LmVjY2UuZ292LnB0L2RwYzBmBggrBgEFBQcBAQRaMFgwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLmVjY2UuZ292LnB0MDEGCCsGAQUFBzAChiVodHRwOi8vdHJ1c3QuZWNjZS5nb3YucHQvZWNjZS0wMDEuY3J0MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmxzLmVjY2UuZ292LnB0L2NybHMvY3JsLTAwMS5jcmwwDQYJKoZIhvcNAQELBQADggEBALITw5agdwrEwIE1d6cU3q6ikbFCxWeIzMu192Vy2JpQyuaCgQxHZxhO/Kgv2njq2ouwvoQX+aC/k0SYbRmAKkGhGzXwySw9K/Fmw6amdna8W07xq3odv+5o9eLDpXXShyx1gIZrw6p1QCUFgOMgriOSFUI6UPguXMGRddre8IXpUD13lOa7jrjLKWXkV+fEYNvYlyqQvfe9rQulo92pVQ+TiqpAjX0G7AcEr3HKgAPIaB7E5a83QAQePH50UqChrYtOiwSFfrEkxEtJokIwYIH3MC0hIWEVkVtJNY1U9cizrW7BOxeM4qpSvIPHpTdltpD5TTD+/G4TOufEYFap8ug= ++ ++ ++ ++ ++ MIIEhzCCA2+gAwIBAgIQDJcks6HEEGlWBAfuOznaDDANBgkqhkiG9w0BAQsFADBCMQswCQYDVQQGEwJQVDENMAsGA1UECgwEU0NFRTERMA8GA1UECwwIRUNFc3RhZG8xETAPBgNVBAMMCEVDQ0UgMDAxMB4XDTE1MDkyNDE0MjU0OVoXDTE4MDkyNDE0MjU0OVowZzEuMCwGA1UEAwwlUE9SVFVHVUVTRSBUUlVTVCBMSVNUIFNDSEVNRSBPUEVSQVRPUjEoMCYGA1UECgwfR2FiaW5ldGUgTmFjaW9uYWwgZGUgU2VndXJhbsOnYTELMAkGA1UEBhMCUFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0nAx4AAv12e97tcqc4/VAKTmcb541DSq/E64gEyqWVkdQbHlA+IQctcjLNOfH9lJoIqYQRJujJKieKTCK7UDMsvG8i+8xoXq5WiFXxFAr8F1RLaXH92IoXPx3sfYjXKmQhFNn5/v05Va5rILOStA5nX0PEmoWbncMYVN2Bg5SVTLsZbypT02qRu12FaCH0IAguOvx+Ch71OvutqojklJFWpjd83TxExkxZztWh5uhdUURwH/0paku0tFaNjBQbjDTYb6dKxPfmoCMjeQFKFwK6bKwxH+21FZ3Ucls7TyeFEpho8g1Ssb9ESGzwkOPjIj6SRm5bnAQVcCEM6nB0UiBAgMBAAGjggFSMIIBTjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGQDARBgNVHSUECjAIBgYEAJE3AwAwHQYDVR0OBBYEFBw+elLRULpJu8Z4E+QodKVSuv3LMB8GA1UdIwQYMBaAFOMa2JoMNlrUDiOsDphvgVKeLl0FMDsGA1UdIAQ0MDIwMAYEVR0gADAoMCYGCCsGAQUFBwIBFhpodHRwOi8vd3d3LmVjY2UuZ292LnB0L2RwYzBmBggrBgEFBQcBAQRaMFgwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLmVjY2UuZ292LnB0MDEGCCsGAQUFBzAChiVodHRwOi8vdHJ1c3QuZWNjZS5nb3YucHQvZWNjZS0wMDEuY3J0MDkGA1UdHwQyMDAwLqAsoCqGKGh0dHA6Ly9jcmxzLmVjY2UuZ292LnB0L2NybHMvY3JsLTAwMS5jcmwwDQYJKoZIhvcNAQELBQADggEBALITw5agdwrEwIE1d6cU3q6ikbFCxWeIzMu192Vy2JpQyuaCgQxHZxhO/Kgv2njq2ouwvoQX+aC/k0SYbRmAKkGhGzXwySw9K/Fmw6amdna8W07xq3odv+5o9eLDpXXShyx1gIZrw6p1QCUFgOMgriOSFUI6UPguXMGRddre8IXpUD13lOa7jrjLKWXkV+fEYNvYlyqQvfe9rQulo92pVQ+TiqpAjX0G7AcEr3HKgAPIaB7E5a83QAQePH50UqChrYtOiwSFfrEkxEtJokIwYIH3MC0hIWEVkVtJNY1U9cizrW7BOxeM4qpSvIPHpTdltpD5TTD+/G4TOufEYFap8ug= ++ ++ ++ ++ https://www.gns.gov.pt/media/1894/TSLPT.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ PT ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ National Security Cabinet of Portugal ++ Gabinete Nacional de Segurança ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/PT ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIFkjCCBHqgAwIBAgIQIAYFFnBjM4C9F3GV/MybHDANBgkqhkiG9w0BAQsFADB2MQswCQYDVQQGEwJSTzERMA8GA1UEChMIY2VydFNJR04xKTAnBgNVBAsTIGNlcnRTSUdOIFF1YWxpZmllZCBDQSBDbGFzcyAzIEcyMSkwJwYDVQQDEyBjZXJ0U0lHTiBRdWFsaWZpZWQgQ0EgQ2xhc3MgMyBHMjAeFw0xNTA4MjQxNDExMzFaFw0xNjA4MjQxNDExMzFaMIHEMQswCQYDVQQGEwJSTzEXMBUGA1UEBwwOTXVuLiBCdWN1cmVzdGkxNDAyBgNVBAoMK01JTklTVEVSVUwgUEVOVFJVIFNPQ0lFVEFURUEgSU5GT1JNQVRJT05BTEExFTATBgNVBAMMDENhcm1lbiBFbGlhbjEXMBUGA1UEBRMOMjAwNjA1MTY3MEVDMTQxFTATBgNVBCkMDENhcm1lbiBFbGlhbjEPMA0GA1UEKgwGQ2FybWVuMQ4wDAYDVQQEDAVFbGlhbjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIr/xI7Gho+cwFAbeN+ZhE3d9YttjyiOWxpo0KlI1MknFHZIGBgSPD1bHytwp/R+vg5AJOyCQkCp31+KP+epppNwjrdNhHvGELGbXJnX7T3xHvqHZgyDdwKrOSXmTRt8MT/GXz/mk6+6WDgzyNP6k3AGbOGi7yQaufU3RNmTml1mt/QsCaYUxI19b+Uo6YFOB4Ou6FdLNk+pcI4whc5LGQRK2RpGt2veqdIRaHFWw/2rDQDpHSX+b/3fSnpzwRYDLQqF5FI1h57WD4VBlMdQ7+sXnQRkWmzlE52YziTSwrJpAiXRKwcs/hlzim8cOTNuIWF1sy1KtXeYAwMlyizJcOcCAwEAAaOCAcswggHHMG8GCCsGAQUFBwEBBGMwYTAjBggrBgEFBQcwAYYXaHR0cDovL29jc3AuY2VydHNpZ24ucm8wOgYIKwYBBQUHMAKGLmh0dHA6Ly93d3cuY2VydHNpZ24ucm8vY2VydGNybC9xdWFsaWZpZWRnMi5jcnQwDAYDVR0TAQH/BAIwADAOBgNVHQ8BAf8EBAMCBLAwHwYDVR0jBBgwFoAUUDSeU3a5bdK3DB6Qg3Va7st0GIowHQYDVR0OBBYEFCUbQG7l1VMoByq2j3b21Vpw5FcMMEkGA1UdIARCMEAwPgYLKwYBBAGBwzkBAQMwLzAtBggrBgEFBQcCARYhaHR0cDovL3d3dy5jZXJ0c2lnbi5yby9yZXBvc2l0b3J5MDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly9jcmwuY2VydHNpZ24ucm8vcXVhbGlmaWVkZzIuY3JsMEcGA1UdEQRAMD6gJQYKKwYBBAGCNxQCA6AXDBVjYXJtZW4uZWxpYW5AbXNpbmYucm+BFWNhcm1lbi5lbGlhbkBtc2luZi5ybzApBgNVHSUEIjAgBggrBgEFBQcDAgYKKwYBBAGCNxQCAgYIKwYBBQUHAwQwDQYJKoZIhvcNAQELBQADggEBAJpigM2rDWZ3lI/nZSkdxiUTpuDIw1jgwZqOiIvddGkQZT3ElU/06svJUBpqsJmjbG+yRvftmWIYqaqtdIEjMASF8K2kt8jbtr46uZksK+60x11DCvwxsKW55XSfAuY9u2B0TTvxzQ6BXR+wykryQdCIEwaN44Ka7l/XkZLtnxyWqBykkYAH8O0nj7BNuhBhZD579exh6pu5UIliTNNoQn2077qL172dTJxxNTnrvs4AQJJpWuOQTaAN/9QRZ5/C/c61Ta+O5Y8kPbv9Q69kkCCDDEntflkXaWrfzEjOOCXdLL8J4LHXYU2u1mB/J1fjyH8i5w7WYig/adHnB9dq4q4= ++ ++ ++ ++ ++ MIIF1DCCBLygAwIBAgIQIAYFFnBjM4f/kUNg/UnC1jANBgkqhkiG9w0BAQsFADB2MQswCQYDVQQGEwJSTzERMA8GA1UEChMIY2VydFNJR04xKTAnBgNVBAsTIGNlcnRTSUdOIFF1YWxpZmllZCBDQSBDbGFzcyAzIEcyMSkwJwYDVQQDEyBjZXJ0U0lHTiBRdWFsaWZpZWQgQ0EgQ2xhc3MgMyBHMjAeFw0xNTA4MjQxNDExMzFaFw0xNjA4MjQxNDExMzFaMIH+MQswCQYDVQQGEwJSTzEXMBUGA1UEBwwOTXVuLiBCdWN1cmVzdGkxNDAyBgNVBAoMK01JTklTVEVSVUwgUEVOVFJVIFNPQ0lFVEFURUEgSU5GT1JNQVRJT05BTEExJzAlBgNVBAMMHlJvbXVsdXMtUmFkdS1Db3JuZWxpdSBEdW1pdHJpdTEZMBcGA1UEBRMQMjAwNjA1MTY3MERDUlJDMTEpMCcGA1UEKQwgUm9tdWx1cy1SYWR1LUNvcm5lbGl1IEMgRHVtaXRyaXUxHjAcBgNVBCoMFVJvbXVsdXMtUmFkdS1Db3JuZWxpdTERMA8GA1UEBAwIRHVtaXRyaXUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCP5uzh6yT71IooMhyVL2QcZE5lhIMUpqMNXqjNqHDe8SOAMRBkopPws9sS+jUQ2IKhQzPBTRYMAbBhQqdmnPzqGC4fpdZY3/5qrxRwHOzBHlrBawCOcpwaSy/J76ZgdWDJLWeXLtNmREFNELb9BuYH8DPWyHeE2lLSJO0OJbs1SMakX+BVt3/RmXbOCG3gYOjkGfq9sVhA9DC4PqR7KMfpb8nX7QQeJvtZdHQYaXaPajALX5qSuL1JT/KKUsqsMkqKh/nRxb1jH+qpRy6oa6gnij7XlukKUNy20aqENqniAT81L8ywDh1N/0l1IWY1tgSR10ClBfCD+UMQztoX5Vw3AgMBAAGjggHTMIIBzzBvBggrBgEFBQcBAQRjMGEwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLmNlcnRzaWduLnJvMDoGCCsGAQUFBzAChi5odHRwOi8vd3d3LmNlcnRzaWduLnJvL2NlcnRjcmwvcXVhbGlmaWVkZzIuY3J0MAwGA1UdEwEB/wQCMAAwDgYDVR0PAQH/BAQDAgSwMB8GA1UdIwQYMBaAFFA0nlN2uW3StwwekIN1Wu7LdBiKMB0GA1UdDgQWBBRZeYa2QYn3F5yuE1TERs0TsXz69DBJBgNVHSAEQjBAMD4GCysGAQQBgcM5AQEDMC8wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cuY2VydHNpZ24ucm8vcmVwb3NpdG9yeTA3BgNVHR8EMDAuMCygKqAohiZodHRwOi8vY3JsLmNlcnRzaWduLnJvL3F1YWxpZmllZGcyLmNybDBPBgNVHREESDBGoCkGCisGAQQBgjcUAgOgGwwZcm9tdWx1cy5kdW1pdHJpdUBtc2luZi5yb4EZcm9tdWx1cy5kdW1pdHJpdUBtc2luZi5ybzApBgNVHSUEIjAgBggrBgEFBQcDAgYKKwYBBAGCNxQCAgYIKwYBBQUHAwQwDQYJKoZIhvcNAQELBQADggEBABKUmpbk8t1QyD37isj8ITmzuGQHFNOwAM2ZXJYk78c2YmkCY2luVPFvrfJ9ff3IqfqWS6RuMLQmNSPT84B3Bc+Y1j9QZgqNlVbkGrCBOe4GlojE9yXed7J4HCMYPT5iDaCdnD8XZQXYmUZmaSeJQoWkOTVG7zHoKO77VyK8kFltQAj+fQkI9sDdNVXfYlN+pgN2tQvPHbnNZo8hI00AJE9JWH0gHbIne7c7/1TU5ll4HWOZYVPRJV5DHe5mGBpflLxK8fpwXwEvxK1Yx1qKecpou5oBuqPVWy+iDv6Suv7VZLLEtFm+36wk3YoMWj3fxMFuckjxVFiiQYRZd10lRww= ++ ++ ++ ++ http://www.mcsi.ro/Minister/Domenii-de-activitate-ale-MCSI/Tehnologia-Informatiei/Servicii-electronice/Semnatura-electronica/TrustedList-versiunea-pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ RO ++ ++ ++ application/pdf ++ ++ ++ ++ MINISTRY FOR INFORMATION SOCIETY ++ MINISTERUL PENTRU SOCIETATEA INFORMATIONALA ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/RO ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIFkjCCBHqgAwIBAgIQIAYFFnBjM4C9F3GV/MybHDANBgkqhkiG9w0BAQsFADB2MQswCQYDVQQGEwJSTzERMA8GA1UEChMIY2VydFNJR04xKTAnBgNVBAsTIGNlcnRTSUdOIFF1YWxpZmllZCBDQSBDbGFzcyAzIEcyMSkwJwYDVQQDEyBjZXJ0U0lHTiBRdWFsaWZpZWQgQ0EgQ2xhc3MgMyBHMjAeFw0xNTA4MjQxNDExMzFaFw0xNjA4MjQxNDExMzFaMIHEMQswCQYDVQQGEwJSTzEXMBUGA1UEBwwOTXVuLiBCdWN1cmVzdGkxNDAyBgNVBAoMK01JTklTVEVSVUwgUEVOVFJVIFNPQ0lFVEFURUEgSU5GT1JNQVRJT05BTEExFTATBgNVBAMMDENhcm1lbiBFbGlhbjEXMBUGA1UEBRMOMjAwNjA1MTY3MEVDMTQxFTATBgNVBCkMDENhcm1lbiBFbGlhbjEPMA0GA1UEKgwGQ2FybWVuMQ4wDAYDVQQEDAVFbGlhbjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIr/xI7Gho+cwFAbeN+ZhE3d9YttjyiOWxpo0KlI1MknFHZIGBgSPD1bHytwp/R+vg5AJOyCQkCp31+KP+epppNwjrdNhHvGELGbXJnX7T3xHvqHZgyDdwKrOSXmTRt8MT/GXz/mk6+6WDgzyNP6k3AGbOGi7yQaufU3RNmTml1mt/QsCaYUxI19b+Uo6YFOB4Ou6FdLNk+pcI4whc5LGQRK2RpGt2veqdIRaHFWw/2rDQDpHSX+b/3fSnpzwRYDLQqF5FI1h57WD4VBlMdQ7+sXnQRkWmzlE52YziTSwrJpAiXRKwcs/hlzim8cOTNuIWF1sy1KtXeYAwMlyizJcOcCAwEAAaOCAcswggHHMG8GCCsGAQUFBwEBBGMwYTAjBggrBgEFBQcwAYYXaHR0cDovL29jc3AuY2VydHNpZ24ucm8wOgYIKwYBBQUHMAKGLmh0dHA6Ly93d3cuY2VydHNpZ24ucm8vY2VydGNybC9xdWFsaWZpZWRnMi5jcnQwDAYDVR0TAQH/BAIwADAOBgNVHQ8BAf8EBAMCBLAwHwYDVR0jBBgwFoAUUDSeU3a5bdK3DB6Qg3Va7st0GIowHQYDVR0OBBYEFCUbQG7l1VMoByq2j3b21Vpw5FcMMEkGA1UdIARCMEAwPgYLKwYBBAGBwzkBAQMwLzAtBggrBgEFBQcCARYhaHR0cDovL3d3dy5jZXJ0c2lnbi5yby9yZXBvc2l0b3J5MDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly9jcmwuY2VydHNpZ24ucm8vcXVhbGlmaWVkZzIuY3JsMEcGA1UdEQRAMD6gJQYKKwYBBAGCNxQCA6AXDBVjYXJtZW4uZWxpYW5AbXNpbmYucm+BFWNhcm1lbi5lbGlhbkBtc2luZi5ybzApBgNVHSUEIjAgBggrBgEFBQcDAgYKKwYBBAGCNxQCAgYIKwYBBQUHAwQwDQYJKoZIhvcNAQELBQADggEBAJpigM2rDWZ3lI/nZSkdxiUTpuDIw1jgwZqOiIvddGkQZT3ElU/06svJUBpqsJmjbG+yRvftmWIYqaqtdIEjMASF8K2kt8jbtr46uZksK+60x11DCvwxsKW55XSfAuY9u2B0TTvxzQ6BXR+wykryQdCIEwaN44Ka7l/XkZLtnxyWqBykkYAH8O0nj7BNuhBhZD579exh6pu5UIliTNNoQn2077qL172dTJxxNTnrvs4AQJJpWuOQTaAN/9QRZ5/C/c61Ta+O5Y8kPbv9Q69kkCCDDEntflkXaWrfzEjOOCXdLL8J4LHXYU2u1mB/J1fjyH8i5w7WYig/adHnB9dq4q4= ++ ++ ++ ++ ++ MIIF1DCCBLygAwIBAgIQIAYFFnBjM4f/kUNg/UnC1jANBgkqhkiG9w0BAQsFADB2MQswCQYDVQQGEwJSTzERMA8GA1UEChMIY2VydFNJR04xKTAnBgNVBAsTIGNlcnRTSUdOIFF1YWxpZmllZCBDQSBDbGFzcyAzIEcyMSkwJwYDVQQDEyBjZXJ0U0lHTiBRdWFsaWZpZWQgQ0EgQ2xhc3MgMyBHMjAeFw0xNTA4MjQxNDExMzFaFw0xNjA4MjQxNDExMzFaMIH+MQswCQYDVQQGEwJSTzEXMBUGA1UEBwwOTXVuLiBCdWN1cmVzdGkxNDAyBgNVBAoMK01JTklTVEVSVUwgUEVOVFJVIFNPQ0lFVEFURUEgSU5GT1JNQVRJT05BTEExJzAlBgNVBAMMHlJvbXVsdXMtUmFkdS1Db3JuZWxpdSBEdW1pdHJpdTEZMBcGA1UEBRMQMjAwNjA1MTY3MERDUlJDMTEpMCcGA1UEKQwgUm9tdWx1cy1SYWR1LUNvcm5lbGl1IEMgRHVtaXRyaXUxHjAcBgNVBCoMFVJvbXVsdXMtUmFkdS1Db3JuZWxpdTERMA8GA1UEBAwIRHVtaXRyaXUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCP5uzh6yT71IooMhyVL2QcZE5lhIMUpqMNXqjNqHDe8SOAMRBkopPws9sS+jUQ2IKhQzPBTRYMAbBhQqdmnPzqGC4fpdZY3/5qrxRwHOzBHlrBawCOcpwaSy/J76ZgdWDJLWeXLtNmREFNELb9BuYH8DPWyHeE2lLSJO0OJbs1SMakX+BVt3/RmXbOCG3gYOjkGfq9sVhA9DC4PqR7KMfpb8nX7QQeJvtZdHQYaXaPajALX5qSuL1JT/KKUsqsMkqKh/nRxb1jH+qpRy6oa6gnij7XlukKUNy20aqENqniAT81L8ywDh1N/0l1IWY1tgSR10ClBfCD+UMQztoX5Vw3AgMBAAGjggHTMIIBzzBvBggrBgEFBQcBAQRjMGEwIwYIKwYBBQUHMAGGF2h0dHA6Ly9vY3NwLmNlcnRzaWduLnJvMDoGCCsGAQUFBzAChi5odHRwOi8vd3d3LmNlcnRzaWduLnJvL2NlcnRjcmwvcXVhbGlmaWVkZzIuY3J0MAwGA1UdEwEB/wQCMAAwDgYDVR0PAQH/BAQDAgSwMB8GA1UdIwQYMBaAFFA0nlN2uW3StwwekIN1Wu7LdBiKMB0GA1UdDgQWBBRZeYa2QYn3F5yuE1TERs0TsXz69DBJBgNVHSAEQjBAMD4GCysGAQQBgcM5AQEDMC8wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cuY2VydHNpZ24ucm8vcmVwb3NpdG9yeTA3BgNVHR8EMDAuMCygKqAohiZodHRwOi8vY3JsLmNlcnRzaWduLnJvL3F1YWxpZmllZGcyLmNybDBPBgNVHREESDBGoCkGCisGAQQBgjcUAgOgGwwZcm9tdWx1cy5kdW1pdHJpdUBtc2luZi5yb4EZcm9tdWx1cy5kdW1pdHJpdUBtc2luZi5ybzApBgNVHSUEIjAgBggrBgEFBQcDAgYKKwYBBAGCNxQCAgYIKwYBBQUHAwQwDQYJKoZIhvcNAQELBQADggEBABKUmpbk8t1QyD37isj8ITmzuGQHFNOwAM2ZXJYk78c2YmkCY2luVPFvrfJ9ff3IqfqWS6RuMLQmNSPT84B3Bc+Y1j9QZgqNlVbkGrCBOe4GlojE9yXed7J4HCMYPT5iDaCdnD8XZQXYmUZmaSeJQoWkOTVG7zHoKO77VyK8kFltQAj+fQkI9sDdNVXfYlN+pgN2tQvPHbnNZo8hI00AJE9JWH0gHbIne7c7/1TU5ll4HWOZYVPRJV5DHe5mGBpflLxK8fpwXwEvxK1Yx1qKecpou5oBuqPVWy+iDv6Suv7VZLLEtFm+36wk3YoMWj3fxMFuckjxVFiiQYRZd10lRww= ++ ++ ++ ++ http://www.mcsi.ro/Minister/Domenii-de-activitate-ale-MCSI/Tehnologia-Informatiei/Servicii-electronice/Semnatura-electronica/TrustedList-versiunea-xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ RO ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ MINISTRY FOR INFORMATION SOCIETY ++ MINISTERUL PENTRU SOCIETATEA INFORMATIONALA ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/RO ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDyTCCArGgAwIBAgIJAKRRAbnpt+1mMA0GCSqGSIb3DQEBCwUAMIGVMS4wLAYDVQQKEyVTd2VkaXNoIFBvc3QgYW5kIFRlbGVjb20gQWdlbmN5IChQVFMpMRIwEAYDVQQHEwlTdG9ja2hvbG0xEjAQBgNVBAgTCVN0b2NraG9sbTELMAkGA1UEBhMCU0UxLjAsBgNVBAMTJVN3ZWRpc2ggUG9zdCBhbmQgVGVsZWNvbSBBZ2VuY3kgKFBUUykwHhcNMTQxMjE5MDk1NDM2WhcNMTcxMjE4MDk1NDM2WjCBlTEuMCwGA1UEChMlU3dlZGlzaCBQb3N0IGFuZCBUZWxlY29tIEFnZW5jeSAoUFRTKTESMBAGA1UEBxMJU3RvY2tob2xtMRIwEAYDVQQIEwlTdG9ja2hvbG0xCzAJBgNVBAYTAlNFMS4wLAYDVQQDEyVTd2VkaXNoIFBvc3QgYW5kIFRlbGVjb20gQWdlbmN5IChQVFMpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtn8ADLkkBdFUWnKOYg1dDoJ7evZxP/jsqmFPVuZsOlAifQ6/NGWqyHMyj8r1/BmyEB/2WPLf+jrbtOKwSGtEHHkJ3nZnv1U9CBgIHDotzHrrEUI2b0r3ETaz80KsIlTZ5HaN0jPt+gfBETXCyT6H2cJ7uM5S/zhFeV7YMS2kzg9StgAMOQdZVAD4/2X1je97pBfH3AB4ZwLWsAA1OvQJ1NaE1gftqBuxiQkm5FOh8PnECmcT9dMveRLUKAbup5I1i1m3Ql9QvtyPv8E0/zSZUIN5XsRw9KXtgWema1oKSXBKyytg+XESSKm6BNYR2jTYQI8Vr0Z3MRl1zz9jcSh53QIDAQABoxowGDAJBgNVHRMEAjAAMAsGA1UdDwQEAwIGQDANBgkqhkiG9w0BAQsFAAOCAQEAiQ1Uns2aYVrlKthS8uf7gSkCI9hxmUOw1oryvNKu6q8OakYrbM2Z04+brJlzaX5gH1xFKC+6V6AaFHoAXP3G5is/BuGNhsRNwUluEsiqbxX6sKIQnyHyxhWDM3gfqHZwN4WDPb6W8UNfdMn5QabFi/MaecQgFCY505BJkBIKJA+apyj6zHYPSALjN4NewdheiCJ4jLoUpiJFKObbGNeZMcXqRRZaynOda9N8iKvACR4vScOYHG3HFn4NF0HnMbVh+0cyzzkzzjcd+oVsBQYLU9Oer+Axluj4E+AxvGmRfE/9S4VBctu1h/65iC5fcV8wdGdnE/UW1IDfk5UGXuWhmQ== ++ ++ ++ ++ ++ MIIDyTCCArGgAwIBAgIJALk/nqk36SvuMA0GCSqGSIb3DQEBCwUAMIGVMS4wLAYDVQQKEyVTd2VkaXNoIFBvc3QgYW5kIFRlbGVjb20gQWdlbmN5IChQVFMpMRIwEAYDVQQHEwlTdG9ja2hvbG0xEjAQBgNVBAgTCVN0b2NraG9sbTELMAkGA1UEBhMCU0UxLjAsBgNVBAMTJVN3ZWRpc2ggUG9zdCBhbmQgVGVsZWNvbSBBZ2VuY3kgKFBUUykwHhcNMTQwMjA0MTE1OTEyWhcNMTcwMjAzMTE1OTEyWjCBlTEuMCwGA1UEChMlU3dlZGlzaCBQb3N0IGFuZCBUZWxlY29tIEFnZW5jeSAoUFRTKTESMBAGA1UEBxMJU3RvY2tob2xtMRIwEAYDVQQIEwlTdG9ja2hvbG0xCzAJBgNVBAYTAlNFMS4wLAYDVQQDEyVTd2VkaXNoIFBvc3QgYW5kIFRlbGVjb20gQWdlbmN5IChQVFMpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArvBzVAFdzuT6LPDTqpo3dI8+zcH8UMA7uKubCsFmdiaeH643j1nfuUzbjQvQG+K6qrB3IRYec0zvWb6SnP58hTBHxvOf0eeRD7vxXomfeCO0FfhQnpBlCOAo8WDcFfYxCpUE1enyT02AhOkI0XRMibAP6EKWIjUvehKHBPi+OpfrDhxrMshrvV0+Cv/d07RevBNvXXmTUugaoo2q0/whl26rcawdEr3GbdxpNYonlzkwhKn5kNP/6Wo0xujxDX/6ZD6evFE2XS/ogPNqg6jOJifzglpIQx0fWyGYMKBiuz44K3SS1oCwiW6cIZlShvvwtQqOewE3zKp76LFDJlNZUQIDAQABoxowGDAJBgNVHRMEAjAAMAsGA1UdDwQEAwIGQDANBgkqhkiG9w0BAQsFAAOCAQEAdwopbzGOmPRe7d966zesuzckXA6eo1EgePlmaUTKkudZAKEODRwp0Cei+i2PKnTyZF1xY+BxEVcrVmU0syCDegv94qsnthJtx4QZmIlWVPBVq2AGDe+htnjD6QHzisuN5WNEH9g7JeUQmlXAsObPNxeldL++jp7/J9pWsD5WHlol0EbF5k4uYx8SlLfPQptXJFRckzA2P+JsJ/eg1GKF9RvP5N2PAC2mQDkyvl3D561Q3Vga1gU5Jl0idnzQhggcyyRTYOXxb9ZwDKpHvSUdIaAIDRe6626IGf4azK9Rflqppfo3YoiUpq5bkEx44377ho6RjnqMIYvOo348ZbcAJQ== ++ ++ ++ ++ http://www.pts.se/upload/Ovrigt/Internet/Branschinformation/Trusted-List-SE-MR.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ SE ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Swedish Post and Telecom Agency (PTS) ++ Post- och telestyrelsen (PTS) ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/SE ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIFdDCCBFygAwIBAgIEOl6PRjANBgkqhkiG9w0BAQUFADA9MQswCQYDVQQGEwJzaTEbMBkGA1UEChMSc3RhdGUtaW5zdGl0dXRpb25zMREwDwYDVQQLEwhzaWdvdi1jYTAeFw0xMzAzMDUxMDU2MDZaFw0xODAzMDUxMzI4MzVaMIGJMQswCQYDVQQGEwJzaTEbMBkGA1UEChMSc3RhdGUtaW5zdGl0dXRpb25zMRkwFwYDVQQLExB3ZWItY2VydGlmaWNhdGVzMRMwEQYDVQQLEwpHb3Zlcm5tZW50MS0wFAYDVQQFEw0xMjM1MTc0MjE0MDI3MBUGA1UEAxMORGltaXRyaWogU2themEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCJxPypF9ZVssjvPT/he9cZ/DdBn3htrapLJqHISc1ylop1CpkL0fbPTL9xK3JnaMzzmucbeTkwj2fyEaluP2bl1+ElpMWDYUq59mDOGvpB5KaJvTCXGUdf3rZTFSVOf7WarhI9uR25sjZg1wwVKGJ9VTqVtAlD5WBsIyT2CN1xWj3DXy+faqGtYbd/4mpzMW+qvTJQ9act6rlmTXJXwOVBTYwVEciTqX+IMX1nIn93FEOl6Q9BQeAYFe8pVXbTjoveY7KIE2SyWETogYplMDesK3hWB6cGfnWD05+Vbj78hKFyxSjoKTJegxzk6+8nGy0dzkjup1nlpTrjDBr1Zgt9AgMBAAGjggItMIICKTAOBgNVHQ8BAf8EBAMCBaAwSgYDVR0gBEMwQTA1BgorBgEEAa9ZAQcBMCcwJQYIKwYBBQUHAgEWGWh0dHA6Ly93d3cuY2EuZ292LnNpL2Nwcy8wCAYGBACLMAEBMCIGCCsGAQUFBwEDBBYwFDAIBgYEAI5GAQEwCAYGBACORgEEMCAGA1UdEQQZMBeBFWRpbWl0cmlqLnNrYXphQGdvdi5zaTCB8QYDVR0fBIHpMIHmMFWgU6BRpE8wTTELMAkGA1UEBhMCc2kxGzAZBgNVBAoTEnN0YXRlLWluc3RpdHV0aW9uczERMA8GA1UECxMIc2lnb3YtY2ExDjAMBgNVBAMTBUNSTDQxMIGMoIGJoIGGhldsZGFwOi8veDUwMC5nb3Yuc2kvb3U9c2lnb3YtY2Esbz1zdGF0ZS1pbnN0aXR1dGlvbnMsYz1zaT9jZXJ0aWZpY2F0ZVJldm9jYXRpb25MaXN0P2Jhc2WGK2h0dHA6Ly93d3cuc2lnb3YtY2EuZ292LnNpL2NybC9zaWdvdi1jYS5jcmwwKwYDVR0QBCQwIoAPMjAxMzAzMDUxMDU2MDZagQ8yMDE4MDMwNTEzMjgzNVowHwYDVR0jBBgwFoAUHvjUU2uzgwbpBAZXAvmlv8ZYPHIwHQYDVR0OBBYEFPkW6/pilxObPEzBAucEf/wHqwgdMAkGA1UdEwQCMAAwGQYJKoZIhvZ9B0EABAwwChsEVjcuMQMCA6gwDQYJKoZIhvcNAQEFBQADggEBAI+3jSydwmTfTuFJxIys5PFZGzWNX8pCcyyuYFnbPbsnWwVMA1wE/FazkN51U0E2nTsYlooal4uiZ0u5jgbXW7wBvAIept/mJNyXXLd/il5JiB0Bz76GsGNmw1DoX2lvV06x39NI9X3+ea2rp7L56co3kVJPmFbJImyYc5OK5H9dXjGpIcxzVyWXNoUSbhVZpljIw5Tka+c5/G0gE49o3PiexXH2fziGBAmbICn+eX6+zeSo80OB0DiPRMD0s31IitQfEv1N3H+lz21Pa8gKEKpKw7Ns7b4nMGfw8WQyiVHNNSo95RlCaHPFfeFR5vkDuUayHqGwErB1Zdx8AIjzR+w= ++ ++ ++ ++ ++ MIIFdDCCBFygAwIBAgIEOl5EOjANBgkqhkiG9w0BAQUFADA9MQswCQYDVQQGEwJzaTEbMBkGA1UEChMSc3RhdGUtaW5zdGl0dXRpb25zMREwDwYDVQQLEwhzaWdvdi1jYTAeFw0xMTEyMDgwOTU4MzhaFw0xNjEyMDgyMTQxNDFaMIGJMQswCQYDVQQGEwJzaTEbMBkGA1UEChMSc3RhdGUtaW5zdGl0dXRpb25zMRkwFwYDVQQLExB3ZWItY2VydGlmaWNhdGVzMRMwEQYDVQQLEwpHb3Zlcm5tZW50MS0wFAYDVQQFEw0xMjM0NjYyNjE0MDQ2MBUGA1UEAxMOTWFydXNrYSBEYW1qYW4wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCMrQtDhrYKxtQeHBVfhfkB9q6axI0SmPwcIRqEFGWfhnPhQwvPa8vSrE3SBrJnKx3bxLHdw/hzM8hDfhsQM5rwDYN8qfVv1qnttITRlBZqd7qSzQeD/QegjC2yZMIun/e/Gjz450+oXoGlgiB9Ir9DRuqCDq/lmMuftjYUc8uWQj/YwpmQrJNqDymbTInuclDM8zB5eUc6x/7jWs2QxdleY0rOR3H9GAUFCUMQjSYbvZfy+ptCGB1adST4/5o6DBOBpKakbz4tmrroUYqf7YBXzImiPCcyQxYFADGUboWWQ8QYiVPgED37/wkO+XGeYehuQ0jY61DDjc9YubxMUTbtAgMBAAGjggItMIICKTAOBgNVHQ8BAf8EBAMCBaAwSgYDVR0gBEMwQTA1BgorBgEEAa9ZAQcBMCcwJQYIKwYBBQUHAgEWGWh0dHA6Ly93d3cuY2EuZ292LnNpL2Nwcy8wCAYGBACLMAEBMCIGCCsGAQUFBwEDBBYwFDAIBgYEAI5GAQEwCAYGBACORgEEMCAGA1UdEQQZMBeBFW1hcnVza2EuZGFtamFuQGdvdi5zaTCB8QYDVR0fBIHpMIHmMFWgU6BRpE8wTTELMAkGA1UEBhMCc2kxGzAZBgNVBAoTEnN0YXRlLWluc3RpdHV0aW9uczERMA8GA1UECxMIc2lnb3YtY2ExDjAMBgNVBAMTBUNSTDM0MIGMoIGJoIGGhldsZGFwOi8veDUwMC5nb3Yuc2kvb3U9c2lnb3YtY2Esbz1zdGF0ZS1pbnN0aXR1dGlvbnMsYz1zaT9jZXJ0aWZpY2F0ZVJldm9jYXRpb25MaXN0P2Jhc2WGK2h0dHA6Ly93d3cuc2lnb3YtY2EuZ292LnNpL2NybC9zaWdvdi1jYS5jcmwwKwYDVR0QBCQwIoAPMjAxMTEyMDgwOTU4MzhagQ8yMDE2MTIwODIxNDE0MVowHwYDVR0jBBgwFoAUHvjUU2uzgwbpBAZXAvmlv8ZYPHIwHQYDVR0OBBYEFO2tqCIZmlWRrpJXC+r5nVGPwNaAMAkGA1UdEwQCMAAwGQYJKoZIhvZ9B0EABAwwChsEVjcuMQMCA6gwDQYJKoZIhvcNAQEFBQADggEBAJZvcjQy6OXcg/aHJRCwiKxyUZSXrazeyvBmkrrLK+2vMNyaFsJWQIIEKb9tWCrrQOXsBhzgGXLh5kr+Bt89pMANUYXanP5dlZo3A1h0xvfvGaKOhcZclZz+h4IGc/SBy9Xd/BJa9ttIqdSwH+8k29N4YhM9AIVb3vBszDDgLTU2xuFMIqDX+rbZnF9PmFbtKzGQjevOqG/4y61sZSa7pgPjhxTj4mqpK/AN40giiaRNJv+z3E9Xh71S4CriSeBW2GJsPS+v7dEw775fWPuQJEvDYZ1X754lmFp3RTOtlIqQTxCgajRF4O8mWEYb2BH3N64e8yEoaxvVHdbV9aUQ0Mg= ++ ++ ++ ++ http://www.mizks.gov.si/fileadmin/mizks.gov.si/pageuploads/Storitve/Info_druzba/Overitelji/SI_TL.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ SI ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ Republic of Slovenia, Ministry of Education, Science and Sport ++ Republika Slovenija, Ministrstvo za izobraževanje, znanost in šport ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/SI ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIIczCCBlugAwIBAgICBmwwDQYJKoZIhvcNAQELBQAwbTELMAkGA1UEBhMCU0sxEzARBgNVBAcMCkJyYXRpc2xhdmExIjAgBgNVBAoMGU5hcm9kbnkgYmV6cGVjbm9zdG55IHVyYWQxDjAMBgNVBAsMBVNJQkVQMRUwEwYDVQQDDAxLQ0EgTkJVIFNSIDMwHhcNMTMwNjA2MDczMTMxWhcNMTYwNjA2MDcyODU3WjCBujELMAkGA1UEBhMCU0sxEzARBgNVBAcMCkJyYXRpc2xhdmExIjAgBgNVBAoMGU5hcm9kbnkgYmV6cGVjbm9zdG55IHVyYWQxDjAMBgNVBAsMBVNJQkVQMTYwNAYDVQQDDC1QU0VVRE9OWU0gLSBUU0wgYW5kIFNpZ25hdHVyZSBQb2xpY3kgU2lnbmVyIDExKjAoBgNVBEEMIVRTTCBhbmQgU2lnbmF0dXJlIFBvbGljeSBTaWduZXIgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKHmDywjm6aP89518zXEXya8W2OyiBCm3Dfvi5YNdI871Udr+zTpMN+44LlB6GxaBmbIBU5H8nZYguT4HMmZAOD7nbqjSkBhEwSxZFsjhK1zaZ+pzUDyEbGGbcAdbNPwnJk/sD+EA1cK9JrGIeeE0kA9ZbVtJoJr0++EYHBMJipmnV0PLw8yoHB0ABTtEPmSXx3XBKUexCVKVn3GrfVAuyNTeSlDkfkE/CDU0D6dihPlCyX+Mm0uvH6lYP3GPgOkdf3EPdQ3mUVO1P5yVZpzLJvgHDcTaX/V4jax4ZCbK2m5xdPmRm4ZXkbUDpqxauBsseiEFS2Ron0U8tOSZAi8OQECAwEAAaOCA80wggPJMAkGA1UdEwQCMAAwYgYDVR0gBFswWTBFBg0rgR6RmYQFAAAAAQICMDQwMgYIKwYBBQUHAgEWJmh0dHA6Ly9lcC5uYnVzci5zay9rY2EvZG9jL2tjYV9jcHMucGRmMBAGDiuBHpGZhAUAAAEKBQABMIIBQAYIKwYBBQUHAQEEggEyMIIBLjA/BggrBgEFBQcwAoYzaHR0cDovL2VwLm5idXNyLnNrL2tjYS9jZXJ0cy9rY2EzL2tjYW5idXNyM19wN2MucDdjMHoGCCsGAQUFBzAChm5sZGFwOi8vZXAubmJ1c3Iuc2svY249S0NBIE5CVSBTUiAzLG91PVNJQkVQLG89TmFyb2RueSBiZXpwZWNub3N0bnkgdXJhZCxsPUJyYXRpc2xhdmEsYz1TSz9jYUNlcnRpZmljYXRlO2JpbmFyeTBvBggrBgEFBQcwAoZjbGRhcDovLy9jbj1LQ0EgTkJVIFNSIDMsb3U9U0lCRVAsbz1OYXJvZG55IGJlenBlY25vc3RueSB1cmFkLGw9QnJhdGlzbGF2YSxjPVNLP2NhQ2VydGlmaWNhdGU7YmluYXJ5MFUGA1UdEQROMEyBEnBvZGF0ZWxuYUBuYnVzci5za4Y2aHR0cDovL3d3dy5uYnVzci5zay9lbi9lbGVjdHJvbmljLXNpZ25hdHVyZS9pbmRleC5odG1sMA4GA1UdDwEB/wQEAwIGQDARBgNVHSUECjAIBgYEAJE3AwAwHwYDVR0jBBgwFoAUf/E9IcKXWi6XBw6xaYMl/SGGPgcwggFYBgNVHR8EggFPMIIBSzAwoC6gLIYqaHR0cDovL2VwLm5idXNyLnNrL2tjYS9jcmxzMy9rY2FuYnVzcjMuY3JsMIGQoIGNoIGKhoGHbGRhcDovL2VwLm5idXNyLnNrL2NuJTNkS0NBJTIwTkJVJTIwU1IlMjAzLG91JTNkU0lCRVAsbyUzZE5hcm9kbnklMjBiZXpwZWNub3N0bnklMjB1cmFkLGwlM2RCcmF0aXNsYXZhLGMlM2RTSz9jZXJ0aWZpY2F0ZVJldm9jYXRpb25MaXN0MIGDoIGAoH6GfGxkYXA6Ly8vY24lM2RLQ0ElMjBOQlUlMjBTUiUyMDMsb3UlM2RTSUJFUCxvJTNkTmFyb2RueSUyMGJlenBlY25vc3RueSUyMHVyYWQsbCUzZEJyYXRpc2xhdmEsYyUzZFNLP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3QwHQYDVR0OBBYEFAgnu/W6CgmsRiV2WoW5VfvvuHYqMA0GCSqGSIb3DQEBCwUAA4ICAQDLqnqpQ9NnzgtUA7nlRQxdQg12hG9jUZnE9Q2evihsa+nkajrx/ujK/DlG43RHV+xhbZayytbzkxnBKz3ujKk9UG2psdWbN+nN79TMucU1saJsdvj0qcvRGvBsA9wkNPYFP+0/uLN9K4aOgyNyVVNKbVDLuCgn9kOf2D89ldw0qdVkNZhTOnycE8iIgibSvT5HQwxKg0qb0cKz9XPgZKc5dSv5thoqWQgLUI0B2+Ize7ITZN6WmYg9LwKJo5A032ijpVYQ2U60Xj+wfN69nLF1UAZSUmLpt4HL2Ed5afIjkuQfd5jvzogyQgNkwJ4lKZTmNLrJoxFunibuBdv/jXBoMqXqxNdGxGuFr1ms8xyUNOCE7+e4DuI3tezBuv+yDwijUajwOu00hIW6bjCBXaedPXEznoeNxWiKAk0TpIHwmVQR9uggdCQKdrKvk0wPfNt1Hv69nodWipIcCvxiX/HZc3IHiv7KFpYwCGUKdGa7CDqFbGz351INLsfuYev9ylu0gltNujSEpulFYKAEwyGv3hTVN2vM17eoWl5dYNkiHJvmFTbx+5aF0LvXmUXlMOLMkLjB0KqUY4/GhikwIDVE/knrmyquecsrOAdlbOBJKJXYn2vB7Tf6QAG3V1hJOHkWpOvBWMtD0kPpuri7nptjsPMRR7E5k2DnbyJPxX4uQg== ++ ++ ++ ++ ++ MIIIczCCBlugAwIBAgICBm0wDQYJKoZIhvcNAQELBQAwbTELMAkGA1UEBhMCU0sxEzARBgNVBAcMCkJyYXRpc2xhdmExIjAgBgNVBAoMGU5hcm9kbnkgYmV6cGVjbm9zdG55IHVyYWQxDjAMBgNVBAsMBVNJQkVQMRUwEwYDVQQDDAxLQ0EgTkJVIFNSIDMwHhcNMTMwNjA2MDc0MDE0WhcNMTYwOTA2MDczOTEzWjCBujELMAkGA1UEBhMCU0sxEzARBgNVBAcMCkJyYXRpc2xhdmExIjAgBgNVBAoMGU5hcm9kbnkgYmV6cGVjbm9zdG55IHVyYWQxDjAMBgNVBAsMBVNJQkVQMTYwNAYDVQQDDC1QU0VVRE9OWU0gLSBUU0wgYW5kIFNpZ25hdHVyZSBQb2xpY3kgU2lnbmVyIDIxKjAoBgNVBEEMIVRTTCBhbmQgU2lnbmF0dXJlIFBvbGljeSBTaWduZXIgMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOoNixEp0esybJLfVKXdo/aBuXA4GthgVl7luflgPASj8N5897b3qbapcPxRtWfjotv28ewCSqPAEh0PrNrBD+jyNKOjpXoGYOyvwkBIx6YygG2duhWVg54IIuvmoXsjOyBzzOHvtbJO2P27Hu8QU3dQf3px3hB86CyqRydhVsVaOGwfBAAZ0WbN0NVQMWYo7X3xx95Wh34eAOvLEjT5qgjGsihTH4MQ3vWEpEJbev5JE3QkGi6DzZc+FCNlJToPYInFJsrb+rkjf/7BhdDperTvbOvNhmhLcDqUzvjXtKEHQtfz2teBsFkzatOcAhZqAZeYNOiaHPMu4BMF1XZKqkECAwEAAaOCA80wggPJMAkGA1UdEwQCMAAwYgYDVR0gBFswWTBFBg0rgR6RmYQFAAAAAQICMDQwMgYIKwYBBQUHAgEWJmh0dHA6Ly9lcC5uYnVzci5zay9rY2EvZG9jL2tjYV9jcHMucGRmMBAGDiuBHpGZhAUAAAEKBQABMIIBQAYIKwYBBQUHAQEEggEyMIIBLjA/BggrBgEFBQcwAoYzaHR0cDovL2VwLm5idXNyLnNrL2tjYS9jZXJ0cy9rY2EzL2tjYW5idXNyM19wN2MucDdjMHoGCCsGAQUFBzAChm5sZGFwOi8vZXAubmJ1c3Iuc2svY249S0NBIE5CVSBTUiAzLG91PVNJQkVQLG89TmFyb2RueSBiZXpwZWNub3N0bnkgdXJhZCxsPUJyYXRpc2xhdmEsYz1TSz9jYUNlcnRpZmljYXRlO2JpbmFyeTBvBggrBgEFBQcwAoZjbGRhcDovLy9jbj1LQ0EgTkJVIFNSIDMsb3U9U0lCRVAsbz1OYXJvZG55IGJlenBlY25vc3RueSB1cmFkLGw9QnJhdGlzbGF2YSxjPVNLP2NhQ2VydGlmaWNhdGU7YmluYXJ5MFUGA1UdEQROMEyBEnBvZGF0ZWxuYUBuYnVzci5za4Y2aHR0cDovL3d3dy5uYnVzci5zay9lbi9lbGVjdHJvbmljLXNpZ25hdHVyZS9pbmRleC5odG1sMA4GA1UdDwEB/wQEAwIGQDARBgNVHSUECjAIBgYEAJE3AwAwHwYDVR0jBBgwFoAUf/E9IcKXWi6XBw6xaYMl/SGGPgcwggFYBgNVHR8EggFPMIIBSzAwoC6gLIYqaHR0cDovL2VwLm5idXNyLnNrL2tjYS9jcmxzMy9rY2FuYnVzcjMuY3JsMIGQoIGNoIGKhoGHbGRhcDovL2VwLm5idXNyLnNrL2NuJTNkS0NBJTIwTkJVJTIwU1IlMjAzLG91JTNkU0lCRVAsbyUzZE5hcm9kbnklMjBiZXpwZWNub3N0bnklMjB1cmFkLGwlM2RCcmF0aXNsYXZhLGMlM2RTSz9jZXJ0aWZpY2F0ZVJldm9jYXRpb25MaXN0MIGDoIGAoH6GfGxkYXA6Ly8vY24lM2RLQ0ElMjBOQlUlMjBTUiUyMDMsb3UlM2RTSUJFUCxvJTNkTmFyb2RueSUyMGJlenBlY25vc3RueSUyMHVyYWQsbCUzZEJyYXRpc2xhdmEsYyUzZFNLP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3QwHQYDVR0OBBYEFE2lEI6SH/G8y1Qze4eFD6iP1924MA0GCSqGSIb3DQEBCwUAA4ICAQAbSmmukMl9d/8FJnpQEMpqUfnhHV+0USPQc31C+eqAH7cZkBgKQXJc7xW1Q5stTnpvqrp5OcbCGtnFNHRm1PUf64S/hoAnDfmk3teQbGjgkrg5VFBMsf/dzBhZTRetbGx1tzt2M/gxh45vsJhA958O0S5haT1/VytnOXMSh2SrxIDqzMzZCAl5UBUuuifC0nElfwrgvYkYwqd2jz4pbixEqUNzHJMEf92MayJwW/FUAeP9VW03K3ox4pHkL5IO8NtSCOQPE66tUgXW/kC1zI3iqtt5z4mdwGVPNWLFeRWVlTXLuZNAfVu/nzOJAinLkRWZO94c340nJ39A1McB2TgPsN/82EOC0dtSZo7WEvWZRZdxiLHbNSyuLdwFX9kV8E0PcrQD21MPeFWxHH5iIxUPM3Banuvoqan7u9zAR8E5/8AKuJEHQriwm/7FXMuiffjqsbAeQM0fTGdTkHTRi8wiqN/2HFgBvT3gSmy3MsYFqMlamchHtmjpNlB7FVE3i+yXNFikDcoon56gUOQFvcau+WpdS3xjO1wZjY4GP0eIeUpeclG7NV49ky65d3LJE1sWBpztFLanMU7bI08TIBt5oeNwnnz0gSc76FHJHzuFsA67MjuQAhy19dpAsy6z4Mztel31HwQ83OULzegqiVvIUVxS1mOPhWzGBsOIH0B8Bg== ++ ++ ++ ++ http://ep.nbusr.sk/kca/tsl/tsl_hrf.zip ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ SK ++ ++ ++ application/pdf ++ ++ ++ ++ NATIONAL SECURITY AUTHORITY ++ NÁRODNÝ BEZPEČNOSTNÝ ÚRAD ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/SK ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIIczCCBlugAwIBAgICBmwwDQYJKoZIhvcNAQELBQAwbTELMAkGA1UEBhMCU0sxEzARBgNVBAcMCkJyYXRpc2xhdmExIjAgBgNVBAoMGU5hcm9kbnkgYmV6cGVjbm9zdG55IHVyYWQxDjAMBgNVBAsMBVNJQkVQMRUwEwYDVQQDDAxLQ0EgTkJVIFNSIDMwHhcNMTMwNjA2MDczMTMxWhcNMTYwNjA2MDcyODU3WjCBujELMAkGA1UEBhMCU0sxEzARBgNVBAcMCkJyYXRpc2xhdmExIjAgBgNVBAoMGU5hcm9kbnkgYmV6cGVjbm9zdG55IHVyYWQxDjAMBgNVBAsMBVNJQkVQMTYwNAYDVQQDDC1QU0VVRE9OWU0gLSBUU0wgYW5kIFNpZ25hdHVyZSBQb2xpY3kgU2lnbmVyIDExKjAoBgNVBEEMIVRTTCBhbmQgU2lnbmF0dXJlIFBvbGljeSBTaWduZXIgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKHmDywjm6aP89518zXEXya8W2OyiBCm3Dfvi5YNdI871Udr+zTpMN+44LlB6GxaBmbIBU5H8nZYguT4HMmZAOD7nbqjSkBhEwSxZFsjhK1zaZ+pzUDyEbGGbcAdbNPwnJk/sD+EA1cK9JrGIeeE0kA9ZbVtJoJr0++EYHBMJipmnV0PLw8yoHB0ABTtEPmSXx3XBKUexCVKVn3GrfVAuyNTeSlDkfkE/CDU0D6dihPlCyX+Mm0uvH6lYP3GPgOkdf3EPdQ3mUVO1P5yVZpzLJvgHDcTaX/V4jax4ZCbK2m5xdPmRm4ZXkbUDpqxauBsseiEFS2Ron0U8tOSZAi8OQECAwEAAaOCA80wggPJMAkGA1UdEwQCMAAwYgYDVR0gBFswWTBFBg0rgR6RmYQFAAAAAQICMDQwMgYIKwYBBQUHAgEWJmh0dHA6Ly9lcC5uYnVzci5zay9rY2EvZG9jL2tjYV9jcHMucGRmMBAGDiuBHpGZhAUAAAEKBQABMIIBQAYIKwYBBQUHAQEEggEyMIIBLjA/BggrBgEFBQcwAoYzaHR0cDovL2VwLm5idXNyLnNrL2tjYS9jZXJ0cy9rY2EzL2tjYW5idXNyM19wN2MucDdjMHoGCCsGAQUFBzAChm5sZGFwOi8vZXAubmJ1c3Iuc2svY249S0NBIE5CVSBTUiAzLG91PVNJQkVQLG89TmFyb2RueSBiZXpwZWNub3N0bnkgdXJhZCxsPUJyYXRpc2xhdmEsYz1TSz9jYUNlcnRpZmljYXRlO2JpbmFyeTBvBggrBgEFBQcwAoZjbGRhcDovLy9jbj1LQ0EgTkJVIFNSIDMsb3U9U0lCRVAsbz1OYXJvZG55IGJlenBlY25vc3RueSB1cmFkLGw9QnJhdGlzbGF2YSxjPVNLP2NhQ2VydGlmaWNhdGU7YmluYXJ5MFUGA1UdEQROMEyBEnBvZGF0ZWxuYUBuYnVzci5za4Y2aHR0cDovL3d3dy5uYnVzci5zay9lbi9lbGVjdHJvbmljLXNpZ25hdHVyZS9pbmRleC5odG1sMA4GA1UdDwEB/wQEAwIGQDARBgNVHSUECjAIBgYEAJE3AwAwHwYDVR0jBBgwFoAUf/E9IcKXWi6XBw6xaYMl/SGGPgcwggFYBgNVHR8EggFPMIIBSzAwoC6gLIYqaHR0cDovL2VwLm5idXNyLnNrL2tjYS9jcmxzMy9rY2FuYnVzcjMuY3JsMIGQoIGNoIGKhoGHbGRhcDovL2VwLm5idXNyLnNrL2NuJTNkS0NBJTIwTkJVJTIwU1IlMjAzLG91JTNkU0lCRVAsbyUzZE5hcm9kbnklMjBiZXpwZWNub3N0bnklMjB1cmFkLGwlM2RCcmF0aXNsYXZhLGMlM2RTSz9jZXJ0aWZpY2F0ZVJldm9jYXRpb25MaXN0MIGDoIGAoH6GfGxkYXA6Ly8vY24lM2RLQ0ElMjBOQlUlMjBTUiUyMDMsb3UlM2RTSUJFUCxvJTNkTmFyb2RueSUyMGJlenBlY25vc3RueSUyMHVyYWQsbCUzZEJyYXRpc2xhdmEsYyUzZFNLP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3QwHQYDVR0OBBYEFAgnu/W6CgmsRiV2WoW5VfvvuHYqMA0GCSqGSIb3DQEBCwUAA4ICAQDLqnqpQ9NnzgtUA7nlRQxdQg12hG9jUZnE9Q2evihsa+nkajrx/ujK/DlG43RHV+xhbZayytbzkxnBKz3ujKk9UG2psdWbN+nN79TMucU1saJsdvj0qcvRGvBsA9wkNPYFP+0/uLN9K4aOgyNyVVNKbVDLuCgn9kOf2D89ldw0qdVkNZhTOnycE8iIgibSvT5HQwxKg0qb0cKz9XPgZKc5dSv5thoqWQgLUI0B2+Ize7ITZN6WmYg9LwKJo5A032ijpVYQ2U60Xj+wfN69nLF1UAZSUmLpt4HL2Ed5afIjkuQfd5jvzogyQgNkwJ4lKZTmNLrJoxFunibuBdv/jXBoMqXqxNdGxGuFr1ms8xyUNOCE7+e4DuI3tezBuv+yDwijUajwOu00hIW6bjCBXaedPXEznoeNxWiKAk0TpIHwmVQR9uggdCQKdrKvk0wPfNt1Hv69nodWipIcCvxiX/HZc3IHiv7KFpYwCGUKdGa7CDqFbGz351INLsfuYev9ylu0gltNujSEpulFYKAEwyGv3hTVN2vM17eoWl5dYNkiHJvmFTbx+5aF0LvXmUXlMOLMkLjB0KqUY4/GhikwIDVE/knrmyquecsrOAdlbOBJKJXYn2vB7Tf6QAG3V1hJOHkWpOvBWMtD0kPpuri7nptjsPMRR7E5k2DnbyJPxX4uQg== ++ ++ ++ ++ ++ MIIIczCCBlugAwIBAgICBm0wDQYJKoZIhvcNAQELBQAwbTELMAkGA1UEBhMCU0sxEzARBgNVBAcMCkJyYXRpc2xhdmExIjAgBgNVBAoMGU5hcm9kbnkgYmV6cGVjbm9zdG55IHVyYWQxDjAMBgNVBAsMBVNJQkVQMRUwEwYDVQQDDAxLQ0EgTkJVIFNSIDMwHhcNMTMwNjA2MDc0MDE0WhcNMTYwOTA2MDczOTEzWjCBujELMAkGA1UEBhMCU0sxEzARBgNVBAcMCkJyYXRpc2xhdmExIjAgBgNVBAoMGU5hcm9kbnkgYmV6cGVjbm9zdG55IHVyYWQxDjAMBgNVBAsMBVNJQkVQMTYwNAYDVQQDDC1QU0VVRE9OWU0gLSBUU0wgYW5kIFNpZ25hdHVyZSBQb2xpY3kgU2lnbmVyIDIxKjAoBgNVBEEMIVRTTCBhbmQgU2lnbmF0dXJlIFBvbGljeSBTaWduZXIgMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOoNixEp0esybJLfVKXdo/aBuXA4GthgVl7luflgPASj8N5897b3qbapcPxRtWfjotv28ewCSqPAEh0PrNrBD+jyNKOjpXoGYOyvwkBIx6YygG2duhWVg54IIuvmoXsjOyBzzOHvtbJO2P27Hu8QU3dQf3px3hB86CyqRydhVsVaOGwfBAAZ0WbN0NVQMWYo7X3xx95Wh34eAOvLEjT5qgjGsihTH4MQ3vWEpEJbev5JE3QkGi6DzZc+FCNlJToPYInFJsrb+rkjf/7BhdDperTvbOvNhmhLcDqUzvjXtKEHQtfz2teBsFkzatOcAhZqAZeYNOiaHPMu4BMF1XZKqkECAwEAAaOCA80wggPJMAkGA1UdEwQCMAAwYgYDVR0gBFswWTBFBg0rgR6RmYQFAAAAAQICMDQwMgYIKwYBBQUHAgEWJmh0dHA6Ly9lcC5uYnVzci5zay9rY2EvZG9jL2tjYV9jcHMucGRmMBAGDiuBHpGZhAUAAAEKBQABMIIBQAYIKwYBBQUHAQEEggEyMIIBLjA/BggrBgEFBQcwAoYzaHR0cDovL2VwLm5idXNyLnNrL2tjYS9jZXJ0cy9rY2EzL2tjYW5idXNyM19wN2MucDdjMHoGCCsGAQUFBzAChm5sZGFwOi8vZXAubmJ1c3Iuc2svY249S0NBIE5CVSBTUiAzLG91PVNJQkVQLG89TmFyb2RueSBiZXpwZWNub3N0bnkgdXJhZCxsPUJyYXRpc2xhdmEsYz1TSz9jYUNlcnRpZmljYXRlO2JpbmFyeTBvBggrBgEFBQcwAoZjbGRhcDovLy9jbj1LQ0EgTkJVIFNSIDMsb3U9U0lCRVAsbz1OYXJvZG55IGJlenBlY25vc3RueSB1cmFkLGw9QnJhdGlzbGF2YSxjPVNLP2NhQ2VydGlmaWNhdGU7YmluYXJ5MFUGA1UdEQROMEyBEnBvZGF0ZWxuYUBuYnVzci5za4Y2aHR0cDovL3d3dy5uYnVzci5zay9lbi9lbGVjdHJvbmljLXNpZ25hdHVyZS9pbmRleC5odG1sMA4GA1UdDwEB/wQEAwIGQDARBgNVHSUECjAIBgYEAJE3AwAwHwYDVR0jBBgwFoAUf/E9IcKXWi6XBw6xaYMl/SGGPgcwggFYBgNVHR8EggFPMIIBSzAwoC6gLIYqaHR0cDovL2VwLm5idXNyLnNrL2tjYS9jcmxzMy9rY2FuYnVzcjMuY3JsMIGQoIGNoIGKhoGHbGRhcDovL2VwLm5idXNyLnNrL2NuJTNkS0NBJTIwTkJVJTIwU1IlMjAzLG91JTNkU0lCRVAsbyUzZE5hcm9kbnklMjBiZXpwZWNub3N0bnklMjB1cmFkLGwlM2RCcmF0aXNsYXZhLGMlM2RTSz9jZXJ0aWZpY2F0ZVJldm9jYXRpb25MaXN0MIGDoIGAoH6GfGxkYXA6Ly8vY24lM2RLQ0ElMjBOQlUlMjBTUiUyMDMsb3UlM2RTSUJFUCxvJTNkTmFyb2RueSUyMGJlenBlY25vc3RueSUyMHVyYWQsbCUzZEJyYXRpc2xhdmEsYyUzZFNLP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3QwHQYDVR0OBBYEFE2lEI6SH/G8y1Qze4eFD6iP1924MA0GCSqGSIb3DQEBCwUAA4ICAQAbSmmukMl9d/8FJnpQEMpqUfnhHV+0USPQc31C+eqAH7cZkBgKQXJc7xW1Q5stTnpvqrp5OcbCGtnFNHRm1PUf64S/hoAnDfmk3teQbGjgkrg5VFBMsf/dzBhZTRetbGx1tzt2M/gxh45vsJhA958O0S5haT1/VytnOXMSh2SrxIDqzMzZCAl5UBUuuifC0nElfwrgvYkYwqd2jz4pbixEqUNzHJMEf92MayJwW/FUAeP9VW03K3ox4pHkL5IO8NtSCOQPE66tUgXW/kC1zI3iqtt5z4mdwGVPNWLFeRWVlTXLuZNAfVu/nzOJAinLkRWZO94c340nJ39A1McB2TgPsN/82EOC0dtSZo7WEvWZRZdxiLHbNSyuLdwFX9kV8E0PcrQD21MPeFWxHH5iIxUPM3Banuvoqan7u9zAR8E5/8AKuJEHQriwm/7FXMuiffjqsbAeQM0fTGdTkHTRi8wiqN/2HFgBvT3gSmy3MsYFqMlamchHtmjpNlB7FVE3i+yXNFikDcoon56gUOQFvcau+WpdS3xjO1wZjY4GP0eIeUpeclG7NV49ky65d3LJE1sWBpztFLanMU7bI08TIBt5oeNwnnz0gSc76FHJHzuFsA67MjuQAhy19dpAsy6z4Mztel31HwQ83OULzegqiVvIUVxS1mOPhWzGBsOIH0B8Bg== ++ ++ ++ ++ http://ep.nbusr.sk/kca/tsl/tsl.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ SK ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ NATIONAL SECURITY AUTHORITY ++ NÁRODNÝ BEZPEČNOSTNÝ ÚRAD ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/SK ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDdzCCAl+gAwIBAgIFFATw0YMwDQYJKoZIhvcNAQELBQAwSzELMAkGA1UEBhMCVUsxGDAWBgNVBAoMD3RTY2hlbWUgTGltaXRlZDEMMAoGA1UECwwDUEtJMRQwEgYDVQQDDAtUU0wgU2lnbmluZzAeFw0xNDAyMjAwMDAwMDBaFw0xNzAyMjAwMDAwMDBaMEsxCzAJBgNVBAYTAlVLMRgwFgYDVQQKDA90U2NoZW1lIExpbWl0ZWQxDDAKBgNVBAsMA1BLSTEUMBIGA1UEAwwLVFNMIFNpZ25pbmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDKDMc2PgyQPNCRsjk2F/Lt7THy0lDmfFvYDiu8U1+5NN4Cdh/JKq87GlcqUWOK4/CS/evFqWXZQrHMeyFqG17zbTSheCqER0PwuYELgKLRTC9V9vX8GbVQ3Qh/JySDB+yiIR4dXNBku8Gb7zjD0OxykAyHyWlf/4i3T1dpJZpXqMKweT5N7+d2XT+Lzn7iNJA/VN23uYyQf7o4YGdVvvZx5ApxOQx5sSXEtprELYTy7C06QGAiE0Q9x5MjnsNMyWsrZn7T6kWEM0Ks4R/CFOlj5iG3a1kNSSWgVSBfmyW4U5MV2RzOHUFRuZT8q6UfKzP+0QAaQ42X6hbupFwNWMCPAgMBAAGjYjBgMB0GA1UdDgQWBBQUF9oFLo/KTZ+wgaTuLp8QixYGUjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSAECjAIMAYGBFUdIAAwEQYDVR0lBAowCAYGBACRNwMAMA0GCSqGSIb3DQEBCwUAA4IBAQCfA8F1bhDJotAv1AqNVh8ApFQZibSBiIDpctqR63DfDQjWupeoAr7TCDEZqOLgDdBTMiOBKgXVGc/p+hmSbxR+EukBix96Q+RfVgGoMwHCb8L3h/g2Gp0QFXDMGltPcXQDAJ4WofFmze7CfO/Bv9vLeGn0Xy1Xou7QjcCMnfGekf3XPX/U8m/tuxm80wlNIn9ZWfPHKoobsj3OerZtI2HgWU1ihDLD+aybZ5Imfk79zFj4ZshAJXDDhDEsCV/XgUTZzg9DJguztve+cnAGdx1x/BomvFEUgkAbSbsmwu9SFKj0nOb6ksvj3yYU0hTZrpIwQlGdxj4wJ5g6OCJFUob5 ++ ++ ++ ++ ++ MIIDdzCCAl+gAwIBAgIFFJV9MCIwDQYJKoZIhvcNAQELBQAwSzELMAkGA1UEBhMCVUsxGDAWBgNVBAoMD3RTY2hlbWUgTGltaXRlZDEMMAoGA1UECwwDUEtJMRQwEgYDVQQDDAtUU0wgU2lnbmluZzAeFw0xNDA4MDgwMDAwMDBaFw0xNzA4MDgwMDAwMDBaMEsxCzAJBgNVBAYTAlVLMRgwFgYDVQQKDA90U2NoZW1lIExpbWl0ZWQxDDAKBgNVBAsMA1BLSTEUMBIGA1UEAwwLVFNMIFNpZ25pbmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCy58lOvYY2WC2k1sHf6KFkeHUmEMGR/dmU4hGPHmibbnOcqCW5kQQ1uewp+6tkUt1OqtVCrVI4NtzSNKWKqS79SoIKe7r6hJ2yIskY3VlGQrk2wI4nW2QyOBX3Pum+RIQdqrYz/OrSWe3NCiHwZBmW0a7WMVWOuiNBZN3rtC+kUXDdgBXVaqcsKnU3HUMKfeJ0xYnAOnqJwX5/9EoHdeAr3xnCRT/bJO3jkm4FuTAFHWLWfdJQvMZ+Z0+TDAPZj9t9+5RKwdMc0f4Nou9SYywLRnv82MIH69EfUswAHMdM+3kcg16VL3d0gUxy3qOnsh+TxdW3uBfB62eJPJv1gwXBAgMBAAGjYjBgMB0GA1UdDgQWBBQ38XfUZwvT/+xQFcoUt8NuodH4tTAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSAECjAIMAYGBFUdIAAwEQYDVR0lBAowCAYGBACRNwMAMA0GCSqGSIb3DQEBCwUAA4IBAQAFK6WJ8yL8aa+c6JV3F/N6JWwKNcjzHYaI+WgWsltQOUtrrPMf9zBMpTq3AeNHYfNB1+uTRaFmtLA0XIBYcfu7J0CsDXhl5nUS4Ev5qcSzHyupuZQ2j+zLD9uCFbiDaa6Y64CQ8jbhD7ZemgA1KdmmR3+uadjFu13eZ+ZyfwyeYH4zMiqOkXCZ1eNwUrzAhhhPAvR6CFYv6Ea1/2Y6TXCJBEB0QBrXPs6q2oYzDOcwE0kfMMcWbA86dHpMkCJ22wUypqiiXCmPDkiCdbUE+QG2+fOnkiSQOtp7uncr1EVyb0hxmDD6LOlGQIl73SoeA1C5FQv5CTwyWaHSAt2UK2Ac ++ ++ ++ ++ http://www.tscheme.org/UK_TSL/HR_TSL-UKsigned.pdf ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ UK ++ ++ ++ application/pdf ++ ++ ++ ++ tScheme Limited ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/UK ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ ++ ++ ++ MIIDdzCCAl+gAwIBAgIFFATw0YMwDQYJKoZIhvcNAQELBQAwSzELMAkGA1UEBhMCVUsxGDAWBgNVBAoMD3RTY2hlbWUgTGltaXRlZDEMMAoGA1UECwwDUEtJMRQwEgYDVQQDDAtUU0wgU2lnbmluZzAeFw0xNDAyMjAwMDAwMDBaFw0xNzAyMjAwMDAwMDBaMEsxCzAJBgNVBAYTAlVLMRgwFgYDVQQKDA90U2NoZW1lIExpbWl0ZWQxDDAKBgNVBAsMA1BLSTEUMBIGA1UEAwwLVFNMIFNpZ25pbmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDKDMc2PgyQPNCRsjk2F/Lt7THy0lDmfFvYDiu8U1+5NN4Cdh/JKq87GlcqUWOK4/CS/evFqWXZQrHMeyFqG17zbTSheCqER0PwuYELgKLRTC9V9vX8GbVQ3Qh/JySDB+yiIR4dXNBku8Gb7zjD0OxykAyHyWlf/4i3T1dpJZpXqMKweT5N7+d2XT+Lzn7iNJA/VN23uYyQf7o4YGdVvvZx5ApxOQx5sSXEtprELYTy7C06QGAiE0Q9x5MjnsNMyWsrZn7T6kWEM0Ks4R/CFOlj5iG3a1kNSSWgVSBfmyW4U5MV2RzOHUFRuZT8q6UfKzP+0QAaQ42X6hbupFwNWMCPAgMBAAGjYjBgMB0GA1UdDgQWBBQUF9oFLo/KTZ+wgaTuLp8QixYGUjAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSAECjAIMAYGBFUdIAAwEQYDVR0lBAowCAYGBACRNwMAMA0GCSqGSIb3DQEBCwUAA4IBAQCfA8F1bhDJotAv1AqNVh8ApFQZibSBiIDpctqR63DfDQjWupeoAr7TCDEZqOLgDdBTMiOBKgXVGc/p+hmSbxR+EukBix96Q+RfVgGoMwHCb8L3h/g2Gp0QFXDMGltPcXQDAJ4WofFmze7CfO/Bv9vLeGn0Xy1Xou7QjcCMnfGekf3XPX/U8m/tuxm80wlNIn9ZWfPHKoobsj3OerZtI2HgWU1ihDLD+aybZ5Imfk79zFj4ZshAJXDDhDEsCV/XgUTZzg9DJguztve+cnAGdx1x/BomvFEUgkAbSbsmwu9SFKj0nOb6ksvj3yYU0hTZrpIwQlGdxj4wJ5g6OCJFUob5 ++ ++ ++ ++ ++ MIIDdzCCAl+gAwIBAgIFFJV9MCIwDQYJKoZIhvcNAQELBQAwSzELMAkGA1UEBhMCVUsxGDAWBgNVBAoMD3RTY2hlbWUgTGltaXRlZDEMMAoGA1UECwwDUEtJMRQwEgYDVQQDDAtUU0wgU2lnbmluZzAeFw0xNDA4MDgwMDAwMDBaFw0xNzA4MDgwMDAwMDBaMEsxCzAJBgNVBAYTAlVLMRgwFgYDVQQKDA90U2NoZW1lIExpbWl0ZWQxDDAKBgNVBAsMA1BLSTEUMBIGA1UEAwwLVFNMIFNpZ25pbmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCy58lOvYY2WC2k1sHf6KFkeHUmEMGR/dmU4hGPHmibbnOcqCW5kQQ1uewp+6tkUt1OqtVCrVI4NtzSNKWKqS79SoIKe7r6hJ2yIskY3VlGQrk2wI4nW2QyOBX3Pum+RIQdqrYz/OrSWe3NCiHwZBmW0a7WMVWOuiNBZN3rtC+kUXDdgBXVaqcsKnU3HUMKfeJ0xYnAOnqJwX5/9EoHdeAr3xnCRT/bJO3jkm4FuTAFHWLWfdJQvMZ+Z0+TDAPZj9t9+5RKwdMc0f4Nou9SYywLRnv82MIH69EfUswAHMdM+3kcg16VL3d0gUxy3qOnsh+TxdW3uBfB62eJPJv1gwXBAgMBAAGjYjBgMB0GA1UdDgQWBBQ38XfUZwvT/+xQFcoUt8NuodH4tTAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIGwDARBgNVHSAECjAIMAYGBFUdIAAwEQYDVR0lBAowCAYGBACRNwMAMA0GCSqGSIb3DQEBCwUAA4IBAQAFK6WJ8yL8aa+c6JV3F/N6JWwKNcjzHYaI+WgWsltQOUtrrPMf9zBMpTq3AeNHYfNB1+uTRaFmtLA0XIBYcfu7J0CsDXhl5nUS4Ev5qcSzHyupuZQ2j+zLD9uCFbiDaa6Y64CQ8jbhD7ZemgA1KdmmR3+uadjFu13eZ+ZyfwyeYH4zMiqOkXCZ1eNwUrzAhhhPAvR6CFYv6Ea1/2Y6TXCJBEB0QBrXPs6q2oYzDOcwE0kfMMcWbA86dHpMkCJ22wUypqiiXCmPDkiCdbUE+QG2+fOnkiSQOtp7uncr1EVyb0hxmDD6LOlGQIl73SoeA1C5FQv5CTwyWaHSAt2UK2Ac ++ ++ ++ ++ http://www.tscheme.org/UK_TSL/TSL-UKsigned.xml ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/TSLType/EUgeneric ++ ++ ++ UK ++ ++ ++ application/vnd.etsi.tsl+xml ++ ++ ++ ++ tScheme Limited ++ ++ ++ ++ ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/UK ++ http://uri.etsi.org/TrstSvc/TrustedList/schemerules/EUcommon ++ ++ ++ ++ ++ ++ 2016-04-08T11:15:22Z ++ ++ 2016-09-08T11:15:22Z ++ ++ ++ https://ec.europa.eu/information_society/policy/esignature/trusted-list/tl-mp.xml ++ ++ ++37nyW1VCJ9iJU1HQ1gha3oqrWWH0ROCx5SXv5W4VKKo=ypmo0YajX2NiF1H2NUkLxNLB8VeDlcIbuGRcZK3Az78=SW5cMZ+lDTJg+s4PdiUdy1LN/S312cFgSAemeFn5bT+retkMQFdypn8G4wZ/YtkXHmfmx4MBKbjob5o7WS3/7LfsyAbs1QDLKB5CcuPZ6zh6X7uM3+NKRcfSasQ0Mt9/YdO8Cn6qweDI5T6mzU1EgknTOx/gu9S9l0I9BDagEEjL8/pG3qPLsevmz4KoK/mfyj/yJ2U2/muV/66HlMNIIVJjyos8CHpCIE5qFef6PjLxLZ4TYG+v/8F2vyhDx86um+nFPGf3SuZMNg6akXDqoKAftbK9w0xjDwKVJUcckG9XrKRJC3JhIjEwiZL5PJYhulk+wmExexKb2REkbuOmUg==MIIGgTCCBGmgAwIBAgIUeaHFHm5f58zYv20JfspVJ3hossYwDQYJKoZIhvcNAQEFBQAwgZIxCzAJBgNVBAYTAk5MMSAwHgYDVQQKExdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEoMCYGA1UECxMfSXNzdWluZyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTE3MDUGA1UEAxMuUXVvVmFkaXMgRVUgSXNzdWluZyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBHMjAeFw0xMzEwMzAxMjI3MTFaFw0xNjEwMzAxMjI3MTFaMHoxCzAJBgNVBAYTAkJFMRAwDgYDVQQIEwdCcnVzc2VsMRIwEAYDVQQHEwlFdHRlcmJlZWsxHDAaBgNVBAoTE0V1cm9wZWFuIENvbW1pc3Npb24xFDASBgNVBAsTC0luZm9ybWF0aWNzMREwDwYDVQQDDAhFQ19ESUdJVDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJgkkqvJmZaknQC7c6H6LEr3dGtQ5IfOB3HAZZxOZbb8tdM1KMTO3sAifJC5HNFeIWd0727uZj+V5kBrUv36zEs+VxiN1yJBmcJznX4J2TCyPfLk2NRELGu65VwrK2Whp8cLLANc+6pQn/5wKh23ehZm21mLXcicZ8whksUGb/h8p6NDe1cElD6veNc9CwwK2QT0G0mQiEYchqjJkqyY8HEak8t+CbIC4Rrhyxh3HI1fCK0WKS9JjbPQFbvGmfpBZuLPYZYzP4UXIqfBVYctyodcSAnSfmy6tySMqpVSRhjRn4KP0EfHlq7Ec+H3nwuqxd0M4vTJlZm+XwYJBzEFzFsCAwEAAaOCAeQwggHgMFgGA1UdIARRME8wCAYGBACLMAECMEMGCisGAQQBvlgBgxAwNTAzBggrBgEFBQcCARYnaHR0cDovL3d3dy5xdW92YWRpc2dsb2JhbC5ubC9kb2N1bWVudGVuMCQGCCsGAQUFBwEDBBgwFjAKBggrBgEFBQcLAjAIBgYEAI5GAQEwdAYIKwYBBQUHAQEEaDBmMCoGCCsGAQUFBzABhh5odHRwOi8vb2NzcC5xdW92YWRpc2dsb2JhbC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly90cnVzdC5xdW92YWRpc2dsb2JhbC5jb20vcXZldWNhZzIuY3J0MEYGCiqGSIb3LwEBCQEEODA2AgEBhjFodHRwOi8vdHNhMDEucXVvdmFkaXNnbG9iYWwuY29tL1RTUy9IdHRwVHNwU2VydmVyMBMGCiqGSIb3LwEBCQIEBTADAgEBMA4GA1UdDwEB/wQEAwIGQDAfBgNVHSMEGDAWgBTg+A751LXyf0kjtsN5x6M1H4Z6iDA7BgNVHR8ENDAyMDCgLqAshipodHRwOi8vY3JsLnF1b3ZhZGlzZ2xvYmFsLmNvbS9xdmV1Y2FnMi5jcmwwHQYDVR0OBBYEFDc3hgIFJTDamDEeQczI7Lot4uaVMA0GCSqGSIb3DQEBBQUAA4ICAQAZ8EZ48RgPimWY6s4LjZf0M2MfVJmNh06Jzmf6fzwYtDtQLKzIDk8ZtosqYpNNBoZIFICMZguGRAP3kuxWvwANmrb5HqyCzXThZVPJTmKEzZNhsDtKu1almYBszqX1UV7IgZp+jBZ7FyXzXrXyF1tzXQxHGobDV3AEE8vdzEZtwDGpZJPnEPCBzifdY+lrrL2rDBjbv0VeildgOP1SIlL7dh1O9f0T6T4ioS6uSdMt6b/OWjqHadsSpKry0A6pqfOqJWAhDiueqgVB7vus6o6sSmfG4SW9EWW+BEZ510HjlQU/JL3PPmf+Xs8s00sm77LJ/T/1hMUuGp6TtDsJe+pPBpCYvpm6xu9GL20CsArFWUeQ2MSnE1jsrb00UniCKslcM63pU7I0VcnWMJQSNY28OmnFESPK6s6zqoN0ZMLhwCVnahi6pouBwTb10M9/Anla9xOT42qxiLr14S2lHy18aLiBSQ4zJKNLqKvIrkjewSfW+00VLBYbPTmtrHpZUWiCGiRS2SviuEmPVbdWvsBUaq7OMLIfBD4nin1FlmYnaG9TVmWkwVYDsFmQepwPDqjPs4efAxzkgUFHWn0gQFbqxRocKrCsOvCDHOHORA97UWcThmgvr0Jl7ipvP4Px//tRp08blfy4GMzYls5WF8f6JaMrNGmpfPasd9NbpBNp7A==2016-04-08T10:00:36.390Z1URWKQVwWCb9HhMyozwlaYg1ejw=CN=QuoVadis EU Issuing Certification Authority G2,OU=Issuing Certification Authority,O=QuoVadis Trustlink B.V.,C=NL694395474722160626358886281620874695673047986886text/xml +diff -ruN a/client/TSL.qrc b/client/TSL.qrc +--- a/client/TSL.qrc 1970-01-01 03:00:00.000000000 +0300 ++++ b/client/TSL.qrc 2016-04-27 10:17:48.915014559 +0300 +@@ -0,0 +1 @@ ++tl-mp.xmlEE.xml diff --git a/pkgs/tools/security/qdigidoc/default.nix b/pkgs/tools/security/qdigidoc/default.nix new file mode 100644 index 00000000000..9894b203800 --- /dev/null +++ b/pkgs/tools/security/qdigidoc/default.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchurl, cmake, ccid, qttools, qttranslations, pkgconfig, pcsclite +, hicolor_icon_theme, libdigidocpp, opensc, shared_mime_info, openldap +, gettext, desktop_file_utils, makeWrapper }: + +stdenv.mkDerivation rec { + + version = "3.12.0.1442"; + name = "qdigidoc-${version}"; + + src = fetchurl { + url = "https://installer.id.ee/media/ubuntu/pool/main/q/qdigidoc/qdigidoc_3.12.0.1442.orig.tar.xz"; + sha256 = "1a7nsi28q57ic99hrb6x83qlvpqvzvk6acbfl6ncny2j4yaxa4jl"; + }; + + patches = [ ./certs.patch ]; + + unpackPhase = '' + mkdir src + tar xf $src -C src + cd src + ''; + + postInstall = '' + wrapProgram $out/bin/qdigidocclient \ + --prefix LD_LIBRARY_PATH : ${opensc}/lib/pkcs11/ + ''; + + buildInputs = [ cmake ccid qttools pkgconfig pcsclite qttranslations + hicolor_icon_theme libdigidocpp opensc shared_mime_info + openldap gettext desktop_file_utils makeWrapper + ]; + + meta = with stdenv.lib; { + description = "Qt based UI application for verifying and signing digital signatures"; + homepage = "http://www.id.ee/"; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; + }; +} diff --git a/pkgs/tools/security/qesteidutil/default.nix b/pkgs/tools/security/qesteidutil/default.nix new file mode 100644 index 00000000000..e05dee4ef9a --- /dev/null +++ b/pkgs/tools/security/qesteidutil/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, cmake, ccid, qttools, qttranslations, pkgconfig, pcsclite +, hicolor_icon_theme }: + +stdenv.mkDerivation rec { + + version = "3.12.2.1206"; + name = "qesteidutil-${version}"; + + src = fetchurl { + url = "https://installer.id.ee/media/ubuntu/pool/main/q/qesteidutil/qesteidutil_3.12.2.1206.orig.tar.xz"; + sha256 = "1v1i0jlycjjdg6wi4cpm1il5v1zn8dfj82mrfvsjy6j9rfzinkda"; + }; + + unpackPhase = '' + mkdir src + tar xf $src -C src + cd src + ''; + + buildInputs = [ cmake ccid qttools pkgconfig pcsclite qttranslations + hicolor_icon_theme + ]; + + meta = with stdenv.lib; { + description = "UI application for managing smart card PIN/PUK codes and certificates"; + homepage = "http://www.id.ee/"; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.jagajaga ]; + }; +} diff --git a/pkgs/tools/security/sshuttle/default.nix b/pkgs/tools/security/sshuttle/default.nix index 41119574767..e3d5c892d37 100644 --- a/pkgs/tools/security/sshuttle/default.nix +++ b/pkgs/tools/security/sshuttle/default.nix @@ -7,7 +7,7 @@ pythonPackages.buildPythonApplication rec { src = fetchurl { sha256 = "18hrwi2gyri1n2rq0nghvv7hfhbhh5h67am89524vc1yyx40vn3b"; - url = "https://pypi.python.org/packages/source/s/sshuttle/${name}.tar.gz"; + url = "mirror://pypi/s/sshuttle/${name}.tar.gz"; }; patches = [ ./sudo.patch ]; diff --git a/pkgs/tools/security/tor/default.nix b/pkgs/tools/security/tor/default.nix index 7ff1cd9cca5..8ac7472a2bc 100644 --- a/pkgs/tools/security/tor/default.nix +++ b/pkgs/tools/security/tor/default.nix @@ -25,25 +25,25 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { - homepage = http://www.torproject.org/; + meta = with stdenv.lib; { + homepage = https://www.torproject.org/; repositories.git = https://git.torproject.org/git/tor; - description = "Anonymous network router to improve privacy on the Internet"; + description = "Anonymizing overlay network"; - longDescription='' - Tor protects you by bouncing your communications around a distributed - network of relays run by volunteers all around the world: it prevents - somebody watching your Internet connection from learning what sites you - visit, and it prevents the sites you visit from learning your physical - location. Tor works with many of your existing applications, including - web browsers, instant messaging clients, remote login, and other - applications based on the TCP protocol. + longDescription = '' + Tor helps improve your privacy by bouncing your communications around a + network of relays run by volunteers all around the world: it makes it + harder for somebody watching your Internet connection to learn what sites + you visit, and makes it harder for the sites you visit to track you. Tor + works with many of your existing applications, including web browsers, + instant messaging clients, remote login, and other applications based on + the TCP protocol. ''; - license="mBSD"; + license = licenses.bsd3; - maintainers = with stdenv.lib.maintainers; - [ phreedom doublec thoughtpolice ]; - platforms = stdenv.lib.platforms.unix; + maintainers = with maintainers; + [ phreedom doublec thoughtpolice joachifm ]; + platforms = platforms.unix; }; } diff --git a/pkgs/tools/security/tor/tor-arm.nix b/pkgs/tools/security/tor/tor-arm.nix index 365379c8f6a..1857cfcbe22 100644 --- a/pkgs/tools/security/tor/tor-arm.nix +++ b/pkgs/tools/security/tor/tor-arm.nix @@ -1,19 +1,21 @@ -{ stdenv, fetchurl, python, setuptools, lsof, nettools, makeWrapper -, pythonPackages, ncurses }: +{ stdenv, fetchurl, makeWrapper +, pythonPackages, ncurses, lsof, nettools +}: stdenv.mkDerivation rec { - name = "tor-arm-${version}"; + name = "tor-arm-${version}"; version = "1.4.5.0"; src = fetchurl { - url = "https://www.atagar.com/arm/resources/static/arm-${version}.tar.bz2"; + url = "https://www.atagar.com/arm/resources/static/arm-${version}.tar.bz2"; sha256 = "1yi87gdglkvi1a23hv5c3k7mc18g0rw7b05lfcw81qyxhlapf3pw"; }; - buildInputs = - [ python pythonPackages.curses setuptools lsof nettools makeWrapper ]; + nativeBuildInputs = [ makeWrapper pythonPackages.python ]; - patchPhase = '' + outputs = [ "out" "man" ]; + + postPatch = '' substituteInPlace ./setup.py --replace "/usr/bin" "$out/bin" substituteInPlace ./src/util/connections.py \ --replace "lsof -wnPi" "${lsof}/bin/lsof" @@ -22,28 +24,29 @@ stdenv.mkDerivation rec { --replace "lsof -wnPi" "${lsof}/bin/lsof" substituteInPlace ./arm --replace '"$0" = /usr/bin/arm' 'true' - substituteInPlace ./arm --replace "python" "${python}/bin/python" + substituteInPlace ./arm --replace "python" "${pythonPackages.python}/bin/python" for i in ./install ./arm ./src/gui/controller.py ./src/cli/wizard.py ./src/resources/torrcOverride/override.h ./src/resources/torrcOverride/override.py ./src/resources/arm.1 ./setup.py; do substituteInPlace $i --replace "/usr/share" "$out/share" done + + # fixes man page installation + substituteInPlace ./setup.py --replace "src/resoureces" "src/resources" ''; installPhase = '' mkdir -p $out/share/arm $out/bin $out/libexec - python setup.py install --prefix=$out + python setup.py install --prefix=$out --docPath $out/share/doc/arm cp -R src/TorCtl $out/libexec - for i in $(cd $out/bin && ls); do - wrapProgram $out/bin/$i \ - --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pythonPackages.curses}):$out/libexec:$PYTHONPATH" \ - --set TERMINFO "${ncurses.out}/share/terminfo" \ - --set TERM "xterm" - done + wrapProgram $out/bin/arm \ + --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pythonPackages.curses}):$out/libexec:$PYTHONPATH" \ + --set TERMINFO "${ncurses.out}/share/terminfo" \ + --set TERM "xterm" ''; meta = { - description = "Anonymizing relay monitor for Tor"; + description = "A terminal status monitor for Tor relays"; homepage = "https://www.atagar.com/arm/"; license = stdenv.lib.licenses.gpl3; platforms = stdenv.lib.platforms.unix; diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index ef00a8538a9..c8f9c3dae97 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -1,28 +1,24 @@ -{ stdenv, fetchurl, buildEnv, makeDesktopItem -, xorg, alsaLib, dbus, dbus_glib, glib, gtk, atk, pango, freetype, fontconfig -, gdk_pixbuf, cairo, zlib}: +{ stdenv, fetchurl, makeDesktopItem +, libXrender, libX11, libXext, libXt, alsaLib, dbus, dbus_glib, glib, gtk +, atk, pango, freetype, fontconfig, gdk_pixbuf, cairo, zlib +}: + let - # isolated tor environment - torEnv = buildEnv { - name = "tor-env"; - paths = [ - stdenv.cc.cc zlib glib alsaLib dbus dbus_glib gtk atk pango freetype - fontconfig gdk_pixbuf cairo xorg.libXrender xorg.libX11 xorg.libXext - xorg.libXt - ]; - }; + libPath = stdenv.lib.makeLibraryPath [ + stdenv.cc.cc zlib glib alsaLib dbus dbus_glib gtk atk pango freetype + fontconfig gdk_pixbuf cairo libXrender libX11 libXext libXt + ]; +in - ldLibraryPath = ''${torEnv}/lib${stdenv.lib.optionalString stdenv.is64bit ":${torEnv}/lib64"}''; - -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "tor-browser-${version}"; - version = "5.5.4"; + version = "5.5.5"; 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 - "0sjx2r7z7s3x1ygs9xak1phng13jcf4d5pcfyfrfsrd8kb1yn8xa" else - "0w9wk9hk57hyhhx7l4sr2x64ki9882fr6py2can1slr7kbb4mhpb"; + "0k6v41j880fb4zdxk1v13kmizdaz5rwvi5lskdbdi68iml4p53gj" else + "04mqjmnxwa75yi8gmdwadkzrzikgxn08bkvr50zdm7id9fj4nkza"; }; desktopItem = makeDesktopItem { @@ -38,16 +34,16 @@ in stdenv.mkDerivation rec { patchPhase = '' patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" Browser/firefox patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" Browser/TorBrowser/Tor/tor + + sed -e "s,./TorBrowser,$out/share/tor-browser/Browser/TorBrowser,g" -i Browser/TorBrowser/Data/Tor/torrc-defaults ''; doCheck = true; checkPhase = '' - # Just do a simple test if all libraries get loaded by running help on - # firefox and tor echo "Checking firefox..." - LD_LIBRARY_PATH=${ldLibraryPath} Browser/firefox --help 1> /dev/null + LD_LIBRARY_PATH=${libPath} Browser/firefox --help 1> /dev/null echo "Checking tor..." - LD_LIBRARY_PATH=${torEnv}/lib:Browser/TorBrowser/Tor Browser/TorBrowser/Tor/tor --help 1> /dev/null + LD_LIBRARY_PATH=${libPath}:Browser/TorBrowser/Tor Browser/TorBrowser/Tor/tor --help 1> /dev/null ''; installPhase = '' @@ -56,15 +52,17 @@ in stdenv.mkDerivation rec { cp -R * $out/share/tor-browser cat > "$out/bin/tor-browser" << EOF - #!${stdenv.shell} + #! ${stdenv.shell} + unset SESSION_MANAGER export HOME="\$HOME/.torbrowser4" if [ ! -d \$HOME ]; then mkdir -p \$HOME && cp -R $out/share/tor-browser/Browser/TorBrowser/Data \$HOME/ && chmod -R +w \$HOME echo "pref(\"extensions.torlauncher.tordatadir_path\", \"\$HOME/Data/Tor/\");" >> \ ~/Data/Browser/profile.default/preferences/extension-overrides.js fi - export LD_LIBRARY_PATH=${ldLibraryPath}:$out/share/tor-browser/Browser/TorBrowser/Tor - $out/share/tor-browser/Browser/firefox -no-remote -profile ~/Data/Browser/profile.default "$@" + export FONTCONFIG_PATH=\$HOME/Data/fontconfig + export LD_LIBRARY_PATH=${libPath}:$out/share/tor-browser/Browser/TorBrowser/Tor + exec $out/share/tor-browser/Browser/firefox --class "Tor Browser" -no-remote -profile ~/Data/Browser/profile.default "\$@" EOF chmod +x $out/bin/tor-browser @@ -75,12 +73,10 @@ in stdenv.mkDerivation rec { cp Browser/browser/icons/mozicon128.png $out/share/pixmaps/torbrowser.png ''; - buildInputs = [ stdenv ]; - meta = with stdenv.lib; { description = "Tor Browser Bundle"; homepage = https://www.torproject.org/; platforms = platforms.linux; - maintainers = with maintainers; [ offline matejc doublec thoughtpolice ]; + maintainers = with maintainers; [ offline matejc doublec thoughtpolice joachifm ]; }; } diff --git a/pkgs/tools/security/torbutton/default.nix b/pkgs/tools/security/torbutton/default.nix deleted file mode 100644 index 05bab06d382..00000000000 --- a/pkgs/tools/security/torbutton/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ stdenv, fetchgit, zip }: -stdenv.mkDerivation rec { - - name = "torbutton-${version}.xpi"; - version = "1.6.1"; - - src = fetchgit { - url = https://git.torproject.org/torbutton.git; - rev = "refs/tags/${version}"; - sha256 = "0ypzrl8nhckrgh45rcwsjds1jnzz3w5nr09b926a4h3a5njammlv"; - }; - - buildInputs = [ zip ]; - - buildPhase = '' - mkdir pkg - ./makexpi.sh - ''; - - installPhase = "cat pkg/*.xpi > $out"; - - meta = with stdenv.lib; { - homepage = https://www.torproject.org/torbutton/; - description = "Part of the Tor Browser Bundle"; - longDescription = '' - The component in Tor Browser Bundle that takes care of application-level - security and privacy concerns in Firefox. To keep you safe, Torbutton - disables many types of active content. - ''; - license = licenses.mit; - maintainers = [ maintainers.phreedom ]; - platforms = platforms.linux; - }; -} diff --git a/pkgs/tools/system/awstats/default.nix b/pkgs/tools/system/awstats/default.nix index f4a14155d68..2883a364548 100644 --- a/pkgs/tools/system/awstats/default.nix +++ b/pkgs/tools/system/awstats/default.nix @@ -14,7 +14,8 @@ perlPackages.buildPerlPackage rec { --replace /usr/share/awstats/ "$out/wwwroot/cgi-bin/" ''; - outputs = [ "out" "bin" "doc" ]; + outputs = [ "out" "bin" "doc" ]; # bin just links the user-run executable + propagatedBuildOutputs = [ ]; # otherwise out propagates bin -> cycle buildInputs = with perlPackages; [ ]; # plugins will need some diff --git a/pkgs/tools/system/runit/default.nix b/pkgs/tools/system/runit/default.nix index 28c68f52aaf..70c49335eaf 100644 --- a/pkgs/tools/system/runit/default.nix +++ b/pkgs/tools/system/runit/default.nix @@ -13,8 +13,12 @@ stdenv.mkDerivation rec { patches = [ ./Makefile.patch ]; - buildPhase = '' + postPatch = '' cd ${name} + sed -i 's,-static,,g' src/Makefile + ''; + + buildPhase = '' make -C 'src' ''; diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix index 692fd250f83..17384da9881 100644 --- a/pkgs/tools/system/stress-ng/default.nix +++ b/pkgs/tools/system/stress-ng/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "stress-ng-${version}"; - version = "0.05.18"; + version = "0.05.25"; src = fetchurl { - sha256 = "13x0cc4gfakz7vikc6b2vjbk1gw5awyp9i6843di7lnkx1ba177r"; + sha256 = "13c94g06aswlhbv0cpsdrzym9jmbabkdm949j3h935gfdl1625v5"; url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz"; }; diff --git a/pkgs/tools/system/thermald/default.nix b/pkgs/tools/system/thermald/default.nix index dd28d5b2b1d..baa18aacdfb 100644 --- a/pkgs/tools/system/thermald/default.nix +++ b/pkgs/tools/system/thermald/default.nix @@ -1,13 +1,14 @@ { stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, dbus_libs, dbus_glib, libxml2 }: stdenv.mkDerivation rec { - version = "1.4.3"; name = "thermald-${version}"; + version = "1.5.3"; + src = fetchFromGitHub { owner = "01org"; repo = "thermal_daemon"; rev = "v${version}"; - sha256 = "1wrbydmw1jc5dcjawhhsa52hilzajl9n849i09d2nfilv3qcqqi9"; + sha256 = "0k10sl262d9slrln1vkgsxlr1pnfxzd3ycs552bl7ynf0zxpl48h"; }; buildInputs = [ autoconf automake libtool pkgconfig dbus_libs dbus_glib libxml2 ]; @@ -30,7 +31,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Thermal Daemon"; - homepage = https://01.org/linux-thermal-daemon; + homepage = "https://01.org/linux-thermal-daemon"; license = licenses.gpl2; platforms = platforms.linux; maintainers = with maintainers; [ abbradar ]; diff --git a/pkgs/tools/text/grin/default.nix b/pkgs/tools/text/grin/default.nix index da3a77e8d2e..149af7baa2d 100644 --- a/pkgs/tools/text/grin/default.nix +++ b/pkgs/tools/text/grin/default.nix @@ -5,7 +5,7 @@ pythonPackages.buildPythonApplication rec { namePrefix = ""; src = fetchurl { - url = "https://pypi.python.org/packages/source/g/grin/${name}.tar.gz"; + url = "mirror://pypi/g/grin/${name}.tar.gz"; sha256 = "1swzwb17wibam8jszdv98h557hlx44pg6psv6rjz7i33qlxk0fdz"; }; diff --git a/pkgs/tools/text/groff/default.nix b/pkgs/tools/text/groff/default.nix index e08c10fd9ed..728e9de8b48 100644 --- a/pkgs/tools/text/groff/default.nix +++ b/pkgs/tools/text/groff/default.nix @@ -32,13 +32,12 @@ stdenv.mkDerivation rec { ''; }; + # Remove example output with (random?) colors and creation date + # to avoid non-determinism in the output. postInstall = '' - # Remove example output with (random?) colors to - # avoid non-determinism in the output - rm $doc/share/doc/examples/hdtbl/*color*ps - # Remove creation date - find $doc/share/doc/ -type f -print0 | xargs -0 sed -i -e 's/%%CreationDate: .*//' - ''; + rm $doc/share/doc/groff/examples/hdtbl/*color*ps + find $doc/share/doc/groff/ -type f -print0 | xargs -0 sed -i -e 's/%%CreationDate: .*//' + ''; meta = with stdenv.lib; { homepage = http://www.gnu.org/software/groff/; diff --git a/pkgs/tools/typesetting/tex/texlive-new/default.nix b/pkgs/tools/typesetting/tex/texlive-new/default.nix index a2f0bf706c8..718137a6251 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/default.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/default.nix @@ -114,11 +114,15 @@ let ("${mirror}/pub/tex/historic/systems/texlive/${bin.texliveYear}/tlnet-final/archive"); # beware: standard mirrors http://mirror.ctan.org/ don't have releases mirror = "http://ftp.math.utah.edu"; # ftp://tug.ctan.org no longer works, although same IP - in '' - tar -xf '${ fetchurl { inherit url md5; } }' \ + in + rec { + src = fetchurl { inherit url md5; }; + unpackCmd = '' + tar -xf '${src}' \ '--strip-components=${toString stripPrefix}' \ -C "$out" --anchored --exclude=tlpkg --keep-old-files '' + postUnpack; + }; # create a derivation that contains unpacked upstream TL packages mkPkgs = { pname, tlType, version, pkgList }@args: @@ -129,10 +133,14 @@ let let tlName = "${mkUrlName args}-${version}"; fixedHash = fixedHashes.${tlName} or null; # be graceful about missing hashes + pkgs = map unpackPkg (fastUnique (a: b: a.md5 < b.md5) pkgList); in runCommand "texlive-${tlName}" ( { # lots of derivations, not meant to be cached preferLocalBuild = true; allowSubstitutes = false; - passthru = { inherit pname tlType version; }; + passthru = { + inherit pname tlType version; + srcs = map (pkg: pkg.src) pkgs; + }; } // lib.optionalAttrs (fixedHash != null) { outputHash = fixedHash; outputHashAlgo = "sha1"; @@ -141,7 +149,7 @@ let ) ( '' mkdir "$out" - '' + lib.concatMapStrings unpackPkg (fastUnique (a: b: a.md5 < b.md5) pkgList) + '' + lib.concatMapStrings (pkg: pkg.unpackCmd) pkgs ); # combine a set of TL packages into a single TL meta-package diff --git a/pkgs/tools/typesetting/tex/texlive/default.nix b/pkgs/tools/typesetting/tex/texlive/default.nix index 48a5ae8d649..3a93c6445a7 100644 --- a/pkgs/tools/typesetting/tex/texlive/default.nix +++ b/pkgs/tools/typesetting/tex/texlive/default.nix @@ -65,7 +65,7 @@ rec { mkdir -p $out/libexec/ mv $out/bin $out/libexec/$(uname -m) mkdir -p $out/bin - for i in "$out/libexec/"* "$out/libexec/"*/* ; do + for i in "$out/libexec/"* "$out/libexec/"*"/"* ; do test \( \! -d "$i" \) -a \( -x "$i" -o -L "$i" \) || continue if [ -x "$i" ]; then @@ -105,7 +105,7 @@ rec { PATH=$PATH:$out/bin mktexlsr $out/share/texmf* '' + stdenv.lib.optionalString stdenv.isDarwin '' - for prog in $out/bin/*; do + for prog in "$out/bin/"*; do wrapProgram "$prog" --prefix DYLD_LIBRARY_PATH : "${poppler.out}/lib" done '' ) [ "minInit" "defEnsureDir" "doUnpack" "doMakeInstall" "promoteLibexec" "patchShebangsInterim"]; @@ -156,5 +156,6 @@ rec { maintainers = with maintainers; [ lovek323 raskin jwiegley ]; platforms = platforms.unix; hydraPlatforms = []; + broken = true; # https://github.com/NixOS/nixpkgs/issues/14807 }; } diff --git a/pkgs/tools/video/mjpegtools/default.nix b/pkgs/tools/video/mjpegtools/default.nix index bfffbae65b5..0da94532359 100644 --- a/pkgs/tools/video/mjpegtools/default.nix +++ b/pkgs/tools/video/mjpegtools/default.nix @@ -1,4 +1,6 @@ -{ stdenv, fetchurl, gtk, libdv, libjpeg, libpng, libX11, pkgconfig, SDL, SDL_gfx }: +{ stdenv, lib, fetchurl, gtk, libdv, libjpeg, libpng, libX11, pkgconfig, SDL, SDL_gfx +, withMinimal ? false +}: # TODO: # - make dependencies optional @@ -13,7 +15,24 @@ stdenv.mkDerivation rec { sha256 = "01y4xpfdvd4zgv6fmcjny9mr1gbfd4y2i4adp657ydw6fqyi8kw6"; }; - buildInputs = [ gtk libdv libjpeg libpng libX11 pkgconfig SDL SDL_gfx ]; - hardeningDisable = [ "format" ]; + + buildInputs = [ libdv libjpeg libpng pkgconfig ] + ++ lib.optional (!withMinimal) [ gtk libX11 SDL SDL_gfx ]; + + postPatch = '' + sed -i -e '/ARCHFLAGS=/s:=.*:=:' configure + ''; + + enableParallelBuilding = true; + + outputs = [ "out" "lib" ]; + + meta = with stdenv.lib; { + description = "A suite of programs for processing MPEG or MJPEG video"; + homepage = http://mjpeg.sourceforge.net/; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = with maintainers; [ abbradar ]; + }; } diff --git a/pkgs/tools/video/vnc2flv/default.nix b/pkgs/tools/video/vnc2flv/default.nix index 3675b5ab091..bb72fd2911f 100644 --- a/pkgs/tools/video/vnc2flv/default.nix +++ b/pkgs/tools/video/vnc2flv/default.nix @@ -5,7 +5,7 @@ pythonPackages.buildPythonApplication rec { namePrefix = ""; src = fetchurl { - url = "http://pypi.python.org/packages/source/v/vnc2flv/${name}.tar.gz"; + url = "mirror://pypi/v/vnc2flv/${name}.tar.gz"; sha256 = "14d4nm8yim0bm0nd3wyj7z4zdsg5zk3d9bhhvwdc36x03r8d0sbq"; }; diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 23e05eb6c9e..266313c81e1 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -30,6 +30,7 @@ doNotDisplayTwice rec { bundler_HEAD = bundler; # added 2015-11-15 cheetahTemplate = pythonPackages.cheetah; # 2015-06-15 clangAnalyzer = clang-analyzer; # added 2015-02-20 + clawsMail = claws-mail; # added 2016-04-29 conkerorWrapper = conkeror; # added 2015-01 cool-old-term = cool-retro-term; # added 2015-01-31 cupsBjnp = cups-bjnp; # added 2016-01-02 @@ -44,6 +45,7 @@ doNotDisplayTwice rec { firefoxWrapper = firefox; # 2015-09 fuse_exfat = exfat; # 2015-09-11 gettextWithExpat = gettext; # 2016-02-19 + git-hub = gitAndTools.git-hub; # added 2016-04-29 grantlee5 = qt5.grantlee; # added 2015-12-19 gupnptools = gupnp-tools; # added 2015-12-19 htmlTidy = html-tidy; # added 2014-12-06 @@ -59,6 +61,7 @@ doNotDisplayTwice rec { manpages = man-pages; # added 2015-12-06 midoriWrapper = midori; # added 2015-01 mlt-qt5 = qt5.mlt; # added 2015-12-19 + module_init_tools = kmod; # added 2016-04-22 mssys = ms-sys; # added 2015-12-13 multipath_tools = multipath-tools; # added 2016-01-21 mupen64plus1_5 = mupen64plus; # added 2016-02-12 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3e89547389f..e2753f19733 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -156,8 +156,6 @@ in dispad = callPackage ../tools/X11/dispad { }; - scatterOutputHook = makeSetupHook {} ../build-support/setup-hooks/scatter_output.sh; - vsenv = callPackage ../build-support/vsenv { vs = vs90wrapper; }; @@ -328,6 +326,8 @@ in useOldCXXAbi = makeSetupHook { } ../build-support/setup-hooks/use-old-cxx-abi.sh; + iconConvTools = callPackage ../build-support/icon-conv-tools {}; + ### TOOLS @@ -523,6 +523,8 @@ in qt4Support = config.avahi.qt4Support or false; }; + avro-cpp = callPackage ../development/libraries/avro-c++ { }; + aws = callPackage ../tools/virtualization/aws { }; aws_mturk_clt = callPackage ../tools/misc/aws-mturk-clt { }; @@ -607,7 +609,9 @@ in boxfs = callPackage ../tools/filesystems/boxfs { }; - brasero = callPackage ../tools/cd-dvd/brasero { }; + brasero-original = lowPrio (callPackage ../tools/cd-dvd/brasero { }); + + brasero = callPackage ../tools/cd-dvd/brasero/wrapper.nix { }; brltty = callPackage ../tools/misc/brltty { alsaSupport = (!stdenv.isDarwin); @@ -752,6 +756,8 @@ in elementary-icon-theme = callPackage ../data/icons/elementary-icon-theme { }; + emby = callPackage ../servers/emby { }; + enca = callPackage ../tools/text/enca { }; ent = callPackage ../tools/misc/ent { }; @@ -762,8 +768,12 @@ in fastJson = callPackage ../development/libraries/fastjson { }; + filebench = callPackage ../tools/misc/filebench { }; + fop = callPackage ../tools/typesetting/fop { }; + fsmark = callPackage ../tools/misc/fsmark { }; + fzf = goPackages.fzf.bin // { outputs = [ "bin" ]; }; gencfsm = callPackage ../tools/security/gencfsm { }; @@ -1143,6 +1153,8 @@ in crackxls = callPackage ../tools/security/crackxls { }; + createrepo_c = callPackage ../tools/package-management/createrepo_c { }; + cromfs = callPackage ../tools/archivers/cromfs { }; cron = callPackage ../tools/system/cron { }; @@ -1635,8 +1647,6 @@ in gifsicle = callPackage ../tools/graphics/gifsicle { }; - git-hub = callPackage ../applications/version-management/git-and-tools/git-hub { }; - git-lfs = goPackages.git-lfs.bin // { outputs = [ "bin" ]; }; gitfs = callPackage ../tools/filesystems/gitfs { }; @@ -1735,6 +1745,8 @@ in grails = callPackage ../development/web/grails { jdk = null; }; + graylog = callPackage ../tools/misc/graylog { }; + gprof2dot = callPackage ../development/tools/profiling/gprof2dot { # Using pypy provides significant performance improvements (~2x) pythonPackages = pypyPackages; @@ -1933,7 +1945,7 @@ in iasl = callPackage ../development/compilers/iasl { }; - iannix = callPackage ../applications/audio/iannix { }; + iannix = qt5.callPackage ../applications/audio/iannix { }; icecast = callPackage ../servers/icecast { }; @@ -2120,6 +2132,8 @@ in lua = lua5_2_compat; }; + ltwheelconf = callPackage ../applications/misc/ltwheelconf { }; + kippo = callPackage ../servers/kippo { }; kzipmix = callPackage_i686 ../tools/compression/kzipmix { }; @@ -2154,17 +2168,21 @@ in ninka = callPackage ../development/tools/misc/ninka { }; - nodejs-5_x = callPackage ../development/web/nodejs/v5.nix { + nodejs-0_10 = callPackage ../development/web/nodejs/v0_10.nix { libtool = darwin.cctools; + inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices Carbon Foundation; }; nodejs-4_x = callPackage ../development/web/nodejs/v4.nix { libtool = darwin.cctools; }; - nodejs-0_10 = callPackage ../development/web/nodejs/v0_10.nix { + nodejs-5_x = callPackage ../development/web/nodejs/v5.nix { + libtool = darwin.cctools; + }; + + nodejs-6_x = callPackage ../development/web/nodejs/v6.nix { libtool = darwin.cctools; - inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices Carbon Foundation; }; nodejs = if stdenv.system == "armv5tel-linux" then @@ -2251,6 +2269,8 @@ in inherit (perlPackages) mimeConstruct; }; + logmein-hamachi = callPackage ../tools/networking/logmein-hamachi { }; + logkeys = callPackage ../tools/security/logkeys { }; logrotate = callPackage ../tools/system/logrotate { }; @@ -2265,6 +2285,8 @@ in lrzip = callPackage ../tools/compression/lrzip { }; + lsb-release = callPackage ../os-specific/linux/lsb-release { }; + lshw = callPackage ../tools/system/lshw { }; lxc = callPackage ../os-specific/linux/lxc { }; @@ -2368,7 +2390,11 @@ in minixml = callPackage ../development/libraries/minixml { }; - mjpegtools = callPackage ../tools/video/mjpegtools { }; + mjpegtoolsFull = callPackage ../tools/video/mjpegtools { }; + + mjpegtools = self.mjpegtoolsFull.override { + withMinimal = true; + }; mkcue = callPackage ../tools/cd-dvd/mkcue { }; @@ -2769,6 +2795,8 @@ in patchage = callPackage ../applications/audio/patchage { }; + pcapfix = callPackage ../tools/networking/pcapfix { }; + pbzip2 = callPackage ../tools/compression/pbzip2 { }; pciutils = callPackage ../tools/system/pciutils { }; @@ -2910,6 +2938,8 @@ in proxytunnel = callPackage ../tools/misc/proxytunnel { }; + pws = callPackage ../tools/misc/pws { }; + cntlm = callPackage ../tools/networking/cntlm { }; pastebinit = callPackage ../tools/misc/pastebinit { }; @@ -2928,7 +2958,7 @@ in pwnat = callPackage ../tools/networking/pwnat { }; - pyatspi = callPackage ../development/python-modules/pyatspi { }; + pyatspi = python3Packages.pyatspi; pycangjie = pythonPackages.pycangjie; @@ -2960,13 +2990,15 @@ in qalculate-gtk = callPackage ../applications/science/math/qalculate-gtk { }; - qastools = callPackage ../tools/audio/qastools { - qt = qt4; - }; + qastools = callPackage ../tools/audio/qastools { }; + + qesteidutil = qt5.callPackage ../tools/security/qesteidutil { } ; + qdigidoc = qt5.callPackage ../tools/security/qdigidoc { } ; + esteidfirefoxplugin = callPackage ../applications/networking/browsers/mozilla-plugins/esteidfirefoxplugin { }; + qgifer = callPackage ../applications/video/qgifer { giflib = giflib_4_1; - qt = qt4; }; qhull = callPackage ../development/libraries/qhull { }; @@ -2977,9 +3009,7 @@ in qprint = callPackage ../tools/text/qprint { }; - qscintilla = callPackage ../development/libraries/qscintilla { - qt = qt4; - }; + qscintilla = callPackage ../development/libraries/qscintilla { }; qshowdiff = callPackage ../tools/text/qshowdiff { }; @@ -3085,6 +3115,8 @@ in rpm = callPackage ../tools/package-management/rpm { }; + rpm-ostree = callPackage ../tools/misc/rpm-ostree { }; + rpmextract = callPackage ../tools/archivers/rpmextract { }; rrdtool = callPackage ../tools/misc/rrdtool { }; @@ -3136,9 +3168,11 @@ in screen-message = callPackage ../tools/X11/screen-message { }; screencloud = callPackage ../applications/graphics/screencloud { - quazip = qt5.quazip.override { qt = qt4; }; + quazip = quazip_qt4; }; + quazip_qt4 = self.qt5.quazip.override { qt = qt4; qmakeHook = qmake4Hook; }; + scrot = callPackage ../tools/graphics/scrot { }; scrypt = callPackage ../tools/security/scrypt { }; @@ -3151,6 +3185,8 @@ in seccure = callPackage ../tools/security/seccure { }; + securefs = callPackage ../tools/filesystems/securefs { }; + setroot = callPackage ../tools/X11/setroot { }; setserial = callPackage ../tools/system/setserial { }; @@ -3187,6 +3223,7 @@ in silc_server = callPackage ../servers/silc-server { }; silver-searcher = callPackage ../tools/text/silver-searcher { }; + ag = self.silver-searcher; simplescreenrecorder = callPackage ../applications/video/simplescreenrecorder { }; @@ -3419,9 +3456,9 @@ in tor-arm = callPackage ../tools/security/tor/tor-arm.nix { }; - torbutton = callPackage ../tools/security/torbutton { }; - - torbrowser = callPackage ../tools/security/tor/torbrowser.nix { }; + torbrowser = callPackage ../tools/security/tor/torbrowser.nix { + inherit (xorg) libXrender libX11 libXext libXt; + }; touchegg = callPackage ../tools/inputmethods/touchegg { }; @@ -3639,6 +3676,7 @@ in }; truecrypt = callPackage ../applications/misc/truecrypt { + stdenv = overrideInStdenv stdenv [ useOldCXXAbi ]; wxGUI = config.truecrypt.wxGUI or true; }; @@ -3666,6 +3704,8 @@ in xarchiver = callPackage ../tools/archivers/xarchiver { }; + xbanish = callPackage ../tools/X11/xbanish { }; + xbrightness = callPackage ../tools/X11/xbrightness { }; xfstests = callPackage ../tools/misc/xfstests { }; @@ -3984,6 +4024,8 @@ in ccl = callPackage ../development/compilers/ccl { }; + chez = callPackage ../development/compilers/chez { }; + clang = llvmPackages.clang; clang_38 = llvmPackages_38.clang; @@ -4322,7 +4364,6 @@ in hxcpp = callPackage ../development/compilers/haxe/hxcpp.nix { }; hhvm = callPackage ../development/compilers/hhvm { }; - hiphopvm = self.hhvm; /* Compatibility alias */ hop = callPackage ../development/compilers/hop { }; @@ -5066,13 +5107,13 @@ in rtags = callPackage ../development/tools/rtags/default.nix {}; - rustcMaster = callPackage ../development/compilers/rustc/head.nix {}; + rustcMaster = lowPrio (callPackage ../development/compilers/rustc/head.nix {}); rustc = callPackage ../development/compilers/rustc {}; rustPlatform = rustStable; rustStable = recurseIntoAttrs (makeRustPlatform cargo rustStable); - rustUnstable = recurseIntoAttrs (makeRustPlatform cargoUnstable rustUnstable); + rustUnstable = lowPrio (recurseIntoAttrs (makeRustPlatform cargoUnstable rustUnstable)); # rust platform to build cargo itself (with cargoSnapshot) rustCargoPlatform = makeRustPlatform (cargoSnapshot rustc) rustCargoPlatform; @@ -5160,11 +5201,9 @@ in vala_0_28 = callPackage ../development/compilers/vala/0.28.nix { }; - visualcpp = callPackage ../development/compilers/visual-c++ { }; - vs90wrapper = callPackage ../development/compilers/vs90wrapper { }; - win32hello = callPackage ../development/compilers/visual-c++/test { }; + webdsl = callPackage ../development/compilers/webdsl { }; wla-dx = callPackage ../development/compilers/wla-dx { }; @@ -5274,14 +5313,16 @@ in rebar = callPackage ../development/tools/build-managers/rebar { }; rebar3-open = callPackage ../development/tools/build-managers/rebar3 { hermeticRebar3 = false; }; rebar3 = callPackage ../development/tools/build-managers/rebar3 { hermeticRebar3 = true; }; - rebar3-nix-bootstrap = callPackage ../development/tools/erlang/rebar3-nix-bootstrap { }; - fetchHex = callPackage ../development/tools/build-managers/rebar3/fetch-hex.nix { }; + hexRegistrySnapshot = callPackage ../development/beam-modules/hex-registry-snapshot.nix { }; + fetchHex = callPackage ../development/beam-modules/fetch-hex.nix { }; - erlangPackages = callPackage ../development/erlang-modules { }; - cuter = erlangPackages.callPackage ../development/tools/erlang/cuter { }; - hex2nix = erlangPackages.callPackage ../development/tools/erlang/hex2nix { }; + beamPackages = callPackage ../development/beam-modules { }; + hex2nix = beamPackages.callPackage ../development/tools/erlang/hex2nix { }; + cuter = callPackage ../development/tools/erlang/cuter { }; - elixir = callPackage ../development/interpreters/elixir { }; + relxExe = callPackage ../development/tools/erlang/relx-exe {}; + + elixir = callPackage ../development/interpreters/elixir { debugInfo = true; }; groovy = callPackage ../development/interpreters/groovy { }; @@ -5629,11 +5670,9 @@ in srecord = callPackage ../development/tools/misc/srecord { }; - windowssdk = ( - callPackage ../development/misc/windows-sdk {}); - xidel = callPackage ../tools/text/xidel { }; + ### DEVELOPMENT / TOOLS activator = callPackage ../development/tools/activator { }; @@ -5658,10 +5697,7 @@ in astyle = callPackage ../development/tools/misc/astyle { }; - electron = callPackage ../development/tools/electron { - gconf = pkgs.gnome.GConf; - }; - + electron = callPackage ../development/tools/electron { }; autobuild = callPackage ../development/tools/misc/autobuild { }; @@ -5670,6 +5706,7 @@ in autoconf-archive = callPackage ../development/tools/misc/autoconf-archive { }; autoconf213 = callPackage ../development/tools/misc/autoconf/2.13.nix { }; + autoconf264 = callPackage ../development/tools/misc/autoconf/2.64.nix { }; autocutsel = callPackage ../tools/X11/autocutsel{ }; @@ -5743,16 +5780,18 @@ in rustPlatform = rustCargoPlatform; }; - cargoUnstable = callPackage ../development/tools/build-managers/cargo/head.nix { + cargoUnstable = lowPrio (callPackage ../development/tools/build-managers/cargo/head.nix { rustPlatform = rustUnstableCargoPlatform; - }; + }); cargoSnapshot = rustc: callPackage ../development/tools/build-managers/cargo/snapshot.nix { inherit rustc; }; - casperjs = callPackage ../development/tools/casperjs { }; + casperjs = callPackage ../development/tools/casperjs { + inherit (texFunctions) fontsConf; + }; cbrowser = callPackage ../development/tools/misc/cbrowser { }; @@ -6034,6 +6073,8 @@ in jenkins-job-builder = pythonPackages.jenkins-job-builder; + kconfig-frontends = callPackage ../development/tools/misc/kconfig-frontends { }; + kcov = callPackage ../development/tools/analysis/kcov { }; lcov = callPackage ../development/tools/analysis/lcov { }; @@ -6399,6 +6440,14 @@ in beecrypt = callPackage ../development/libraries/beecrypt { }; + beignet = callPackage ../development/libraries/beignet { + inherit (llvmPackages) clang-unwrapped; + inherit (xlibs) libX11; + inherit (xorg) libXfixes libpthreadstubs libXdmcp libXdamage libXxf86vm; + inherit (python3Packages) python; + inherit (purePackages) gl; + }; + belle-sip = callPackage ../development/libraries/belle-sip { }; bobcat = callPackage ../development/libraries/bobcat { }; @@ -6450,6 +6499,8 @@ in celt_0_7 = callPackage ../development/libraries/celt/0.7.nix {}; celt_0_5_1 = callPackage ../development/libraries/celt/0.5.1.nix {}; + cegui = callPackage ../development/libraries/cegui {}; + cgal = callPackage ../development/libraries/CGAL {}; cgui = callPackage ../development/libraries/cgui {}; @@ -6675,7 +6726,9 @@ in vid-stab = if stdenv.isDarwin then null else vid-stab; x265 = if stdenv.isDarwin then null else x265; xavs = if stdenv.isDarwin then null else xavs; - inherit (darwin.apple_sdk.frameworks) Cocoa CoreServices; + inherit (darwin) CF; + inherit (darwin.apple_sdk.frameworks) Cocoa CoreServices AVFoundation + MediaToolbox VideoDecodeAcceleration; }; ffmpegthumbnailer = callPackage ../development/libraries/ffmpegthumbnailer { }; @@ -7080,6 +7133,8 @@ in hawknl = callPackage ../development/libraries/hawknl { }; + haxor-news = callPackage ../applications/misc/haxor-news { }; + herqq = callPackage ../development/libraries/herqq { }; heyefi = self.haskellPackages.heyefi; @@ -7296,6 +7351,8 @@ in libbson = callPackage ../development/libraries/libbson { }; + libburn = callPackage ../development/libraries/libburn { }; + libcaca = callPackage ../development/libraries/libcaca { }; libcanberra = callPackage ../development/libraries/libcanberra { }; @@ -7344,7 +7401,7 @@ in libcm = callPackage ../development/libraries/libcm { }; - libcommuni = callPackage ../development/libraries/libcommuni { }; + libcommuni = qt5.callPackage ../development/libraries/libcommuni { }; libconfuse = callPackage ../development/libraries/libconfuse { }; @@ -7400,6 +7457,10 @@ in mesa = null; }; + libdigidoc = callPackage ../development/libraries/libdigidoc { }; + + libdigidocpp = callPackage ../development/libraries/libdigidocpp { }; + libdiscid = callPackage ../development/libraries/libdiscid { }; libdivsufsort = callPackage ../development/libraries/libdivsufsort { }; @@ -7500,7 +7561,9 @@ in libechonest = callPackage ../development/libraries/libechonest { }; - libev = callPackage ../development/libraries/libev { }; + libev = callPackage ../development/libraries/libev { + fetchurl = fetchurlBoot; + }; libevent = callPackage ../development/libraries/libevent { }; @@ -7565,6 +7628,8 @@ in libharu = callPackage ../development/libraries/libharu { }; + libhif = callPackage ../tools/package-management/libhif { sphinx = python27Packages.sphinx; }; + libHX = callPackage ../development/libraries/libHX { }; libibmad = callPackage ../development/libraries/libibmad { }; @@ -7641,6 +7706,8 @@ in librelp = callPackage ../development/libraries/librelp { }; + librepo = callPackage ../tools/package-management/librepo { }; + libresample = callPackage ../development/libraries/libresample {}; librevenge = callPackage ../development/libraries/librevenge {}; @@ -7651,6 +7718,8 @@ in libsieve = callPackage ../development/libraries/libsieve { }; + libsolv = callPackage ../development/libraries/libsolv { }; + libspectre = callPackage ../development/libraries/libspectre { }; libgsf = callPackage ../development/libraries/libgsf { }; @@ -7689,6 +7758,8 @@ in graphviz = graphviz-nox; }; + libisofs = callPackage ../development/libraries/libisofs { }; + libiptcdata = callPackage ../development/libraries/libiptcdata { }; libjpeg_original = callPackage ../development/libraries/libjpeg { }; @@ -7975,12 +8046,9 @@ in then darwin.libunwind else callPackage ../development/libraries/libunwind { }; - libuvVersions = recurseIntoAttrs (callPackage ../development/libraries/libuv { - automake = automake113x; # fails with 14 + libuv = callPackage ../development/libraries/libuv { inherit (darwin.apple_sdk.frameworks) ApplicationServices CoreServices; - }); - - libuv = self.libuvVersions.v1_7_5; + }; libv4l = lowPrio (self.v4l_utils.override { alsaLib = null; @@ -8218,6 +8286,8 @@ in mythes = callPackage ../development/libraries/mythes { }; + nanoflann = callPackage ../development/libraries/nanoflann { }; + nanomsg = callPackage ../development/libraries/nanomsg { }; notify-sharp = callPackage ../development/libraries/notify-sharp { }; @@ -8240,11 +8310,10 @@ in newt = callPackage ../development/libraries/newt { }; - nghttp2 = callPackage ../development/libraries/nghttp2 { }; - libnghttp2 = self.nghttp2.override { - prefix = "lib"; + nghttp2 = callPackage ../development/libraries/nghttp2 { fetchurl = fetchurlBoot; }; + libnghttp2 = nghttp2.lib; nix-plugins = callPackage ../development/libraries/nix-plugins { nix = pkgs.nixUnstable; @@ -8395,7 +8464,7 @@ in pdf2xml = callPackage ../development/libraries/pdf2xml {} ; - phonon = callPackage ../development/libraries/phonon/qt4 {}; + phonon = callPackage ../development/libraries/phonon {}; phonon_backend_gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt4 {}; @@ -8424,7 +8493,7 @@ in spidermonkey = spidermonkey_17; }; - polkit_qt4 = callPackage ../development/libraries/polkit-qt-1 { }; + polkit_qt4 = callPackage ../development/libraries/polkit-qt-1/qt-4.nix { }; poppler = callPackage ../development/libraries/poppler { lcms = lcms2; }; @@ -8486,6 +8555,8 @@ in qt4 = self.kde4.qt4; + qt4_clang = lowPrio (self.qt4.override { stdenv = clangStdenv; }); + qt48 = callPackage ../development/libraries/qt-4.x/4.8 { # GNOME dependencies are not used unless gtkStyle == true mesa = mesa_noglu; @@ -8494,8 +8565,17 @@ in # XXX: mariadb doesn't built on fbsd as of nov 2015 mysql = if (!stdenv.isFreeBSD) then mysql else null; + + inherit (pkgs.darwin) cf-private libobjc; + inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices OpenGL Cocoa AGL; }; + qmake48Hook = makeSetupHook + { substitutions = { qt4 = qt48; }; } + ../development/libraries/qt-4.x/4.8/qmake-hook.sh; + + qmake4Hook = qmake48Hook; + qt48Full = appendToName "full" (qt48.override { docs = true; demos = true; @@ -8527,15 +8607,13 @@ in openbr = callPackage ../development/libraries/openbr { }; - phonon = callPackage ../development/libraries/phonon/qt5 { }; + phonon = callPackage ../development/libraries/phonon { }; phonon-backend-gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5 { }; phonon-backend-vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { }; - polkit-qt = callPackage ../development/libraries/polkit-qt-1 { - withQt5 = true; - }; + polkit-qt = callPackage ../development/libraries/polkit-qt-1/qt-5.nix { }; poppler = callPackage ../development/libraries/poppler { lcms = lcms2; @@ -9086,6 +9164,8 @@ in xercesc = callPackage ../development/libraries/xercesc {}; + xalanc = callPackage ../development/libraries/xalanc {}; + # Avoid using this. It isn't really a wrapper anymore, but we keep the name. xlibsWrapper = callPackage ../development/libraries/xlibs-wrapper { packages = [ @@ -9099,6 +9179,8 @@ in xmlsec = callPackage ../development/libraries/xmlsec { }; + xml-security-c = callPackage ../development/libraries/xml-security-c { }; + xlslib = callPackage ../development/libraries/xlslib { }; xvidcore = callPackage ../development/libraries/xvidcore { }; @@ -9113,9 +9195,7 @@ in libusb = libusb1; }; - yubikey-personalization-gui = callPackage ../tools/misc/yubikey-personalization-gui { - qt = qt4; - }; + yubikey-personalization-gui = callPackage ../tools/misc/yubikey-personalization-gui { }; zeitgeist = callPackage ../development/libraries/zeitgeist { }; @@ -9394,7 +9474,7 @@ in pycups = pythonPackages.pycups; - pyexiv2 = callPackage ../development/python-modules/pyexiv2 { }; + pyexiv2 = pythonPackages.pyexiv2; pygame = pythonPackages.pygame; @@ -9412,7 +9492,7 @@ in pyopenssl = pythonPackages.pyopenssl; - rhpl = callPackage ../development/python-modules/rhpl { }; + rhpl = pythonPackages.rhpl; pyqt4 = pythonPackages.pyqt4; @@ -9886,6 +9966,8 @@ in inherit (darwin.apple_sdk.frameworks) AppKit Carbon Cocoa; }; + rake = callPackage ../development/tools/build-managers/rake { }; + redis = callPackage ../servers/nosql/redis { }; redstore = callPackage ../servers/http/redstore { }; @@ -10094,6 +10176,8 @@ in batctl = callPackage ../os-specific/linux/batman-adv/batctl.nix { }; + blktrace = callPackage ../os-specific/linux/blktrace { }; + bluez4 = lowPrio (callPackage ../os-specific/linux/bluez { pygobject = pygobject3; }); @@ -10195,8 +10279,6 @@ in dmtcp = callPackage ../os-specific/linux/dmtcp { }; - dietlibc = callPackage ../os-specific/linux/dietlibc { }; - directvnc = callPackage ../os-specific/linux/directvnc { }; dmraid = callPackage ../os-specific/linux/dmraid { @@ -10236,8 +10318,6 @@ in lightum = callPackage ../os-specific/linux/lightum { }; - e3cfsprogs = callPackage ../os-specific/linux/e3cfsprogs { }; - ebtables = callPackage ../os-specific/linux/ebtables { }; eject = self.utillinux; @@ -10356,6 +10436,8 @@ in openiscsi = callPackage ../os-specific/linux/open-iscsi { }; + openisns = callPackage ../os-specific/linux/open-isns { }; + tgt = callPackage ../tools/networking/tgt { }; # -- Linux kernel expressions ------------------------------------------------ @@ -10382,6 +10464,10 @@ in kernelPatches = callPackage ../os-specific/linux/kernel/patches.nix { }; + klibc = callPackage ../os-specific/linux/klibc { }; + + klibcShrunk = lowPrio (callPackage ../os-specific/linux/klibc/shrunk.nix { }); + linux_mptcp = callPackage ../os-specific/linux/kernel/linux-mptcp.nix { kernelPatches = [ kernelPatches.bridge_stp_helper ] ++ lib.optionals ((platform.kernelArch or null) == "mips") @@ -10517,7 +10603,7 @@ in ]; }; - grsecurity_base_linux_4_1 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.1.nix { + grsecurity_base_linux_4_4 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.4.nix { kernelPatches = [ kernelPatches.bridge_stp_helper ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu @@ -10526,7 +10612,7 @@ in ]; }; - grsecurity_base_linux_4_4 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.4.nix { + grsecurity_base_linux_4_5 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.5.nix { kernelPatches = [ kernelPatches.bridge_stp_helper ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu @@ -10551,14 +10637,14 @@ in linux_grsec_server_3_14 = self.grKernel kernelPatches.grsecurity_3_14 self.grFlavors.server; linux_grsec_server_xen_3_14 = self.grKernel kernelPatches.grsecurity_3_14 self.grFlavors.server_xen; - linux_grsec_desktop_4_1 = self.grKernel kernelPatches.grsecurity_4_1 self.grFlavors.desktop; - linux_grsec_server_4_1 = self.grKernel kernelPatches.grsecurity_4_1 self.grFlavors.server; - linux_grsec_server_xen_4_1 = self.grKernel kernelPatches.grsecurity_4_1 self.grFlavors.server_xen; - linux_grsec_desktop_4_4 = self.grKernel kernelPatches.grsecurity_4_4 self.grFlavors.desktop; linux_grsec_server_4_4 = self.grKernel kernelPatches.grsecurity_4_4 self.grFlavors.server; linux_grsec_server_xen_4_4 = self.grKernel kernelPatches.grsecurity_4_4 self.grFlavors.server_xen; + linux_grsec_desktop_4_5 = self.grKernel kernelPatches.grsecurity_4_5 self.grFlavors.desktop; + linux_grsec_server_4_5 = self.grKernel kernelPatches.grsecurity_4_5 self.grFlavors.server; + linux_grsec_server_xen_4_5 = self.grKernel kernelPatches.grsecurity_4_5 self.grFlavors.server_xen; + linux_grsec_desktop_latest = self.grKernel kernelPatches.grsecurity_latest self.grFlavors.desktop; linux_grsec_server_latest = self.grKernel kernelPatches.grsecurity_latest self.grFlavors.server; linux_grsec_server_xen_latest = self.grKernel kernelPatches.grsecurity_latest self.grFlavors.server_xen; @@ -10598,6 +10684,8 @@ in cpupower = callPackage ../os-specific/linux/cpupower { }; + dpdk = callPackage ../os-specific/linux/dpdk { }; + e1000e = callPackage ../os-specific/linux/e1000e {}; v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { }; @@ -10627,12 +10715,6 @@ in facetimehd = callPackage ../os-specific/linux/facetimehd { }; - kernelHeaders = callPackage ../os-specific/linux/kernel-headers { }; - - klibc = callPackage ../os-specific/linux/klibc { }; - - klibcShrunk = lowPrio (callPackage ../os-specific/linux/klibc/shrunk.nix { }); - jool = callPackage ../os-specific/linux/jool { }; mba6x_bl = callPackage ../os-specific/linux/mba6x_bl { }; @@ -10726,14 +10808,14 @@ in linuxPackages_grsec_server_3_14 = self.grPackage kernelPatches.grsecurity_3_14 self.grFlavors.server; linuxPackages_grsec_server_xen_3_14 = self.grPackage kernelPatches.grsecurity_3_14 self.grFlavors.server_xen; - linuxPackages_grsec_desktop_4_1 = self.grPackage kernelPatches.grsecurity_4_1 self.grFlavors.desktop; - linuxPackages_grsec_server_4_1 = self.grPackage kernelPatches.grsecurity_4_1 self.grFlavors.server; - linuxPackages_grsec_server_xen_4_1 = self.grPackage kernelPatches.grsecurity_4_1 self.grFlavors.server_xen; - linuxPackages_grsec_desktop_4_4 = self.grPackage kernelPatches.grsecurity_4_4 self.grFlavors.desktop; linuxPackages_grsec_server_4_4 = self.grPackage kernelPatches.grsecurity_4_4 self.grFlavors.server; linuxPackages_grsec_server_xen_4_4 = self.grPackage kernelPatches.grsecurity_4_4 self.grFlavors.server_xen; + linuxPackages_grsec_desktop_4_5 = self.grPackage kernelPatches.grsecurity_4_5 self.grFlavors.desktop; + linuxPackages_grsec_server_4_5 = self.grPackage kernelPatches.grsecurity_4_5 self.grFlavors.server; + linuxPackages_grsec_server_xen_4_5 = self.grPackage kernelPatches.grsecurity_4_5 self.grFlavors.server_xen; + linuxPackages_grsec_desktop_latest = self.grPackage kernelPatches.grsecurity_latest self.grFlavors.desktop; linuxPackages_grsec_server_latest = self.grPackage kernelPatches.grsecurity_latest self.grFlavors.server; linuxPackages_grsec_server_xen_latest = self.grPackage kernelPatches.grsecurity_latest self.grFlavors.server_xen; @@ -10829,8 +10911,6 @@ in mmc-utils = callPackage ../os-specific/linux/mmc-utils { }; - module_init_tools = callPackage ../os-specific/linux/module-init-tools { }; - aggregateModules = modules: callPackage ../os-specific/linux/kmod/aggregator.nix { inherit modules; @@ -10878,8 +10958,6 @@ in pam_ccreds = callPackage ../os-specific/linux/pam_ccreds { }; - pam_devperm = callPackage ../os-specific/linux/pam_devperm { }; - pam_krb5 = callPackage ../os-specific/linux/pam_krb5 { }; pam_ldap = callPackage ../os-specific/linux/pam_ldap { }; @@ -10927,8 +11005,6 @@ in procps = procps-ng; - procps-old = lowPrio (callPackage ../os-specific/linux/procps { }); - procps-ng = callPackage ../os-specific/linux/procps-ng { }; watch = callPackage ../os-specific/linux/procps/watch.nix { }; @@ -10953,6 +11029,8 @@ in rt5677-firmware = callPackage ../os-specific/linux/firmware/rt5677 { }; + rtl8723bs-firmware = callPackage ../os-specific/linux/firmware/rtl8723bs-firmware { }; + s3ql = callPackage ../tools/backup/s3ql { }; sassc = callPackage ../development/tools/sassc { }; @@ -11587,10 +11665,12 @@ in artha = callPackage ../applications/misc/artha { }; - atom = callPackage ../applications/editors/atom { + atomEnv = callPackage ../applications/editors/atom/env.nix { gconf = gnome.GConf; }; + atom = callPackage ../applications/editors/atom { }; + aseprite = callPackage ../applications/editors/aseprite { giflib = giflib_4_1; }; @@ -11800,7 +11880,7 @@ in cinelerra = callPackage ../applications/video/cinelerra { }; - clawsMail = callPackage ../applications/networking/mailreaders/claws-mail { + claws-mail = callPackage ../applications/networking/mailreaders/claws-mail { inherit (gnome3) gsettings_desktop_schemas; enableNetworkManager = config.networking.networkmanager.enable or false; }; @@ -12535,6 +12615,8 @@ in quvi_scripts = callPackage ../applications/video/quvi/scripts.nix { }; + svox = callPackage ../applications/audio/svox { }; + gkrellm = callPackage ../applications/misc/gkrellm { }; gmu = callPackage ../applications/audio/gmu { }; @@ -12750,6 +12832,7 @@ in librsvg = null; libtiff = null; libxml2 = null; + openjpeg = null; }; imagemagick = self.imagemagickBig.override { @@ -12942,6 +13025,26 @@ in }; }; + libreoffice-still = lowPrio (callPackage ../applications/office/libreoffice/still.nix { + inherit (perlPackages) ArchiveZip CompressZlib; + inherit (gnome) GConf ORBit2 gnome_vfs; + inherit (gnome3) gsettings_desktop_schemas defaultIconTheme; + zip = zip.override { enableNLS = false; }; + #glm = glm_0954; + bluez5 = bluez5_28; + fontsConf = makeFontsConf { + fontDirectories = [ + freefont_ttf xorg.fontmiscmisc xorg.fontbhttf + ]; + }; + clucene_core = clucene_core_2; + lcms = lcms2; + harfbuzz = harfbuzz.override { + withIcu = true; withGraphite2 = true; + }; + }); + + liferea = callPackage ../applications/networking/newsreaders/liferea { webkitgtk = webkitgtk24x; }; @@ -13076,6 +13179,8 @@ in mldonkey = callPackage ../applications/networking/p2p/mldonkey { }; + MMA = callPackage ../applications/audio/MMA { }; + mmex = callPackage ../applications/office/mmex { }; moc = callPackage ../applications/audio/moc { }; @@ -13191,6 +13296,12 @@ in iceSupport = config.murmur.iceSupport or true; }) mumble mumble_git murmur murmur_git; + mumble_overlay = callPackage ../applications/networking/mumble/overlay.nix { + mumble_i686 = if system == "x86_64-linux" + then pkgsi686Linux.mumble + else null; + }; + musescore = qt5.callPackage ../applications/audio/musescore { }; mutt = callPackage ../applications/networking/mailreaders/mutt { }; @@ -13517,7 +13628,7 @@ in pythonmagick = callPackage ../applications/graphics/PythonMagick { }; - qbittorrent = callPackage ../applications/networking/p2p/qbittorrent { + qbittorrent = qt5.callPackage ../applications/networking/p2p/qbittorrent { boost = boost; libtorrentRasterbar = libtorrentRasterbar; }; @@ -13604,13 +13715,9 @@ in remotebox = callPackage ../applications/virtualization/remotebox { }; - retroshare = callPackage ../applications/networking/p2p/retroshare { - qt = qt4; - }; + retroshare = callPackage ../applications/networking/p2p/retroshare { }; - retroshare06 = lowPrio (callPackage ../applications/networking/p2p/retroshare/0.6.nix { - qt = qt4; - }); + retroshare06 = lowPrio (callPackage ../applications/networking/p2p/retroshare/0.6.nix { }); RhythmDelay = callPackage ../applications/audio/RhythmDelay { }; @@ -13700,9 +13807,7 @@ in siproxd = callPackage ../applications/networking/siproxd { }; skype = callPackage_i686 ../applications/networking/instant-messengers/skype { - qt4 = pkgsi686Linux.qt4.override { - stdenv = pkgsi686Linux.clangStdenv; - }; + qt4 = pkgsi686Linux.qt4_clang; }; skype4pidgin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/skype4pidgin { }; @@ -13769,8 +13874,6 @@ in bittorrentSync14 = callPackage ../applications/networking/bittorrentsync/1.4.x.nix { }; bittorrentSync20 = callPackage ../applications/networking/bittorrentsync/2.0.x.nix { }; - copy-com = callPackage ../applications/networking/copy-com { }; - dropbox = qt55.callPackage ../applications/networking/dropbox { }; dropbox-cli = callPackage ../applications/networking/dropbox-cli { }; @@ -14003,7 +14106,7 @@ in enableXMPP = config.tomahawk.enableXMPP or true; enableKDE = config.tomahawk.enableKDE or false; enableTelepathy = config.tomahawk.enableTelepathy or false; - quazip = qt5.quazip.override { qt = qt4; }; + quazip = quazip_qt4; }; torchPackages = recurseIntoAttrs ( callPackage ../applications/science/machine-learning/torch { @@ -14193,9 +14296,7 @@ in vorbis-tools = callPackage ../applications/audio/vorbis-tools { }; - vscode = callPackage ../applications/editors/vscode { - gconf = pkgs.gnome.GConf; - }; + vscode = callPackage ../applications/editors/vscode { }; vue = callPackage ../applications/misc/vue { }; @@ -14486,6 +14587,8 @@ in xrestop = callPackage ../tools/X11/xrestop { }; + xsd = callPackage ../development/libraries/xsd { }; + xscreensaver = callPackage ../misc/screensavers/xscreensaver { inherit (gnome) libglade; }; @@ -14526,15 +14629,15 @@ in inherit (gnome3) yelp; + inherit (python3Packages) you-get; + inherit (pythonPackages) youtube-dl; qgis = callPackage ../applications/gis/qgis {}; qgroundcontrol = qt55.callPackage ../applications/science/robotics/qgroundcontrol { }; - qtbitcointrader = callPackage ../applications/misc/qtbitcointrader { - qt = qt4; - }; + qtbitcointrader = callPackage ../applications/misc/qtbitcointrader { }; pahole = callPackage ../development/tools/misc/pahole {}; @@ -14602,6 +14705,8 @@ in andyetitmoves = if stdenv.isLinux then callPackage ../games/andyetitmoves {} else null; + angband = callPackage ../games/angband { }; + anki = callPackage ../games/anki { inherit (pythonPackages) wrapPython pysqlite sqlalchemy pyaudio beautifulsoup httplib2 matplotlib; }; @@ -14627,6 +14732,10 @@ in bastet = callPackage ../games/bastet {}; + beancount = callPackage ../applications/office/beancount { + pythonPackages = python3Packages; + }; + beret = callPackage ../games/beret { }; bitsnbots = callPackage ../games/bitsnbots { @@ -14732,6 +14841,8 @@ in freedink = callPackage ../games/freedink { }; + freeorion = callPackage ../games/freeorion { }; + fsg = callPackage ../games/fsg { wxGTK = wxGTK28.override { unicode = false; }; }; @@ -14850,6 +14961,8 @@ in openarena = callPackage ../games/openarena { }; + opendungeons = callPackage ../games/opendungeons { }; + openlierox = callPackage ../games/openlierox { }; openmw = callPackage ../games/openmw { }; @@ -15205,9 +15318,9 @@ in eventlist = callPackage ../applications/office/eventlist {}; - k3b = callPackage ../applications/misc/k3b { - cdrtools = cdrkit; - }; + k3b-original = lowPrio (callPackage ../applications/misc/k3b { }); + + k3b = callPackage ../applications/misc/k3b/wrapper.nix { }; kadu = callPackage ../applications/networking/instant-messengers/kadu { }; @@ -16048,6 +16161,8 @@ in enableAllFeatures = true; }); + dbus-map = callPackage ../tools/misc/dbus-map { }; + dosbox = callPackage ../misc/emulators/dosbox { }; dpkg = callPackage ../tools/package-management/dpkg { }; @@ -16217,6 +16332,8 @@ in inherit (pythonPackages) pexpect paramiko; }; + redis-desktop-manager = qt5.callPackage ../applications/misc/redis-desktop-manager { }; + robomongo = qt5.callPackage ../applications/misc/robomongo { }; rucksack = callPackage ../development/tools/rucksack { }; @@ -16296,6 +16413,8 @@ in snapscanFirmware = config.sane.snapscanFirmware or null; }; + brscan4 = callPackage ../applications/graphics/sane/backends/brscan4 { }; + mkSaneConfig = callPackage ../applications/graphics/sane/config.nix { }; sane-frontends = callPackage ../applications/graphics/sane/frontends.nix { }; @@ -16543,9 +16662,15 @@ in mg = callPackage ../applications/editors/mg { }; + aucdtect = callPackage ../tools/audio/aucdtect { }; + togglesg-download = callPackage ../tools/misc/togglesg-download { }; discord = callPackage ../applications/networking/instant-messengers/discord { }; - #golden-cheetah = qt5.callPackage ../applications/misc/golden-cheetah {}; + golden-cheetah = qt5.callPackage ../applications/misc/golden-cheetah {}; + + tomb = callPackage ../os-specific/linux/tomb {}; + + imatix_gsl = callPackage ../development/tools/imatix_gsl {}; } diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index ea1840aefed..38dc513ff83 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -102,6 +102,76 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "lib/*" ]; }; + MaxMindDb = fetchNuGet { + baseName = "MaxMind.Db"; + version = "1.1.0.0"; + sha256 = "0lixl76f7k3ldiqzg94zh13gn82w5mm5dx72y97fcqvp8g6nj3ds"; + outputFiles = [ "lib/*" ]; + }; + + MaxMindGeoIP2 = fetchNuGet { + baseName = "MaxMind.GeoIP2"; + version = "2.3.1"; + sha256 = "1s44dvjnmj1aimbrgkmpj6h5dn1w6acgqjch1axc76yz6hwknqgf"; + outputFiles = [ "lib/*" ]; + }; + + SharpZipLib = fetchNuGet { + baseName = "SharpZipLib"; + version = "0.86.0"; + sha256 = "01w2038gckfnq31pncrlgm7d0c939pwr1x4jj5450vcqpd4c41jr"; + outputFiles = [ "lib/*" ]; + }; + + StyleCopMSBuild = fetchNuGet { + baseName = "StyleCop.MSBuild"; + version = "4.7.49.0"; + sha256 = "0rpfyvcggm881ynvgr17kbx5hvj7ivlms0bmskmb2zyjlpddx036"; + outputFiles = [ "tools/*" ]; + }; + + StyleCopPlusMSBuild = fetchNuGet { + baseName = "StyleCopPlus.MSBuild"; + version = "4.7.49.5"; + sha256 = "1hv4lfxw72aql8siyqc4n954vzdz8p6jx9f2wrgzz0jy1k98x2mr"; + outputFiles = [ "tools/*" ]; + }; + + RestSharp = fetchNuGet { + baseName = "RestSharp"; + version = "105.2.3"; + sha256 = "1br48124ppz80x92m84sfyil1gn23hxg2ml9i9hsd0lp86vlaa1m"; + outputFiles = [ "lib/*" ]; + }; + + SharpFont = fetchNuGet { + baseName = "SharpFont"; + version = "3.0.1"; + sha256 = "1g639i8mbxc6qm0xqsf4mc0shv8nwdaidllka2xxwyksbq54skhs"; + outputFiles = [ "lib/*" "config/*" ]; + }; + + SmartIrc4net = fetchNuGet { + baseName = "SmartIrc4net"; + version = "0.4.5.1"; + sha256 = "1k6zc6xsqfzj7nc9479d32akj6d37jq6i1qirmz1i66p52zb5hm1"; + outputFiles = [ "lib/*" ]; + }; + + FuzzyLogicLibrary = fetchNuGet { + baseName = "FuzzyLogicLibrary"; + version = "1.2.0"; + sha256 = "0x518i8d3rw9n51xwawa4sywvqd722adj7kpcgcm63r66s950r5l"; + outputFiles = [ "bin/*" ]; + }; + + MonoNat = fetchNuGet { + baseName = "Mono.Nat"; + version = "1.2.21"; + sha256 = "011xhmjrx6w5h110fcp40l95k3qj1gkzz3axgbfy0s8haf5hsf7s"; + outputFiles = [ "lib/*" ]; + }; + NUnitRunners = fetchNuGet { baseName = "NUnit.Runners"; version = "2.6.4"; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index e68d8c4563e..65b210544cb 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -147,11 +147,11 @@ let }; tools = buildFromGitHub { - rev = "b48dc8da98ae78c3d11f220e7d327304c84e623a"; - version = "2015-08-24"; + rev = "c887be1b2ebd11663d4bf2fbca508c449172339e"; + version = "2016-02-04"; owner = "golang"; repo = "tools"; - sha256 = "187p3jjxrw2qjnzqwwrq7f9w10zh6vcnwnfl3q7ms8rbiffpjy5c"; + sha256 = "15cm7wmab5na4hphvriazlz639882z0ipb466xmp7500rn6f5kzf"; goPackagePath = "golang.org/x/tools"; goPackageAliases = [ "code.google.com/p/go.tools" ]; @@ -244,10 +244,10 @@ let }; asciinema = buildFromGitHub { - rev = "v1.1.1"; + rev = "v1.2.0"; owner = "asciinema"; repo = "asciinema"; - sha256 = "0k48k8815k433s25lh8my2swl89kczp0m2gbqzjlpy1xwmk06nxc"; + sha256 = "0wvrq92ackhfycfs1fircs8al3ji69igqqrc55ic29wbpnvz355x"; }; asmfmt = buildFromGitHub { @@ -881,10 +881,10 @@ let }; fzf = buildFromGitHub { - rev = "0.11.1"; + rev = "0.12.0"; owner = "junegunn"; repo = "fzf"; - sha256 = "1zw1kq4d5sb1qia44q04i33yii9qwlwlwz8vxhln03d4631mhsra"; + sha256 = "0lxh8nf5xc5qnmx18h0q43iy3hy818firkz4rfkr3b0b5gd3aan1"; buildInputs = [ crypto ginkgo gomega junegunn.go-runewidth go-shellwords pkgs.ncurses text @@ -3735,13 +3735,15 @@ let }; terraform = buildFromGitHub { - rev = "v0.6.13"; + rev = "v0.6.15"; owner = "hashicorp"; repo = "terraform"; disabled = isGo14 || isGo15; - sha256 = "1f1xm5pyz1hxqm2k74psanirpydf71pmxixplyc2x2w68hgjzi2l"; + sha256 = "1mf98hagb0yp40g2mbar7aw7hmpq01clnil6y9khvykrb33vy0nb"; - buildInputs = [ ]; + postInstall = '' + for i in $bin/bin/{provider,provisioner}-*; do mv $i $bin/bin/terraform-$(basename $i); done + ''; }; testify = buildGoPackage rec { diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 766c57cc577..0060b7e37d7 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -383,7 +383,10 @@ rec { lts-5_12 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.12.nix { }; }; - lts-5 = packages.lts-5_12; + lts-5_13 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.13.nix { }; + }; + lts-5 = packages.lts-5_13; lts = packages.lts-5; }; diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index ea7e7e89d37..da3579a6595 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -18,7 +18,7 @@ releaseTools.sourceTarball rec { version = builtins.readFile ../../.version; versionSuffix = "pre${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; - buildInputs = [ nix jq ]; + buildInputs = [ nix.out jq ]; configurePhase = '' eval "$preConfigure" diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index da58b1c4cf8..08b6ccd49d7 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -83,7 +83,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ AlgorithmDiff ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -125,7 +125,7 @@ let self = _self // overrides; _self = with self; { sha256 = "16nnqzxy5baiar6gxnq5w296mmjgijcn1jq8rp867nksph03mxz8"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -154,7 +154,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "An asynchronous and multi channel Perl AMQP client"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -227,7 +227,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/rjbs/app-cmd; description = "Write command line apps with less suffering"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -581,7 +581,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Wrap OP check callbacks"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -607,7 +607,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [CarpClan]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -727,7 +727,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ StringCRC32 ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -741,7 +741,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Perl client for B, in C language"; license = "perl"; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -755,7 +755,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ TimeDate DBFile DigestSHA1 FileNFSLock HeapFibonacci IOString ]; doCheck = false; # can time out meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -806,7 +806,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [HTMLTiny LWP]; buildInputs = [TestPod]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -919,7 +919,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "HTTP Basic and Digest authentication"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -973,6 +973,22 @@ let self = _self // overrides; _self = with self; { namespaceautoclean ]; }; + CatalystControllerPOD = buildPerlPackage rec { + name = "Catalyst-Controller-POD-1.0.0"; + src = fetchurl { + url = "mirror://cpan/authors/id/P/PE/PERLER/${name}.tar.gz"; + sha256 = "ee2a4bb3ed78baa1464335408f284345b6ba0ef6576ad7bfbd7b656c788a39f9"; + }; + buildInputs = [ CatalystRuntime ModuleBuild ModuleInstall TestWWWMechanizeCatalyst ]; + propagatedBuildInputs = [ CatalystPluginStaticSimple CatalystRuntime ClassAccessor FileShareDir FileSlurp JSONXS LWP ListMoreUtils PathClass PodPOM PodPOMViewTOC TestWWWMechanizeCatalyst XMLSimple ]; + meta = { + homepage = http://search.cpan.org/dist/Catalyst-Controller-POD/; + description = "Serves PODs right from your Catalyst application"; + license = stdenv.lib.licenses.bsd3; + maintainers = [ maintainers.rycee ]; + }; + }; + CatalystDevel = buildPerlPackage { name = "Catalyst-Devel-1.39"; src = fetchurl { @@ -1133,7 +1149,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Flexible caching support for Catalyst"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -1149,7 +1165,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "HTTP/1.1 cache validators for Catalyst"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -1213,7 +1229,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Unicode aware Catalyst"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -1508,7 +1524,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ TestException ]; meta = { description = "Convert flat hash to nested data using TT2's dot convention"; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -1629,7 +1645,7 @@ let self = _self // overrides; _self = with self; { }; meta = { license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -2234,7 +2250,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ SymbolUtil ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -2268,19 +2284,6 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ CGICookieXS ]; }; - Coro = buildPerlPackage rec { - name = "Coro-6.41"; - src = fetchurl { - url = "mirror://cpan/authors/id/M/ML/MLEHMANN/${name}.tar.gz"; - sha256 = "1r1gam4yyl6w88ga8rkbvj33v1r5ald3ryqlpg13c7y1i79yizxa"; - }; - propagatedBuildInputs = [ AnyEvent Guard CommonSense ]; - meta = { - maintainers = with maintainers; [ ocharles ]; - platforms = stdenv.lib.platforms.unix; - }; - }; - CPAN = buildPerlPackage rec { name = "CPAN-2.10"; src = fetchurl { @@ -2506,7 +2509,7 @@ let self = _self // overrides; _self = with self; { homepage = http://search.cpan.org/dist/Crypt-Random-Source; description = "Get weak or strong random data from pluggable sources"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -2658,10 +2661,10 @@ let self = _self // overrides; _self = with self; { }; CryptX = buildPerlPackage rec { - name = "CryptX-0.030"; + name = "CryptX-0.031"; src = fetchurl { url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz"; - sha256 = "b0e26b4c4de66134f1f1ae4227fdd18cf10f95cecc64a651a8af2710ef7519e5"; + sha256 = "7221a7a824ae07377f7e97c6daafff47524c46204c9b8ff58420a13fc2c104f1"; }; propagatedBuildInputs = [ JSONMaybeXS ]; meta = { @@ -2692,7 +2695,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Polymorphic data cloning"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -2939,7 +2942,7 @@ let self = _self // overrides; _self = with self; { homepage = https://metacpan.org/release/Data-UUID-MT; description = "Fast random UUID generator using the Mersenne Twister algorithm"; license = stdenv.lib.licenses.asl20; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -3009,7 +3012,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [CarpClan BitVector]; doCheck = false; # some of the checks rely on the year being <2015 meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -3164,7 +3167,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Parses ISO8601 formats"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -3220,7 +3223,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Parse and format PostgreSQL dates and times"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -3592,7 +3595,7 @@ let self = _self // overrides; _self = with self; { homepage = http://search.cpan.org/dist/DBIx-Connector/; description = "Fast, safe DBI connection and transaction management"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -3642,7 +3645,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ DBI ]; meta = { description = "Very complete easy-to-use OO interface to DBI"; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -3665,7 +3668,7 @@ let self = _self // overrides; _self = with self; { }; meta = { description = "Find memory cycles in objects"; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -3681,7 +3684,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Adding keywords to perl, in perl"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles rycee ]; + maintainers = with maintainers; [ rycee ]; }; }; @@ -3728,7 +3731,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ Moose namespaceclean SubExporter Testuseok TestWarn ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -3812,7 +3815,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Keyed-Hashing for Message Authentication"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -3859,7 +3862,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ LWP ]; meta = { description = "Perl extension for getting MD5 sums for files and urls"; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -4270,7 +4273,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Generate world unique message-ids"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -4286,7 +4289,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/rjbs/Email-MIME; description = "Easy MIME message handling"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles rycee ]; + maintainers = with maintainers; [ rycee ]; }; }; @@ -4300,7 +4303,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/rjbs/Email-MIME-ContentType; description = "Parse a MIME Content-Type Header"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles rycee ]; + maintainers = with maintainers; [ rycee ]; }; }; @@ -4315,7 +4318,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/rjbs/Email-MIME-Encodings; description = "A unified interface to MIME encoding and decoding"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles rycee ]; + maintainers = with maintainers; [ rycee ]; }; }; @@ -4406,6 +4409,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/N/NE/NEZUMI/Encode-EUCJPASCII-0.03.tar.gz; sha256 = "f998d34d55fd9c82cf910786a0448d1edfa60bf68e2c2306724ca67c629de861"; }; + outputs = [ "out" ]; meta = { description = "EucJP-ascii - An eucJP-open mapping"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; @@ -4430,6 +4434,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/D/DA/DANKOGAI/Encode-JIS2K-0.02.tar.gz; sha256 = "5d718add5857f37fc270f24360bc9d100b72e0e13a11ca3149fe4e4d7c7cc4bf"; }; + outputs = [ "out" ]; meta = { }; }; @@ -4472,7 +4477,7 @@ let self = _self // overrides; _self = with self; { sha256 = "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -4500,16 +4505,17 @@ let self = _self // overrides; _self = with self; { }; }; - ExceptionBase = buildPerlPackage { - name = "Exception-Base-0.25"; + ExceptionBase = buildPerlPackage rec { + name = "Exception-Base-0.2501"; src = fetchurl { - url = mirror://cpan/authors/id/D/DE/DEXTER/Exception-Base-0.25.tar.gz; - sha256 = "1s2is862xba2yy633wn2nklrya36yrlwxlbpqjrv8m31xj2c8khw"; + url = "mirror://cpan/authors/id/D/DE/DEXTER/${name}.tar.gz"; + sha256 = "5723dd78f4ac0b4d262a05ea46af663ea00d8096b2e9c0a43515c210760e1e75"; }; buildInputs = [ TestUnitLite ]; meta = { - maintainers = with maintainers; [ ocharles ]; - platforms = stdenv.lib.platforms.unix; + description = "Lightweight exceptions"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = with maintainers; [ ]; }; }; @@ -4531,7 +4537,7 @@ let self = _self // overrides; _self = with self; { buildInputs = [ TestAssert TestUnitLite ]; propagatedBuildInputs = [ constantboolean ExceptionBase ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -4545,7 +4551,7 @@ let self = _self // overrides; _self = with self; { buildInputs = [ TestAssert TestUnitLite ]; propagatedBuildInputs = [ ExceptionBase ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -4562,7 +4568,7 @@ let self = _self // overrides; _self = with self; { homepage = http://open-exodus.net/projects/Exporter-Declare; description = "Exporting done right"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -4676,7 +4682,7 @@ let self = _self // overrides; _self = with self; { }; meta = { license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -4831,7 +4837,7 @@ let self = _self // overrides; _self = with self; { buildInputs = [ ExceptionWarning TestAssert TestUnitLite ]; propagatedBuildInputs = [ ExceptionBase ExceptionDied ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -4867,7 +4873,7 @@ let self = _self // overrides; _self = with self; { homepage = http://open-exodus.net/projects/Fennec-Lite; description = "Minimalist Fennec, the commonly used bits"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -5092,7 +5098,7 @@ let self = _self // overrides; _self = with self; { sha256 = "1kclhmyha2xijq49darlz82f3bn7gq3saycxpfiz3dndqhr5i9iz"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -5119,11 +5125,24 @@ let self = _self // overrides; _self = with self; { homepage = https://metacpan.org/release/File-pushd; description = "Change directory temporarily for a limited scope"; license = stdenv.lib.licenses.asl20; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; + FileReadBackwards = buildPerlPackage rec { + name = "File-ReadBackwards-1.05"; + src = fetchurl { + url = "mirror://cpan/authors/id/U/UR/URI/${name}.tar.gz"; + sha256 = "82b261af87507cc3e7e66899c457104ebc8d1c09fb85c53f67c1f90f70f18d6e"; + }; + meta = { + description = "Read a file backwards by lines"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + FileRemove = buildPerlPackage rec { name = "File-Remove-1.52"; src = fetchurl { @@ -5143,7 +5162,7 @@ let self = _self // overrides; _self = with self; { homepage = http://github.com/ingydotnet/file-share-pm/tree; description = "Extend File::ShareDir to Local Libraries"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -5170,7 +5189,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Install shared files"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -5223,12 +5242,12 @@ let self = _self // overrides; _self = with self; { }; FileUtil = buildPerlPackage rec { - name = "File-Util-4.132140"; + name = "File-Util-4.161200"; src = fetchurl { url = "mirror://cpan/authors/id/T/TO/TOMMY/${name}.tar.gz"; - sha256 = "4233c493468da8b34f2df19b191aaa400f328d877c8c023605e43385976a99d1"; + sha256 = "c63be030c15303796d387b290f1f6b59451fb64827e39afeb0e1d0adad72ab8e"; }; - buildInputs = [ TestFatal TestNoWarnings ]; + buildInputs = [ ModuleBuild TestNoWarnings ]; meta = { homepage = https://github.com/tommybutler/file-util/wiki; description = "Easy, versatile, portable file handling"; @@ -5441,10 +5460,10 @@ let self = _self // overrides; _self = with self; { }; Glib = buildPerlPackage rec { - name = "Glib-1.320"; + name = "Glib-1.321"; src = fetchurl { url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz"; - sha256 = "15mrwscqjgwpkw9n4x6rakr9rjz2ss8d90k574fs5wx9cmgg3np3"; + sha256 = "0h4cfxrxcf1mrdab5n5kk0smsi8vcrfnmcw1k6xw87r4vbifnxdr"; }; buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig pkgs.glib ]; meta = { @@ -5464,7 +5483,7 @@ let self = _self // overrides; _self = with self; { buildInputs = [ pkgs.gnupg1orig ]; meta = { platforms = stdenv.lib.platforms.linux; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; }; }; @@ -5532,6 +5551,7 @@ let self = _self // overrides; _self = with self; { }; buildInputs = [ FileSlurp URI ]; propagatedBuildInputs = [ DateManip DigestMD5 MailMboxMessageParser TimeDate ]; + outputs = [ "out" ]; meta = { homepage = https://github.com/coppit/grepmail; description = "Search mailboxes for mail matching a regular expression"; @@ -5550,10 +5570,10 @@ let self = _self // overrides; _self = with self; { }; Gtk2 = buildPerlPackage rec { - name = "Gtk2-1.2497"; + name = "Gtk2-1.2498"; src = fetchurl { url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz"; - sha256 = "0j5wm290ihpkx91gbk55qrrb0jhbh5fanbj5fjvs0d2xv6yyh921"; + sha256 = "0gs6lr4clz86838s3klrl37lf48j24zv0p37jlsvsnr927whpq3j"; }; buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Pango pkgs.gtk2 ]; meta = { @@ -5564,14 +5584,14 @@ let self = _self // overrides; _self = with self; { }; }; - Guard = buildPerlPackage { - name = "Guard-1.022"; + Guard = buildPerlPackage rec { + name = "Guard-1.023"; src = fetchurl { - url = mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-1.022.tar.gz; - sha256 = "0saq9949d13mdvpnls7mw1cy74lm4ncl7agbs7n2jl4sy6bvmw9m"; + url = "mirror://cpan/authors/id/M/ML/MLEHMANN/${name}.tar.gz"; + sha256 = "34c4ddf91fc93d1090d86da14df706d175b1610c67372c01e12ce9555d4dd1dc"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -5644,7 +5664,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ Testuseok ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -5656,7 +5676,7 @@ let self = _self // overrides; _self = with self; { sha256 = "1plv2djbyhvkdcw2ic54rdqb745cwksxckgzvw7ssxiir7rjknnc"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -5779,7 +5799,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ ClassLoad DataClone DateTime DateTimeFormatStrptime EmailValid FileShareDir HTMLTree JSON ListAllUtils Moose MooseXGetopt MooseXTypes MooseXTypesCommon MooseXTypesLoadableClass SubExporter SubName TryTiny aliased namespaceautoclean ]; meta = { description = "HTML forms using Moose"; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; @@ -5862,7 +5882,7 @@ let self = _self // overrides; _self = with self; { }; buildInputs = [ TestBase ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -5960,7 +5980,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Add XPath support to HTML::TreeBuilder"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -6208,7 +6228,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/ingydotnet/io-all-pm/tree; description = "IO::All of it to Graham and Damian!"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -6388,7 +6408,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/rjbs/io-tiecombine; description = "Produce tied (and other) separate but combined variables"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -6704,7 +6724,7 @@ let self = _self // overrides; _self = with self; { sha256 = "1ylz6yhjifblhmnva0k05ch12a4cdii5v0icah69ma1gdhsidnk0"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -6863,7 +6883,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Combines List::Util and List::MoreUtils in one bite-sized package"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -6897,7 +6917,7 @@ let self = _self // overrides; _self = with self; { sha256 = "1xcsgz8898h670zmwqd8azfn3a2y9nq7z8cva9dsyhzkk8ajmra1"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -6988,7 +7008,7 @@ let self = _self // overrides; _self = with self; { description = "Perl module for manipulating .po entries from GNU gettext"; license = "unknown"; platforms = stdenv.lib.platforms.linux; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; }; }; @@ -7037,7 +7057,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Simple logging interface with a contextual log"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -7052,7 +7072,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Dispatches messages to one or more outputs"; license = stdenv.lib.licenses.artistic2; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -7124,16 +7144,16 @@ let self = _self // overrides; _self = with self; { }; }; - LogDispatchouli = buildPerlPackage { - name = "Log-Dispatchouli-2.009"; + LogDispatchouli = buildPerlPackage rec { + name = "Log-Dispatchouli-2.012"; src = fetchurl { - url = mirror://cpan/authors/id/R/RJ/RJBS/Log-Dispatchouli-2.009.tar.gz; - sha256 = "09iw27r36gmljlm6gjfczn2sf4s1js697q8na8xw4wlnz7x4bv59"; + url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; + sha256 = "214eca0fe77f2dc74675f9aa542778d5d4618c5bf12283540ca1062fcb967fa0"; }; buildInputs = [ TestDeep TestFatal ]; propagatedBuildInputs = [ LogDispatch LogDispatchArray ParamsUtil StringFlogger SubExporter SubExporterGlobExporter TryTiny ]; meta = { - homepage = https://github.com/rjbs/log-dispatchouli; + homepage = https://github.com/rjbs/Log-Dispatchouli; description = "A simple wrapper around Log::Dispatch"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; @@ -7246,7 +7266,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ LWP HookLexWrap ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; # Tests require network connectivity @@ -7312,13 +7332,18 @@ let self = _self // overrides; _self = with self; { }; }; - MailTools = buildPerlPackage { - name = "MailTools-2.13"; + MailTools = buildPerlPackage rec { + name = "MailTools-2.14"; src = fetchurl { - url = mirror://cpan/authors/id/M/MA/MARKOV/MailTools-2.13.tar.gz; - sha256 = "1djjl05ndn8dmwri4vw5wfky5sqy7sf63qaijvhf9g5yh53405kj"; + url = "mirror://cpan/authors/id/M/MA/MARKOV/${name}.tar.gz"; + sha256 = "1y6zndb4rsn8i65g1bg3b0zb7966cz83q19zg7m7bvxjfkv7wz2b"; + }; + propagatedBuildInputs = [ TimeDate ]; + meta = { + description = "Various e-mail related modules"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; - propagatedBuildInputs = [TimeDate TestPod]; }; MathLibm = buildPerlPackage rec { @@ -7330,10 +7355,10 @@ let self = _self // overrides; _self = with self; { }; MathBigInt = buildPerlPackage rec { - name = "Math-BigInt-1.999717"; + name = "Math-BigInt-1.999722"; src = fetchurl { url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; - sha256 = "871c936cbd943b95c5561b82f077cbb1bbb4c85bdae14b668eca985e2a051fb6"; + sha256 = "c76a2d5e6a996186a42a7e516b8d82217fb0cd18c7e1e55241322c4a859ccf40"; }; meta = { description = "Arbitrary size integer/float math package"; @@ -7355,11 +7380,12 @@ let self = _self // overrides; _self = with self; { }; MathBigRat = buildPerlPackage rec { - name = "Math-BigRat-0.260802"; + name = "Math-BigRat-0.260804"; src = fetchurl { url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; - sha256 = "1b1ed448c355677bf6403705f8428fee5bdf2bb138a3fe721bf51414c1695508"; + sha256 = "f9bf5c007c0f141df7c7887d3482d47033cf7deab094a01e2863f31bacd7ef8a"; }; + propagatedBuildInputs = [ MathBigInt ]; meta = { description = "Arbitrary big rational numbers"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; @@ -7421,7 +7447,7 @@ let self = _self // overrides; _self = with self; { homepage = http://search.cpan.org/dist/Math-Random-ISAAC; description = "Perl interface to the ISAAC PRNG algorithm"; license = with stdenv.lib.licenses; [ publicDomain mit artistic2 gpl3 ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -7436,7 +7462,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Auto-seeded Mersenne Twister PRNGs"; license = "unrestricted"; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -7452,7 +7478,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Cryptographically-secure, cross-platform replacement for rand()"; license = stdenv.lib.licenses.artistic2; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -7483,7 +7509,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Tools for creating Meta objects to track custom metrics"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -7498,7 +7524,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Basic method declarations with signatures, without source filters"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -7552,6 +7578,20 @@ let self = _self // overrides; _self = with self; { buildInputs = [ ProcWaitStat ]; }; + MIMELite = buildPerlPackage rec { + name = "MIME-Lite-3.030"; + src = fetchurl { + url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; + sha256 = "8f39901bc580bc3dce69e10415305e4435ff90264c63d29f707b4566460be962"; + }; + propagatedBuildInputs = [ EmailDateFormat MailTools MIMETypes ]; + meta = { + description = "Low-calorie MIME generator (DEPRECATED)"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + MIMEtools = buildPerlPackage { name = "MIME-tools-5.507"; src = fetchurl { @@ -7747,7 +7787,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Declare author-only dependencies"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -7762,7 +7802,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Designate tests only run by module authors"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -7918,7 +7958,7 @@ let self = _self // overrides; _self = with self; { }; buildInputs = [ pkgs.unzip ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8070,7 +8110,7 @@ let self = _self // overrides; _self = with self; { homepage = http://metacpan.org/release/MooseX-ABC; description = "Abstract base classes for Moose"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8097,7 +8137,7 @@ let self = _self // overrides; _self = with self; { homepage = http://metacpan.org/release/MooseX-App-Cmd; description = "Mashes up MooseX::Getopt and App::Cmd"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8185,13 +8225,15 @@ let self = _self // overrides; _self = with self; { }; }; - MouseXGetOpt = buildPerlModule { - name = "mousex-getopt-0.36"; + MouseXGetOpt = self.MouseXGetopt; + + MouseXGetopt = buildPerlModule rec { + name = "MouseX-Getopt-0.36"; src = fetchurl { - url = mirror://cpan/authors/id/G/GF/GFUJI/MouseX-Getopt-0.36.tar.gz; + url = "mirror://cpan/authors/id/G/GF/GFUJI/${name}.tar.gz"; sha256 = "172ab0609f1638c6d8800d2dff1bdaa044e305aaa2e9b1fbb8a9dc722a3bf430"; }; - buildInputs = [ MouseXConfigFromFile MouseXSimpleConfig TestException TestWarn ]; + buildInputs = [ ModuleBuild Mouse MouseXConfigFromFile MouseXSimpleConfig TestException TestWarn ]; propagatedBuildInputs = [ GetoptLongDescriptive Mouse ]; meta = { homepage = https://github.com/gfx/mousex-getopt; @@ -8222,7 +8264,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Extend your attribute interfaces (deprecated)"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8235,7 +8277,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ DataVisitor HashUtilFieldHashCompat Moose namespaceclean Testuseok ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8251,7 +8293,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "An abstract Moose role for setting attributes from a configfile"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8286,12 +8328,12 @@ let self = _self // overrides; _self = with self; { }; MooseXGetopt = buildPerlPackage rec { - name = "MooseX-Getopt-0.68"; + name = "MooseX-Getopt-0.69"; src = fetchurl { url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; - sha256 = "acb5118b4666352e58d4268040869d7dc2b68968fe26b5dd6715f51ebd784483"; + sha256 = "0ef348a5edb8aca9a8bf4aff9dbcc2ac4281682fdc65b210b3c87cffd7501308"; }; - buildInputs = [ CPANMeta ModuleBuildTiny ModuleRuntime Moose PathTiny TestDeep TestFatal TestRequires TestTrap TestWarnings if_ ]; + buildInputs = [ ModuleBuildTiny Moose PathTiny TestDeep TestFatal TestRequires TestTrap TestWarnings self."if" ]; propagatedBuildInputs = [ GetoptLongDescriptive Moose MooseXRoleParameterized TryTiny namespaceautoclean ]; meta = { homepage = https://github.com/moose/MooseX-Getopt; @@ -8313,7 +8355,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/pshangov/moosex-has-options; description = "Succinct options for Moose"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8470,7 +8512,7 @@ let self = _self // overrides; _self = with self; { buildInputs = [ Testuseok TestTableDriven ]; propagatedBuildInputs = [ ListMoreUtils Moose MooseXGetopt MooseXTypes MooseXTypesPathClass namespaceautoclean ParamsUtil ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8502,7 +8544,7 @@ let self = _self // overrides; _self = with self; { }; buildInputs = [ Moose TestFatal TestRequires ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8570,7 +8612,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/moose/MooseX-Types-Common; description = "A library of commonly used type constraints"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles rycee ]; + maintainers = with maintainers; [ rycee ]; }; }; @@ -8582,7 +8624,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ DateTime DateTimeLocale DateTimeTimeZone Moose MooseXTypes namespaceclean TestException Testuseok ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8610,7 +8652,7 @@ let self = _self // overrides; _self = with self; { buildInputs = [ ModuleBuildTiny Moose TestFatal ]; propagatedBuildInputs = [ ClassLoad ModuleRuntime Moose MooseXTypes namespaceautoclean ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; homepage = https://github.com/moose/MooseX-Types-LoadableClass; description = "ClassName type constraint with coercion to load the class"; @@ -8643,7 +8685,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/karenetheridge/moosex-types-path-tiny; description = "Path::Tiny types and coercions for Moose"; license = stdenv.lib.licenses.asl20; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8673,7 +8715,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/dagolden/moosex-types-stringlike; description = "Moose type constraints for strings or string-like objects"; license = stdenv.lib.licenses.asl20; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8690,7 +8732,7 @@ let self = _self // overrides; _self = with self; { homepage = http://metacpan.org/release/MooseX-Types-Structured; description = "MooseX::Types::Structured - Structured Type Constraints for Moose"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8703,7 +8745,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ Moose MooseXTypes MooseXTypesPathClass namespaceclean Testuseok URI URIFromHash ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8878,7 +8920,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ URI ]; meta = { description = "Perl extension to create signatures for AWS requests"; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8948,7 +8990,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Manage Amazon S3 policies for HTTP POST forms"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8965,7 +9007,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Advanced Message Queue Protocol (de)serialization and representation"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -8996,7 +9038,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/metabrainz/CoverArtArchive; description = "Query the coverartarchive.org"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -9092,22 +9134,6 @@ let self = _self // overrides; _self = with self; { }; }; - NetRabbitFoot = buildPerlPackage { - name = "Net-RabbitFoot-1.03"; - src = fetchurl { - url = mirror://cpan/authors/id/I/IK/IKUTA/Net-RabbitFoot-1.03.tar.gz; - sha256 = "0544b1914e7847b32b60a643abc6f0b1fdc6d4a816afd84bcd3eee0c28b001ac"; - }; - buildInputs = [ TestException ]; - propagatedBuildInputs = [ AnyEventRabbitMQ ConfigAny Coro JSONXS ListMoreUtils Moose MooseXAppCmd MooseXAttributeHelpers MooseXConfigFromFile ]; - meta = { - description = "An Asynchronous and multi channel Perl AMQP client"; - license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; - platforms = stdenv.lib.platforms.unix; - }; - }; - NetServer = buildPerlPackage { name = "Net-Server-2.007"; src = fetchurl { @@ -9241,7 +9267,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Comprehensive inside-out object support module"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -9372,10 +9398,10 @@ let self = _self // overrides; _self = with self; { }; Pango = buildPerlPackage rec { - name = "Pango-1.226"; + name = "Pango-1.227"; src = fetchurl { url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz"; - sha256 = "0r4jx7d6gj6ixk2r5yr70biy1lpjxir08aywkw02g85wg6zkjw4z"; + sha256 = "0wdcidnfnb6nm79fzfs39ivawj3x8m98a147fmcxgv1zvwia9c1l"; }; buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig pkgs.pango ]; propagatedBuildInputs = [ Cairo Glib ]; @@ -9518,7 +9544,7 @@ let self = _self // overrides; _self = with self; { homepage = https://metacpan.org/release/Path-Tiny; description = "File path utility"; license = stdenv.lib.licenses.asl20; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; preConfigure = @@ -9559,6 +9585,20 @@ let self = _self // overrides; _self = with self; { }; }; + PDFAPI2 = buildPerlPackage rec { + name = "PDF-API2-2.027"; + src = fetchurl { + url = "mirror://cpan/authors/id/S/SS/SSIMMS/${name}.tar.gz"; + sha256 = "d24db02d902198406270551857830633b289ad39f5a9ba5431246f8cd60e7599"; + }; + propagatedBuildInputs = [ FontTTF ]; + meta = { + description = "Facilitates the creation and modification of PDF files"; + license = stdenv.lib.licenses.lgpl21; + maintainers = [ maintainers.rycee ]; + }; + }; + Pegex = buildPerlPackage rec { name = "Pegex-0.60"; src = fetchurl { @@ -9738,7 +9778,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Display information about the current request/response"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -10014,14 +10054,14 @@ let self = _self // overrides; _self = with self; { }; }; - PodElementalPerlMunger = buildPerlPackage { - name = "Pod-Elemental-PerlMunger-0.200003"; + PodElementalPerlMunger = buildPerlPackage rec { + name = "Pod-Elemental-PerlMunger-0.200006"; src = fetchurl { - url = mirror://cpan/authors/id/R/RJ/RJBS/Pod-Elemental-PerlMunger-0.200003.tar.gz; - sha256 = "94b3abe6894c96b7990cb324a3789af05489dc2b5d1ec8961d37309cc6e8c243"; + url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; + sha256 = "09fd3b5d53119437a01dced66b42eafdcd53895b3c32a2b0f781f36fda0f665b"; }; buildInputs = [ Moose PodElemental ]; - propagatedBuildInputs = [ ListMoreUtils Moose PPI ParamsUtil PodElemental namespaceautoclean ]; + propagatedBuildInputs = [ Moose PPI PodElemental namespaceautoclean ]; meta = { homepage = https://github.com/rjbs/Pod-Elemental-PerlMunger; description = "A thing that takes a string of Perl and rewrites its documentation"; @@ -10063,17 +10103,48 @@ let self = _self // overrides; _self = with self; { }; }; - PodLaTeX = buildPerlModule { + PodPOM = buildPerlPackage rec { + name = "Pod-POM-2.01"; + src = fetchurl { + url = "mirror://cpan/authors/id/N/NE/NEILB/${name}.tar.gz"; + sha256 = "1b50fba9bbdde3ead192beeba0eaddd0c614e3afb1743fa6fff805f57c56f7f4"; + }; + buildInputs = [ FileSlurper TestDifferences TextDiff ]; + meta = { + homepage = https://github.com/neilb/Pod-POM; + description = "POD Object Model"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + + PodPOMViewTOC = buildPerlPackage rec { + name = "Pod-POM-View-TOC-0.02"; + src = fetchurl { + url = "mirror://cpan/authors/id/P/PE/PERLER/${name}.tar.gz"; + sha256 = "ccb42272c7503379cb1131394620ee50276d72844e0e80eb4b007a9d58f87623"; + }; + buildInputs = [ TestMore ]; + propagatedBuildInputs = [ PodPOM ]; + meta = { + description = "Generate the TOC of a POD with Pod::POM"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + + PodLaTeX = buildPerlModule rec { name = "Pod-LaTeX-0.61"; src = fetchurl { - url = mirror://cpan/authors/id/T/TJ/TJENNESS/Pod-LaTeX-0.61.tar.gz; + url = "mirror://cpan/authors/id/T/TJ/TJENNESS/${name}.tar.gz"; sha256 = "15a840ea1c8a76cd3c865fbbf2fec33b03615c0daa50f9c800c54e0cf0659d46"; }; - propagatedBuildInputs = [ if_ ]; + buildInputs = [ ModuleBuild ]; + propagatedBuildInputs = [ self."if" ]; meta = { homepage = http://github.com/timj/perl-Pod-LaTeX/tree/master; description = "Convert Pod data to formatted Latex"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; @@ -10171,15 +10242,15 @@ let self = _self // overrides; _self = with self; { }; PodWeaver = buildPerlPackage rec { - name = "Pod-Weaver-4.012"; + name = "Pod-Weaver-4.013"; src = fetchurl { url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; - sha256 = "d801cbfaff22d418943d0c5dcb8c145b8cc4d56741f9c33923ef891241116ad6"; + sha256 = "5f12c5f11d313294520b0a1ab5c0775ef56e222d9181c8dac520cdc77af309e0"; }; buildInputs = [ PPI SoftwareLicense TestDifferences ]; - propagatedBuildInputs = [ ConfigMVP ConfigMVPReaderINI DateTime ListMoreUtils LogDispatchouli MixinLinewise ModuleRuntime Moose ParamsUtil PodElemental StringFlogger StringFormatter StringRewritePrefix namespaceautoclean ]; + propagatedBuildInputs = [ ConfigMVP ConfigMVPReaderINI DateTime ListMoreUtils LogDispatchouli MixinLinewise Moose PodElemental StringFlogger StringFormatter StringRewritePrefix namespaceautoclean ]; meta = { - homepage = https://github.com/rjbs/pod-weaver; + homepage = https://github.com/rjbs/Pod-Weaver; description = "Weave together a Pod document from an outline"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; maintainers = [ maintainers.rycee ]; @@ -10245,7 +10316,7 @@ let self = _self // overrides; _self = with self; { homepage = https://metacpan.org/pod/Redis; description = "Perl binding for Redis database"; license = stdenv.lib.licenses.artistic2; - maintainers = with maintainers; [ ocharles rycee ]; + maintainers = with maintainers; [ rycee ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -10325,7 +10396,7 @@ let self = _self // overrides; _self = with self; { homepage = http://jaldhar.github.com/REST-Utils; description = "Utility functions for REST applications"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -10389,12 +10460,11 @@ let self = _self // overrides; _self = with self; { }; RoleTiny = buildPerlPackage rec { - name = "Role-Tiny-2.000001"; + name = "Role-Tiny-2.000003"; src = fetchurl { url = "mirror://cpan/authors/id/H/HA/HAARG/${name}.tar.gz"; - sha256 = "31883410a7c85d6dc7501c718b1f83edba013a7b9bbccf0338a1033c391f296d"; + sha256 = "6e6c967e1154f290a40c9c60a762cc3b2ec5438107a4fbadddbe55a55b393434"; }; - buildInputs = [ TestFatal ]; meta = { description = "Roles. Like a nouvelle cuisine portion size slice of Moose"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; @@ -10410,7 +10480,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ SOAPLite ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -10561,7 +10631,7 @@ let self = _self // overrides; _self = with self; { }; meta = { license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -10597,7 +10667,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Perl's Web Services Toolkit"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -10625,10 +10695,10 @@ let self = _self // overrides; _self = with self; { }; SoftwareLicense = buildPerlPackage rec { - name = "Software-License-0.103011"; + name = "Software-License-0.103012"; src = fetchurl { url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; - sha256 = "03dyc5sx0asq1m3276l224q5776ng24fw5llf3gr9mbgklkgj05s"; + sha256 = "47f9acb7f4eeed35e38c1bec37a71b61e651965233d67dadfae6390571517db1"; }; propagatedBuildInputs = [ DataSection TextTemplate TryTiny ]; meta = { @@ -10790,7 +10860,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ NumberFormat ]; meta = { license = "open_source"; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -10877,7 +10947,7 @@ let self = _self // overrides; _self = with self; { sha256 = "0m3hjk292hnxyi8nkfy8hlr1khnbf2clgkb4kzj0ycq8gcd2z0as"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -10903,7 +10973,7 @@ let self = _self // overrides; _self = with self; { sha256 = "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -10972,7 +11042,7 @@ let self = _self // overrides; _self = with self; { sha256 = "0dfxhr6hxc2majkkrm0qbx3qcbykzpphbj2ms93dc86f7183c1p6"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -11011,7 +11081,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Use TT to interpolate lexical variables"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -11227,7 +11297,7 @@ let self = _self // overrides; _self = with self; { sha256 = "0cnwwrd5d6i80f33s7n2ak90rh4s53ss7q57wndrpkpr4bfn3djm"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -11319,7 +11389,7 @@ let self = _self // overrides; _self = with self; { description = "Stream TAP from pgTAP test scripts"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; platforms = stdenv.lib.platforms.linux; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; }; }; @@ -11390,7 +11460,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ TemplateToolkit ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -11417,7 +11487,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ TemplateToolkit ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -11430,7 +11500,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ JSON TemplateToolkit ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -11653,7 +11723,7 @@ let self = _self // overrides; _self = with self; { buildInputs = [ ClassInspector TestUnitLite ]; propagatedBuildInputs = [ constantboolean ExceptionBase SymbolUtil ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -11809,7 +11879,7 @@ let self = _self // overrides; _self = with self; { homepage = http://metacpan.org/release/Test-EOL; description = "Check the correct line endings in your project"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -11834,22 +11904,23 @@ let self = _self // overrides; _self = with self; { homepage = https://metacpan.org/release/Test-FailWarnings; description = "Add test failures if warnings are caught"; license = stdenv.lib.licenses.asl20; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; - TestFatal = buildPerlPackage { - name = "Test-Fatal-0.013"; + TestFatal = buildPerlPackage rec { + name = "Test-Fatal-0.014"; src = fetchurl { - url = mirror://cpan/authors/id/R/RJ/RJBS/Test-Fatal-0.013.tar.gz; - sha256 = "1rrndzkjff3bdlzzdsfsd3fhng142la2m74ihkgv17islkp17yq2"; + url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; + sha256 = "bcdcef5c7b2790a187ebca810b0a08221a63256062cfab3c3b98685d91d1cbb0"; }; propagatedBuildInputs = [ TryTiny ]; meta = { - homepage = https://github.com/rjbs/test-fatal; + homepage = https://github.com/rjbs/Test-Fatal; description = "Incredibly simple helpers for testing code with exceptions"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; }; @@ -11941,7 +12012,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ JSONAny TestDifferences TestTester ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -11975,7 +12046,7 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ DevelCycle PadWalker ]; meta = { description = "Verifies code hasn't left circular references"; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -11991,7 +12062,7 @@ let self = _self // overrides; _self = with self; { meta = with stdenv.lib; { description = "Simulating other classes"; license = licenses.lgpl2Plus; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = platforms.unix; }; }; @@ -12004,7 +12075,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ SUPER ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12084,7 +12155,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Check the presence of tabs in your project"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12214,7 +12285,7 @@ let self = _self // overrides; _self = with self; { homepage = https://github.com/rjbs/Test-Routine; description = "Composable units of assertion"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12290,7 +12361,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Write tests, not scripts that run them"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12325,7 +12396,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Unit testing without external dependencies"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12381,7 +12452,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Test fallback behaviour in absence of modules"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12424,7 +12495,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ CGI TestWWWMechanize WWWMechanizeCGI ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12451,7 +12522,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ XMLLibXML ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12668,7 +12739,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Spy on objects to achieve test doubles (mock testing)"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12696,7 +12767,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Micro template engine with Perl5 language"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12899,7 +12970,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Remove leading and/or trailing whitespace from strings"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12911,7 +12982,7 @@ let self = _self // overrides; _self = with self; { sha256 = "0avk50kia78kxryh2whmaj5l18q2wvmkdyqyjsf6kwr4kgy6x3i7"; }; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -12958,7 +13029,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ URI ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -13338,7 +13409,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Wrapper around ICU collation services"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; broken = true; # tests fail http://hydra.nixos.org/build/25141764/nixlog/1/raw }; @@ -13440,7 +13511,7 @@ let self = _self // overrides; _self = with self; { meta = { description = "Build a URI from a set of named parameters"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -13549,7 +13620,7 @@ let self = _self // overrides; _self = with self; { --replace '#!/usr/bin/perl' '#!${perl}/bin/perl' ''; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -13783,7 +13854,7 @@ let self = _self // overrides; _self = with self; { }; meta = { description = "A re-usable XPath engine for DOM-like trees"; - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; @@ -13858,7 +13929,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ XMLParser ]; meta = { - maintainers = with maintainers; [ ocharles ]; + maintainers = with maintainers; [ ]; platforms = stdenv.lib.platforms.unix; }; }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7bcf655efe6..c85b1ca2508 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -106,7 +106,7 @@ in modules // { }; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/discid/${name}.tar.gz"; + url = "mirror://pypi/d/discid/${name}.tar.gz"; sha256 = "b39d443051b26d0230be7a6c616243daae93337a8711dd5d4119bb6a0e516fa8"; }; @@ -140,6 +140,8 @@ in modules // { plantuml = callPackage ../tools/misc/plantuml { }; + pyatspi = if isPy3k then callPackage ../development/python-modules/pyatspi { } else throw "pyatspi not supported for interpreter ${python.executable}"; + pycairo = callPackage ../development/python-modules/pycairo { }; @@ -147,6 +149,8 @@ in modules // { pycrypto = callPackage ../development/python-modules/pycrypto { }; + pyexiv2 = if (!isPy3k) then callPackage ../development/python-modules/pyexiv2 {} else throw "pyexiv2 not supported for interpreter ${python.executable}"; + pygame = callPackage ../development/python-modules/pygame { }; pygobject = callPackage ../development/python-modules/pygobject { }; @@ -166,10 +170,9 @@ in modules // { pythonPackages = self; }; - pyqt5 = callPackage ../development/python-modules/pyqt/5.x.nix { + pyqt5 = pkgs.qt55.callPackage ../development/python-modules/pyqt/5.x.nix { sip = self.sip_4_16; pythonDBus = self.dbus; - inherit (pkgs.qt55) qtbase qtsvg qtwebkit; }; pyside = callPackage ../development/python-modules/pyside { }; @@ -184,6 +187,8 @@ in modules // { pyxml = if !isPy3k then callPackage ../development/python-modules/pyxml{ } else throw "pyxml not supported for interpreter ${python.executable}"; + rhpl = if !isPy3k then callPackage ../development/python-modules/rhpl {} else throw "rhpl not supported for interpreter ${python.executable}"; + sip = callPackage ../development/python-modules/sip { }; sip_4_16 = callPackage ../development/python-modules/sip/4.16.nix { }; @@ -198,7 +203,7 @@ in modules // { name = "aafigure-0.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/aafigure/${name}.tar.gz"; + url = "mirror://pypi/a/aafigure/${name}.tar.gz"; sha256 = "090c88beb091d28a233f854e239713aa15d8d1906ea16211855345c912e8a091"; }; @@ -330,7 +335,7 @@ in modules // { name = "actdiag-0.5.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/actdiag/${name}.tar.gz"; + url = "mirror://pypi/a/actdiag/${name}.tar.gz"; sha256 = "1vr4hnkr0gcvvpaycd8q3vcx029b2f5yv8swhdr8kwspaqb0dvfa"; }; @@ -356,7 +361,7 @@ in modules // { name = "adal-${version}"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/a/adal/adal-0.1.0.tar.gz; + url = mirror://pypi/a/adal/adal-0.1.0.tar.gz; sha256 = "1f32k18ck54adqlgvh6fjhy4yavcyrwy813prjyqppqqq4bn1a09"; }; @@ -410,7 +415,7 @@ in modules // { version = "1.0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/aiodns/${name}.tar.gz"; + url = "mirror://pypi/a/aiodns/${name}.tar.gz"; sha256 = "595b78b8d54115d937cf60d778c02dad76b6f789fd527dab308f99e5601e7f3d"; }; @@ -432,11 +437,11 @@ in modules // { aiohttp = buildPythonPackage rec { name = "aiohttp-${version}"; - version = "0.19.0"; + version = "0.21.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/aiohttp/${name}.tar.gz"; - sha256 = "9bfb173baec179431a1c8f3566185e8ebbd1517cf4450217087d79e26e44c287"; + url = "mirror://pypi/a/aiohttp/${name}.tar.gz"; + sha256 = "0n8517wc8b6yc925f7zhgl4wqf4ay1w2fzar0pj1h20yfa1wiids"; }; disabled = pythonOlder "3.4"; @@ -457,7 +462,7 @@ in modules // { name = "alabaster-0.7.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/alabaster/${name}.tar.gz"; + url = "mirror://pypi/a/alabaster/${name}.tar.gz"; sha256 = "f416a84e0d0ddbc288f6b8f2c276d10b40ca1238562cd9ed5a751292ec647b71"; }; @@ -478,7 +483,7 @@ in modules // { name = "alembic-0.8.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/alembic/${name}.tar.gz"; + url = "mirror://pypi/a/alembic/${name}.tar.gz"; sha256 = "1sgwvwylzd5h14130mwr0cbyy0fil0a1bq0d0ki97wqvkic3db7f"; }; @@ -497,7 +502,7 @@ in modules // { version = "0.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-editor/${name}.tar.gz"; + url = "mirror://pypi/p/python-editor/${name}.tar.gz"; sha256 = "1gykxn16anmsbcrwhx3rrhwjif95mmwvq9gjcrr9bbzkdc8sf8a4"; }; @@ -512,7 +517,7 @@ in modules // { version = "0.3.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-gnupg/${name}.tar.gz"; + url = "mirror://pypi/p/python-gnupg/${name}.tar.gz"; sha256 = "0nkbs9c8f30lra7ca39kg91x8cyxn0jb61vih4qky839gpbwwwiq"; }; @@ -535,7 +540,7 @@ in modules // { name = "almir-0.1.8"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/a/almir/${name}.zip"; + url = "mirror://pypi/a/almir/${name}.zip"; sha256 = "5dc0b8a5071f3ff46cd2d92608f567ba446e4c733c063b17d89703caeb9868fe"; }; @@ -629,7 +634,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/a/anyjson/${name}.tar.gz"; + url = "mirror://pypi/a/anyjson/${name}.tar.gz"; sha256 = "37812d863c9ad3e35c0734c42e0bf0320ce8c3bed82cd20ad54cb34d158157ba"; }; @@ -648,7 +653,7 @@ in modules // { disabled = pythonOlder "2.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/amqp/${name}.tar.gz"; + url = "mirror://pypi/a/amqp/${name}.tar.gz"; sha256 = "06n6q0kxhjnbfz3vn8x9yz09lwmn1xi9d6wxp31h5jbks0b4vsid"; }; @@ -747,7 +752,7 @@ in modules // { name = "apipkg-1.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/apipkg/${name}.tar.gz"; + url = "mirror://pypi/a/apipkg/${name}.tar.gz"; sha256 = "2e38399dbe842891fe85392601aab8f40a8f4cc5a9053c326de35a1cc0297ac6"; }; @@ -764,7 +769,7 @@ in modules // { name = "appdirs-1.4.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/appdirs/appdirs-1.4.0.tar.gz"; + url = "mirror://pypi/a/appdirs/appdirs-1.4.0.tar.gz"; sha256 = "8fc245efb4387a4e3e0ac8ebcc704582df7d72ff6a42a53f5600bbb18fdaadc5"; }; @@ -795,7 +800,7 @@ in modules // { name = "appnope-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/appnope/${name}.tar.gz"; + url = "mirror://pypi/a/appnope/${name}.tar.gz"; sha256 = "8b995ffe925347a2138d7ac0fe77155e4311a0ea6d6da4f5128fe4b3cbe5ed71"; }; @@ -833,7 +838,7 @@ in modules // { src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/asyncio/${name}.tar.gz"; + url = "mirror://pypi/a/asyncio/${name}.tar.gz"; sha256 = "0hfbqwk9y0bbfgxzg93s2wyk6gcjsdxlr5jwy97hx64ppkw0ydl3"; }; @@ -848,7 +853,7 @@ in modules // { name = "funcsigs-0.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/funcsigs/${name}.tar.gz"; + url = "mirror://pypi/f/funcsigs/${name}.tar.gz"; sha256 = "d83ce6df0b0ea6618700fe1db353526391a8a3ada1b7aba52fed7a61da772033"; }; @@ -869,7 +874,7 @@ in modules // { disabled = !isPy27; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/A/APScheduler/${name}.tar.gz"; + url = "mirror://pypi/A/APScheduler/${name}.tar.gz"; sha256 = "1ljjhn6cv8b1pccsi3mgc887ypi2vim317r9p0zh0amd0bhkk6wb"; }; @@ -902,7 +907,7 @@ in modules // { name = "args-0.1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/args/${name}.tar.gz"; + url = "mirror://pypi/a/args/${name}.tar.gz"; sha256 = "a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814"; }; @@ -916,7 +921,7 @@ in modules // { name = "Area53-0.94"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/A/Area53/${name}.tar.gz"; + url = "mirror://pypi/A/Area53/${name}.tar.gz"; sha256 = "0v9b7f8b6v21y410anx5sr52k2ac8jrzdf19q6m6p0zsdsf9vr42"; }; @@ -932,7 +937,7 @@ in modules // { version = "1.1.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/chai/${name}.tar.gz"; + url = "mirror://pypi/c/chai/${name}.tar.gz"; sha256 = "016kf3irrclpkpvcm7q0gmkfibq7jgy30a9v73pp42bq9h9a32bl"; }; @@ -946,7 +951,7 @@ in modules // { version = "0.7.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/arrow/${name}.tar.gz"; + url = "mirror://pypi/a/arrow/${name}.tar.gz"; sha256 = "0yx10dz3hp825fcq9w15zbp26v622npcjscb91da05zig8036lra"; }; @@ -973,7 +978,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/async/${name}.tar.gz"; + url = "mirror://pypi/a/async/${name}.tar.gz"; sha256 = "1lfmjm8apy9qpnpbq8g641fd01qxh9jlya5g2d6z60vf8p04rla1"; }; }; @@ -983,7 +988,7 @@ in modules // { name = "atomiclong-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/atomiclong/atomiclong-${version}.tar.gz"; + url = "mirror://pypi/a/atomiclong/atomiclong-${version}.tar.gz"; sha256 = "1gjbc9lvpkgg8vj7dspif1gz9aq4flkhxia16qj6yvb7rp27h4yb"; }; buildInputs = with self; [ pytest ]; @@ -1003,7 +1008,7 @@ in modules // { name = "atomicwrites-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/atomicwrites/atomicwrites-${version}.tar.gz"; + url = "mirror://pypi/a/atomicwrites/atomicwrites-${version}.tar.gz"; sha256 = "08s05h211r07vs66r4din3swrbzb344vli041fihpg34q3lcxpvw"; }; @@ -1019,7 +1024,7 @@ in modules // { name = "argparse-1.4.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/argparse/${name}.tar.gz"; + url = "mirror://pypi/a/argparse/${name}.tar.gz"; sha256 = "1r6nznp64j68ih1k537wms7h57nvppq0szmwsaf99n71bfjqkc32"; }; @@ -1052,7 +1057,7 @@ in modules // { propagatedBuildInputs = with self; [ logilab_common six lazy-object-proxy wrapt ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/astroid/${name}.tar.gz"; + url = "mirror://pypi/a/astroid/${name}.tar.gz"; sha256 = "7f7e5512efe515098e77cbd3a60e87c8db8954097b0e025d8d6f72f2e8ddc298"; }; @@ -1074,7 +1079,7 @@ in modules // { name = "attrdict-2.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/attrdict/${name}.tar.gz"; + url = "mirror://pypi/a/attrdict/${name}.tar.gz"; sha256 = "86aeb6d3809e0344409f8148d7cac9eabce5f0b577c160b5e90d10df3f8d2ad3"; }; @@ -1092,7 +1097,7 @@ in modules // { version = "2.1.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/audioread/${name}.tar.gz"; + url = "mirror://pypi/a/audioread/${name}.tar.gz"; sha256 = "ffb601de7a9e40850d4ec3256a3a6bbe8fa40466dafb5c65f41b08e4bb963f1e"; }; @@ -1126,7 +1131,7 @@ in modules // { name = "autopep8-1.0.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/autopep8/${name}.tar.gz"; + url = "mirror://pypi/a/autopep8/${name}.tar.gz"; sha256 = "17lydqm8y9a5qadp6iifxrb5mb0g9fr1vxn5qy1fjpyhazxaw8n1"; }; @@ -1150,7 +1155,7 @@ in modules // { version = "0.2.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/av/${name}.tar.gz"; + url = "mirror://pypi/a/av/${name}.tar.gz"; sha256 = "bdc7e2e213cb9041d9c5c0497e6f8c47e84f89f1f2673a46d891cca0fb0d19a0"; }; @@ -1174,7 +1179,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/avro/${name}.tar.gz"; + url = "mirror://pypi/a/avro/${name}.tar.gz"; sha256 = "edf14143cabb2891f05a73d60a57a9fc5a9ebd305c2188abb3f5db777c707ad5"; }; @@ -1190,7 +1195,7 @@ in modules // { disabled = (!isPy3k); src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/avro3k/${name}.tar.gz"; + url = "mirror://pypi/a/avro3k/${name}.tar.gz"; sha256 = "15ahl0irwwj558s964abdxg4vp6iwlabri7klsm2am6q5r0ngsky"; }; @@ -1207,7 +1212,7 @@ in modules // { version = "1.6.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/awesome-slugify/${name}.tar.gz"; + url = "mirror://pypi/a/awesome-slugify/${name}.tar.gz"; sha256 = "0wgxrhr8s5vk2xmcz9s1z1aml4ppawmhkbggl9rp94c747xc7pmv"; }; @@ -1227,7 +1232,7 @@ in modules // { version = "1.10.18"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/awscli/${name}.tar.gz"; + url = "mirror://pypi/a/awscli/${name}.tar.gz"; sha256 = "0vdj7p4cwsbzhanhp5f2c0b0qr2gh76dyanji73avvj4jvdb5d4g"; }; @@ -1267,7 +1272,7 @@ in modules // { version = "0.1.0"; src = pkgs.fetchurl { sha256 = "05isyrqbk16dg1bc3mnc4ynxr3nchslvia5wr1sdmxvc3v2y729d"; - url = "https://pypi.python.org/packages/source/a/aws-shell/aws-shell-0.1.0.tar.gz"; + url = "mirror://pypi/a/aws-shell/aws-shell-0.1.0.tar.gz"; }; propagatedBuildInputs = with self; [ configobj prompt_toolkit_52 awscli boto3 pygments sqlite3 mock pytest @@ -1298,7 +1303,7 @@ in modules // { disabled = pythonOlder "2.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/azure/${name}.zip"; + url = "mirror://pypi/a/azure/${name}.zip"; sha256 = "89c20b2efaaed3c6f56345d55c32a8d4e7d2a16c032d0acb92f8f490c508fe24"; }; @@ -1316,7 +1321,7 @@ in modules // { 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; + url = mirror://pypi/a/azure-nspkg/azure-nspkg-1.0.0.zip; sha256 = "1xqvc8by1lbd7j9dxyly03jz3rgbmnsiqnqgydhkf4pa2mn2hgr9"; }; meta = { @@ -1332,7 +1337,7 @@ in modules // { name = "azure-common-${version}"; disabled = isPyPy; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/a/azure-common/azure-common-1.0.0.zip; + url = mirror://pypi/a/azure-common/azure-common-1.0.0.zip; sha256 = "074rwwy8zzs7zw3nww5q2wg5lxgdc4rmypp2gfc9mwsz0gb70491"; }; propagatedBuildInputs = with self; [ azure-nspkg ]; @@ -1351,7 +1356,7 @@ in modules // { version = "0.20.0"; name = "azure-mgmt-common-${version}"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/a/azure-mgmt-common/azure-mgmt-common-0.20.0.zip; + url = mirror://pypi/a/azure-mgmt-common/azure-mgmt-common-0.20.0.zip; sha256 = "1rmzpz3733wv31rsnqpdy4bbafvk5dhbqx7q0xf62dlz7p0i4f66"; }; propagatedBuildInputs = with self; [ azure-common azure-mgmt-nspkg requests2 ]; @@ -1371,7 +1376,7 @@ in modules // { version = "0.20.0"; name = "azure-mgmt-compute-${version}"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/a/azure-mgmt-compute/azure-mgmt-compute-0.20.0.zip; + url = mirror://pypi/a/azure-mgmt-compute/azure-mgmt-compute-0.20.0.zip; sha256 = "12hr5vxdg2sk2fzr608a37f4i8nbchca7dgdmly2w5fc7x88jx2v"; }; postInstall = '' @@ -1391,7 +1396,7 @@ in modules // { version = "0.20.1"; name = "azure-mgmt-network-${version}"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/a/azure-mgmt-network/azure-mgmt-network-0.20.1.zip; + url = mirror://pypi/a/azure-mgmt-network/azure-mgmt-network-0.20.1.zip; sha256 = "10vj22h6nxpw0qpvib5x2g6qs5j8z31142icvh4qk8k40fcrs9hx"; }; postInstall = '' @@ -1411,7 +1416,7 @@ in modules // { version = "1.0.0"; name = "azure-mgmt-nspkg-${version}"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/a/azure-mgmt-nspkg/azure-mgmt-nspkg-1.0.0.zip; + url = mirror://pypi/a/azure-mgmt-nspkg/azure-mgmt-nspkg-1.0.0.zip; sha256 = "1rq92fj3kvnqkk18596dybw0kvhgscvc6cd8hp1dhy3wrkqnhwmq"; }; propagatedBuildInputs = with self; [ azure-nspkg ]; @@ -1427,7 +1432,7 @@ in modules // { version = "0.20.1"; name = "azure-mgmt-resource-${version}"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/a/azure-mgmt-resource/azure-mgmt-resource-0.20.1.zip; + url = mirror://pypi/a/azure-mgmt-resource/azure-mgmt-resource-0.20.1.zip; sha256 = "0slh9qfm5nfacrdm3lid0sr8kwqzgxvrwf27laf9v38kylkfqvml"; }; postInstall = '' @@ -1447,7 +1452,7 @@ in modules // { version = "0.20.0"; name = "azure-mgmt-storage-${version}"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/a/azure-mgmt-storage/azure-mgmt-storage-0.20.0.zip; + url = mirror://pypi/a/azure-mgmt-storage/azure-mgmt-storage-0.20.0.zip; sha256 = "16iw7hqhq97vlzfwixarfnirc60l5mz951p57brpcwyylphl3yim"; }; postInstall = '' @@ -1467,7 +1472,7 @@ in modules // { 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; + url = mirror://pypi/a/azure-storage/azure-storage-0.20.3.zip; sha256 = "06bmw6k2000kln5jwk5r9bgcalqbyvqirmdh9gq4s6nb4fv3c0jb"; }; propagatedBuildInputs = with self; [ azure-common futures dateutil requests2 ]; @@ -1486,7 +1491,7 @@ in modules // { 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; + url = mirror://pypi/a/azure-servicemanagement-legacy/azure-servicemanagement-legacy-0.20.1.zip; sha256 = "17dwrp99sx5x9cm4vldkaxhki9gbd6dlafa0lpr2n92xhh2838zs"; }; propagatedBuildInputs = with self; [ azure-common requests2 ]; @@ -1505,7 +1510,7 @@ in modules // { name = "backports.ssl_match_hostname-3.4.0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/backports.ssl_match_hostname/backports.ssl_match_hostname-3.4.0.2.tar.gz"; + url = "mirror://pypi/b/backports.ssl_match_hostname/backports.ssl_match_hostname-3.4.0.2.tar.gz"; sha256 = "07410e7fb09aab7bdaf5e618de66c3dac84e2e3d628352814dc4c37de321d6ae"; }; @@ -1520,7 +1525,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/backports.lzma/${name}.tar.gz"; + url = "mirror://pypi/b/backports.lzma/${name}.tar.gz"; sha256 = "bac58aec8d39ac3d22250840fb24830d0e4a0ef05ad8f3f09172dc0cc80cdbca"; }; @@ -1539,7 +1544,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/babelfish/${name}.tar.gz"; + url = "mirror://pypi/b/babelfish/${name}.tar.gz"; sha256 = "0wrw21dyq7v6lbffwvi1ik43d7dhmcv8xvgrrihhiv7ys1rd3gag"; }; @@ -1557,7 +1562,7 @@ in modules // { disabled = isPy26 || isPy27 || isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/${pname}/${name}.tar.gz"; + url = "mirror://pypi/b/${pname}/${name}.tar.gz"; sha256 = "1ajmflvvlkflrcmqmkrx0zaira84z8kv4ssb2jprfwvjh8vfkysb"; }; @@ -1577,7 +1582,7 @@ in modules // { name = "batinfo-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/batinfo/${name}.tar.gz"; + url = "mirror://pypi/b/batinfo/${name}.tar.gz"; sha256 = "0gyzkxzvj5l6qrw706bnm3cckqzzzbrjr7jkxc087d7775a73499"; }; @@ -1597,7 +1602,7 @@ in modules // { name = "bcdoc-0.14.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/bcdoc/${name}.tar.gz"; + url = "mirror://pypi/b/bcdoc/${name}.tar.gz"; sha256 = "1s2kdqs1n2mj7wq3w0pq30zs7vxq0l3abik2clqnc4hm2j7crbk8"; }; @@ -1633,7 +1638,7 @@ in modules // { name = "beautifulsoup4-4.4.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/b/beautifulsoup4/${name}.tar.gz"; + url = "mirror://pypi/b/beautifulsoup4/${name}.tar.gz"; sha256 = "1d36lc4pfkvl74fmzdib2nqnvknm0jddgf2n9yd7im150qyh3m47"; }; @@ -1655,7 +1660,7 @@ in modules // { name = "beautifulsoup4-4.1.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/b/beautifulsoup4/${name}.tar.gz"; + url = "mirror://pypi/b/beautifulsoup4/${name}.tar.gz"; sha256 = "0cbcml88bkx9gf1wznxa0kqz1wpyakfbyh9gmxw0wljhda1q0zk1"; }; @@ -1703,11 +1708,11 @@ in modules // { }; betamax = buildPythonPackage rec { - name = "betamax-0.5.1"; + name = "betamax-0.6.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/betamax/${name}.tar.gz"; - sha256 = "1glzigrbip9w2jr2gcmwa96rffhi9x9l1455dhbcx2gh3pmcykl6"; + url = "mirror://pypi/b/betamax/${name}.tar.gz"; + sha256 = "0vw4d53jbbb2kdl7l891h8iyxklqcd6ldvgcyhw9hl40ljdhv1wz"; }; propagatedBuildInputs = [ self.requests2 ]; @@ -1722,11 +1727,11 @@ in modules // { betamax-matchers = buildPythonPackage rec { name = "betamax-matchers-${version}"; - version = "0.2.0"; + version = "0.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/betamax-matchers/${name}.tar.gz"; - sha256 = "13n2dy8s2jx8x8bbx684bff3444584bnmg0zhkfxhxndpy18p4is"; + url = "mirror://pypi/b/betamax-matchers/${name}.tar.gz"; + sha256 = "039kvqsdcvvlfxjc3n1x2xvjg6qkqbql0p7rc4z7bnxm9kcm88la"; }; buildInputs = with self; [ betamax requests_toolbelt ]; @@ -1807,7 +1812,7 @@ in modules // { src = pkgs.fetchurl { sha256 = "1azd0g0p9qk9wp344jmvqp4wk5f3wpsz3lb750xvnmd7qzf6v377"; - url = "https://pypi.python.org/packages/source/b/buttersink/${name}.tar.gz"; + url = "mirror://pypi/b/buttersink/${name}.tar.gz"; }; meta = { @@ -1833,7 +1838,7 @@ in modules // { name = "cached-property-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cached-property/${name}.tar.gz"; + url = "mirror://pypi/c/cached-property/${name}.tar.gz"; sha256 = "10dwi3s6f154ag9dvqy5jiwp31fs57lbxjcjgn4cwvi8qyqpi3j5"; }; @@ -1875,7 +1880,7 @@ in modules // { name = "circus-0.11.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/circus/${name}.tar.gz"; + url = "mirror://pypi/c/circus/${name}.tar.gz"; sha256 = "3757344aa5073ea29e6e2607b3de8ba1652502c61964316116931884293fe846"; }; @@ -1889,7 +1894,7 @@ in modules // { version = "2.6.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/colorlog/${name}.tar.gz"; + url = "mirror://pypi/c/colorlog/${name}.tar.gz"; sha256 = "0djv6ky1yk28s1l093w8plg19kp88q4nyrm1vfxyq0s9j4pix29l"; }; @@ -1909,7 +1914,7 @@ in modules // { version = "0.1.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/${pname}/${name}.tar.gz"; + url = "mirror://pypi/c/${pname}/${name}.tar.gz"; sha256 = "0w1j43l76zw10dvs2kk7jz7kqj2ss7gfgfdxyls27pckwin89gxb"; }; @@ -1942,7 +1947,7 @@ in modules // { version = "1.1.7"; disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/${pname}/${name}.tar.gz"; + url = "mirror://pypi/c/${pname}/${name}.tar.gz"; sha256 = "f856ea2e9e2947abc1a6557625cc6b0e45228984f397a90c420b2f468dc4cb97"; }; doCheck = false; @@ -1965,7 +1970,7 @@ in modules // { version = "0.10.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/C/Cycler/${name}.tar.gz"; + url = "mirror://pypi/C/Cycler/${name}.tar.gz"; sha256 = "cd7b2d1018258d7247a71425e9f26463dfb444d411c39569972f4ce586b0c9d8"; }; @@ -1993,7 +1998,7 @@ in modules // { pname = "datadog"; version = "0.10.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/${pname}/${name}.tar.gz"; + url = "mirror://pypi/d/${pname}/${name}.tar.gz"; sha256 = "0y2if4jj43n5jis20imragvhhyhr840w4m1g7j7fxh9bn7h273zp"; }; @@ -2012,7 +2017,7 @@ in modules // { pname = "python-debian"; version = "0.1.23"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/${pname}/${name}.tar.gz"; + url = "mirror://pypi/p/${pname}/${name}.tar.gz"; sha256 = "193faznwnjc3n5991wyzim6h9gyq1zxifmfrnpm3avgkh7ahyynh"; }; propagatedBuildInputs = with self; [ chardet six ]; @@ -2023,7 +2028,7 @@ in modules // { pname = "defusedxml"; version = "0.4.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/${pname}/${name}.tar.gz"; + url = "mirror://pypi/d/${pname}/${name}.tar.gz"; sha256 = "0y147zy3jqmk6ly7fbhqmzn1hf41xcb53f2vcc3m8x4ba5d1smfd"; }; }; @@ -2055,7 +2060,7 @@ in modules // { pname = "dugong"; version = "3.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/${pname}/${name}.tar.bz2"; + url = "mirror://pypi/d/${pname}/${name}.tar.bz2"; sha256 = "0y0rdxbiwm03zv6vpvapqilrird3h8ijz7xmb0j7ds5j4p6q3g24"; }; @@ -2066,7 +2071,7 @@ in modules // { name = "iowait-0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/iowait/${name}.tar.gz"; + url = "mirror://pypi/i/iowait/${name}.tar.gz"; sha256 = "ab1bc2eb84c22ccf61f17a0024f9fb6df781b39f1852764a66a7769d5adfb299"; }; @@ -2080,7 +2085,7 @@ in modules // { name = "responses-0.4.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/responses/${name}.tar.gz"; + url = "mirror://pypi/r/responses/${name}.tar.gz"; sha256 = "0fs7a4cf4f12mjhcjd5vfh0f3ixcy2nawzxpgsfr3ahf0rg7ppx5"; }; @@ -2094,7 +2099,7 @@ in modules // { name = "rarfile-2.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/rarfile/rarfile-2.6.tar.gz"; + url = "mirror://pypi/r/rarfile/rarfile-2.6.tar.gz"; sha256 = "326700c5450cfb367f612e918866ea27551bac02f4656f340003c88873fa1a56"; }; @@ -2108,7 +2113,7 @@ in modules // { name = "proboscis-1.2.6.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/proboscis/proboscis-1.2.6.0.tar.gz"; + url = "mirror://pypi/p/proboscis/proboscis-1.2.6.0.tar.gz"; sha256 = "b822b243a7c82030fce0de97bdc432345941306d2c24ef227ca561dd019cd238"; }; @@ -2126,7 +2131,7 @@ in modules // { name = "pyechonest-8.0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyechonest/pyechonest-8.0.2.tar.gz"; + url = "mirror://pypi/p/pyechonest/pyechonest-8.0.2.tar.gz"; sha256 = "496265f4b7d33483ec153b9e1b8333fe959b115f7e781510089c8313b7d86560"; }; @@ -2144,7 +2149,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/billiard/${name}.tar.gz"; + url = "mirror://pypi/b/billiard/${name}.tar.gz"; sha256 = "02wxsc6bhqvzh8j6w758kvgqbnj14l796mvmrcms8fgfamd2lak9"; }; @@ -2163,7 +2168,7 @@ in modules // { version = "0.4.0"; src = pkgs.fetchurl { - url ="https://pypi.python.org/packages/source/b/binaryornot/${name}.tar.gz"; + url ="mirror://pypi/b/binaryornot/${name}.tar.gz"; sha256 = "1j4f51dxic39mdwf6alj7gd769wy6mhk916v031wjali51xkh3xb"; }; @@ -2183,7 +2188,7 @@ in modules // { name = "bitbucket-api-0.4.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/b/bitbucket-api/${name}.tar.gz"; + url = "mirror://pypi/b/bitbucket-api/${name}.tar.gz"; sha256 = "e890bc3893d59a6f203c1eb2bae60e78ac4d3869da7ea4fb104dca588aea85b2"; }; @@ -2201,7 +2206,7 @@ in modules // { bitbucket-cli = buildPythonPackage rec { name = "bitbucket-cli-0.4.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/bitbucket-cli/${name}.tar.gz"; + url = "mirror://pypi/b/bitbucket-cli/${name}.tar.gz"; sha256 = "d8909627ae7a46519379c6343698d49f9ffd5de839ff44796974828d843a9419"; }; @@ -2240,7 +2245,7 @@ in modules // { version = "0.9.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/blaze/${name}.tar.gz"; + url = "mirror://pypi/b/blaze/${name}.tar.gz"; sha256 = "fde4fd5733d8574345521581078a4fd89bb51ad3814eda88f1f467faa3a9784a"; }; @@ -2315,7 +2320,7 @@ in modules // { version = "1.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/blinker/${name}.tar.gz"; + url = "mirror://pypi/b/blinker/${name}.tar.gz"; sha256 = "6811010809262261e41ab7b92f3f6d23f35cf816fbec2bc05077992eebec6e2f"; }; @@ -2329,11 +2334,12 @@ in modules // { blockdiag = buildPythonPackage rec { - name = "blockdiag-1.4.7"; + name = "blockdiag"; + version = "1.5.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/blockdiag/${name}.tar.gz"; - sha256 = "0bc29sh8hj3hmhclifh1by0n6vg2pl9wkxb7fmljyw0arjas54bf"; + url = "https://bitbucket.org/blockdiag/blockdiag/get/${version}.tar.bz2"; + sha256 = "0r0qbmv0ijnqidsgm2rqs162y9aixmnkmzgnzgk52hiy7ydm4k8f"; }; buildInputs = with self; [ pep8 nose unittest2 docutils ]; @@ -2377,7 +2383,7 @@ in modules // { version = "6.1.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/bsddb3/${name}.tar.gz"; + url = "mirror://pypi/b/bsddb3/${name}.tar.gz"; sha256 = "6f21b0252125c07798d784c164ef135ad153d226c01b290258ee1c5b9e7c4dd3"; }; @@ -2406,7 +2412,7 @@ in modules // { version = "0.10.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/bokeh/${name}.tar.gz"; + url = "mirror://pypi/b/bokeh/${name}.tar.gz"; sha256 = "2d8bd8c98e2f62b2a28328d3cc95bfbe257742fa7efc9c382b4c8ae4a141df14"; }; @@ -2473,13 +2479,13 @@ in modules // { boto3 = buildPythonPackage rec { name = "boto3-${version}"; - version = "1.2.2"; + version = "1.3.1"; src = pkgs.fetchFromGitHub { owner = "boto"; repo = "boto3"; rev = version; - sha256 = "1w53lhhdzi29d31qzhflb5mcwb24mfrj4frv70w6qyn8vmqznnjy"; + sha256 = "1rbwcslk9dgayrg3vy3m0bqj767hdy1aphy5wjgz925bsydgxdg6"; }; propagatedBuildInputs = [ self.botocore @@ -2513,7 +2519,7 @@ in modules // { name = "botocore-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/botocore/${name}.tar.gz"; + url = "mirror://pypi/b/botocore/${name}.tar.gz"; sha256 = "07rp24lnpjlk0c889g0d8y2ykc711gi04w715nkm9mv734ndsman"; }; @@ -2544,7 +2550,7 @@ in modules // { name = "bottle-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/bottle/${name}.tar.gz"; + url = "mirror://pypi/b/bottle/${name}.tar.gz"; sha256 = "1b2hq0l4nwh75s2w6wgiqlkj4q1qvyx6a94axl2k4lsym1aifpfd"; }; @@ -2565,7 +2571,7 @@ in modules // { disabled = (!isPy27); src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/B/Box2D/Box2D-2.3b0.zip"; + url = "mirror://pypi/B/Box2D/Box2D-2.3b0.zip"; sha256 = "4519842c650b0153550eb0c9864da46b5a4ec8555c68b70f5cd2952a21c788b0"; }; @@ -2590,7 +2596,7 @@ in modules // { version = "1.0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/bugwarrior/${name}.tar.gz"; + url = "mirror://pypi/b/bugwarrior/${name}.tar.gz"; sha256 = "efe41756c152789f39006f157add9bedfa2b85d2cac15c067e635e37c70cb8f8"; }; @@ -2635,7 +2641,7 @@ in modules // { version = "1.1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-bugzilla/python-${name}.tar.gz"; + url = "mirror://pypi/p/python-bugzilla/python-${name}.tar.gz"; sha256 = "11361635a4f1613803a0b9b93ba9126f7fd36180653f953e2590b1536d107d46"; }; @@ -2666,7 +2672,7 @@ in modules // { version = "0.30"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/check-manifest/check-manifest-${version}.tar.gz"; + url = "mirror://pypi/c/check-manifest/check-manifest-${version}.tar.gz"; sha256 = "b19fd0d8b9286532ba3dc0282484fd76d11200cf24b340dc3d08f293c7dd0500"; }; @@ -2685,7 +2691,7 @@ in modules // { version = "2.0.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/devpi-common/devpi-common-${version}.tar.gz"; + url = "mirror://pypi/d/devpi-common/devpi-common-${version}.tar.gz"; sha256 = "a059c4099002d4af8f3ccfc8a9f4bf133b20ea404049b21a31fc1003e1d79452"; }; @@ -2709,7 +2715,7 @@ in modules // { name = "zc.buildout-2.2.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.buildout/${name}.tar.gz"; + url = "mirror://pypi/z/zc.buildout/${name}.tar.gz"; sha256 = "a6122ea5c06c6c044a9efce4a3df452c8573e1aebfda7b24262655daac894ef5"; }; @@ -2727,7 +2733,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.buildout/${name}.tar.gz"; + url = "mirror://pypi/z/zc.buildout/${name}.tar.gz"; sha256 = "a5c2fafa4d073ad3dabec267c44a996cbc624700a9a49467cd6b1ef63d35e029"; }; @@ -2745,7 +2751,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.buildout/${name}.tar.gz"; + url = "mirror://pypi/z/zc.buildout/${name}.tar.gz"; sha256 = "0ac5a325d3ffbc5a988fb3ba87f4159d4769cc73e3331cb5234edc8839b6506b"; }; @@ -2772,7 +2778,7 @@ in modules // { src = pkgs.fetchurl { inherit sha256; - url = "https://pypi.python.org/packages/source/z/zc.recipe.egg/zc.recipe.egg-${version}.tar.gz"; + url = "mirror://pypi/z/zc.recipe.egg/zc.recipe.egg-${version}.tar.gz"; }; meta.broken = true; # https://bitbucket.org/pypa/setuptools/issues/462/pkg_resourcesfind_on_path-thinks-the }; @@ -2792,7 +2798,7 @@ in modules // { meta.maintainers = with maintainers; [ mornfall ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/bunch/${name}.tar.gz"; + url = "mirror://pypi/b/bunch/${name}.tar.gz"; sha256 = "1akalx2pd1fjlvrq69plvcx783ppslvikqdm93z2sdybq07pmish"; }; doCheck = false; @@ -2803,7 +2809,7 @@ in modules // { name = "cairocffi-0.7.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cairocffi/${name}.tar.gz"; + url = "mirror://pypi/c/cairocffi/${name}.tar.gz"; sha256 = "e42b4256d27bd960cbf3b91a6c55d602defcdbc2a73f7317849c80279feeb975"; }; @@ -2856,7 +2862,7 @@ in modules // { name = "cairosvg-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/C/CairoSVG/CairoSVG-${version}.tar.gz"; + url = "mirror://pypi/C/CairoSVG/CairoSVG-${version}.tar.gz"; sha256 = "01lpm38qp7xlnv8jv7qg48j44p5088dwfsrcllgs5fz355lrfds1"; }; @@ -2874,7 +2880,7 @@ in modules // { name = "carrot-0.10.7"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/carrot/${name}.tar.gz"; + url = "mirror://pypi/c/carrot/${name}.tar.gz"; sha256 = "cb46374f3c883c580d142a79d2609883713a867cc86e0514163adce784ce2468"; }; @@ -2917,7 +2923,7 @@ in modules // { name = "cassandra-driver-2.6.0c2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/cassandra-driver/${name}.tar.gz"; + url = "mirror://pypi/c/cassandra-driver/${name}.tar.gz"; sha256 = "00cc2rkvkxaxn7sf2qzy29s6h394fla73rbdh9krxbswp5nvp27r"; }; @@ -2961,7 +2967,7 @@ in modules // { disabled = pythonOlder "2.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/celery/${name}.tar.gz"; + url = "mirror://pypi/c/celery/${name}.tar.gz"; sha256 = "0614ppp18vmiwdk0rxvz0wn62d7svanwdnx7jgqxpy9pb20rqd8s"; }; @@ -2984,7 +2990,7 @@ in modules // { version = "0.9.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/C/Cerberus/${name}.tar.gz"; + url = "mirror://pypi/C/Cerberus/${name}.tar.gz"; sha256 = "1km7hvns1snrmcwz58bssi4wv3gwd34zm1z1hwjylmpqrfrcf8mi"; }; @@ -3000,7 +3006,7 @@ in modules // { version = "2015.9.6.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/certifi/${name}.tar.gz"; + url = "mirror://pypi/c/certifi/${name}.tar.gz"; sha256 = "19mfly763c6bzya9dwm6qgc48z4x3gk6ldl6fprdncqhklnjnfnw"; }; @@ -3015,7 +3021,7 @@ in modules // { characteristic = buildPythonPackage rec { name = "characteristic-14.1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/characteristic/${name}.tar.gz"; + url = "mirror://pypi/c/characteristic/${name}.tar.gz"; sha256 = "91e254948180678dd69e6143202b4686f2fa47cce136936079bb4d9a3b82419d"; }; @@ -3061,7 +3067,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/C/Cheetah/Cheetah-${version}.tar.gz"; + url = "mirror://pypi/C/Cheetah/Cheetah-${version}.tar.gz"; sha256 = "be308229f0c1e5e5af4f27d7ee06d90bb19e6af3059794e5fd536a6f29a9b550"; }; @@ -3099,7 +3105,7 @@ in modules // { disabled = isPy3k || isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-cjson/${name}.tar.gz"; + url = "mirror://pypi/p/python-cjson/${name}.tar.gz"; sha256 = "a01fabb7593728c3d851e1cd9a3efbd18f72650a31a5aa8a74018640da3de8b3"; }; @@ -3116,7 +3122,7 @@ in modules // { version = "0.5.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/clf/${name}.tar.gz"; + url = "mirror://pypi/c/clf/${name}.tar.gz"; sha256 = "04lqd2i4fjs606b0q075yi9xksk567m0sfph6v6j80za0hvzqyy5"; }; @@ -3142,7 +3148,7 @@ in modules // { name = "click-6.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/click/${name}.tar.gz"; + url = "mirror://pypi/c/click/${name}.tar.gz"; sha256 = "1sggipyz52crrybwbr9xvwxd4aqigvplf53k9w3ygxmzivd1jsnc"; }; @@ -3171,7 +3177,7 @@ in modules // { name = "click-5.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/click/${name}.tar.gz"; + url = "mirror://pypi/c/click/${name}.tar.gz"; sha256 = "0njsm0wn31l21bi118g5825ma5sa3rwn7v2x4wjd7yiiahkri337"; }; @@ -3192,7 +3198,7 @@ in modules // { name = "click-log-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/click-log/${name}.tar.gz"; + url = "mirror://pypi/c/click-log/${name}.tar.gz"; sha256 = "0kdd1vminxpcfczxl2kkf285n0dr1gxh2cdbx1p6vkj7b7bci3gx"; }; @@ -3211,7 +3217,7 @@ in modules // { name = "click-threading-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/click-threading/${name}.tar.gz"; + url = "mirror://pypi/c/click-threading/${name}.tar.gz"; sha256 = "0jmrv4334lfxa2ss53c06dafdwqbk1pb3ihd26izn5igw1bm8145"; }; @@ -3229,7 +3235,7 @@ in modules // { name = "clepy-0.3.20"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/clepy/${name}.tar.gz"; + url = "mirror://pypi/c/clepy/${name}.tar.gz"; sha256 = "16vibfxms5z4ld8gbkra6dkhqm2cc3jnn0fwp7mw70nlwxnmm51c"; }; @@ -3247,7 +3253,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/C/ClientForm/ClientForm-0.2.10.tar.gz"; + url = "mirror://pypi/C/ClientForm/ClientForm-0.2.10.tar.gz"; sha256 = "0dydh3i1sx7rrj6d0gj375wkjpiivm7jjlsimw6hmwv4ck7yf1wm"; }; @@ -3260,12 +3266,36 @@ in modules // { }; }); + /* There is a project called "closure-linter" on PyPI that is the + same as this, but it does not appear to be owned by Google. + So we're pulling from Google's GitHub repo instead. */ + closure-linter = buildPythonPackage rec { + name = "closure-linter-${version}"; + version = "2.3.19"; + + /* This project has no Python 3 support, as noted by + https://github.com/google/closure-linter/issues/81 */ + disabled = isPy3k; + + propagatedBuildInputs = with self; [ gflags ]; + src = pkgs.fetchgit { + url = "https://github.com/google/closure-linter"; + rev = "5c27529075bb88bdc45e73008f496dec8438d658"; + sha256 = "076c7q7pr7akfvq5y8lxr1ab81wwps07gw00igdkcxnc5k9dzxwc"; + }; + meta = { + description = "Checks JavaScript files against Google's style guide."; + homepage = "https://developers.google.com/closure/utilities/"; + license = with licenses; [ asl20 ]; + }; + }; + cloudpickle = buildPythonPackage rec { name = "cloudpickle-${version}"; version = "0.1.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cloudpickle/${name}.tar.gz"; + url = "mirror://pypi/c/cloudpickle/${name}.tar.gz"; sha256 = "3418303f44c6c4daa184f1dc36c8c0b7ff8261c56d1f922ffd8d09e79caa4b74"; }; @@ -3291,7 +3321,7 @@ in modules // { name = "cogapp-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cogapp/${name}.tar.gz"; + url = "mirror://pypi/c/cogapp/${name}.tar.gz"; sha256 = "0gzmzbsk54r1qa6wd0yg4zzdxvn2f19ciprr2acldxaknzrpllnn"; }; @@ -3313,7 +3343,7 @@ in modules // { version = "0.3.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/colorama/${name}.tar.gz"; + url = "mirror://pypi/c/colorama/${name}.tar.gz"; sha256 = "eb21f2ba718fbf357afdfdf6f641ab393901c7ca8d9f37edd0bee4806ffa269c"; }; @@ -3330,7 +3360,7 @@ in modules // { version = "0.6.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/C/CommonMark/${name}.tar.gz"; + url = "mirror://pypi/C/CommonMark/${name}.tar.gz"; sha256 = "ee5a88f23678794592efe3fc11033f17fc77b3296a85f5e1d5b715f8e110a773"; }; @@ -3351,7 +3381,7 @@ in modules // { CommonMark_54 = self.CommonMark.override rec { name = "CommonMark-0.5.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/C/CommonMark/${name}.tar.gz"; + url = "mirror://pypi/C/CommonMark/${name}.tar.gz"; sha256 = "34d73ec8085923c023930dfc0bcd1c4286e28a2a82de094bb72fabcc0281cbe5"; }; }; @@ -3362,7 +3392,7 @@ in modules // { version = "1.0.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/C/CoilMQ/${name}.tar.gz"; + url = "mirror://pypi/C/CoilMQ/${name}.tar.gz"; sha256 = "0wwa6fsqw1mxsryvgp0yrdjil8axyj0kslzi7lr45cnhgp5ab375"; }; @@ -3385,7 +3415,7 @@ in modules // { name = "colander-1.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/colander/${name}.tar.gz"; + url = "mirror://pypi/c/colander/${name}.tar.gz"; sha256 = "7389413266b9e680c9529c16d56284edf87e0d5de557948e75f41d65683c23b3"; }; @@ -3407,7 +3437,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/configparser/${name}.tar.gz"; + url = "mirror://pypi/c/configparser/${name}.tar.gz"; sha256 = "6a2318590dfc4013fc5bf53c2bec14a8cb455a232295eb282a13f94786c4b0b2"; }; @@ -3423,7 +3453,7 @@ in modules // { version = "0.3.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/C/ColanderAlchemy/${name}.tar.gz"; + url = "mirror://pypi/C/ColanderAlchemy/${name}.tar.gz"; sha256 = "11wcni2xmfmy001rj62q2pwf305vvngkrfm5c4zlwvgbvlsrvnnw"; }; @@ -3442,7 +3472,7 @@ in modules // { name = "configobj-5.0.6"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/configobj/${name}.tar.gz"; + url = "mirror://pypi/c/configobj/${name}.tar.gz"; sha256 = "a2f5650770e1c87fb335af19a9b7eb73fc05ccf22144eb68db7d00cd2bcb0902"; }; @@ -3487,7 +3517,7 @@ in modules // { name = "construct-2.5.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/construct/${name}.tar.gz"; + url = "mirror://pypi/c/construct/${name}.tar.gz"; sha256 = "084h02p0m8lhmlywlwjdg0kd0hd6sz481c96qwcm5wddxrqn4nv6"; }; @@ -3507,7 +3537,7 @@ in modules // { name = "python-consul-0.6.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-consul/${name}.tar.gz"; + url = "mirror://pypi/p/python-consul/${name}.tar.gz"; sha256 = "0vfyr499sbc4nnhhijp2lznyj507nnak95bvv9w8y78ngxggskbh"; }; @@ -3526,7 +3556,7 @@ in modules // { name = "contextlib2-0.4.0"; src = pkgs.fetchurl rec { - url = "https://pypi.python.org/packages/source/c/contextlib2/${name}.tar.gz"; + url = "mirror://pypi/c/contextlib2/${name}.tar.gz"; sha256 = "55a5dc78f7a742a0e756645134ffb39bbe11da0fea2bc0f7070d40dac208b732"; }; }; @@ -3559,7 +3589,7 @@ in modules // { name = "cookies-2.2.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cookies/${name}.tar.gz"; + url = "mirror://pypi/c/cookies/${name}.tar.gz"; sha256 = "13pfndz8vbk4p2a44cfbjsypjarkrall71pgc97glk5fiiw9idnn"; }; @@ -3576,7 +3606,7 @@ in modules // { name = "coverage-4.0.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/coverage/${name}.tar.gz"; + url = "mirror://pypi/c/coverage/${name}.tar.gz"; sha256 = "0nrd817pzjw1haaz6gambgwf4jdjnh9kyxkgj6l8qgl6hdxga45w"; }; @@ -3594,7 +3624,7 @@ in modules // { covCore = buildPythonPackage rec { name = "cov-core-1.15.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/cov-core/${name}.tar.gz"; + url = "mirror://pypi/c/cov-core/${name}.tar.gz"; sha256 = "4a14c67d520fda9d42b0da6134638578caae1d374b9bb462d8de00587dba764c"; }; meta = { @@ -3606,7 +3636,7 @@ in modules // { crcmod = buildPythonPackage rec { name = "crcmod-1.7"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/c/crcmod/crcmod-1.7.tar.gz; + url = mirror://pypi/c/crcmod/crcmod-1.7.tar.gz; sha256 = "07k0hgr42vw2j92cln3klxka81f33knd7459cn3d8aszvfh52w6w"; }; meta = { @@ -3647,7 +3677,7 @@ in modules // { version = "0.7.4"; src = pkgs.fetchurl{ - url = "https://pypi.python.org/packages/source/c/cytoolz/cytoolz-${version}.tar.gz"; + url = "mirror://pypi/c/cytoolz/cytoolz-${version}.tar.gz"; sha256 = "9c2e3dda8232b6cd5b84b8c8df6c8155c2adeb8734eb7ec38e189affc0f2eba5"; }; @@ -3679,7 +3709,7 @@ in modules // { propagatedBuildInputs = with self; [ pbkdf2 modules.crypt ]; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/cryptacular/${name}.tar.gz"; + url = "mirror://pypi/c/cryptacular/${name}.tar.gz"; sha256 = "273f03d03f9b316671ae4f1c1c6b8d3c883da19a5706873e8f3d6543e13dd4a1"; }; @@ -3696,7 +3726,7 @@ in modules // { name = "cryptography-1.2.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cryptography/${name}.tar.gz"; + url = "mirror://pypi/c/cryptography/${name}.tar.gz"; sha256 = "0kj511z4g21fhcr649pyzpl0zzkkc7hsgxxjys6z8wwfvmvirccf"; }; @@ -3716,7 +3746,7 @@ in modules // { name = "cryptography_vectors-1.2.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cryptography-vectors/${name}.tar.gz"; + url = "mirror://pypi/c/cryptography-vectors/${name}.tar.gz"; sha256 = "0shawgpax79gvjrj0a313sll9gaqys7q1hxngn6j4k24lmz7bwki"; }; }; @@ -3726,7 +3756,7 @@ in modules // { version = "1.22.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.vmware/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.vmware/${name}.tar.gz"; sha256 = "1119q3x2y3hjz3p784byr13aqay75pbj4cb8v43gjq5piqlpp16x"; }; @@ -3745,7 +3775,7 @@ in modules // { version = "3.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-barbicanclient/python-barbicanclient-${version}.tar.gz"; + url = "mirror://pypi/p/python-barbicanclient/python-barbicanclient-${version}.tar.gz"; sha256 = "1kxnxiijvkkc8ahlfbkslpzxcbah7y5pi86hvkyac62xzda87inm"; }; @@ -3768,7 +3798,7 @@ in modules // { version = "0.9.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-ironicclient/python-ironicclient-${version}.tar.gz"; + url = "mirror://pypi/p/python-ironicclient/python-ironicclient-${version}.tar.gz"; sha256 = "16kaixrmnx6a32mfv281w22h8lavjh0k9yiqikmwc986ydh85s4d"; }; @@ -3825,7 +3855,7 @@ in modules // { version = "0.10.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tablib/tablib-${version}.tar.gz"; + url = "mirror://pypi/t/tablib/tablib-${version}.tar.gz"; sha256 = "14wc8bmz60g35r6gsyhdzfvgfqpd3gw9lfkq49z5bxciykbxmhj1"; }; @@ -3843,7 +3873,7 @@ in modules // { version = "1.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cliff-tablib/cliff-tablib-${version}.tar.gz"; + url = "mirror://pypi/c/cliff-tablib/cliff-tablib-${version}.tar.gz"; sha256 = "0fa1qw41lwda5ac3z822qhzbilp51y6p1wlp0h76vrvqcqgxi3ja"; }; @@ -3864,7 +3894,7 @@ in modules // { version = "1.7.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-openstackclient/python-openstackclient-${version}.tar.gz"; + url = "mirror://pypi/p/python-openstackclient/python-openstackclient-${version}.tar.gz"; sha256 = "0h1jkrwx06l32k50zq5gs9iba132q2x2jjb3z5gkxxlcd3apk8y9"; }; @@ -3891,7 +3921,7 @@ in modules // { name = "idna-2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/idna/${name}.tar.gz"; + url = "mirror://pypi/i/idna/${name}.tar.gz"; sha256 = "0frxgmgi234lr9hylg62j69j4ik5zhg0wz05w5dhyacbjfnrl68n"; }; @@ -3932,6 +3962,28 @@ in modules // { }; }; + MDP = buildPythonPackage rec { + version = "3.5"; + name = "MDP-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/M/MDP/${name}.tar.gz"; + sha256 = "0aw1zxmyvx6gfmmnixbqmdaah28jl7rmqkzhxv53091asc23iw9k"; + }; + + buildInputs = with self; [ pytest ]; + propagatedBuildInputs = with self; [ future numpy ]; + + doCheck = true; + + meta = { + description = "Library for building complex data processing software by combining widely used machine learning algorithms"; + homepage = http://mdp-toolkit.sourceforge.net; + license = licenses.bsd3; + maintainers = with maintainers; [ nico202 ]; + }; + }; + minidb = buildPythonPackage rec { name = "minidb-2.0.1"; @@ -3976,7 +4028,7 @@ in modules // { name = "pkginfo-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pkginfo/${name}.tar.gz"; + url = "mirror://pypi/p/pkginfo/${name}.tar.gz"; sha256 = "0g0g6avplfqw1adzqybbrh1a2z0kfjl8qn3annkrc7w3ibz6sgxd"; }; @@ -4002,7 +4054,7 @@ in modules // { name = "pretend-1.0.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pretend/pretend-1.0.8.tar.gz"; + url = "mirror://pypi/p/pretend/pretend-1.0.8.tar.gz"; sha256 = "0r5r7ygz9m6d2bklflbl84cqhjkc2q12xgis8268ygjh30g2q3wk"; }; @@ -4019,7 +4071,7 @@ in modules // { propagatedBuildInputs = with self; [ tox py eventlet ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/detox/detox-0.9.3.tar.gz"; + url = "mirror://pypi/d/detox/detox-0.9.3.tar.gz"; sha256 = "39d48b6758c43ba579f694507d54da96931195eb1b72ad79b46f50af9520b2f3"; }; @@ -4034,7 +4086,7 @@ in modules // { name = "pbkdf2-1.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pbkdf2/${name}.tar.gz"; + url = "mirror://pypi/p/pbkdf2/${name}.tar.gz"; sha256 = "ac6397369f128212c43064a2b4878038dab78dab41875364554aaf2a684e6979"; }; @@ -4050,7 +4102,7 @@ in modules // { name = "bcrypt-2.0.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/b/bcrypt/${name}.tar.gz"; + url = "mirror://pypi/b/bcrypt/${name}.tar.gz"; sha256 = "8b2d197ef220d10eb74625dde7af3b10daa973ae9a1eadd6366f763fad4387fa"; }; @@ -4068,7 +4120,7 @@ in modules // { name = "cffi-1.5.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cffi/${name}.tar.gz"; + url = "mirror://pypi/c/cffi/${name}.tar.gz"; sha256 = "1p91p1n8n46y0k3q7ddgxxjnfh08rjqsjh7zbjxzfiifhycxx6ys"; }; @@ -4091,7 +4143,7 @@ in modules // { name = "pycollada-0.4.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pycollada/${name}.tar.gz"; + url = "mirror://pypi/p/pycollada/${name}.tar.gz"; sha256 = "0i50lh98550pwr95zgzrgiqzsspm09wl52xlv83y5nrsz4mblylv"; }; @@ -4115,7 +4167,7 @@ in modules // { name = "PyContracts-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/P/PyContracts/${name}.tar.gz"; + url = "mirror://pypi/P/PyContracts/${name}.tar.gz"; sha256 = "0rdc9pz08885vqkazjc3lyrrghmf3jzxnlsgpn8akl808x1qrfqf"; }; @@ -4135,7 +4187,7 @@ in modules // { version = "2.14"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pycparser/${name}.tar.gz"; + url = "mirror://pypi/p/pycparser/${name}.tar.gz"; sha256 = "7959b4a74abdc27b312fed1c21e6caf9309ce0b29ea86b591fd2e99ecdf27f73"; }; @@ -4154,7 +4206,7 @@ in modules // { name = "pytest-2.7.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pytest/${name}.tar.gz"; + url = "mirror://pypi/p/pytest/${name}.tar.gz"; sha256 = "1z4yi986f9n0p8qmzmn21m21m8j1x78hk3505f89baqm6pdw7afm"; }; @@ -4179,7 +4231,7 @@ in modules // { name = "pytest-2.8.6"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pytest/${name}.tar.gz"; + url = "mirror://pypi/p/pytest/${name}.tar.gz"; sha256 = "ed38a3725b8e4478555dfdb549a4219ca3ba57955751141a1aaa45b706d84194"; }; }; @@ -4187,7 +4239,7 @@ in modules // { pytestcache = buildPythonPackage rec { name = "pytest-cache-1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pytest-cache/pytest-cache-1.0.tar.gz"; + url = "mirror://pypi/p/pytest-cache/pytest-cache-1.0.tar.gz"; sha256 = "1a873fihw4rhshc722j4h6j7g3nj7xpgsna9hhg3zn6ksknnhx5y"; }; @@ -4205,7 +4257,7 @@ in modules // { version = "1.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pytest-flakes/${name}.tar.gz"; + url = "mirror://pypi/p/pytest-flakes/${name}.tar.gz"; sha256 = "0vvfprga6k4v2zq1qsr3yq1bjl22vygfsnvyn3hh80cc2386dk6h"; }; @@ -4221,7 +4273,7 @@ in modules // { pytestpep8 = buildPythonPackage rec { name = "pytest-pep8"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pytest-pep8/pytest-pep8-1.0.6.tar.gz"; + url = "mirror://pypi/p/pytest-pep8/pytest-pep8-1.0.6.tar.gz"; sha256 = "06032agzhw1i9d9qlhfblnl3dw5hcyxhagn7b120zhrszbjzfbh3"; }; @@ -4239,7 +4291,7 @@ in modules // { version = "0.0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pytest-pep257/${name}.tar.gz"; + url = "mirror://pypi/p/pytest-pep257/${name}.tar.gz"; sha256 = "003vdkxpx37n0kjqpwgj3314hwk2jfz3nz58db7xh68bf8xy75lk"; }; @@ -4257,7 +4309,7 @@ in modules // { version = "2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pytest-raisesregexp/${name}.tar.gz"; + url = "mirror://pypi/p/pytest-raisesregexp/${name}.tar.gz"; sha256 = "0fde8aac1a54f9b56e5f9c61fda76727542ed24968c27c6e3688c6f1885f1e61"; }; @@ -4281,7 +4333,7 @@ in modules // { name = "pytest-runner-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pytest-runner/${name}.tar.gz"; + url = "mirror://pypi/p/pytest-runner/${name}.tar.gz"; sha256 = "e775a40ee4a3a1d45018b199c44cc20bbe7f3df2dc8882f61465bb4141c78cdb"; }; @@ -4301,7 +4353,7 @@ in modules // { name = "pytest-quickcheck-0.8.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pytest-quickcheck/pytest-quickcheck-0.8.2.tar.gz"; + url = "mirror://pypi/p/pytest-quickcheck/pytest-quickcheck-0.8.2.tar.gz"; sha256 = "047w4zwdsnlzmsc5f3rapzbzd2frlvz9nnp8v4b48fjmqmxassh3"; }; @@ -4318,7 +4370,7 @@ in modules // { name = "pytest-cov-2.2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pytest-cov/${name}.tar.gz"; + url = "mirror://pypi/p/pytest-cov/${name}.tar.gz"; sha256 = "1lf9jsmhqk5nc4w3kzwglmdzjvmi7ajvrsnwv826j3bn0wzx8c92"; }; @@ -4335,7 +4387,7 @@ in modules // { name = "pytest-xdist-1.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pytest-xdist/pytest-xdist-1.8.zip"; + url = "mirror://pypi/p/pytest-xdist/pytest-xdist-1.8.zip"; sha256 = "b02135db7080c0978b7ce5d8f43a5879231441c2062a4791bc42b6f98c94fa69"; }; @@ -4353,7 +4405,7 @@ in modules // { version = "0.3.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pytest-localserver/${name}.tar.gz"; + url = "mirror://pypi/p/pytest-localserver/${name}.tar.gz"; sha256 = "0dvqspjr6va55zwmnnc2mmpqc7mm65kxig9ya44x1z8aadzxpa4p"; }; @@ -4376,7 +4428,7 @@ in modules // { version = "0.1.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pytest-subtesthack/${name}.tar.gz"; + url = "mirror://pypi/p/pytest-subtesthack/${name}.tar.gz"; sha256 = "15kzcr5pchf3id4ikdvlv752rc0j4d912n589l4rifp8qsj19l1x"; }; @@ -4397,7 +4449,7 @@ in modules // { version = "0.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/t/tinycss/${name}.tar.gz"; + url = "mirror://pypi/t/tinycss/${name}.tar.gz"; sha256 = "1pichqra4wk86142hqgvy9s5x6c5k5zhy8l9qxr0620pqk8spbd4"; }; @@ -4424,7 +4476,7 @@ in modules // { name = "cssselect-${version}"; version = "0.9.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/cssselect/${name}.tar.gz"; + url = "mirror://pypi/c/cssselect/${name}.tar.gz"; sha256 = "10h623qnp6dp1191jri7lvgmnd4yfkl36k9smqklp1qlf3iafd85"; }; # AttributeError: 'module' object has no attribute 'tests' @@ -4435,7 +4487,7 @@ in modules // { name = "cssutils-0.9.9"; src = pkgs.fetchurl { - url = http://pypi.python.org/packages/source/c/cssutils/cssutils-0.9.9.zip; + url = mirror://pypi/c/cssutils/cssutils-0.9.9.zip; sha256 = "139yfm9yz9k33kgqw4khsljs10rkhhxyywbq9i82bh2r31cil1pp"; }; @@ -4458,7 +4510,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/darcsver/${name}.tar.gz"; + url = "mirror://pypi/d/darcsver/${name}.tar.gz"; sha256 = "1yb1c3jxqvy4r3qiwvnb86qi5plw6018h15r3yk5ji3nk54qdcb6"; }; @@ -4486,7 +4538,7 @@ in modules // { version = "0.7.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dask/${name}.tar.gz"; + url = "mirror://pypi/d/dask/${name}.tar.gz"; sha256 = "ff27419e059715907afefe6cbcc1f8c748855c7a93be25be211dabcb689cee3b"; }; @@ -4513,7 +4565,7 @@ in modules // { version = "0.5.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/D/DataShape/${name}.tar.gz"; + url = "mirror://pypi/D/DataShape/${name}.tar.gz"; sha256 = "21c424f11604873da9a36d4c55ef1d15cc3960cd208d7828b82315c494bff96a"; }; @@ -4538,7 +4590,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/requests-cache/${name}.tar.gz"; + url = "mirror://pypi/r/requests-cache/${name}.tar.gz"; sha256 = "671969d00719fa3e80476b128dc9232025926884d0110d4d235abdd9c3508fc0"; }; @@ -4558,7 +4610,7 @@ in modules // { version = "1.1.7"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/h/howdoi/${name}.tar.gz"; + url = "mirror://pypi/h/howdoi/${name}.tar.gz"; sha256 = "df4e49a219872324875d588e7699a1a82174a267e8487505e86bfcb180aea9b7"; }; @@ -4576,7 +4628,7 @@ in modules // { version = "0.5.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/n/nose-parameterized/${name}.tar.gz"; + url = "mirror://pypi/n/nose-parameterized/${name}.tar.gz"; sha256 = "a11c41b0cf8218e7cdc19ab7a1bdf5c141d161cd2350daee819473cc63cd0685"; }; @@ -4598,12 +4650,46 @@ in modules // { }; }); + neurotools = buildPythonPackage (rec { + name = "NeuroTools-${version}"; + version = "0.3.1"; + + src = pkgs.fetchurl { + url = "mirror://pypi/N/NeuroTools/${name}.tar.gz"; + sha256 = "0ly6qa87l3afhksab06vp1iimlbm1kdnsw98mxcnpzz9q07l4nd4"; + }; + + disabled = isPy3k; + + # Tests are not automatically run + # Many tests fail (using py.test), and some need R + doCheck = false; + + propagatedBuildInputs = with self; [ + scipy + numpy + matplotlib + tables + pyaml + urllib3 + rpy2 + mpi4py + ]; + + meta = { + description = "Collection of tools to support analysis of neural activity"; + homepage = https://pypi.python.org/pypi/NeuroTools; + license = licenses.gpl2; + maintainers = with maintainers; [ nico202 ]; + }; + }); + jdatetime = buildPythonPackage (rec { name = "jdatetime-${version}"; version = "1.7.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/j/jdatetime/${name}.tar.gz"; + url = "mirror://pypi/j/jdatetime/${name}.tar.gz"; sha256 = "c08ba5791c2350b26e87ddf478bf223108146e241b6c949538221b54afd633ac"; }; @@ -4648,7 +4734,7 @@ in modules // { version = "2.4.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/python-dateutil/python-${name}.tar.gz"; + url = "mirror://pypi/p/python-dateutil/python-${name}.tar.gz"; sha256 = "3e95445c1db500a344079a47b171c45ef18f57d188dffdb0e4165c71bea8eb3d"; }; @@ -4668,7 +4754,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/python-dateutil/python-${name}.tar.gz"; + url = "mirror://pypi/p/python-dateutil/python-${name}.tar.gz"; sha256 = "02dhw57jf5kjcp7ng1if7vdrbnlpb9yjmz7wygwwvf3gni4766bg"; }; @@ -4686,7 +4772,7 @@ in modules // { name = "dateutil-2.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/python-dateutil/python-${name}.tar.gz"; + url = "mirror://pypi/p/python-dateutil/python-${name}.tar.gz"; sha256 = "1vlx0lpsxjxz64pz87csx800cwfqznjyr2y7nk3vhmzhkwzyqi2c"; }; @@ -4729,7 +4815,7 @@ in modules // { version = "4.0.6"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/decorator/${name}.tar.gz"; + url = "mirror://pypi/d/decorator/${name}.tar.gz"; sha256 = "1c6254597777fd003da2e8fb503c3dbf3d9e8f8d55f054709c0e65be3467209c"; }; @@ -4744,7 +4830,7 @@ in modules // { name = "deform-2.0a2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/deform/${name}.tar.gz"; + url = "mirror://pypi/d/deform/${name}.tar.gz"; sha256 = "3fa4d287c8da77a83556e4a5686de006ddd69da359272120b915dc8f5a70cabd"; }; @@ -4771,7 +4857,7 @@ in modules // { name = "deform-2.0a2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/deform/${name}.tar.gz"; + url = "mirror://pypi/d/deform/${name}.tar.gz"; sha256 = "1gfaf1d8zp0mp4h229srlffxdp86w1nni9g4aqsshxysr23x591z"; }; @@ -4799,7 +4885,7 @@ in modules // { name = "deform_bootstrap-0.2.9"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/deform_bootstrap/${name}.tar.gz"; + url = "mirror://pypi/d/deform_bootstrap/${name}.tar.gz"; sha256 = "1hgq3vqsfqdmlyahnlc40w13viawhpzqf4jzigsggdb41x545fda"; }; @@ -4822,7 +4908,7 @@ in modules // { name = "demjson-1.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/demjson/${name}.tar.gz"; + url = "mirror://pypi/d/demjson/${name}.tar.gz"; sha256 = "0abf7wqqq7rk1sycy47ayn5p93yy7gjq50cb2z69wmik1qqrr60x"; }; @@ -4848,7 +4934,7 @@ in modules // { propagatedBuildInputs = with self; [ six ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/derpconf/${name}.tar.gz"; + url = "mirror://pypi/d/derpconf/${name}.tar.gz"; sha256 = "9129419e3a6477fe6366c339d2df8c614bdde82a639f33f2f40d4de9a1ed236a"; }; @@ -4898,7 +4984,7 @@ in modules // { version = "0.2.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dill/${name}.tgz"; + url = "mirror://pypi/d/dill/${name}.tgz"; sha256 = "deca57da33ad2121ab1b9c4493bf8eb2b3a72b6426d4b9a3a853a073c68b97ca"; }; @@ -4918,7 +5004,7 @@ in modules // { name = "discogs-client-2.0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/discogs-client/${name}.tar.gz"; + url = "mirror://pypi/d/discogs-client/${name}.tar.gz"; sha256 = "0a3616a818dd9fa61a61c3d9731d176e9123130d1b1b97a6beee63b4c72306b7"; }; @@ -4936,10 +5022,10 @@ in modules // { version = "1.12.0"; src = if isPy3k then pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dnspython3/dnspython3-${version}.zip"; + url = "mirror://pypi/d/dnspython3/dnspython3-${version}.zip"; sha256 = "138wxj702vx6zni9g2y8dbgbpin95v6hk23rh2kwfr3q4130jqz9"; } else pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dnspython/${name}.tar.gz"; + url = "mirror://pypi/d/dnspython/${name}.tar.gz"; sha256 = "0kvjlkp96qzh3j31szpjlzqbp02brixh4j4clnpw80b0hspq5yq3"; }; @@ -4960,7 +5046,7 @@ in modules // { version = "1.7.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/docker-py/${name}.tar.gz"; + url = "mirror://pypi/d/docker-py/${name}.tar.gz"; sha256 = "0k6hm3vmqh1d3wr9rryyif5n4rzvcffdlb1k4jvzp7g4996d3ccm"; }; @@ -4980,7 +5066,7 @@ in modules // { name = "dockerpty-0.4.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dockerpty/${name}.tar.gz"; + url = "mirror://pypi/d/dockerpty/${name}.tar.gz"; sha256 = "1kjn64wx23jmr8dcc6g7bwlmrhfmxr77gh6iphqsl39sayfxdab9"; }; @@ -4998,7 +5084,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/docker-registry-core/${name}.tar.gz"; + url = "mirror://pypi/d/docker-registry-core/${name}.tar.gz"; sha256 = "347e804f1f35b28dbe27bf8d7a0b630fca29d684032139bf26e3940572360360"; }; @@ -5023,7 +5109,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/docker-registry/${name}.tar.gz"; + url = "mirror://pypi/d/docker-registry/${name}.tar.gz"; sha256 = "1svm1h59sg4bwj5cy10m016gj0xpiin15nrz5z66h47sbkndvlw3"; }; @@ -5053,7 +5139,7 @@ in modules // { name = "docopt-0.6.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/docopt/${name}.tar.gz"; + url = "mirror://pypi/d/docopt/${name}.tar.gz"; sha256 = "49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491"; }; @@ -5069,7 +5155,7 @@ in modules // { version = "0.1.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/doctest-ignore-unicode/${name}.tar.gz"; + url = "mirror://pypi/d/doctest-ignore-unicode/${name}.tar.gz"; sha256= "fc90b2d0846477285c6b67fc4cb4d6f39fcf76d8752f4df0a241486f31512ad5"; }; @@ -5088,7 +5174,7 @@ in modules // { propagatedBuildInputs = with self; [ dogpile_core ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dogpile.cache/dogpile.cache-0.5.4.tar.gz"; + url = "mirror://pypi/d/dogpile.cache/dogpile.cache-0.5.4.tar.gz"; sha256 = "9eab7a5dc05ad1b6573144c4a2717226b5c38811f9ec29b514e774535a91ea24"; }; @@ -5105,7 +5191,7 @@ in modules // { name = "dogpile.core-0.4.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dogpile.core/dogpile.core-0.4.1.tar.gz"; + url = "mirror://pypi/d/dogpile.core/dogpile.core-0.4.1.tar.gz"; sha256 = "be652fb11a8eaf66f7e5c94d418d2eaa60a2fe81dae500f3743a863cc9dbed76"; }; @@ -5122,7 +5208,7 @@ in modules // { name = "dotfiles-0.6.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dotfiles/${name}.tar.gz"; + url = "mirror://pypi/d/dotfiles/${name}.tar.gz"; sha256 = "45ecfd7f2ed9d0f2a7ac632c9bd0ebdca758d8bbc2b6f11562579d525f0467b8"; }; @@ -5182,7 +5268,7 @@ in modules // { name = "urllib3-1.12"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/u/urllib3/${name}.tar.gz"; + url = "mirror://pypi/u/urllib3/${name}.tar.gz"; sha256 = "1ikj72kd4cdcq7pmmcd5p6s9dvp7wi0zw01635v4xzkid5vi598f"; }; @@ -5219,7 +5305,7 @@ in modules // { #doCheck = false; # python 2.7.9 does verify ssl certificates src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dropbox/${name}.tar.gz"; + url = "mirror://pypi/d/dropbox/${name}.tar.gz"; sha256 = "f65c12bd97f09e29a951bc7cb30a74e005fc4b2f8bb48778796be3f73866b173"; }; @@ -5237,7 +5323,7 @@ in modules // { name = "ds4drv-${version}"; version = "0.5.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/ds4drv/${name}.tar.gz"; + url = "mirror://pypi/d/ds4drv/${name}.tar.gz"; sha256 = "0dq2z1z09zxa6rn3v94vwqaaz29jwiydkss8hbjglixf20krmw3b"; }; @@ -5258,7 +5344,7 @@ in modules // { name = "dyn-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dyn/${name}.tar.gz"; + url = "mirror://pypi/d/dyn/${name}.tar.gz"; sha256 = "dc4b4b2a5d9d26f683230fd822641b39494df5fcbfa716281d126ea6425dd4c3"; }; @@ -5285,7 +5371,7 @@ in modules // { name = "EasyProcess-0.1.9"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/E/EasyProcess/${name}.tar.gz"; + url = "mirror://pypi/E/EasyProcess/${name}.tar.gz"; sha256 = "c9980c0b0eeab97969305d8829bed966a3e28a77284e4f45a9b38fb23ce83633"; }; @@ -5301,7 +5387,7 @@ in modules // { name = "elasticsearch-1.9.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/e/elasticsearch/${name}.tar.gz"; + url = "mirror://pypi/e/elasticsearch/${name}.tar.gz"; sha256 = "091s60ziwhyl9kjfm833i86rcpjx46v9h16jkgjgkk5441dln3gb"; }; @@ -5324,7 +5410,7 @@ in modules // { name = "elasticsearch-dsl-0.0.9"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/e/elasticsearch-dsl/${name}.tar.gz"; + url = "mirror://pypi/e/elasticsearch-dsl/${name}.tar.gz"; sha256 = "1gdcdshk881vy18p0czcmbb3i4s5hl8llnfg6961b6x7jkvhihbj"; }; @@ -5349,7 +5435,7 @@ in modules // { disabled = isPy34; # see http://bugs.python.org/issue21121 src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/e/evdev/${name}.tar.gz"; + url = "mirror://pypi/e/evdev/${name}.tar.gz"; sha256 = "1mz8cfncpxc1wbk2nj7apl0ssqc0vfndysxchq3wabd9vzx5p71k"; }; @@ -5373,7 +5459,7 @@ in modules // { name = "Eve-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/E/Eve/${name}.tar.gz"; + url = "mirror://pypi/E/Eve/${name}.tar.gz"; sha256 = "0wf1x8qixkld6liz5syqi8i9nrfrhq4lpmh0p9cy3jbkhk34km69"; }; @@ -5431,7 +5517,7 @@ in modules // { version = "0.2.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/E/Events/${name}.tar.gz"; + url = "mirror://pypi/E/Events/${name}.tar.gz"; sha256 = "0rymyfvarjdi2fdhfz2iqmp4wgd2n2sm0p2mx44c3spm7ylnqzqa"; }; @@ -5483,7 +5569,7 @@ in modules // { name = "execnet-1.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/e/execnet/${name}.zip"; + url = "mirror://pypi/e/execnet/${name}.zip"; sha256 = "fa1d8bd6b6d2282ff4df474b8ac687e1775bff4fc6462b219a5f89d5e9e6908c"; }; @@ -5501,7 +5587,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/facebook-sdk/facebook-sdk-0.4.0.tar.gz"; + url = "mirror://pypi/f/facebook-sdk/facebook-sdk-0.4.0.tar.gz"; sha256 = "5a96c54d06213039dff1fe1fabc51972e394666cd6d83ea70f7c2e67472d9b72"; }; @@ -5516,7 +5602,7 @@ in modules // { name = "faker-0.0.4"; disabled = isPy3k; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/F/Faker/Faker-0.0.4.tar.gz; + url = mirror://pypi/F/Faker/Faker-0.0.4.tar.gz; sha256 = "09q5jna3j8di0gw5yjx0dvlndkrk2x9vvqzwyfsvg3nlp8h38js1"; }; buildInputs = with self; [ nose ]; @@ -5532,7 +5618,7 @@ in modules // { fake_factory = buildPythonPackage rec { name = "fake-factory-0.2"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/f/fake-factory/fake-factory-0.2.tar.gz; + url = mirror://pypi/f/fake-factory/fake-factory-0.2.tar.gz; sha256 = "0qdmk8p4anrj9mf95dh9v7bkhv1pz69hvhlw380kj4iz7b44b6zn"; }; meta = { @@ -5548,7 +5634,7 @@ in modules // { name = "Fabric-${version}"; version = "1.10.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/Fabric/${name}.tar.gz"; + url = "mirror://pypi/F/Fabric/${name}.tar.gz"; sha256 = "0nikc05iz1fx2c9pvxrhrs819cpmg566azm99450yq2m8qmp1cpd"; }; disabled = isPy3k; @@ -5590,7 +5676,7 @@ in modules // { name = "frozendict-0.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/frozendict/${name}.tar.gz"; + url = "mirror://pypi/f/frozendict/${name}.tar.gz"; sha256 = "0m4kg6hbadvf99if78nx01q7qnbyhdw3x4znl5dasgciyi54432n"; }; @@ -5606,7 +5692,7 @@ in modules // { name = "ftputil-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/ftputil/${name}.tar.gz"; + url = "mirror://pypi/f/ftputil/${name}.tar.gz"; sha256 = "1714w0v6icw2xjx5m54yv2qgkq49qwxwllq4gdb7wkz25iiapr8b"; }; @@ -5623,7 +5709,7 @@ in modules // { fudge = buildPythonPackage rec { name = "fudge-1.1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/fudge/${name}.tar.gz"; + url = "mirror://pypi/f/fudge/${name}.tar.gz"; sha256 = "eba59a926fa1df1ab6dddd69a7a8af21865b16cad800cb4d1af75070b0f52afb"; }; buildInputs = with self; [ nose nosejs ]; @@ -5639,7 +5725,7 @@ in modules // { fudge_9 = self.fudge.override rec { name = "fudge-0.9.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/fudge/${name}.tar.gz"; + url = "mirror://pypi/f/fudge/${name}.tar.gz"; sha256 = "34690c4692e8717f4d6a2ab7d841070c93c8d0ea0d2615b47064e291f750b1a0"; }; }; @@ -5649,7 +5735,7 @@ in modules // { name = "funcparserlib-0.3.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/funcparserlib/${name}.tar.gz"; + url = "mirror://pypi/f/funcparserlib/${name}.tar.gz"; sha256 = "b7992eac1a3eb97b3d91faa342bfda0729e990bd8a43774c1592c091e563c91d"; }; @@ -5674,7 +5760,7 @@ in modules // { propagatedBuildInputs = with self; [ six ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/singledispatch/${name}.tar.gz"; + url = "mirror://pypi/s/singledispatch/${name}.tar.gz"; sha256 = "5b06af87df13818d14f08a028e42f566640aef80805c3b50c5056b086e3c2b9c"; }; @@ -5688,7 +5774,7 @@ in modules // { version = "3.2.3-2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/functools32/functools32-${version}.tar.gz"; + url = "mirror://pypi/f/functools32/functools32-${version}.tar.gz"; sha256 = "0v8ya0b58x47wp216n1zamimv4iw57cxz3xxhzix52jkw3xks9gn"; }; @@ -5699,6 +5785,25 @@ in modules // { }; }; + gandi-cli = buildPythonPackage rec { + name = "gandi-cli-${version}"; + version = "0.18"; + src = pkgs.fetchFromGitHub { + sha256 = "045gnz345nfbi1g7j3gcyzrxrx3hcidaxzr05cb49rcr8nmqh1s3"; + rev = version; + repo = "gandi.cli"; + owner = "Gandi"; + }; + propagatedBuildInputs = with self; [ click ipy pyyaml requests ]; + doCheck = false; # Tests try to contact the actual remote API + meta = { + homepage = http://cli.gandi.net/; + description = "Command-line interface to the public Gandi.net API"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ nckx ]; + }; + }; + gateone = buildPythonPackage rec { name = "gateone-1.2-0d57c3"; disabled = ! isPy27; @@ -5757,7 +5862,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gmpy/${name}.zip"; + url = "mirror://pypi/g/gmpy/${name}.zip"; sha256 = "1a79118a5332b40aba6aa24b051ead3a31b9b3b9642288934da754515da8fa14"; }; @@ -5777,7 +5882,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gmpy2/${name}.zip"; + url = "mirror://pypi/g/gmpy2/${name}.zip"; sha256 = "5041d0ae24407c24487106099f5bcc4abb1a5f58d90e6712cc95321975eddbd4"; }; @@ -5799,7 +5904,7 @@ in modules // { name = "gmusicapi-7.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gmusicapi/gmusicapi-7.0.0.tar.gz"; + url = "mirror://pypi/g/gmusicapi/gmusicapi-7.0.0.tar.gz"; sha256 = "1zji4cgylyzz97cz69lywkbsn5nvvzrhk7iaqnpqpfvj9gwdchwn"; }; @@ -5833,7 +5938,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gnureadline/${name}.tar.gz"; + url = "mirror://pypi/g/gnureadline/${name}.tar.gz"; sha256 = "1ghck2zz4xbqa3wz73brgjhrqj55p9hc1fq6c9zb09dnyhwb0nd2"; }; @@ -5846,7 +5951,7 @@ in modules // { gnutls = buildPythonPackage rec { name = "python-gnutls"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-gnutls/python-gnutls-3.0.0.tar.gz"; + url = "mirror://pypi/p/python-gnutls/python-gnutls-3.0.0.tar.gz"; sha256 = "1yrdxcj5rzvz8iglircz6icvyggz5fmdcd010n6w3j60yp4p84kc"; }; @@ -5857,7 +5962,7 @@ in modules // { name = "gitdb-0.6.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gitdb/${name}.tar.gz"; + url = "mirror://pypi/g/gitdb/${name}.tar.gz"; sha256 = "0n4n2c7rxph9vs2l6xlafyda5x1mdr8xy16r9s3jwnh3pqkvrsx3"; }; @@ -5884,7 +5989,7 @@ in modules // { name = "GitPython-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/G/GitPython/GitPython-${version}.tar.gz"; + url = "mirror://pypi/G/GitPython/GitPython-${version}.tar.gz"; sha256 = "0q7plxnbbkp5dd0k73736l7gf932a89yy920yrgl8amfpixw324w"; }; @@ -5989,7 +6094,7 @@ in modules // { name = "gpsoauth-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gpsoauth/${name}.tar.gz"; + url = "mirror://pypi/g/gpsoauth/${name}.tar.gz"; sha256 = "1mhd2lkl1f4fmia1cwxwik8gvqr5q16scjip7kfwzadh9a11n9kw"; }; @@ -6064,7 +6169,7 @@ in modules // { name = "hglib-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-hglib/python-hglib-${version}.tar.gz"; + url = "mirror://pypi/p/python-hglib/python-hglib-${version}.tar.gz"; sha256 = "0dc087d15b774cda82d3c8096fb0e514caeb2ddb60eed38e9056b16e279ba3c5"; }; @@ -6082,7 +6187,7 @@ in modules // { name = "humanize-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/humanize/${name}.tar.gz"; + url = "mirror://pypi/h/humanize/${name}.tar.gz"; sha256 = "a43f57115831ac7c70de098e6ac46ac13be00d69abbf60bdcac251344785bb19"; }; @@ -6106,7 +6211,7 @@ in modules // { version = "2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/hovercraft/${name}.tar.gz"; + url = "mirror://pypi/h/hovercraft/${name}.tar.gz"; sha256 = "0lqxr816lymgnywln8bbv9nrmkyahjjcjkm9kjyny9bflayz4f1g"; }; @@ -6129,7 +6234,7 @@ in modules // { name = "httpauth-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/httpauth/${name}.tar.gz"; + url = "mirror://pypi/h/httpauth/${name}.tar.gz"; sha256 = "294029b5dfed27bca5746a31e3ffb5ed99268761536705e8bbd44231b7ca15ec"; }; @@ -6148,7 +6253,7 @@ in modules // { version = "0.7.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/imagesize/${name}.tar.gz"; + url = "mirror://pypi/i/imagesize/${name}.tar.gz"; sha256 = "0msgz4ncp2nb5nbsxnf8kvxsl6nhwvc3b46ik097fvznl3y10gdv"; }; @@ -6192,7 +6297,7 @@ in modules // { name = "itsdangerous-0.24"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/itsdangerous/${name}.tar.gz"; + url = "mirror://pypi/i/itsdangerous/${name}.tar.gz"; sha256 = "06856q6x675ly542ig0plbqcyab6ksfzijlyf1hzhgg3sgwgrcyb"; }; @@ -6208,7 +6313,7 @@ in modules // { version = "0.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/iniparse/iniparse-${version}.tar.gz"; + url = "mirror://pypi/i/iniparse/iniparse-${version}.tar.gz"; sha256 = "0m60k46vr03x68jckachzsipav0bwhhnqb8715hm1cngs89fxhdb"; }; @@ -6231,7 +6336,7 @@ in modules // { name = "i3-py-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/i3-py/i3-py-${version}.tar.gz"; + url = "mirror://pypi/i/i3-py/i3-py-${version}.tar.gz"; sha256 = "1sgl438jrb4cdyl7hbc3ymwsf7y3zy09g1gh7ynilxpllp37jc8y"; }; @@ -6292,7 +6397,7 @@ in modules // { name = "jsonpatch-1.11"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jsonpatch/${name}.tar.gz"; + url = "mirror://pypi/j/jsonpatch/${name}.tar.gz"; sha256 = "22d0bc0f5522a4a03dd9fb4c4cdf7c1f03256546c88be4c61e5ceabd22280e47"; }; @@ -6309,7 +6414,7 @@ in modules // { name = "jsonpointer-1.9"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jsonpointer/${name}.tar.gz"; + url = "mirror://pypi/j/jsonpointer/${name}.tar.gz"; sha256 = "39403b47a71aa782de6d80db3b78f8a5f68ad8dfc9e674ca3bb5b32c15ec7308"; }; @@ -6352,7 +6457,7 @@ in modules // { name = "ledger-autosync-${version}"; version = "0.2.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/ledger-autosync/ledger-autosync-${version}.tar.gz"; + url = "mirror://pypi/l/ledger-autosync/ledger-autosync-${version}.tar.gz"; sha256 = "f19fa66e656309825887171d84a462e64676b1cc36b62e4dd8679ff63926a469"; }; @@ -6383,7 +6488,7 @@ in modules // { version = "1.2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/libthumbor/${name}.tar.gz"; + url = "mirror://pypi/l/libthumbor/${name}.tar.gz"; sha256 = "09bbaf08124ee33ea4ef99881625bd20450b0b43ab90fd678479beba8c03f86e"; }; @@ -6401,7 +6506,7 @@ in modules // { name = "lightning-python-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/lightning-python/${name}.tar.gz"; + url = "mirror://pypi/l/lightning-python/${name}.tar.gz"; sha256 = "3987d7d4a634bdb6db9bcf212cf4d2f72bab5bc039f4f6cbc02c9d01c4ade792"; }; @@ -6427,7 +6532,7 @@ in modules // { name = "jupyter-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jupyter/${name}.tar.gz"; + url = "mirror://pypi/j/jupyter/${name}.tar.gz"; sha256 = "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f"; }; @@ -6453,7 +6558,7 @@ in modules // { name = "jupyter_console-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jupyter_console/${name}.tar.gz"; + url = "mirror://pypi/j/jupyter_console/${name}.tar.gz"; sha256 = "1qsa9h7db8qzd4hg9l5mfl8299y4i7jkd6p3vpksk3r5ip8wym6p"; }; @@ -6483,7 +6588,7 @@ in modules // { ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/P/PyLTI/${name}.tar.gz"; + url = "mirror://pypi/P/PyLTI/${name}.tar.gz"; sha256 = "1lkk6qx8yfx1h0rhi4abnd44x0wakggi6zs0nvi572lajf6ydmdh"; }; @@ -6533,7 +6638,7 @@ in modules // { name = "mailchimp-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/mailchimp/mailchimp-${version}.tar.gz"; + url = "mirror://pypi/m/mailchimp/mailchimp-${version}.tar.gz"; sha256 = "0351ai0jqv3dzx0xxm1138sa7mb42si6xfygl5ak8wnfc95ff770"; }; @@ -6649,7 +6754,7 @@ in modules // { name = "natsort-4.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/natsort/${name}.tar.gz"; + url = "mirror://pypi/n/natsort/${name}.tar.gz"; sha256 = "a0d4239bd609eae5cd5163db6f9794378ce0e3f43ae16c10c35472d866ae20cd"; }; @@ -6709,7 +6814,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/netCDF4/${name}.tar.gz"; + url = "mirror://pypi/n/netCDF4/${name}.tar.gz"; sha256 = "0wzg73zyjjhns4209vrcvh71gs392d16ynz76x3pl1xg2by723iy"; }; @@ -6741,7 +6846,7 @@ in modules // { name = "odfpy-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/odfpy/${name}.tar.gz"; + url = "mirror://pypi/o/odfpy/${name}.tar.gz"; sha256 = "e458f969f1ccd7ed77d70a45fe69ad656ac61b39e36e4d32c42d4e3216030891"; }; @@ -6756,12 +6861,31 @@ in modules // { }; }; + oger = buildPythonPackage rec { + name = "oger-${version}"; + version = "1.1.3"; + src = pkgs.fetchurl { + url = "http://organic.elis.ugent.be/sites/organic.elis.ugent.be/files/Oger-${version}.tar.gz"; + sha256 = "1k02ys812lz0x0yymljp102amkm8bvfgqsrphnk235xbcrb0akg5"; + }; + + propagatedBuildInputs = with self; [ MDP scipy numpy matplotlib ]; + + meta = { + homepage = http://organic.elis.ugent.be/organic/engine; + description = "Rapidly build, train, and evalue modular learning architectures"; + maintainers = with maintainers; [ nico202 ]; + license = licenses.lgpl3; + }; + }; + + pathtools = buildPythonPackage rec { name = "pathtools-${version}"; version = "0.1.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pathtools/${name}.tar.gz"; + url = "mirror://pypi/p/pathtools/${name}.tar.gz"; sha256 = "1h7iam33vwxk8bvslfj4qlsdprdnwf8bvzhqh3jq5frr391cadbw"; }; @@ -6778,7 +6902,7 @@ in modules // { name = "Paver-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/P/Paver/Paver-${version}.tar.gz"; + url = "mirror://pypi/P/Paver/Paver-${version}.tar.gz"; sha256 = "0lix9d33ndb3yk56sm1zlj80fbmxp0w60yk0d9pr2xqxiwi88sqy"; }; @@ -6802,7 +6926,7 @@ in modules // { name = "passlib-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/passlib/passlib-${version}.tar.gz"; + url = "mirror://pypi/p/passlib/passlib-${version}.tar.gz"; sha256 = "e987f6000d16272f75314c7147eb015727e8532a3b747b1a8fb58e154c68392d"; }; @@ -6821,7 +6945,7 @@ in modules // { disabled = ! isPy27; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pdfminer/pdfminer-${version}.tar.gz"; + url = "mirror://pypi/p/pdfminer/pdfminer-${version}.tar.gz"; sha256 = "0qpjv4b776dwvpf5a7v19g41qsz97bv0qqsyvm7a31k50n9pn65s"; }; @@ -6839,7 +6963,7 @@ in modules // { name = "peppercorn-0.5"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/peppercorn/${name}.tar.gz"; + url = "mirror://pypi/p/peppercorn/${name}.tar.gz"; sha256 = "921cba5d51fa211e6da0fbd2120b9a98d663422a80f5bb669ad81ffb0909774b"; }; @@ -6856,7 +6980,7 @@ in modules // { disabled = pythonOlder "3.4"; # old versions require backported libraries src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pew/${name}.tar.gz"; + url = "mirror://pypi/p/pew/${name}.tar.gz"; sha256 = "0p188ah80l0rzbib2srahj2sswz8rcpqwbrbajyv2r5c1m5k6r4b"; }; @@ -6874,7 +6998,7 @@ in modules // { name = "pies-2.6.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pies/${name}.tar.gz"; + url = "mirror://pypi/p/pies/${name}.tar.gz"; sha256 = "d8d6ae4faa0a7da5d634ad8c6ca4bb22b70ad53bb7ecd91af23d490fcd2a88e8"; }; @@ -6896,7 +7020,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pies2overrides/${name}.tar.gz"; + url = "mirror://pypi/p/pies2overrides/${name}.tar.gz"; sha256 = "2a91445afc7f692bdbabfbf00d3defb1d47ad7825eb568a6464359758ab35763"; }; @@ -6917,7 +7041,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pirate-get/${name}.tar.gz"; + url = "mirror://pypi/p/pirate-get/${name}.tar.gz"; sha256 = "033dwv0w9fx3dwrna3fzvmynsfhb2qjhx6f2i9sfv82ijvkm8ynz"; }; @@ -6937,7 +7061,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/plotly/${name}.tar.gz"; + url = "mirror://pypi/p/plotly/${name}.tar.gz"; sha256 = "628679e880caab22e2a46273e85e1d1ce1382b631e1c7bbfe539f804c5269b21"; }; @@ -6957,7 +7081,7 @@ in modules // { disabled = isPy3k || isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-poppler-qt4/" + + url = "mirror://pypi/p/python-poppler-qt4/" + "python-poppler-qt4-${version}.tar.gz"; sha256 = "00e3f89f4e23a844844d082918a89c2cbb1e8231ecb011b81d592e7e3c33a74c"; }; @@ -6985,7 +7109,7 @@ in modules // { name = "pudb-2013.3.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pudb/${name}.tar.gz"; + url = "mirror://pypi/p/pudb/${name}.tar.gz"; sha256 = "81b20a995803c4be513e6d36c8ec9a531d3ccb24670b2416abc20f3933ddb8be"; }; @@ -7003,7 +7127,7 @@ in modules // { version = "1.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pycares/${name}.tar.gz"; + url = "mirror://pypi/p/pycares/${name}.tar.gz"; sha256 = "a18341ea030e2cc0743acdf4aa72302bdf6b820938b36ce4bd76e43faa2276a3"; }; @@ -7024,7 +7148,7 @@ in modules // { version = "0.1.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-axolotl/${name}.tar.gz"; + url = "mirror://pypi/p/python-axolotl/${name}.tar.gz"; sha256 = "1i3id1mjl67n4sca31s5zwq96kswgsi6lga6np83ayb45rxggvhx"; }; @@ -7044,7 +7168,7 @@ in modules // { version = "0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-axolotl-curve25519/${name}.tar.gz"; + url = "mirror://pypi/p/python-axolotl-curve25519/${name}.tar.gz"; sha256 = "1h1rsdr7m8lvgxwrwng7qv0xxmyc9k0q7g9nbcr6ks2ipyjzcnf5"; }; @@ -7086,7 +7210,7 @@ in modules // { name = "pyramid-1.5.7"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyramid/${name}.tar.gz"; + url = "mirror://pypi/p/pyramid/${name}.tar.gz"; sha256 = "1d29fj86724z68zcj9ximl2nrn34pflrlr6v9mwyhcv8rdf2sc61"; }; @@ -7130,7 +7254,7 @@ in modules // { name = "pyramid_beaker-0.8"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyramid_beaker/${name}.tar.gz"; + url = "mirror://pypi/p/pyramid_beaker/${name}.tar.gz"; sha256 = "0hflx3qkcdml1mwpq53sz46s7jickpfn0zy0ns2c7j445j66bp3p"; }; @@ -7148,7 +7272,7 @@ in modules // { name = "pyramid_chameleon-0.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyramid_chameleon/${name}.tar.gz"; + url = "mirror://pypi/p/pyramid_chameleon/${name}.tar.gz"; sha256 = "d176792a50eb015d7865b44bd9b24a7bd0489fa9a5cebbd17b9e05048cef9017"; }; @@ -7170,7 +7294,7 @@ in modules // { version = "2.5"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyramid_jinja2/${name}.tar.gz"; + url = "mirror://pypi/p/pyramid_jinja2/${name}.tar.gz"; sha256 = "93c86e3103b454301f4d66640191aba047f2ab85ba75647aa18667b7448396bd"; }; @@ -7188,7 +7312,7 @@ in modules // { name = "pyramid_debugtoolbar-1.0.9"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyramid_debugtoolbar/${name}.tar.gz"; + url = "mirror://pypi/p/pyramid_debugtoolbar/${name}.tar.gz"; sha256 = "1vnzg1qnnyisv7znxg7pasayfyr3nz7rrs5nqr4fmdgwj9q2pyv0"; }; @@ -7201,7 +7325,7 @@ in modules // { name = "pyramid_mako-0.3.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyramid_mako/${name}.tar.gz"; + url = "mirror://pypi/p/pyramid_mako/${name}.tar.gz"; sha256 = "00811djmsc4rz20kpy2paam05fbx6dmrv2i5jf90f6xp6zw4isy6"; }; @@ -7214,7 +7338,7 @@ in modules // { name = "pyramid_exclog-0.7"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyramid_exclog/${name}.tar.gz"; + url = "mirror://pypi/p/pyramid_exclog/${name}.tar.gz"; sha256 = "a58c82866c3e1a350684e6b83b440d5dc5e92ca5d23794b56d53aac06fb65a2c"; }; @@ -7231,7 +7355,7 @@ in modules // { name = "pyramid_tm-0.10"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyramid_tm/${name}.tar.gz"; + url = "mirror://pypi/p/pyramid_tm/${name}.tar.gz"; sha256 = "99528c54accf2bd5860d10634fe8972e8375b2d0f50ee08f208ed0484ffafc1d"; }; @@ -7248,7 +7372,7 @@ in modules // { version = "0.3.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyramid_multiauth/${name}.tar.gz"; + url = "mirror://pypi/p/pyramid_multiauth/${name}.tar.gz"; sha256 = "c33f357e0a216cd6ef7d143d40d4679c9fb0796a1eabaf1249aeef63ed000828"; }; @@ -7296,7 +7420,7 @@ in modules // { version = "1.1.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/R/Radicale/Radicale-${version}.tar.gz"; + url = "mirror://pypi/R/Radicale/Radicale-${version}.tar.gz"; sha256 = "1c5lv8qca21mndkx350wxv34qypqh6gb4rhzms4anr642clq3jg2"; }; @@ -7327,7 +7451,7 @@ in modules // { name = "raven-3.4.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/raven/${name}.tar.gz"; + url = "mirror://pypi/r/raven/${name}.tar.gz"; sha256 = "c27e40ab3ccf37f30a9f77acb4917370d9341e25abda8e94b9bd48c7127f7d48"; }; @@ -7345,7 +7469,7 @@ in modules // { name = "roman-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/roman/${name}.zip"; + url = "mirror://pypi/r/roman/${name}.zip"; sha256 = "90e83b512b44dd7fc83d67eb45aa5eb707df623e6fc6e66e7f273abd4b2613ae"; }; @@ -7366,7 +7490,7 @@ in modules // { name = "librosa-${version}"; version = "0.4.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/librosa/librosa-0.4.0.tar.gz"; + url = "mirror://pypi/l/librosa/librosa-0.4.0.tar.gz"; sha256 = "cc11dcc41f51c08e442292e8a2fc7d7ee77e0d47ff771259eb63f57fcee6f6e7"; }; @@ -7378,7 +7502,7 @@ in modules // { name = "joblib-${version}"; version = "0.9.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/joblib/${name}.tar.gz"; + url = "mirror://pypi/j/joblib/${name}.tar.gz"; sha256 = "e5faacf0da7b3035dbca9d56210962b86564aafca71a25f4ea376a405455cd60"; }; @@ -7415,7 +7539,7 @@ in modules // { version = "0.1.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sarge/${name}.tar.gz"; + url = "mirror://pypi/s/sarge/${name}.tar.gz"; sha256 = "08s8896973bz1gg0pkr592w6g4p6v47bkfvws5i91p9xf8b35yar"; }; @@ -7434,7 +7558,7 @@ in modules // { disabled = !isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/hyp-server/${name}.tar.gz"; + url = "mirror://pypi/h/hyp-server/${name}.tar.gz"; sha256 = "1lafjdcn9nnq6xc3hhyizfwh6l69lc7rixn6dx65aq71c913jc15"; }; @@ -7451,7 +7575,7 @@ in modules // { name = "hypatia-0.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/h/hypatia/${name}.tar.gz"; + url = "mirror://pypi/h/hypatia/${name}.tar.gz"; sha256 = "fb4d394eeac4b06ff2259cada6174aebbe77edd243ffd1deda320cb327f98bd9"; }; @@ -7467,7 +7591,7 @@ in modules // { name = "zope.copy-4.0.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.copy/${name}.zip"; + url = "mirror://pypi/z/zope.copy/${name}.zip"; sha256 = "eb2a95866df1377741876a3ee62d8600e80089e6246e1a235e86791b29534457"; }; @@ -7483,7 +7607,7 @@ in modules // { name = "ssdeep-3.1.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/ssdeep/${name}.tar.gz"; + url = "mirror://pypi/s/ssdeep/${name}.tar.gz"; sha256 = "1p9dpykmnfb73cszdiic5wbz5bmbbmkiih08pb4dah5mwq4n7im6"; }; @@ -7497,7 +7621,7 @@ in modules // { version = "3.2.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/statsd/${name}.tar.gz"; + url = "mirror://pypi/s/statsd/${name}.tar.gz"; sha256 = "3fa92bf0192af926f7a0d9be031fe3fd0fbaa1992d42cf2f07e68f76ac18288e"; }; @@ -7522,7 +7646,7 @@ in modules // { py3status = buildPythonPackage rec { name = "py3status-2.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/py3status/${name}.tar.gz"; + url = "mirror://pypi/p/py3status/${name}.tar.gz"; sha256 = "1aq4l1lj6j54a8mh9y3yscbxv41bbhz89fiwnydj2gx0md5sq5v5"; }; propagatedBuildInputs = with self; [ requests2 ]; @@ -7539,7 +7663,7 @@ in modules // { version = "2.0.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/multi_key_dict/multi_key_dict-${version}.tar.gz"; + url = "mirror://pypi/m/multi_key_dict/multi_key_dict-${version}.tar.gz"; sha256 = "17lkx4rf4waglwbhc31aak0f28c63zl3gx5k5i1iq2m3gb0xxsyy"; }; @@ -7553,7 +7677,7 @@ in modules // { name = "pyramid_zodbconn-0.7"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyramid_zodbconn/${name}.tar.gz"; + url = "mirror://pypi/p/pyramid_zodbconn/${name}.tar.gz"; sha256 = "56cfdb6b13dc87b1c51c7abc1557c63960d6b858e14a2d4c9693c3f7877f5f63"; }; @@ -7573,7 +7697,7 @@ in modules // { name = "pyramid_mailer-0.13"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyramid_mailer/${name}.tar.gz"; + url = "mirror://pypi/p/pyramid_mailer/${name}.tar.gz"; sha256 = "4debfad05ee65a05ba6f43e2af913e6e30db75ba42254e4aa0291500c4caa1fc"; }; @@ -7589,7 +7713,7 @@ in modules // { name = "pyrtlsdr-0.2.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyrtlsdr/${name}.zip"; + url = "mirror://pypi/p/pyrtlsdr/${name}.zip"; sha256 = "cbb9086efe4320858c48f4856d09f7face191c4156510b1459ef4e5588935b6a"; }; @@ -7611,7 +7735,7 @@ in modules // { name = "repoze.sendmail-4.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/repoze.sendmail/${name}.tar.gz"; + url = "mirror://pypi/r/repoze.sendmail/${name}.tar.gz"; sha256 = "51813730adc24728d5ce2609038f7bb81aa1632539d7a79045ef4aa6942eaba2"; }; @@ -7627,7 +7751,7 @@ in modules // { name = "zodburi-2.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zodburi/${name}.tar.gz"; + url = "mirror://pypi/z/zodburi/${name}.tar.gz"; sha256 = "c04b9beca032bb7b968a3464417596ba4607a927c5e65929860962ddba1cccc0"; }; @@ -7644,7 +7768,7 @@ in modules // { propagatedBuildInputs = with self; [ random2 zodb six transaction persistent zc_lockfile zconfig zdaemon zope_interface ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/Z/ZEO/${name}.tar.gz"; + url = "mirror://pypi/Z/ZEO/${name}.tar.gz"; sha256 = "63555b6d2b5f98d215c4b5fdce004fb0475daa6efc8b70f39c77d646c12d7e51"; }; @@ -7659,7 +7783,7 @@ in modules // { doCheck = !isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/random2/${name}.zip"; + url = "mirror://pypi/r/random2/${name}.zip"; sha256 = "34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007"; }; }; @@ -7713,7 +7837,7 @@ in modules // { version = "2.0b1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/svg.path/${name}.zip"; + url = "mirror://pypi/s/svg.path/${name}.zip"; sha256 = "038x4wqkbvcs71x6n6kzr4kn99csyv8v4gqzssr8pqylqpxi56bm"; }; @@ -7730,7 +7854,7 @@ in modules // { version = "2016.01.10"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/regex/${name}.tar.gz"; + url = "mirror://pypi/r/regex/${name}.tar.gz"; sha256 = "1q3rbmnijjzn7y3cm3qy49b5lqw1fq38zv974xma387lwc37d9q2"; }; @@ -7747,7 +7871,7 @@ in modules // { name = "repoze.lru-0.6"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/repoze.lru/${name}.tar.gz"; + url = "mirror://pypi/r/repoze.lru/${name}.tar.gz"; sha256 = "0f7a323bf716d3cb6cb3910cd4fccbee0b3d3793322738566ecce163b01bbd31"; }; @@ -7763,7 +7887,7 @@ in modules // { name = "repoze.sphinx.autointerface-0.7.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/repoze.sphinx.autointerface/${name}.tar.gz"; + url = "mirror://pypi/r/repoze.sphinx.autointerface/${name}.tar.gz"; sha256 = "97ef5fac0ab0a96f1578017f04aea448651fa9f063fc43393a8253bff8d8d504"; }; @@ -7805,7 +7929,7 @@ in modules // { version = "1.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/setuptools-git/${name}.tar.gz"; + url = "mirror://pypi/s/setuptools-git/${name}.tar.gz"; sha256 = "047d7595546635edebef226bc566579d422ccc48a8a91c7d32d8bd174f68f831"; }; @@ -7832,7 +7956,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/watchdog/${name}.tar.gz"; + url = "mirror://pypi/w/watchdog/${name}.tar.gz"; sha256 = "0qj1vqszxwfx6d1s66s96jmfmy2j94bywxiqdydh6ikpvcm8hrby"; }; @@ -7848,7 +7972,7 @@ in modules // { name = "pywatchman-${version}"; version = "1.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pywatchman/pywatchman-${version}.tar.gz"; + url = "mirror://pypi/p/pywatchman/pywatchman-${version}.tar.gz"; sha256 = "c3d5be183b5b04f6ad575fc71b06dd196185dea1558d9f4d0598ba9beaab8245"; }; postPatch = '' @@ -7863,7 +7987,7 @@ in modules // { propagatedBuildInputs = with self; [ zope_interface six zope_testrunner ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/z/zope.tales/${name}.zip"; + url = "mirror://pypi/z/zope.tales/${name}.zip"; sha256 = "c0485f09c3f23c7a0ceddabcb02d4a40ebecf8f8f36c87fa9a02c415f96c969e"; }; }; @@ -7873,7 +7997,7 @@ in modules // { name = "zope.deprecation-4.1.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.deprecation/${name}.tar.gz"; + url = "mirror://pypi/z/zope.deprecation/${name}.tar.gz"; sha256 = "fed622b51ffc600c13cc5a5b6916b8514c115f34f7ea2730409f30c061eb0b78"; }; @@ -7889,7 +8013,7 @@ in modules // { name = "validictory-1.0.0a2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/v/validictory/validictory-1.0.0a2.tar.gz"; + url = "mirror://pypi/v/validictory/validictory-1.0.0a2.tar.gz"; sha256 = "c02388a70f5b854e71e2e09bd6d762a2d8c2a017557562e866d8ffafb0934b07"; }; @@ -7906,7 +8030,7 @@ in modules // { name = "venusian-1.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/v/venusian/${name}.tar.gz"; + url = "mirror://pypi/v/venusian/${name}.tar.gz"; sha256 = "1720cff2ca9c369c840c1d685a7c7a21da1afa687bfe62edd93cae4bf429ca5a"; }; @@ -7924,7 +8048,7 @@ in modules // { name = "Chameleon-2.15"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/C/Chameleon/${name}.tar.gz"; + url = "mirror://pypi/C/Chameleon/${name}.tar.gz"; sha256 = "bd1dfc96742c2a5b0b2adcab823bdd848e70c45a994dc4e51dd2cc31e2bae3be"; }; @@ -7943,7 +8067,7 @@ in modules // { name = "ddt-1.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/ddt/${name}.tar.gz"; + url = "mirror://pypi/d/ddt/${name}.tar.gz"; sha256 = "e24ecb7e2cf0bf43fa9d4255d3ae2bd0b7ce30b1d1b89ace7aa68aca1152f37a"; }; @@ -8006,7 +8130,7 @@ in modules // { name = "pyxdg-0.25"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyxdg/${name}.tar.gz"; + url = "mirror://pypi/p/pyxdg/${name}.tar.gz"; sha256 = "81e883e0b9517d624e8b0499eb267b82a815c0b7146d5269f364988ae031279d"; }; @@ -8025,7 +8149,7 @@ in modules // { name = "chardet-2.3.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/chardet/${name}.tar.gz"; + url = "mirror://pypi/c/chardet/${name}.tar.gz"; sha256 = "e53e38b3a4afe6d1132de62b7400a4ac363452dc5dfcf8d88e8e0cce663c68aa"; }; @@ -8173,7 +8297,7 @@ in modules // { version = "1.0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django-appconf/django-appconf-${version}.tar.gz"; + url = "mirror://pypi/d/django-appconf/django-appconf-${version}.tar.gz"; sha256 = "0q3fg17qi4vwpipbj075zn4wk58p6a946kah8wayks1423xpa4xs"; }; @@ -8192,7 +8316,7 @@ in modules // { version = "1.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django_compressor/django_compressor-${version}.tar.gz"; + url = "mirror://pypi/d/django_compressor/django_compressor-${version}.tar.gz"; sha256 = "0bp2acagc6b1mmcajlmjf5vvp6zj429bq7p2wks05n47pwfzv281"; }; @@ -8214,7 +8338,7 @@ in modules // { disabled = isPy35; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django-compat/${name}.tar.gz"; + url = "mirror://pypi/d/django-compat/${name}.tar.gz"; sha256 = "195dgr55vzpw1fbjvbw2h35k9bfhvm5zchh2p7nzbq57xmwb3sra"; }; @@ -8233,7 +8357,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django_evolution/${name}.tar.gz"; + url = "mirror://pypi/d/django_evolution/${name}.tar.gz"; sha256 = "1qbcx54hq8iy3n2n6cki3bka1m9rp39np4hqddrm9knc954fb7nv"; }; @@ -8250,7 +8374,7 @@ in modules // { name = "django-tagging-0.3.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/django-tagging/${name}.tar.gz"; + url = "mirror://pypi/d/django-tagging/${name}.tar.gz"; sha256 = "e5fbeb7ca6e0c22a9a96239095dff508040ec95171e51c69e6f8ada72ea4bce2"; }; @@ -8271,7 +8395,7 @@ in modules // { version = "0.6.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/django-classy-tags/${name}.tar.gz"; + url = "mirror://pypi/d/django-classy-tags/${name}.tar.gz"; sha256 = "0wxvpmjdzk0aajk33y4himn3wqjx7k0aqlka9j8ay3yfav78bdq0"; }; @@ -8292,7 +8416,7 @@ in modules // { version = "2.0.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django-hijack/${name}.tar.gz"; + url = "mirror://pypi/d/django-hijack/${name}.tar.gz"; sha256 = "0rpi1bkfx74xfbb2nk874kfdra1jcqp2vzky1r3z7zidlc9kah04"; }; @@ -8310,7 +8434,7 @@ in modules // { version = "1.4.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django-nose/${name}.tar.gz"; + url = "mirror://pypi/d/django-nose/${name}.tar.gz"; sha256 = "0rl9ipa98smprlw56xqlhzhps28p84wg0640qlyn0rjyrpsdmf0r"; }; @@ -8331,7 +8455,7 @@ in modules // { version = "0.6.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django-modelcluster/django-modelcluster-${version}.tar.gz"; + url = "mirror://pypi/d/django-modelcluster/django-modelcluster-${version}.tar.gz"; sha256 = "1plsdi44dvsj2sfx79lsrccjfg0ymajcsf5n0mln4cwd4qi5mwpx"; }; @@ -8350,7 +8474,7 @@ in modules // { version = "3.2.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/djangorestframework/${name}.tar.gz"; + url = "mirror://pypi/d/djangorestframework/${name}.tar.gz"; sha256 = "06kp4hg3y4bqy2ixlb1q6bw81gwgsb86l4lanbav7bp1grrbbnj1"; }; @@ -8369,7 +8493,7 @@ in modules // { version = "4.2.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/django-redis/${name}.tar.gz"; + url = "mirror://pypi/d/django-redis/${name}.tar.gz"; sha256 = "9ad6b299458f7e6bfaefa8905f52560017369d82fb8fb0ed4b41adc048dbf11c"; }; @@ -8393,7 +8517,7 @@ in modules // { version = "1.10.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django-reversion/${name}.tar.gz"; + url = "mirror://pypi/d/django-reversion/${name}.tar.gz"; sha256 = "01iv8w6lmmq98qjhxmnp8ddjxifmhxcmp612ijd91wc8nv8lk12w"; }; @@ -8412,7 +8536,7 @@ in modules // { version = "0.5.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django-silk/${name}.tar.gz"; + url = "mirror://pypi/d/django-silk/${name}.tar.gz"; sha256 = "845abc688738858ce06e993c4b7dbbcfcecf33029e828f143463ff96f9a78947"; }; @@ -8444,7 +8568,7 @@ in modules // { disabled = pythonOlder "2.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django-taggit/django-taggit-${version}.tar.gz"; + url = "mirror://pypi/d/django-taggit/django-taggit-${version}.tar.gz"; sha256 = "1xy4mm1y6z6bpakw907859wz7fiw7jfm586dj89w0ggdqlb0767b"; }; @@ -8461,7 +8585,7 @@ in modules // { version = "3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django-treebeard/${name}.tar.gz"; + url = "mirror://pypi/d/django-treebeard/${name}.tar.gz"; sha256 = "10p9rb2m1zccszg7590fjd0in6rabzsh86f5m7qm369mapc3b6dc"; }; @@ -8480,7 +8604,7 @@ in modules // { version = "1.5.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/django-pipeline/${name}.tar.gz"; + url = "mirror://pypi/d/django-pipeline/${name}.tar.gz"; sha256 = "1y49fa8jj7x9qjj5wzhns3zxwj0s73sggvkrv660cqw5qb7d8hha"; }; @@ -8496,7 +8620,7 @@ in modules // { django_pipeline_1_3 = self.django_pipeline.overrideDerivation (super: rec { name = "django-pipeline-1.3.27"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/django-pipeline/${name}.tar.gz"; + url = "mirror://pypi/d/django-pipeline/${name}.tar.gz"; sha256 = "0iva3cmnh5jw54c7w83nx9nqv523hjvkbjchzd2pb6vzilxf557k"; }; }); @@ -8524,7 +8648,7 @@ in modules // { version = "0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pillowfight/pillowfight-${version}.tar.gz"; + url = "mirror://pypi/p/pillowfight/pillowfight-${version}.tar.gz"; sha256 = "1mh1nhcjjgv7x134sv0krri59ng8bp2w6cwsxc698rixba9f3g0m"; }; @@ -8543,7 +8667,7 @@ in modules // { version = "0.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/k/keepalive/keepalive-${version}.tar.gz"; + url = "mirror://pypi/k/keepalive/keepalive-${version}.tar.gz"; sha256 = "3c6b96f9062a5a76022f0c9d41e9ef5552d80b1cadd4fccc1bf8f183ba1d1ec1"; }; @@ -8562,7 +8686,7 @@ in modules // { version = "1.7.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/S/SPARQLWrapper/SPARQLWrapper-${version}.tar.gz"; + url = "mirror://pypi/S/SPARQLWrapper/SPARQLWrapper-${version}.tar.gz"; sha256 = "1dpwwlcdk4m8wr3d9lb24g1xcvs202c0ir4q3jcijy88is3bvgmp"; }; @@ -8587,7 +8711,7 @@ in modules // { version = "0.10.1a"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dulwich/${name}.tar.gz"; + url = "mirror://pypi/d/dulwich/${name}.tar.gz"; sha256 = "02rknqarwy7p50693cqswbibqwgxzrfzdq4yhwqxbdmhbsmh0rk6"; }; @@ -8608,7 +8732,7 @@ in modules // { version = "0.8.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/h/hg-git/${name}.tar.gz"; + url = "mirror://pypi/h/hg-git/${name}.tar.gz"; sha256 = "0hz0i6qgcn3ic292sny86mdl1psj1bnczcai1b1kzvwcla6z99py"; }; @@ -8661,7 +8785,7 @@ in modules // { name = "dtopt-0.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/dtopt/${name}.tar.gz"; + url = "mirror://pypi/d/dtopt/${name}.tar.gz"; sha256 = "06ae07a12294a7ba708abaa63f838017d1a2faf6147a1e7a14ca4fa28f86da7f"; }; @@ -8679,7 +8803,7 @@ in modules // { version = "0.13"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/e/ecdsa/${name}.tar.gz"; + url = "mirror://pypi/e/ecdsa/${name}.tar.gz"; sha256 = "1yj31j0asmrx4an9xvsaj2icdmzy6pw0glfpqrrkrphwdpi1xkv4"; }; @@ -8699,7 +8823,7 @@ in modules // { name = "elpy-${version}"; version = "1.9.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/e/elpy/${name}.tar.gz"; + url = "mirror://pypi/e/elpy/${name}.tar.gz"; sha256 = "419f7b05b19182bc1aedde1ae80812c1534e59a0493476aa01ea819e76ba26f0"; }; python2Deps = if isPy3k then [ ] else [ self.rope ]; @@ -8719,7 +8843,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/e/enum/${name}.tar.gz"; + url = "mirror://pypi/e/enum/${name}.tar.gz"; sha256 = "9bdfacf543baf2350df7613eb37f598a802f346985ca0dc1548be6494140fdff"; }; @@ -8740,7 +8864,7 @@ in modules // { version = "1.0.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/e/enum34/${name}.tar.gz"; + url = "mirror://pypi/e/enum34/${name}.tar.gz"; sha256 = "0iz4jjdvdgvfllnpmd92qxj5fnfxqpgmjpvpik0jjim3lqk9zhfk"; }; @@ -8756,7 +8880,7 @@ in modules // { epc = buildPythonPackage rec { name = "epc-0.0.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/e/epc/${name}.tar.gz"; + url = "mirror://pypi/e/epc/${name}.tar.gz"; sha256 = "30b594bd4a4acbd5bda0d3fa3d25b4e8117f2ff8f24d2d1e3e36c90374f3c55e"; }; @@ -8774,7 +8898,7 @@ in modules // { name = "et_xmlfile-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/e/et_xmlfile/${name}.tar.gz"; + url = "mirror://pypi/e/et_xmlfile/${name}.tar.gz"; sha256="0nrkhcb6jdrlb6pwkvd4rycw34y3s931hjf409ij9xkjsli9fkb1"; }; @@ -8805,7 +8929,7 @@ in modules // { name = "eventlet-0.17.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/e/eventlet/${name}.tar.gz"; + url = "mirror://pypi/e/eventlet/${name}.tar.gz"; sha256 = "0vam0qfm8p5jkpp2cv12r5bnpnv902ld7q074h7x5y5g9rqyj8c7"; }; @@ -8829,7 +8953,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/fastimport/${name}.tar.gz"; + url = "mirror://pypi/f/fastimport/${name}.tar.gz"; sha256 = "0k8x7552ypx9rc14vbsvg2lc6z0r8pv9laah28pdwyynbq10825d"; }; @@ -8849,7 +8973,7 @@ in modules // { name = "feedgenerator-1.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/feedgenerator/${name}.tar.gz"; + url = "mirror://pypi/f/feedgenerator/${name}.tar.gz"; sha256 = "5d6b0b10134ac392be0c0c3a39c0e1d7e9c17cc7894590f75981e3f497a4a60f"; }; @@ -8870,7 +8994,7 @@ in modules // { name = "feedparser-5.2.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/f/feedparser/${name}.tar.gz"; + url = "mirror://pypi/f/feedparser/${name}.tar.gz"; sha256 = "1ycva69bqssalhqg45rbrfipz3l6hmycszy26k0351fhq990c0xx"; }; @@ -8891,7 +9015,7 @@ in modules // { disabled = isPy3k || isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyfribidi/${name}.zip"; + url = "mirror://pypi/p/pyfribidi/${name}.zip"; sha256 = "6f7d83c09eae0cb98a40b85ba3dedc31af4dbff8fc4425f244c1e9f44392fded"; }; @@ -8908,7 +9032,7 @@ in modules // { namePrefix = ""; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/docker-compose/${name}.tar.gz"; + url = "mirror://pypi/d/docker-compose/${name}.tar.gz"; sha256 = "10i4032d99hm5nj1p74pcad9i3gz1h5x3096byklncgssfyjqki6"; }; @@ -8936,7 +9060,7 @@ in modules // { name = "filebrowser_safe-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/f/filebrowser_safe/${name}.tar.gz"; + url = "mirror://pypi/f/filebrowser_safe/${name}.tar.gz"; sha256 = "02bn60fdslvng2ckn65fms3hjbzgsa8qa5161a8lr720wbx8gpj2"; }; @@ -8967,7 +9091,7 @@ in modules // { version = "2.5.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/f/flake8/${name}.tar.gz"; + url = "mirror://pypi/f/flake8/${name}.tar.gz"; sha256 = "0bs9cz4fr99r2rwig1b8jwaadl1nan7kgpdzqwj0bwbckwbmh7nc"; }; @@ -8987,7 +9111,7 @@ in modules // { version = "3.1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/flaky/${name}.tar.gz"; + url = "mirror://pypi/f/flaky/${name}.tar.gz"; sha256 = "1x9ixika7wqjj52x8wnsh1vk7jadkdqpx01plj7mlh8slwyq4s41"; }; @@ -9008,7 +9132,7 @@ in modules // { name = "flask-0.10.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/F/Flask/Flask-0.10.1.tar.gz"; + url = "mirror://pypi/F/Flask/Flask-0.10.1.tar.gz"; sha256 = "4c83829ff83d408b5e1d4995472265411d2c414112298f2eb4b359d9e4563373"; }; @@ -9026,7 +9150,7 @@ in modules // { version = "0.10"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/Flask-Assets/${name}.tar.gz"; + url = "mirror://pypi/F/Flask-Assets/${name}.tar.gz"; sha256 = "1v6ika3ias21xzhg7kglki99nwfx1i33rdhnw9kdqbwxkpwbwkyl"; }; @@ -9045,7 +9169,7 @@ in modules // { name = "Flask-Cache-0.13.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/Flask-Cache/${name}.tar.gz"; + url = "mirror://pypi/F/Flask-Cache/${name}.tar.gz"; sha256 = "90126ca9bc063854ef8ee276e95d38b2b4ec8e45fd77d5751d37971ee27c7ef4"; }; @@ -9063,7 +9187,7 @@ in modules // { version = "2.1.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/Flask-Cors/${name}.tar.gz"; + url = "mirror://pypi/F/Flask-Cors/${name}.tar.gz"; sha256 = "0fd618a4f88ykqx4x55viz47cm9rl214q1b45a0b4mz5vhxffqpj"; }; @@ -9082,7 +9206,7 @@ in modules // { version = "0.2.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/Flask-Login/${name}.tar.gz"; + url = "mirror://pypi/F/Flask-Login/${name}.tar.gz"; sha256 = "09ygn0r3i3jz065a5psng6bhlsqm78msnly4z6x39bs48r5ww17p"; }; @@ -9105,7 +9229,7 @@ in modules // { version = "1.7.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/Flask-Migrate/Flask-Migrate-1.7.0.tar.gz"; + url = "mirror://pypi/F/Flask-Migrate/Flask-Migrate-1.7.0.tar.gz"; sha256 = "16d7vnaj9xmxvb3qbcmhahm3ldfdhzzi6y221h62x4v1v1jayx7v"; }; @@ -9130,7 +9254,7 @@ in modules // { version = "0.4.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/Flask-Principal/${name}.tar.gz"; + url = "mirror://pypi/F/Flask-Principal/${name}.tar.gz"; sha256 = "0lwlr5smz8vfm5h9a9i7da3q1c24xqc6vm9jdywdpgxfbi5i7mpm"; }; @@ -9150,7 +9274,7 @@ in modules // { version = "0.3.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/Flask-PyMongo/${name}.tar.gz"; + url = "mirror://pypi/F/Flask-PyMongo/${name}.tar.gz"; sha256 = "0305qngvjrjyyabf8gxqgqvd9ffh00gr5yfrjf4nncr2my9svbyd"; }; @@ -9168,7 +9292,7 @@ in modules // { version = "2.0.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/Flask-Script/${name}.tar.gz"; + url = "mirror://pypi/F/Flask-Script/${name}.tar.gz"; sha256 = "0zqh2yq8zk7m9b4xw1ryqmrljkdigfb3hk5155a3b5hkfnn6xxyf"; }; @@ -9189,7 +9313,7 @@ in modules // { version = "2.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/Flask-SQLAlchemy/${name}.tar.gz"; + url = "mirror://pypi/F/Flask-SQLAlchemy/${name}.tar.gz"; sha256 = "1i9ps5d5snih9xlqhrvmi3qfiygkmqzxh92n25kj4pf89kj4s965"; }; @@ -9207,7 +9331,7 @@ in modules // { name = "wtforms-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/W/WTForms/WTForms-${version}.zip"; + url = "mirror://pypi/W/WTForms/WTForms-${version}.zip"; sha256 = "0vyl26y9cg409cfyj8rhqxazsdnd0jipgjw06civhrd53yyi1pzz"; }; @@ -9230,7 +9354,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/FlexGet/${name}.tar.gz"; + url = "mirror://pypi/F/FlexGet/${name}.tar.gz"; sha256 = "0f7aaf0bf37860f0c5adfb0ba59ca228aa3f5c582131445623a4c3bc82d45346"; }; @@ -9264,7 +9388,7 @@ in modules // { name = "grappelli_safe-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/g/grappelli_safe/${name}.tar.gz"; + url = "mirror://pypi/g/grappelli_safe/${name}.tar.gz"; sha256 = "8b21b4724bce449cc4f22dc74ed0be9b3e841d968f3271850bf4836864304eb6"; }; @@ -9292,7 +9416,7 @@ in modules // { name = "tvrage-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-tvrage/python-tvrage-${version}.tar.gz"; + url = "mirror://pypi/p/python-tvrage/python-tvrage-${version}.tar.gz"; sha256 = "f8a530376c5cf1bc573d1945a8504c3394b228c731a3eff5100c705997a72063"; }; @@ -9314,7 +9438,7 @@ in modules // { disabled = !isPy27; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python2-pythondialog/python2-pythondialog-${version}.tar.gz"; + url = "mirror://pypi/p/python2-pythondialog/python2-pythondialog-${version}.tar.gz"; sha256 = "1yhkagsh99bfi592ymczf8rnw8rk6n9hdqy3dd98m3yrx8zmjvry"; }; @@ -9332,7 +9456,7 @@ in modules // { version = "0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyRFC3339/pyRFC3339-${version}.tar.gz"; + url = "mirror://pypi/p/pyRFC3339/pyRFC3339-${version}.tar.gz"; sha256 = "1pp648xsjaw9h1xq2mgwzda5wis2ypjmzxlksc1a8grnrdmzy155"; }; @@ -9345,7 +9469,7 @@ in modules // { version = "0.9.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/C/ConfigArgParse/ConfigArgParse-${version}.tar.gz"; + url = "mirror://pypi/C/ConfigArgParse/ConfigArgParse-${version}.tar.gz"; sha256 = "0a984pvv7370yz7zbkl6s6i7yyl9myahx0m9jkjvg3hz5q8mf70l"; }; @@ -9368,7 +9492,7 @@ in modules // { name = "jsonschema-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jsonschema/jsonschema-${version}.tar.gz"; + url = "mirror://pypi/j/jsonschema/jsonschema-${version}.tar.gz"; sha256 = "0hddbqjm4jq63y8jf44nswina1crjs16l9snb6m3vvgyg31klrrn"; }; @@ -9396,7 +9520,7 @@ in modules // { version = "2.14.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/v/vcversioner/vcversioner-${version}.tar.gz"; + url = "mirror://pypi/v/vcversioner/vcversioner-${version}.tar.gz"; sha256 = "11ivq1bm7v0yb4nsfbv9m7g7lyjn112gbvpjnjz8nv1fx633dm5c"; }; @@ -9409,7 +9533,7 @@ in modules // { name = "falcon-0.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/falcon/${name}.tar.gz"; + url = "mirror://pypi/f/falcon/${name}.tar.gz"; sha256 = "10ivzk88m8nn3bqbg6xgv6yfy2dgp6yzbcvr645y93pzlash4xpj"; }; @@ -9455,7 +9579,7 @@ in modules // { name = "fonttools-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/FontTools/fonttools-${version}.tar.gz"; + url = "mirror://pypi/F/FontTools/fonttools-${version}.tar.gz"; sha256 = "0f4iblpbf3y3ghajiccvdwk2f46cim6dsj6fq1kkrbqfv05dr4nz"; }; @@ -9503,7 +9627,7 @@ in modules // { name = "forbiddenfruit-${version}"; src = pkgs.fetchurl { - url= "https://pypi.python.org/packages/source/f/forbiddenfruit/${name}.tar.gz"; + url= "mirror://pypi/f/forbiddenfruit/${name}.tar.gz"; sha256 = "0xra2kw6m8ag29ifwmhi5zqksh4cr0yy1waqd488rm59kcr3zl79"; }; @@ -9518,7 +9642,7 @@ in modules // { name = "fs-0.5.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/fs/${name}.tar.gz"; + url = "mirror://pypi/f/fs/${name}.tar.gz"; sha256 = "ba2cca8773435a7c86059d57cb4b8ea30fda40f8610941f7822d1ce3ffd36197"; }; @@ -9569,7 +9693,7 @@ in modules // { name = "fusepy-2.0.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/fusepy/${name}.tar.gz"; + url = "mirror://pypi/f/fusepy/${name}.tar.gz"; sha256 = "0v5grm4zyf58hsplwsxfbihddw95lz9w8cy3rpzbyha287swgx8h"; }; @@ -9634,7 +9758,7 @@ in modules // { version = "3.0.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/futures/${name}.tar.gz"; + url = "mirror://pypi/f/futures/${name}.tar.gz"; sha256 = "19485d83f7bd2151c0aeaf88fbba3ee50dadfb222ffc3b66a344ef4952b782a3"; }; @@ -9661,7 +9785,7 @@ in modules // { name = "futures-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/futures/${name}.tar.gz"; + url = "mirror://pypi/f/futures/${name}.tar.gz"; sha256 = "1lqfzl3z3pkxakgbcrfy6x7x0fp3q18mj5lpz103ljj7fdqha70m"; }; }; @@ -9670,7 +9794,7 @@ in modules // { name = "gcovr-2.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/g/gcovr/${name}.tar.gz"; + url = "mirror://pypi/g/gcovr/${name}.tar.gz"; sha256 = "2c878e03c2eff2282e64035bec0a30532b2b1173aadf08486401883b79e4dab1"; }; @@ -9750,7 +9874,7 @@ in modules // { disabled = isPy3k || isPyPy; # see https://github.com/surfly/gevent/issues/248 src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gevent/${name}.tar.gz"; + url = "mirror://pypi/g/gevent/${name}.tar.gz"; sha256 = "0cds7yvwdlqmd590i59vzxaviwxk4js6dkhnmdxb3p1xac7wmq9s"; }; @@ -9777,7 +9901,7 @@ in modules // { version = "1.2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/geventhttpclient/${name}.tar.gz"; + url = "mirror://pypi/g/geventhttpclient/${name}.tar.gz"; sha256 = "0s1qd1qz0zyzksd5h38ynw06d1012h0k7z8522zhb6mzaq4144yz"; }; @@ -9795,7 +9919,7 @@ in modules // { name = "gevent-socketio-0.3.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gevent-socketio/${name}.tar.gz"; + url = "mirror://pypi/g/gevent-socketio/${name}.tar.gz"; sha256 = "1zra86hg2l1jcpl9nsnqagy3nl3akws8bvrbpgdxk15x7ywllfak"; }; @@ -9808,7 +9932,7 @@ in modules // { name = "gevent-websocket-0.9.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gevent-websocket/${name}.tar.gz"; + url = "mirror://pypi/g/gevent-websocket/${name}.tar.gz"; sha256 = "07rqwfpbv13mk6gg8mf0bmvcf6siyffjpgai1xd8ky7r801j4xb4"; }; @@ -9820,7 +9944,7 @@ in modules // { name = "genzshcomp-0.5.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/g/genzshcomp/genzshcomp-0.5.1.tar.gz"; + url = "mirror://pypi/g/genzshcomp/genzshcomp-0.5.1.tar.gz"; sha256 = "c77d007cc32cdff836ecf8df6192371767976c108a75b055e057bb6f4a09cd42"; }; @@ -9852,7 +9976,7 @@ in modules // { disabled = !isPy26 && !isPy27; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/g/gipc/${name}.zip"; + url = "mirror://pypi/g/gipc/${name}.zip"; sha256 = "08c35xzv7nr12d9xwlywlbyzzz2igy0yy6y52q2nrkmh5d4slbpc"; }; @@ -9878,7 +10002,7 @@ in modules // { name = "git-sweep-0.1.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/git-sweep/${name}.tar.gz"; + url = "mirror://pypi/g/git-sweep/${name}.tar.gz"; sha256 = "1csp0zd049d643d409rfivbswwzrayb4i6gkypp5mc27fb1z2afd"; }; @@ -9924,7 +10048,7 @@ in modules // { version = "1.0.0a2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/github3.py/${name}.tar.gz"; + url = "mirror://pypi/g/github3.py/${name}.tar.gz"; sha256 = "11xvwbzfy04vwbjnpc8wcrjjzghbrbdzffrdfk70v0zdnxqg8hc5"; }; @@ -9954,7 +10078,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/goobook/${name}.tar.gz"; + url = "mirror://pypi/g/goobook/${name}.tar.gz"; sha256 = "02xmq8sjavza17av44ks510934wrshxnsm6lvhvazs45s92b671i"; }; @@ -9998,7 +10122,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/g/google-apputils/${name}.tar.gz"; + url = "mirror://pypi/g/google-apputils/${name}.tar.gz"; sha256 = "1sxsm5q9vr44qzynj8l7p3l7ffb0zl1jdqhmmzmalkx941nbnj1b"; }; @@ -10027,7 +10151,7 @@ in modules // { disabled = isPyPy; # builtin for pypy src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/greenlet/${name}.zip"; + url = "mirror://pypi/g/greenlet/${name}.zip"; sha256 = "1zlmsygjw69xlq56vz1z5ivzy9bwc7knjaykn2yy2hv4w2j4yb7k"; }; @@ -10049,7 +10173,7 @@ in modules // { name = "gspread-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gspread/${name}.tar.gz"; + url = "mirror://pypi/g/gspread/${name}.tar.gz"; sha256 = "dba45ef9e652dcd8cf561ae65569bd6ecd18fcc77b991521490698fb2d847106"; }; @@ -10065,7 +10189,7 @@ in modules // { name = "gssapi-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gssapi/${name}.tar.gz"; + url = "mirror://pypi/g/gssapi/${name}.tar.gz"; sha256 = "0mdl7m6h57n0zkfmm6fqz0hldfxrb2d7d48k2lhc8hqbr3962c7x"; }; @@ -10115,7 +10239,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/g/guessit/${name}.tar.gz"; + url = "mirror://pypi/g/guessit/${name}.tar.gz"; sha256 = "068d3dmyk4v04p2zna0340lsdnpkm10gyza62apd9akgjh9rfs48"; }; @@ -10137,7 +10261,7 @@ in modules // { name = "gunicorn-19.1.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/g/gunicorn/${name}.tar.gz"; + url = "mirror://pypi/g/gunicorn/${name}.tar.gz"; sha256 = "ae1dd6452f62b3470bc9acaf62cb5301545fbb9c697d863a5bfe35097ed7a0b3"; }; @@ -10165,7 +10289,7 @@ in modules // { name = "hcs_utils-1.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/hcs_utils/${name}.tar.gz"; + url = "mirror://pypi/h/hcs_utils/${name}.tar.gz"; sha256 = "1d2za9crkgzildx610w3zif2i8phcqhh6n8nzg3yvy2mg0s18mkl"; }; @@ -10210,7 +10334,7 @@ in modules // { name = "htmllaundry-2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/htmllaundry/${name}.tar.gz"; + url = "mirror://pypi/h/htmllaundry/${name}.tar.gz"; sha256 = "e428cba78d5a965e959f5dac2eb7d5f7d627dd889990d5efa8d4e03f3dd768d9"; }; @@ -10263,7 +10387,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/h/http_signature/${name}.tar.gz"; + url = "mirror://pypi/h/http_signature/${name}.tar.gz"; sha256 = "14acc192ef20459d5e11b4e800dd3a4542f6bd2ab191bf5717c696bf30936c62"; }; @@ -10280,7 +10404,7 @@ in modules // { name = "httpbin-0.2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/httpbin/${name}.tar.gz"; + url = "mirror://pypi/h/httpbin/${name}.tar.gz"; sha256 = "6b57f563900ecfe126015223a259463848daafbdc2687442317c0992773b9054"; }; @@ -10298,7 +10422,7 @@ in modules // { name = "httplib2-0.9.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/httplib2/${name}.tar.gz"; + url = "mirror://pypi/h/httplib2/${name}.tar.gz"; sha256 = "126rsryvw9vhbf3qmsfw9lf4l4xm2srmgs439lgma4cpag4s3ay3"; }; @@ -10318,7 +10442,7 @@ in modules // { doCheck = false; # no tests in source src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/hypothesis/${name}.tar.gz"; + url = "mirror://pypi/h/hypothesis/${name}.tar.gz"; sha256 = "12dxrvn108q2j20brrk6zcb8w00kn3af1c07c0fv572nf2ngyaxy"; }; @@ -10358,6 +10482,38 @@ in modules // { }; }; + colored = buildPythonPackage rec { + name = "colored-${version}"; + version = "1.1.5"; + src = pkgs.fetchurl { + url = "mirror://pypi/c/colored/${name}.tar.gz"; + sha256 = "1r1vsypk8v7az82d66bidbxlndx1h7xd4m43hpg1a6hsjr30wrm3"; + }; + }; + + + lsi = buildPythonPackage rec { + name = "lsi-${version}"; + version = "0.2.2"; + disabled = isPy3k; + src = pkgs.fetchurl { + url = "mirror://pypi/l/lsi/${name}.tar.gz"; + sha256 = "0429iilb06yhsmvj3xp6wyhfh1rp4ndxlhwrm80r97z0w7plrk94"; + }; + propagatedBuildInputs = [ + self.colored + self.boto + pkgs.openssh + pkgs.which + ]; + meta = { + description = "CLI for querying and SSHing onto AWS EC2 instances"; + homepage = https://github.com/NarrativeScience/lsi; + maintainers = [maintainers.adnelson]; + license = licenses.mit; + }; + }; + httpretty = buildPythonPackage rec { name = "httpretty-${version}"; version = "0.8.6"; @@ -10365,7 +10521,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/h/httpretty/${name}.tar.gz"; + url = "mirror://pypi/h/httpretty/${name}.tar.gz"; sha256 = "0f295zj272plr9lhf80kgz19dxkargwv3ar83rwavrcy516mgg9n"; }; @@ -10397,7 +10553,7 @@ in modules // { name = "icalendar-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/icalendar/${name}.tar.gz"; + url = "mirror://pypi/i/icalendar/${name}.tar.gz"; sha256 = "93d0b94eab23d08f62962542309916a9681f16de3d5eca1c75497f30f1b07792"; }; @@ -10420,7 +10576,7 @@ in modules // { disabled = (!isPy26) || isPyPy; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/i/importlib/importlib-1.0.2.tar.gz"; + url = "mirror://pypi/i/importlib/importlib-1.0.2.tar.gz"; sha256 = "131jvp6ahllcqblszjg6fxrzh4k50w8g60sq924b4nb8lxm9dl14"; }; }; @@ -10429,7 +10585,7 @@ in modules // { name = "influxdb-0.1.12"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/i/influxdb/${name}.tar.gz"; + url = "mirror://pypi/i/influxdb/${name}.tar.gz"; sha256 = "6b5ea154454b86d14f2a3960d180e666ba9863da964032dacf2b50628e774a33"; }; @@ -10514,7 +10670,7 @@ in modules // { /* Hydra fix exists only on github for now. src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/I/INGInious/INGInious-${version}.tar.gz"; + url = "mirror://pypi/I/INGInious/INGInious-${version}.tar.gz"; md5 = "40474dd6b6d4fc26e47a1d9c77bcf943"; }; */ @@ -10538,7 +10694,7 @@ in modules // { version = "0.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/interruptingcow/${name}.tar.gz"; + url = "mirror://pypi/i/interruptingcow/${name}.tar.gz"; sha256 = "1cv4pm2h0f87n9w4r3l1f96skwmng95sawn7j00ns0rdp1zshr9d"; }; @@ -10555,7 +10711,7 @@ in modules // { name = "iptools-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/i/iptools/iptools-${version}.tar.gz"; + url = "mirror://pypi/i/iptools/iptools-${version}.tar.gz"; sha256 = "0f03875a5bed740ba4bf44decb6a78679cca914a1ee8a6cc468114485c4d98e3"; }; @@ -10573,7 +10729,7 @@ in modules // { name = "ipy-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/I/IPy/IPy-${version}.tar.gz"; + url = "mirror://pypi/I/IPy/IPy-${version}.tar.gz"; sha256 = "5d6abb870c25f946c45c35cf50e66155598660f2765b35cb12e36ed5223c2b89"; }; @@ -10591,7 +10747,7 @@ in modules // { name = "ipykernel-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/ipykernel/${name}.tar.gz"; + url = "mirror://pypi/i/ipykernel/${name}.tar.gz"; sha256 = "1av769gbzfm1zy9p94wicwwwxmyc7s7zk1ginq16x0wc69hwc57j"; }; @@ -10621,7 +10777,7 @@ in modules // { name = "ipyparallel-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/ipyparallel/${name}.tar.gz"; + url = "mirror://pypi/i/ipyparallel/${name}.tar.gz"; sha256 = "ffa7e2e29fdc4844b3c1721f46b42eee5a1abe5cbb851ccf79d0f4f89b9fe21a"; }; @@ -10647,7 +10803,7 @@ in modules // { name = "ipython-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/ipython/${name}.tar.gz"; + url = "mirror://pypi/i/ipython/${name}.tar.gz"; sha256 = "14hnf3m087z39ndn5irj1ficc6l197bmdj6fpvz8bwi7la99cbq5"; }; @@ -10681,7 +10837,7 @@ in modules // { name = "ipython_genutils-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/ipython_genutils/${name}.tar.gz"; + url = "mirror://pypi/i/ipython_genutils/${name}.tar.gz"; sha256 = "3a0624a251a26463c9dfa0ffa635ec51c4265380980d9a50d65611c3c2bd82a6"; }; @@ -10706,7 +10862,7 @@ in modules // { name = "ipywidgets-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/ipywidgets/${name}.tar.gz"; + url = "mirror://pypi/i/ipywidgets/${name}.tar.gz"; sha256 = "ceeb325e45ade9537c2d115fed9d522e5c6e90bb161592e2f0807375dc661028"; }; @@ -10726,7 +10882,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/i/ipaddr/${name}.tar.gz"; + url = "mirror://pypi/i/ipaddr/${name}.tar.gz"; sha256 = "18ycwkfk3ypb1yd09wg20r7j7zq2a73d7j6j10qpgra7a7abzhyj"; }; @@ -10741,7 +10897,7 @@ in modules // { name = "ipaddress-1.0.15"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/ipaddress/${name}.tar.gz"; + url = "mirror://pypi/i/ipaddress/${name}.tar.gz"; sha256 = "0dk6ky7akh5j4y3qbpnbi0qby64nyprbkrjm2s32pcfdr77qav5g"; }; @@ -10762,7 +10918,7 @@ in modules // { disabled = isPyPy; # setupterm: could not find terminfo database src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/i/ipdb/${name}.zip"; + url = "mirror://pypi/i/ipdb/${name}.zip"; sha256 = "1763d1564113f5eb89df77879a8d3213273c4d7ff93dcb37a3070cdf0c34fd7c"; }; propagatedBuildInputs = with self; [ ipython ]; @@ -10771,7 +10927,7 @@ in modules // { ipdbplugin = buildPythonPackage { name = "ipdbplugin-1.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/ipdbplugin/ipdbplugin-1.4.tar.gz"; + url = "mirror://pypi/i/ipdbplugin/ipdbplugin-1.4.tar.gz"; sha256 = "4778d78b5d0af1a2a6d341aed9e72eb73b1df6b179e145b4845d3a209137029c"; }; propagatedBuildInputs = with self; [ self.nose self.ipython ]; @@ -10808,7 +10964,7 @@ in modules // { name = "iso8601-${version}"; version = "0.1.11"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/iso8601/${name}.tar.gz"; + url = "mirror://pypi/i/iso8601/${name}.tar.gz"; sha256 = "e8fb52f78880ae063336c94eb5b87b181e6a0cc33a6c008511bac9a6e980ef30"; }; @@ -10829,7 +10985,7 @@ in modules // { name = "isort-4.2.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/isort/${name}.tar.gz"; + url = "mirror://pypi/i/isort/${name}.tar.gz"; sha256 = "0xqxnkli3j69mj1m0i1r9n68bfkdxfcgxi602lqgy491m21q1rpj"; }; @@ -10847,7 +11003,7 @@ in modules // { name = "jedi-0.9.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/j/jedi/${name}.tar.gz"; + url = "mirror://pypi/j/jedi/${name}.tar.gz"; sha256 = "0c8x962ynpx001fdvp07m2q5jk4igkxbj3rmnydavphvlgxijk1v"; }; @@ -10873,7 +11029,7 @@ in modules // { name = "jellyfish-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jellyfish/${name}.tar.gz"; + url = "mirror://pypi/j/jellyfish/${name}.tar.gz"; sha256 = "04p80gwwlhxjp8zpjf70a62x69l9rlvnz1pwi5ar52gyajn8z6z1"; }; @@ -10891,7 +11047,7 @@ in modules // { version = "0.3.1-0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/j2cli/${name}.tar.gz"; + url = "mirror://pypi/j/j2cli/${name}.tar.gz"; sha256 = "0y3w1x9935qzx8w6m2r6g4ghyjmxn33wryiif6xb56q7cj9w1433"; }; @@ -10918,7 +11074,7 @@ in modules // { name = "Jinja2-2.8"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/J/Jinja2/${name}.tar.gz"; + url = "mirror://pypi/J/Jinja2/${name}.tar.gz"; sha256 = "1x0v41lp5m1pjix3l46zx02b7lqp2hflgpnxwkywxynvi3zz47xw"; }; @@ -10943,7 +11099,7 @@ in modules // { name = "jmespath-0.7.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jmespath/${name}.tar.gz"; + url = "mirror://pypi/j/jmespath/${name}.tar.gz"; sha256 = "1lazbx65imassd7h24z49za001rvx1lmx8r0l21h4izs7pp14nnd"; }; @@ -10963,7 +11119,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jrnl/${name}.tar.gz"; + url = "mirror://pypi/j/jrnl/${name}.tar.gz"; sha256 = "af599a863ac298533685a7236fb86307eebc00a38eb8bb96f4f67b5d83227ec8"; }; @@ -10984,7 +11140,7 @@ in modules // { name = "jupyter_client-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jupyter_client/${name}.tar.gz"; + url = "mirror://pypi/j/jupyter_client/${name}.tar.gz"; sha256 = "ff1ef5c6c3031a62db46ec6329867b4cb1595e6102a7819b3b5252b0c524bdb8"; }; @@ -11011,7 +11167,7 @@ in modules // { name = "jupyter_core-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jupyter_core/${name}.tar.gz"; + url = "mirror://pypi/j/jupyter_core/${name}.tar.gz"; sha256 = "96a68a3b1d018ff7776270b26b7cb0cfd7a18a53ef2061421daff435707d198c"; }; @@ -11040,7 +11196,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jsonpath-rw/${name}.tar.gz"; + url = "mirror://pypi/j/jsonpath-rw/${name}.tar.gz"; sha256 = "05c471281c45ae113f6103d1268ec7a4831a2e96aa80de45edc89b11fac4fbec"; }; @@ -11065,7 +11221,7 @@ in modules // { name = "keyring-8.4.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/k/keyring/${name}.tar.gz"; + url = "mirror://pypi/k/keyring/${name}.tar.gz"; sha256 = "1286sh5g53168qxbl4g5bmns9ci0ld0jl3h44b7h8is5nw1421ar"; }; @@ -11113,7 +11269,7 @@ in modules // { disabled = pythonOlder "2.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/k/kombu/${name}.tar.gz"; + url = "mirror://pypi/k/kombu/${name}.tar.gz"; sha256 = "09xpxpjz9nk8d14dj361dqdwyjwda3jlf1a7v6jif9wn2xm37ar2"; }; @@ -11163,7 +11319,7 @@ in modules // { meta.maintainers = with maintainers; [ mornfall ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/k/kitchen/kitchen-1.1.1.tar.gz"; + url = "mirror://pypi/k/kitchen/kitchen-1.1.1.tar.gz"; sha256 = "0ki840hjk1q19w6icv0dj2jxb00966nwy9b1jib0dgdspj00yrr5"; }; }); @@ -11173,7 +11329,7 @@ in modules // { version = "0.5.11"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pylast/${name}.tar.gz"; + url = "mirror://pypi/p/pylast/${name}.tar.gz"; sha256 = "bf35820be35447d55564d36072d40b09ac8a7fd41a6f1a7a9d408f4d0eaefac4"; }; @@ -11192,7 +11348,7 @@ in modules // { version = "1.0.9"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pylru/${name}.tar.gz"; + url = "mirror://pypi/p/pylru/${name}.tar.gz"; sha256 = "0b0pq0l7xv83dfsajsc49jcxzc99kb9jfx1a1dlx22hzcy962dvi"; }; @@ -11210,7 +11366,7 @@ in modules // { version = "1.2.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/lazy-object-proxy/${name}.tar.gz"; + url = "mirror://pypi/l/lazy-object-proxy/${name}.tar.gz"; sha256 = "22ed751a2c63c6cf718674fd7461b1dfc45215bab4751ca32b6c9b8cb2734cb3"; }; @@ -11256,7 +11412,7 @@ in modules // { name = "libcloud-0.18.0"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/a/apache-libcloud/apache-libcloud-0.18.0.tar.bz2; + url = mirror://pypi/a/apache-libcloud/apache-libcloud-0.18.0.tar.bz2; sha256 = "0ahdp14ddly074qg5cksxdhqaws0kj445xmhz1y7lzspsp6fk1xg"; }; @@ -11280,7 +11436,7 @@ in modules // { version = "2015.10.04"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/limnoria/${name}.tar.gz"; + url = "mirror://pypi/l/limnoria/${name}.tar.gz"; sha256 = "1hwwwr0z2vsirgwd92z17nbhnhsz0m25bpxn5sanqlbcjbwhyk9z"; }; @@ -11305,7 +11461,7 @@ in modules // { name = "line_profiler-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/line_profiler/${name}.tar.gz"; + url = "mirror://pypi/l/line_profiler/${name}.tar.gz"; sha256 = "a9e0c9ffa814f1215107c86c890afa8e63bec5a37d951f6f9d3668c1df2b1900"; }; @@ -11326,7 +11482,7 @@ in modules // { version = "0.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/linode/linode-${version}.tar.gz"; + url = "mirror://pypi/l/linode/linode-${version}.tar.gz"; sha256 = "db3c2a7fab8966d903a63f16c515bff241533e4ef2d746aa7aae4a49bba5e573"; }; @@ -11344,7 +11500,7 @@ in modules // { name = "llfuse-1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/llfuse/${name}.tar.bz2"; + url = "mirror://pypi/l/llfuse/${name}.tar.bz2"; sha256 = "1li7q04ljrvwharw4fblcbfhvk6s0l3lnv8yqb4c22lcgbkiqlps"; }; @@ -11372,7 +11528,7 @@ in modules // { name = "locustio-0.7.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/locustio/${name}.tar.gz"; + url = "mirror://pypi/l/locustio/${name}.tar.gz"; sha256 = "c9ca6fdfe6a6fb187a3d54ddf9b1518196348e8f20537f0a14ca81a264ffafa2"; }; @@ -11392,7 +11548,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/llvmlite/${name}.tar.gz"; + url = "mirror://pypi/l/llvmlite/${name}.tar.gz"; sha256 = "a10d8d5e597c6a54ec418baddd31a51a0b7937a895d75b240d890aead946081c"; }; @@ -11448,7 +11604,7 @@ in modules // { name = "logilab-common-0.63.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/logilab-common/${name}.tar.gz"; + url = "mirror://pypi/l/logilab-common/${name}.tar.gz"; sha256 = "1rr81zlmlgdma3s75i5c1l8q2m25v4ac41i9pniik4mhkc6a0fv0"; }; @@ -11460,7 +11616,7 @@ in modules // { version = "0.6.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/logilab-constraint/${name}.tar.gz"; + url = "mirror://pypi/l/logilab-constraint/${name}.tar.gz"; sha256 = "1n0xim4ij1n4yvyqqvyc0wllhjs22szglsd5av0j8k2qmck4njcg"; }; @@ -11481,7 +11637,7 @@ in modules // { # more work is needed before upgrading src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/l/lxml/${name}.tar.gz"; + url = "mirror://pypi/l/lxml/${name}.tar.gz"; sha256 = "16a0fa97hym9ysdk3rmqz32xdjqmy4w34ld3rm3jf5viqjx65lxk"; }; @@ -11500,7 +11656,7 @@ in modules // { name = "python-magic-0.4.10"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/python-magic/${name}.tar.gz"; + url = "mirror://pypi/p/python-magic/${name}.tar.gz"; sha256 = "1hx2sjd4fdswswj3yydn2azxb59rjmi9b7jzh94lf1wnxijjizbr"; }; @@ -11548,7 +11704,7 @@ in modules // { name = "m2crypto-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-${version}.tar.gz"; + url = "mirror://pypi/M/M2Crypto/M2Crypto-${version}.tar.gz"; sha256 = "1ac3b6eafa5ff7e2a0796675316d7569b28aada45a7ab74042ad089d15a9567f"; }; @@ -11571,7 +11727,7 @@ in modules // { name = "Mako-1.0.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/M/Mako/${name}.tar.gz"; + url = "mirror://pypi/M/Mako/${name}.tar.gz"; sha256 = "17k7jy3byi4hj6ksszib6gxbf6n7snnnirnbrdldn848abjc4l15"; }; @@ -11594,7 +11750,7 @@ in modules // { version = "0.23"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-${version}.tar.gz"; + url = "mirror://pypi/M/MarkupSafe/MarkupSafe-${version}.tar.gz"; sha256 = "a4ec1aff59b95a14b45eb2e23761a0179e98319da5a7eb76b56ea8cdc7b871c3"; }; @@ -11611,7 +11767,7 @@ in modules // { version = "1.8.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/m/manuel/${name}.tar.gz"; + url = "mirror://pypi/m/manuel/${name}.tar.gz"; sha256 = "1diyj6a8bvz2cdf9m0g2bbx9z2yjjnn3ylbg1zinpcjj6vldfx59"; }; @@ -11629,7 +11785,7 @@ in modules // { name = "markdown-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/M/Markdown/Markdown-${version}.tar.gz"; + url = "mirror://pypi/M/Markdown/Markdown-${version}.tar.gz"; sha256 = "1kll5b35wqkhvniwm2kh6rqc43wakv9ls0qm6g5318pjmbkywdp4"; }; @@ -11697,7 +11853,7 @@ in modules // { name = "mccabe-0.4.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/m/mccabe/${name}.tar.gz"; + url = "mirror://pypi/m/mccabe/${name}.tar.gz"; sha256 = "0yr08a36h8lqlif10l4xcikbbig7q8f41gqywir7rrvnv3mi4aws"; }; @@ -11726,7 +11882,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/mechanize/${name}.tar.gz"; + url = "mirror://pypi/m/mechanize/${name}.tar.gz"; sha256 = "0rj7r166i1dyrq0ihm5rijfmvhs8a04im28lv05c0c3v206v4rrf"; }; @@ -11748,7 +11904,7 @@ in modules // { version = "0.4.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/M/MechanicalSoup/${name}.zip"; + url = "mirror://pypi/M/MechanicalSoup/${name}.zip"; sha256 = "02jkwly4gw1jqm55l4wwn0j0ggnysx55inw9j96bif5l49z5cacd"; }; @@ -11767,7 +11923,7 @@ in modules // { name = "meld3-1.0.0"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/m/meld3/meld3-1.0.0.tar.gz; + url = mirror://pypi/m/meld3/meld3-1.0.0.tar.gz; sha256 = "57b41eebbb5a82d4a928608962616442e239ec6d611fe6f46343e765e36f0b2b"; }; @@ -11784,7 +11940,7 @@ in modules // { name = "memcached-1.51"; src = if isPy3k then pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python3-memcached/python3-${name}.tar.gz"; + url = "mirror://pypi/p/python3-memcached/python3-${name}.tar.gz"; sha256 = "0na8b369q8fivh3y0nvzbvhh3lgvxiyyv9xp93cnkvwfsr8mkgkw"; } else pkgs.fetchurl { url = "http://ftp.tummy.com/pub/python-memcached/old-releases/python-${name}.tar.gz"; @@ -11803,7 +11959,7 @@ in modules // { version = "0.39"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/memory_profiler/${name}.tar.gz"; + url = "mirror://pypi/m/memory_profiler/${name}.tar.gz"; sha256 = "61021f2dade7edd6cc09d7924bfdccc453bd1949608412a3e021d44a410d3a23"; }; @@ -11890,7 +12046,7 @@ in modules // { version = "2.0.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/munch/${name}.tar.gz"; + url = "mirror://pypi/m/munch/${name}.tar.gz"; sha256 = "1420683a94f3a2ffc77935ddd28aa9ccb540dd02b75e02ed7ea863db437ab8b2"; }; @@ -11936,7 +12092,7 @@ in modules // { version = "1.3.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/rainbowstream/${name}.tar.gz"; + url = "mirror://pypi/r/rainbowstream/${name}.tar.gz"; sha256 = "08598slbn8sm2hjs0q1041fv7m56k2ky4q66rsihacjw0mg7blai"; }; @@ -11982,7 +12138,7 @@ in modules // { name = "mistune-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/mistune/${name}.tar.gz"; + url = "mirror://pypi/m/mistune/${name}.tar.gz"; sha256 = "6076dedf768348927d991f4371e5a799c6a0158b16091df08ee85ee231d929a7"; }; @@ -12031,7 +12187,7 @@ in modules // { name = "mock-1.3.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/m/mock/${name}.tar.gz"; + url = "mirror://pypi/m/mock/${name}.tar.gz"; sha256 = "1xm0xkaz8d8d26kdk09f2n9vn543ssd03vmpkqlmgq3crjz7s90y"; }; @@ -12053,7 +12209,7 @@ in modules // { name = "ModestMaps-1.4.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/M/ModestMaps/${name}.tar.gz"; + url = "mirror://pypi/M/ModestMaps/${name}.tar.gz"; sha256 = "0vyi1m9q4pc34i6rq5agb4x3qicx5sjlbxwmxfk70k2l5mnbjca3"; }; @@ -12090,7 +12246,7 @@ in modules // { name = "moretools-0.1a41"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/moretools/${name}.tar.gz"; + url = "mirror://pypi/m/moretools/${name}.tar.gz"; sha256 = "1n442wprbl3cmg08233m1sr3g4z0i8hv9g6bhch7kzdmbl21399f"; }; @@ -12150,7 +12306,7 @@ in modules // { name = "mpmath-0.19"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/mpmath/${name}.tar.gz"; + url = "mirror://pypi/m/mpmath/${name}.tar.gz"; sha256 = "08ijsr4ifrqv3cjc26mkw0dbvyygsa99in376hr4b96ddm1gdpb8"; }; @@ -12173,7 +12329,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-mpd/python-mpd-0.3.0.tar.gz"; + url = "mirror://pypi/p/python-mpd/python-mpd-0.3.0.tar.gz"; sha256 = "02812eba1d2e0f46e37457f5a6fa23ba203622e4bcab0a19b265e66b08cd21b4"; }; @@ -12189,7 +12345,7 @@ in modules // { version = "0.5.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-mpd2/python-mpd2-${version}.tar.bz2"; + url = "mirror://pypi/p/python-mpd2/python-mpd2-${version}.tar.bz2"; sha256 = "1gfrxf71xll1w6zb69znqg5c9j0g7036fsalkvqprh2id640cl3a"; }; @@ -12213,7 +12369,7 @@ in modules // { name = "mpv-0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/mpv/${name}.tar.gz"; + url = "mirror://pypi/m/mpv/${name}.tar.gz"; sha256 = "0b9kd70mshdr713f3l1lbnz1q0vlg2y76h5d8liy1bzqm7hjcgfw"; }; buildInputs = [ pkgs.mpv ]; @@ -12233,7 +12389,7 @@ in modules // { version = "0.1.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/m/mr.bob/mr.bob-${version}.tar.gz"; + url = "mirror://pypi/m/mr.bob/mr.bob-${version}.tar.gz"; sha256 = "6737eaf98aaeae85e07ebef844ee5156df2f06a8b28d7c3dcb056f811c588121"; }; @@ -12254,11 +12410,11 @@ in modules // { msgpack = buildPythonPackage rec { name = "msgpack-python-${version}"; - version = "0.4.6"; + version = "0.4.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/msgpack-python/${name}.tar.gz"; - sha256 = "bfcc581c9dbbf07cc2f951baf30c3249a57e20dcbd60f7e6ffc43ab3cc614794"; + url = "mirror://pypi/m/msgpack-python/${name}.tar.gz"; + sha256 = "0syd7bs83qs9qmxw540jbgsildbqk4yb57fmrlns1021llli402y"; }; propagatedBuildInputs = with self; [ ]; @@ -12283,7 +12439,7 @@ in modules // { version = "0.4.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/multipledispatch/${name}.tar.gz"; + url = "mirror://pypi/m/multipledispatch/${name}.tar.gz"; sha256 = "07d41fb3ed25e8424536e48a8566f88a0f9926ca4b6174bff6aa16c98251b92e"; }; @@ -12299,7 +12455,7 @@ in modules // { name = "munkres-1.0.6"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/m/munkres/${name}.tar.gz"; + url = "mirror://pypi/m/munkres/${name}.tar.gz"; sha256 = "c78f803b9b776bfb20a25c9c7bb44adbf0f9202c2024d51aa5969d21e560208d"; }; @@ -12319,7 +12475,7 @@ in modules // { name = "musicbrainzngs-0.5"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/m/musicbrainzngs/${name}.tar.gz"; + url = "mirror://pypi/m/musicbrainzngs/${name}.tar.gz"; sha256 = "281388ab750d2996e9feca4580fd4215d616a698e02cd6719cb9b8562945c489"; }; @@ -12357,7 +12513,7 @@ in modules // { name = "mutagen-1.27"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/m/mutagen/${name}.tar.gz"; + url = "mirror://pypi/m/mutagen/${name}.tar.gz"; sha256 = "cc884fe1e20fe220be7ce7c3b269f4cadc69a8310150a3a41162fba1ca9c88bd"; }; @@ -12423,22 +12579,21 @@ in modules // { plover = buildPythonPackage rec { name = "plover-${version}"; - version = "2.5.8"; + version = "3.0.0"; disabled = !isPy27; meta = { description = "OpenSteno Plover stenography software"; - maintainers = [ maintainers.twey ]; + maintainers = with maintainers; [ twey kovirobi ]; license = licenses.gpl2; }; src = pkgs.fetchurl { url = "https://github.com/openstenoproject/plover/archive/v${version}.tar.gz"; - sha256 = "23f7824a715f93eb2c41d5bafd0c6f3adda92998e9321e1ee029abe7a6ab41e5"; + sha256 = "1jja37nhiypdx1z6cazp8ffsf0z3yqmpdbprpdzf668lcb422rl0"; }; - propagatedBuildInputs = with self; [ wxPython pyserial xlib appdirs pkgs.wmctrl ]; - preConfigure = "substituteInPlace setup.py --replace /usr/share usr/share"; + propagatedBuildInputs = with self; [ wxPython30 pyserial hidapi xlib appdirs pkgs.wmctrl mock ]; }; pygal = buildPythonPackage rec { @@ -12469,7 +12624,7 @@ in modules // { name = "pygraphviz-1.3.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pygraphviz/${name}.tar.gz"; + url = "mirror://pypi/p/pygraphviz/${name}.tar.gz"; sha256 = "7c294cbc9d88946be671cc0d8602aac176d8c56695c0a7d871eadea75a958408"; }; @@ -12510,7 +12665,7 @@ in modules // { propagatedBuildInputs = with self; [ pymysql sqlalchemy ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pymysql_sa/pymysql_sa-1.0.tar.gz"; + url = "mirror://pypi/p/pymysql_sa/pymysql_sa-1.0.tar.gz"; sha256 = "a2676bce514a29b2d6ab418812259b0c2f7564150ac53455420a20bd7935314a"; }; @@ -12527,7 +12682,7 @@ in modules // { __propagatedImpureHostDeps = stdenv.lib.optional stdenv.isDarwin "/usr/lib/libc.dylib"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/m/monotonic/${name}.tar.gz"; + url = "mirror://pypi/m/monotonic/${name}.tar.gz"; sha256 = "1diab6hfh3jpa1f0scpqaqrawk4g97ss4v7gkn2yw8znvdm6abw5"; }; @@ -12546,7 +12701,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/M/MySQL-python/${name}.zip"; + url = "mirror://pypi/M/MySQL-python/${name}.zip"; sha256 = "0x0c2jg0bb3pp84njaqiic050qkyd7ymwhfvhipnimg58yv40441"; }; @@ -12566,7 +12721,7 @@ in modules // { name = "mysql-connector-repackaged-0.3.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/m/mysql-connector-repackaged/${name}.tar.gz"; + url = "mirror://pypi/m/mysql-connector-repackaged/${name}.tar.gz"; sha256 = "170fbf11c54def1b5fcc919be0a890b760bb2eca81f56123a5dda0c69b5b099e"; }; @@ -12624,7 +12779,7 @@ in modules // { version = "0.3.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/nameparser/${name}.tar.gz"; + url = "mirror://pypi/n/nameparser/${name}.tar.gz"; sha256 = "1zi94m99ziwwd6kkip3w2xpnl05r2cfv9iq68inz7np81c3g8vag"; }; @@ -12640,7 +12795,7 @@ in modules // { name = "nbconvert-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/nbconvert/${name}.tar.gz"; + url = "mirror://pypi/n/nbconvert/${name}.tar.gz"; sha256 = "e0296e45293dd127d028f678e3b6aba3f1db3283a134178bdb49eea402d4cf1c"; }; @@ -12668,7 +12823,7 @@ in modules // { name = "nbformat-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/nbformat/${name}.tar.gz"; + url = "mirror://pypi/n/nbformat/${name}.tar.gz"; sha256 = "5261c957589b9dfcd387c338d59375162ba9ca82c69e378961a1f4e641285db5"; }; @@ -12706,7 +12861,7 @@ in modules // { propagatedBuildInputs = with self ; [ dns pyasn1 ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sleekxmpp/${name}.tar.gz"; + url = "mirror://pypi/s/sleekxmpp/${name}.tar.gz"; sha256 = "1krkhkvj8xw5a6c2xlf7h1rg9xdcm9d8x2niivwjahahpvbl6krr"; }; @@ -12724,7 +12879,7 @@ in modules // { disabled = (!isPy34); src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/slixmpp/${name}.tar.gz"; + url = "mirror://pypi/s/slixmpp/${name}.tar.gz"; sha256 = "030ca7e71cbb7e17fb48f83db97779fdbac0b4424cef01245f3276a110b30a6c"; }; @@ -12742,7 +12897,7 @@ in modules // { disabled = isPy35; # https://github.com/drkjam/netaddr/issues/117 src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/netaddr/${name}.tar.gz"; + url = "mirror://pypi/n/netaddr/${name}.tar.gz"; sha256 = "06dxjlbcicq7q3vqy8agq11ra01kvvd47j4mk6dmghjsyzyckxd1"; }; @@ -12760,7 +12915,7 @@ in modules // { name = "netifaces-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/n/netifaces/${name}.tar.gz"; + url = "mirror://pypi/n/netifaces/${name}.tar.gz"; sha256 = "1plw237a4zib4z8s62g0mrs8gm3kjfrp5sxh6bbk9nl3rdls2mln"; }; @@ -12775,7 +12930,7 @@ in modules // { version = "2.0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/hpack/hpack-${version}.tar.gz"; + url = "mirror://pypi/h/hpack/hpack-${version}.tar.gz"; sha256 = "1k4wa8c52bd6x109bn6hc945595w6aqgzj6ipy6c2q7vxkzalzhd"; }; @@ -12800,7 +12955,7 @@ in modules // { version = "0.14.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/netlib/${name}.tar.gz"; + url = "mirror://pypi/n/netlib/${name}.tar.gz"; sha256 = "0xcfjym780wjr32p3g50w2gifqy3589898idzd3fwgj93akv04ng"; }; @@ -12821,7 +12976,7 @@ in modules // { version = "0.11.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/N/Nevow/Nevow-${version}.tar.gz"; + url = "mirror://pypi/N/Nevow/Nevow-${version}.tar.gz"; sha256 = "1z0y8a5q4fa2nmh0dap7cs9pp5xs3jm6q0g4vpwcw77q7jagdmw9"; name = "${name}.tar.gz"; }; @@ -12862,7 +13017,7 @@ in modules // { name = "nibabel-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/n/nibabel/${name}.tar.gz"; + url = "mirror://pypi/n/nibabel/${name}.tar.gz"; sha256 = "0k8mv5zmwb6vc8kwrydl3pp0pnw937rf5mz10figkxczrw6dkk7h"; }; @@ -12892,7 +13047,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/n/nipype/${name}.tar.gz"; + url = "mirror://pypi/n/nipype/${name}.tar.gz"; sha256 = "7fb143cd4d05f18db1cb7f0b83dba13d3dcf55b4eb3d16df08c97033ccae507b"; }; @@ -12921,7 +13076,7 @@ in modules // { name = "nose-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/n/nose/${name}.tar.gz"; + url = "mirror://pypi/n/nose/${name}.tar.gz"; sha256 = "f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98"; }; @@ -12945,7 +13100,7 @@ in modules // { version = "0.4.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/nose-exclude/${name}.tar.gz"; + url = "mirror://pypi/n/nose-exclude/${name}.tar.gz"; sha256 = "44466a9bcb56d2e568750f91504d1278c74eabb259a305b06e975b87b51635da"; }; @@ -12965,7 +13120,7 @@ in modules // { name = "nose-selecttests-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/n/nose-selecttests/${name}.zip"; + url = "mirror://pypi/n/nose-selecttests/${name}.zip"; sha256 = "0lgrfgp3sq8xi8d9grrg0z8jsyk0wl8a3rxw31hb7vdncin5b7n5"; }; @@ -12980,7 +13135,7 @@ in modules // { nose2 = if isPy26 then null else (buildPythonPackage rec { name = "nose2-0.5.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/n/nose2/${name}.tar.gz"; + url = "mirror://pypi/n/nose2/${name}.tar.gz"; sha256 = "0595rh6b6dncbj0jigsyrgrh6h8fsl6w1fr69h76mxv9nllv0rlr"; }; meta = { @@ -12996,7 +13151,7 @@ in modules // { version = "0.1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/nose-cover3/${name}.tar.gz"; + url = "mirror://pypi/n/nose-cover3/${name}.tar.gz"; sha256 = "1la4hhc1yszjpcchvkqk5xmzlb2g1b3fgxj9wwc58qc549whlcc1"; }; @@ -13016,7 +13171,7 @@ in modules // { name = "nosexcover-1.0.10"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/nosexcover/${name}.tar.gz"; + url = "mirror://pypi/n/nosexcover/${name}.tar.gz"; sha256 = "f5b3a7c936c4f703f15418c1f325775098184b69fa572f868edb8a99f8f144a8"; }; @@ -13034,7 +13189,7 @@ in modules // { nosejs = buildPythonPackage { name = "nosejs-0.9.4"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/N/NoseJS/NoseJS-0.9.4.tar.gz; + url = mirror://pypi/N/NoseJS/NoseJS-0.9.4.tar.gz; sha256 = "0qrhkd3sga56qf6k0sqyhwfcladwi05gl6aqmr0xriiq1sgva5dy"; }; buildInputs = with self; [ nose ]; @@ -13050,7 +13205,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/nose-cprof/${name}.tar.gz"; + url = "mirror://pypi/n/nose-cprof/${name}.tar.gz"; sha256 = "d1edd5cb3139e897752294d2968bfb066abdd754743fa416e024e5c688893344"; }; @@ -13066,7 +13221,7 @@ in modules // { name = "notebook-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/notebook/${name}.tar.gz"; + url = "mirror://pypi/n/notebook/${name}.tar.gz"; sha256 = "b597437ba33538221008e21fea71cd01eda9da1515ca3963d7c74e44f4b03d90"; }; @@ -13147,7 +13302,7 @@ in modules // { version = "0.3.9"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/e/emoji/${name}.tar.gz"; + url = "mirror://pypi/e/emoji/${name}.tar.gz"; sha256 = "19p5c2nlq0w9972rf9fghyswnijwgig5f8cyzs32kppnmzvzbkxw"; }; @@ -13186,7 +13341,7 @@ in modules // { ntplib = buildPythonPackage rec { name = "ntplib-0.3.3"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/n/ntplib/ntplib-0.3.3.tar.gz; + url = mirror://pypi/n/ntplib/ntplib-0.3.3.tar.gz; sha256 = "c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"; }; @@ -13201,7 +13356,7 @@ in modules // { name = "numba-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/numba/${name}.tar.gz"; + url = "mirror://pypi/n/numba/${name}.tar.gz"; sha256 = "80ce9968591db7c93e36258cc5e6734eb1e42826332799746dc6c073a6d5d317"; }; @@ -13237,7 +13392,7 @@ in modules // { name = "numexpr-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/numexpr/${name}.tar.gz"; + url = "mirror://pypi/n/numexpr/${name}.tar.gz"; sha256 = "319cdf4e402177a1c8ed4972cffd09f523446f186d347b7c1974787cdabf0294"; }; @@ -13282,7 +13437,7 @@ in modules // { numpy_1_10 = self.buildNumpyPackage rec { version = "1.10.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/numpy/numpy-${version}.tar.gz"; + url = "mirror://pypi/n/numpy/numpy-${version}.tar.gz"; sha256 = "7356e98fbcc529e8d540666f5a919912752e569150e9a4f8d869c686f14c720b"; }; }; @@ -13290,7 +13445,7 @@ in modules // { numpy_1_11 = self.buildNumpyPackage rec { version = "1.11.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/numpy/numpy-${version}.tar.gz"; + url = "mirror://pypi/n/numpy/numpy-${version}.tar.gz"; sha256 = "0gml1ng7iqk4xcrvspjd5vnfqdwfinvjfyksfawvy5h8426jdld1"; }; }; @@ -13300,7 +13455,7 @@ in modules // { version = "0.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/numpydoc/${name}.tar.gz"; + url = "mirror://pypi/n/numpydoc/${name}.tar.gz"; sha256 = "0d4dnifaxkll50jx6czj05y8cb4ny60njd2wz299sj2jxfy51w4k"; }; @@ -13319,7 +13474,7 @@ in modules // { version = "0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/numtraits/${name}.tar.gz"; + url = "mirror://pypi/n/numtraits/${name}.tar.gz"; sha256 = "2fca9a6c9334f7358ef1a3e2e64ccaa6a479fc99fc096910e0d5fbe8edcdfd7e"; }; @@ -13338,7 +13493,7 @@ in modules // { name = "nwdiag-1.0.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/nwdiag/${name}.tar.gz"; + url = "mirror://pypi/n/nwdiag/${name}.tar.gz"; sha256 = "0n7ary1fngxk8bk15vabc8fhnmxlh098piciwaviwn7l4a5q1zys"; }; @@ -13394,7 +13549,7 @@ in modules // { name = "oauth-1.0.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/o/oauth/oauth-1.0.1.tar.gz"; + url = "mirror://pypi/o/oauth/oauth-1.0.1.tar.gz"; sha256 = "0pdgi35hczsslil4890xqawnbpdazkgf2v1443847h5hy2gq2sg7"; }; @@ -13411,7 +13566,7 @@ in modules // { version = "1.9.0.post1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/o/oauth2/${name}.tar.gz"; + url = "mirror://pypi/o/oauth2/${name}.tar.gz"; sha256 = "c006a85e7c60107c7cc6da1b184b5c719f6dd7202098196dfa6e55df669b59bf"; }; @@ -13435,7 +13590,7 @@ in modules // { name = "oauth2client-1.4.12"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oauth2client/${name}.tar.gz"; + url = "mirror://pypi/o/oauth2client/${name}.tar.gz"; sha256 = "0phfk6s8bgpap5xihdk1xv2lakdk1pb3rg6hp2wsg94hxcxnrakl"; }; @@ -13501,7 +13656,7 @@ in modules // { version = "2.0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/objgraph/${name}.tar.gz"; + url = "mirror://pypi/o/objgraph/${name}.tar.gz"; sha256 = "841de52715774ec1d0e97d9b4462d6e3e10406155f9b61f54ba7db984c45442a"; }; @@ -13522,7 +13677,7 @@ in modules // { version= "0.4.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/odo/${name}.tar.gz"; + url = "mirror://pypi/o/odo/${name}.tar.gz"; sha256 = "f793df8b212994ea23ce34e90e2048d0237d3b95ecd066ef2cfbb1c2384b79e9"; }; @@ -13546,7 +13701,7 @@ in modules // { meta.maintainers = with maintainers; [ mornfall ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/offtrac/${name}.tar.gz"; + url = "mirror://pypi/o/offtrac/${name}.tar.gz"; sha256 = "06vd010pa1z7lyfj1na30iqzffr4kzj2k2sba09spik7drlvvl56"; }; doCheck = false; @@ -13557,7 +13712,7 @@ in modules // { name = "openpyxl-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/openpyxl/${name}.tar.gz"; + url = "mirror://pypi/o/openpyxl/${name}.tar.gz"; sha256 = "1zigyvsq45izkhr1h5gisgi0ag5dm6kz09f01c2cgdfav1bl3mlk"; }; @@ -13600,11 +13755,11 @@ in modules // { # }); ordereddict = buildPythonPackage rec { - name = "ordereddict-1.1"; - disabled = !isPy26; + name = "ordereddict-${version}"; + version = "1.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/o/ordereddict/${name}.tar.gz"; + url = "mirror://pypi/o/ordereddict/${name}.tar.gz"; sha256 = "07qvy11nvgxpzarrni3wrww3vpc9yafgi2bch4j2vvvc42nb8d8w"; }; @@ -13644,7 +13799,7 @@ in modules // { name = "ply-3.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/ply/${name}.tar.gz"; + url = "mirror://pypi/p/ply/${name}.tar.gz"; sha256 = "e7d1bdff026beb159c9942f7a17e102c375638d9478a7ecd4cc0c76afd8de0b8"; }; @@ -13702,7 +13857,7 @@ in modules // { name = "oslosphinx-3.3.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslosphinx/${name}.tar.gz"; + url = "mirror://pypi/o/oslosphinx/${name}.tar.gz"; sha256 = "1rjiiahw2y7pg5rl15fvhmfyh26vm433000nwp7c94khx7w85w75"; }; @@ -13718,7 +13873,7 @@ in modules // { version = "0.10.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tempest-lib/${name}.tar.gz"; + url = "mirror://pypi/t/tempest-lib/${name}.tar.gz"; sha256 = "0x842a67k9f7yk3zr6755s4qldkfngljqy5whd4jb553y4hn5lyj"; }; @@ -13739,7 +13894,7 @@ in modules // { version = "0.4.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/os-testr/${name}.tar.gz"; + url = "mirror://pypi/o/os-testr/${name}.tar.gz"; sha256 = "0474z0mxb7y3vfk4s097wf1mzji5d135vh27cvlh9q17rq3x9r3w"; }; @@ -13764,7 +13919,7 @@ in modules // { doCheck = !isPyPy; # a test fails src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/bandit/${name}.tar.gz"; + url = "mirror://pypi/b/bandit/${name}.tar.gz"; sha256 = "0qd9kxknac5n5xfl5zjnlmk6jr94krkcx29zgyna8p9lyb828hsk"; }; @@ -13781,7 +13936,7 @@ in modules // { version = "1.10.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.serialization/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.serialization/${name}.tar.gz"; sha256 = "15k8aql2rx5jzv3hfvmd48vsyw172qa64bs3fmsyx25p37zyfy8a"; }; @@ -13798,7 +13953,7 @@ in modules // { version = "0.2.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/rfc3986/rfc3986-0.2.2.tar.gz"; + url = "mirror://pypi/r/rfc3986/rfc3986-0.2.2.tar.gz"; sha256 = "0yvzz7gp84qqdadbjdh9ch7dz4w19nmhwa704s9m11bljgp3hqmn"; }; @@ -13816,7 +13971,7 @@ in modules // { version = "1.1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pycadf/pycadf-1.1.0.tar.gz"; + url = "mirror://pypi/p/pycadf/pycadf-1.1.0.tar.gz"; sha256 = "0lv9nhbvj1pa8qgn3qvyk9k4q8f7w541074n1rhdjnjkinh4n4dg"; }; @@ -13844,7 +13999,7 @@ in modules // { version = "2.6.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.utils/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.utils/${name}.tar.gz"; sha256 = "1prgi03nxkcykyja821qkycsqlnpyzw17mpvj8qf3pjmgb9gv1fy"; }; @@ -13861,7 +14016,7 @@ in modules // { version = "2.9.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.middleware/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.middleware/${name}.tar.gz"; sha256 = "14acinchdpmc1in39mz9kh1h2rd1ygwg3zdhbwzrlhy8wbzzi4w9"; }; @@ -13887,7 +14042,7 @@ in modules // { version = "0.11.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.versionedobjects/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.versionedobjects/${name}.tar.gz"; sha256 = "1ddcb2zf7a3544ay4sxw200a4mz7p0n1f7826h3vibfdqjlc80y7"; }; @@ -13911,7 +14066,7 @@ in modules // { disabled = isPyPy; # a test fails src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cachetools/${name}.tar.gz"; + url = "mirror://pypi/c/cachetools/${name}.tar.gz"; sha256 = "0js7qx5pa8ibr8487lcf0x3a7w0xml0wa17snd6hjs0857kqhn20"; }; @@ -13925,7 +14080,7 @@ in modules // { version = "0.7.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/futurist/${name}.tar.gz"; + url = "mirror://pypi/f/futurist/${name}.tar.gz"; sha256 = "0wf0k9xf5xzmi79418xq8zxwr7w7a4g4alv3dds9afb2l8bh9crg"; }; @@ -13947,7 +14102,7 @@ in modules // { version = "2.7.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.messaging/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.messaging/${name}.tar.gz"; sha256 = "1af7l4ri3xfjcnjp2yhngz34h3ls00yyj1x8i64dxb86ryy43kd1"; }; @@ -13974,7 +14129,7 @@ in modules // { version = "0.5.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/os-brick/${name}.tar.gz"; + url = "mirror://pypi/o/os-brick/${name}.tar.gz"; sha256 = "1q05yk5hada470rwsv3hfjn7pdp9n7pprmnslm723l7cfhf7cgm6"; }; @@ -14000,7 +14155,7 @@ in modules // { version = "0.6.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.reports/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.reports/${name}.tar.gz"; sha256 = "0j27mbsa5y1fn9lxn98xs7p9vipcig47srm5sgbgma0ilv125b65"; }; @@ -14021,7 +14176,7 @@ in modules // { version = "1.4.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-cinderclient/python-cinderclient-${version}.tar.gz"; + url = "mirror://pypi/p/python-cinderclient/python-cinderclient-${version}.tar.gz"; sha256 = "1vfcjljfad3034bfhfcrfhphym1ik6qk42nrxzl0gqb9408n6k3l"; }; @@ -14046,7 +14201,7 @@ in modules // { version = "3.1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-neutronclient/python-neutronclient-${version}.tar.gz"; + url = "mirror://pypi/p/python-neutronclient/python-neutronclient-${version}.tar.gz"; sha256 = "0g96x5b8lz407in70j6v7jbj613y6sd61b21j1y03x06b2rk5i02"; }; @@ -14075,7 +14230,7 @@ in modules // { version = "1.15.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cliff/${name}.tar.gz"; + url = "mirror://pypi/c/cliff/${name}.tar.gz"; sha256 = "1rrbq1nvc84x417hbfm9sc1scia16nilr8nm8ycm8iq5jkh6zfpm"; }; @@ -14096,7 +14251,7 @@ in modules // { version = "0.6.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cmd2/${name}.tar.gz"; + url = "mirror://pypi/c/cmd2/${name}.tar.gz"; sha256 = "1a346zcd46c8gwbbp2cxsmvgfkyy26kwxjzdnkv7n47w6660sy5c"; }; @@ -14119,7 +14274,7 @@ in modules // { version = "3.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.db/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.db/${name}.tar.gz"; sha256 = "0jjimsfl53wigzf92dhns813n65qcwilcqlj32m86rxrcz0pjgph"; }; @@ -14137,7 +14292,7 @@ in modules // { version = "2.4.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.rootwrap/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.rootwrap/${name}.tar.gz"; sha256 = "1711rlmykizw675ihbaqmk3ph6ah0njbygxr9lrdnacy6yrlmbd5"; }; @@ -14162,7 +14317,7 @@ in modules // { version = "1.1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-glanceclient/python-glanceclient-${version}.tar.gz"; + url = "mirror://pypi/p/python-glanceclient/python-glanceclient-${version}.tar.gz"; sha256 = "0ppjafsmf29ps23jsw6g2xm66pdi5jdzpywglqqm28b8fj931zsr"; }; @@ -14189,7 +14344,7 @@ in modules // { version = "1.2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/warlock/${name}.tar.gz"; + url = "mirror://pypi/w/warlock/${name}.tar.gz"; sha256 = "0npgi4ks0nww2d6ci791iayab0j6kz6dx3jr7bhpgkql3s4if3bw"; }; @@ -14211,7 +14366,7 @@ in modules // { version = "0.10.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.service/oslo.service-0.10.0.tar.gz"; + url = "mirror://pypi/o/oslo.service/oslo.service-0.10.0.tar.gz"; sha256 = "1pcnimc2a50arcgq355ad9lramf6y1yv974swgfj6w90v5c6p9gz"; }; @@ -14241,7 +14396,7 @@ in modules // { version = "0.9.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.cache/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.cache/${name}.tar.gz"; sha256 = "0dzvm5xkfj1alf469d7v3syig9f91kjh4p55k57ykgaww3y4cdjp"; }; @@ -14261,7 +14416,7 @@ in modules // { version = "1.0.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pecan/${name}.tar.gz"; + url = "mirror://pypi/p/pecan/${name}.tar.gz"; sha256 = "04abmybab8jzbwgmrr0fcpcfhcvvkdsv9q135dss02wyk9q9jv4d"; }; @@ -14283,7 +14438,7 @@ in modules // { version = "0.5.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/K/Kajiki/${name}.tar.gz"; + url = "mirror://pypi/K/Kajiki/${name}.tar.gz"; sha256 = "1ayhr4g5q2hhh50fd33dkb7l8z8n2hnnx3lmhivzg3paf47b3ssz"; }; @@ -14314,7 +14469,7 @@ in modules // { ''; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/ryu/${name}.tar.gz"; + url = "mirror://pypi/r/ryu/${name}.tar.gz"; sha256 = "1fhriqi7qnvvx9mbvlfm94i5drh920lg204zy3v0qjz43sinkih6"; }; }; @@ -14324,7 +14479,7 @@ in modules // { version = "0.8.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/W/WSME/${name}.tar.gz"; + url = "mirror://pypi/W/WSME/${name}.tar.gz"; sha256 = "1nw827iz5g9jlfnfbdi8kva565v0kdjzba2lccziimj09r71w900"; }; @@ -14352,7 +14507,7 @@ in modules // { version = "1.23.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/taskflow/${name}.tar.gz"; + url = "mirror://pypi/t/taskflow/${name}.tar.gz"; sha256 = "15np1rc6g9vksgdj0y930ysx5wbmhvc082g264j5zbj6c479g8qa"; }; @@ -14381,7 +14536,7 @@ in modules // { version = "0.9.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/glance_store/${name}.tar.gz"; + url = "mirror://pypi/g/glance_store/${name}.tar.gz"; sha256 = "16az3lq9szl0ixna9rd82dmn4sfxqyivhn4z3z79vk8qdfip1sr9"; }; @@ -14410,7 +14565,7 @@ in modules // { version = "2.6.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-swiftclient/python-swiftclient-${version}.tar.gz"; + url = "mirror://pypi/p/python-swiftclient/python-swiftclient-${version}.tar.gz"; sha256 = "1j33l4z9vqh0scfncl4fxg01zr1hgqxhhai6gvcih1gccqm4nd7p"; }; @@ -14437,7 +14592,7 @@ in modules // { version = "0.2.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/castellan/${name}.tar.gz"; + url = "mirror://pypi/c/castellan/${name}.tar.gz"; sha256 = "1im9b4qzq4yhn17jjc8927b3hn06h404vsx8chddw2jfp0v4ryfj"; }; @@ -14465,7 +14620,7 @@ in modules // { version = "0.2.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/z/zake/${name}.tar.gz"; + url = "mirror://pypi/z/zake/${name}.tar.gz"; sha256 = "1rp4xxy7qp0s0wnq3ig4ji8xsl31g901qkdp339ndxn466cqal2s"; }; @@ -14486,7 +14641,7 @@ in modules // { version = "0.8.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/automaton/${name}.tar.gz"; + url = "mirror://pypi/a/automaton/${name}.tar.gz"; sha256 = "040rw7w92mp34a15vzvbfvhv1cg8zf81s9jbdd9rmwxr0gmgp2ya"; }; @@ -14507,7 +14662,7 @@ in modules // { disabled = isPy3k; # failing tests src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/networking-hyperv/${name}.tar.gz"; + url = "mirror://pypi/n/networking-hyperv/${name}.tar.gz"; sha256 = "04wfkl8rffxp6gp7qvhhc8y80cy0akmh3z7k7y2sj6savg9q7jdj"; }; @@ -14533,7 +14688,7 @@ in modules // { version = "2.2.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/k/kazoo/${name}.tar.gz"; + url = "mirror://pypi/k/kazoo/${name}.tar.gz"; sha256 = "10pb864if9qi2pq9lfb9m8f7z7ss6rml80gf1d9h64lap5crjnjj"; }; @@ -14568,7 +14723,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/osprofiler/${name}.tar.gz"; + url = "mirror://pypi/o/osprofiler/${name}.tar.gz"; sha256 = "01rjym49nn4ry1pr2n8fyal1hf17jqhp2yihg8gr15nfjc5iszkx"; }; @@ -14589,7 +14744,7 @@ in modules // { version = "1.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/F/FormEncode/${name}.zip"; + url = "mirror://pypi/F/FormEncode/${name}.zip"; sha256 = "0y5gywq0l79l85ylr55p4xy0h921zgmfw6zmrvlh83aa4j074xg6"; }; @@ -14614,7 +14769,7 @@ in modules // { version = "1.17"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pycountry/${name}.tar.gz"; + url = "mirror://pypi/p/pycountry/${name}.tar.gz"; sha256 = "1qvhq0c9xsh6d4apcvjphfzl6xnwhnk4jvhr8x2fdfnmb034lc26"; }; }; @@ -14624,7 +14779,7 @@ in modules // { version = "0.3.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/nine/${name}.tar.gz"; + url = "mirror://pypi/n/nine/${name}.tar.gz"; sha256 = "1zrsbm0hajfvklkhgysp81hy632a3bdakp31m0lcpd9xbp5265zy"; }; @@ -14640,7 +14795,7 @@ in modules // { version = "0.3.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/logutils/${name}.tar.gz"; + url = "mirror://pypi/l/logutils/${name}.tar.gz"; sha256 = "173w55fg3hp5dhx7xvssmgqkcv5fjlaik11w5dah2fxygkjvhhj0"; }; }; @@ -14650,7 +14805,7 @@ in modules // { version = "0.12.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.policy/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.policy/${name}.tar.gz"; sha256 = "06apaj6fwg7f2g5psmxzr5a9apj2l4k2y8kl1hqzyssykblij8ss"; }; @@ -14667,7 +14822,7 @@ in modules // { version = "1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/ldappool/${name}.tar.gz"; + url = "mirror://pypi/l/ldappool/${name}.tar.gz"; sha256 = "1akmzf51cjfvmd0nvvm562z1w9vq45zsx6fa72kraqgsgxhnrhqz"; }; @@ -14685,7 +14840,7 @@ in modules // { version = "2.7.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.concurrency/oslo.concurrency-2.7.0.tar.gz"; + url = "mirror://pypi/o/oslo.concurrency/oslo.concurrency-2.7.0.tar.gz"; sha256 = "1yp8c87yi6fx1qbq4y1xkx47iiifg7jqzpcghivhxqra8vna185d"; }; @@ -14711,7 +14866,7 @@ in modules // { version = "1.3.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/retrying/retrying-1.3.3.tar.gz"; + url = "mirror://pypi/r/retrying/retrying-1.3.3.tar.gz"; sha256 = "0fwp86xv0rvkncjdvy2mwcvbglw4w9k0fva25i7zx8kd19b3kh08"; }; @@ -14730,7 +14885,7 @@ in modules // { version = "0.13.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/fasteners/fasteners-0.13.0.tar.gz"; + url = "mirror://pypi/f/fasteners/fasteners-0.13.0.tar.gz"; sha256 = "0nghdq3zihiqg10dp76ls7yn44m5wjncyz7fk8isagkrspkh9a3n"; }; @@ -14754,7 +14909,7 @@ in modules // { version = "0.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/aioeventlet/aioeventlet-0.4.tar.gz"; + url = "mirror://pypi/a/aioeventlet/aioeventlet-0.4.tar.gz"; sha256 = "19krvycaiximchhv1hcfhz81249m3w3jrbp2h4apn1yf4yrc4y7y"; }; @@ -14778,7 +14933,7 @@ in modules // { version = "1.12.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.log/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.log/${name}.tar.gz"; sha256 = "10x596r19zjla5n1bf04j5vncx0c9gpc5wc2jlmgjbl3cyx3vgsv"; }; @@ -14797,7 +14952,7 @@ in modules // { version = "0.7.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.context/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.context/${name}.tar.gz"; sha256 = "18fmg9dhgngshk63wfb3ddrgx5br8jxkk3x30z40741mslp1fdjy"; }; @@ -14813,7 +14968,7 @@ in modules // { version = "2.7.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.i18n/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.i18n/${name}.tar.gz"; sha256 = "11jgcvj36g97awh7fpar4xxgwrvzfahq6rw7xxqac32ia790ylcz"; }; @@ -14829,7 +14984,7 @@ in modules // { version = "2.5.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslo.config/${name}.tar.gz"; + url = "mirror://pypi/o/oslo.config/${name}.tar.gz"; sha256 = "043mavrzj7vjn7kh1dddci4sf67qwqnnn6cm0k1d19alks9hismz"; }; @@ -14845,7 +15000,7 @@ in modules // { version = "1.12.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oslotest/${name}.tar.gz"; + url = "mirror://pypi/o/oslotest/${name}.tar.gz"; sha256 = "17i92hymw1dwmmb5yv90m2gam2x21mc960q1pr7bly93x49h8666"; }; @@ -14862,7 +15017,7 @@ in modules // { version = "1.8.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/os-client-config/${name}.tar.gz"; + url = "mirror://pypi/o/os-client-config/${name}.tar.gz"; sha256 = "10hz4yp594mi1p7v1pvgsmx5w2rnb9y8d0jvb2lfv03ljnwzv8jz"; }; @@ -14884,7 +15039,7 @@ in modules // { disabled = isPyPy; # a test fails src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/k/keystoneauth1/${name}.tar.gz"; + url = "mirror://pypi/k/keystoneauth1/${name}.tar.gz"; sha256 = "05fc6xsp5mal52ijvj84sf7mrw706ihadfdf5mnq9zxn7pfl4118"; }; @@ -14902,7 +15057,7 @@ in modules // { version = "0.6.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/requests-mock/${name}.tar.gz"; + url = "mirror://pypi/r/requests-mock/${name}.tar.gz"; sha256 = "0gmd88c224y53b1ai8cfsrcxm9kw3gdqzysclmnaqspg7zjhxwd1"; }; @@ -14919,7 +15074,7 @@ in modules // { version = "0.11.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/mox3/${name}.tar.gz"; + url = "mirror://pypi/m/mox3/${name}.tar.gz"; sha256 = "09dkgki21v5zqrx575h1aazxsq5akkv0a90z644bk1ry9a4zg1pn"; }; @@ -14936,7 +15091,7 @@ in modules // { version = "0.9.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/debtcollector/${name}.tar.gz"; + url = "mirror://pypi/d/debtcollector/${name}.tar.gz"; sha256 = "1mvdxdrnwlgfqg26s5himkjq6f06r2khlrignx36kkbyaix6j9xb"; }; patchPhase = '' @@ -14955,7 +15110,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/wrapt/${name}.tar.gz"; + url = "mirror://pypi/w/wrapt/${name}.tar.gz"; sha256 = "0cq8rlpzkxzk48b50yrfhzn1d1hrq4gjcdqlrgq4v5palgiv9jwr"; }; }; @@ -14966,7 +15121,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pagerduty/pagerduty-${version}.tar.gz"; + url = "mirror://pypi/p/pagerduty/pagerduty-${version}.tar.gz"; sha256 = "e8c237239d3ffb061069aa04fc5b3d8ae4fb0af16a9713fe0977f02261d323e9"; }; }; @@ -14981,7 +15136,7 @@ in modules // { version = "0.18.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pandas/${name}.tar.gz"; + url = "mirror://pypi/p/pandas/${name}.tar.gz"; sha256 = "050qw0ap5bhyv5flp78x3lcq1dlminl3xaj6kbrm0jqmx0672xf9"; }; @@ -15050,7 +15205,7 @@ in modules // { version = "0.9.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/x/xlrd/xlrd-${version}.tar.gz"; + url = "mirror://pypi/x/xlrd/xlrd-${version}.tar.gz"; sha256 = "8e8d3359f39541a6ff937f4030db54864836a06e42988c452db5b6b86d29ea72"; }; @@ -15065,7 +15220,7 @@ in modules // { name = "Bottleneck-${version}"; version = "1.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/B/Bottleneck/Bottleneck-${version}.tar.gz"; + url = "mirror://pypi/B/Bottleneck/Bottleneck-${version}.tar.gz"; sha256 = "15dl0ll5xmfzj2fsvajzwxsb9dbw5i9fx9i4r6n4i5nzzba7m6wd"; }; @@ -15083,7 +15238,7 @@ in modules // { disabled = isPyPy || isPy26; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/paho-mqtt/${name}.tar.gz"; + url = "mirror://pypi/p/paho-mqtt/${name}.tar.gz"; sha256 = "07i6k9mw66kgbvjgsrcsd2sjji9ckym50dcxnmhjqfkfzsg64yhg"; }; @@ -15100,7 +15255,7 @@ in modules // { name = "pamqp-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pamqp/${name}.tar.gz"; + url = "mirror://pypi/p/pamqp/${name}.tar.gz"; sha256 = "1vmyvynqzx5zvbipaxff4fnzy3h3dvl3zicyr15yb816j93jl2ca"; }; @@ -15118,7 +15273,7 @@ in modules // { version = "1.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/parsedatetime/${name}.tar.gz"; + url = "mirror://pypi/p/parsedatetime/${name}.tar.gz"; sha256 = "09bfcd8f3c239c75e77b3ff05d782ab2c1aed0892f250ce2adf948d4308fe9dc"; }; }; @@ -15127,7 +15282,7 @@ in modules // { name = "paramiko-1.15.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/paramiko/${name}.tar.gz"; + url = "mirror://pypi/p/paramiko/${name}.tar.gz"; sha256 = "6ed97e2281bb48728692cdc621f6b86a65fdc1d46b178ce250cfec10b977a04c"; }; @@ -15162,7 +15317,7 @@ in modules // { version = "0.3.0"; src = pkgs.fetchurl{ - url = "https://pypi.python.org/packages/source/p/patsy/${name}.zip"; + url = "mirror://pypi/p/patsy/${name}.zip"; sha256 = "a55dd4ca09af4b9608b81f30322beb450510964c022708ab50e83a065ccf15f0"; }; @@ -15181,7 +15336,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = http://pypi.python.org/packages/source/P/Paste/Paste-1.7.5.1.tar.gz; + url = mirror://pypi/P/Paste/Paste-1.7.5.1.tar.gz; sha256 = "11645842ba8ec986ae8cfbe4c6cacff5c35f0f4527abf4f5581ae8b4ad49c0b6"; }; @@ -15201,7 +15356,7 @@ in modules // { name = "paste-deploy-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/P/PasteDeploy/PasteDeploy-${version}.tar.gz"; + url = "mirror://pypi/P/PasteDeploy/PasteDeploy-${version}.tar.gz"; sha256 = "d5858f89a255e6294e63ed46b73613c56e3b9a2d82a42f1df4d06c8421a9e3cb"; }; @@ -15219,7 +15374,7 @@ in modules // { name = "PasterScript-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/P/PasteScript/${name}.tar.gz"; + url = "mirror://pypi/P/PasteScript/${name}.tar.gz"; sha256 = "2b685be69d6ac8bc0fe6f558f119660259db26a15e16a4943c515fbee8093539"; }; @@ -15240,7 +15395,7 @@ in modules // { disabled = pythonAtLeast "3.4"; # Was added to std library in Python 3.4 src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pathlib/${name}.tar.gz"; + url = "mirror://pypi/p/pathlib/${name}.tar.gz"; sha256 = "17zajiw4mjbkkv6ahp3xf025qglkj0805m9s41c45zryzj6p2h39"; }; @@ -15256,7 +15411,7 @@ in modules // { name = "path.py-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/path.py/${name}.tar.gz"; + url = "mirror://pypi/p/path.py/${name}.tar.gz"; sha256 = "ada95d117c4559abe64080961daf5badda68561afdd34c278f8ca20f2fa466d2"; }; @@ -15279,7 +15434,7 @@ in modules // { name = "paypalrestsdk-0.7.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/paypalrestsdk/${name}.tar.gz"; + url = "mirror://pypi/p/paypalrestsdk/${name}.tar.gz"; sha256 = "117kfipzfahf9ysv414bh1mmm5cc9ck5zb6rhpslx1f8gk3frvd6"; }; @@ -15297,7 +15452,7 @@ in modules // { version = "1.8.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pbr/${name}.tar.gz"; + url = "mirror://pypi/p/pbr/${name}.tar.gz"; sha256 = "0jcny36cf3s8ar5r4a575npz080hndnrfs4np1fqhv0ym4k7c4p2"; }; @@ -15317,7 +15472,7 @@ in modules // { name = "fixtures-1.4.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/fixtures/${name}.tar.gz"; + url = "mirror://pypi/f/fixtures/${name}.tar.gz"; sha256 = "0djxvdwm8s60dbfn7bhf40x6g818p3b3mlwijm1c3bqg7msn271y"; }; @@ -15380,7 +15535,7 @@ in modules // { version = "1.7.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pep8/${name}.tar.gz"; + url = "mirror://pypi/p/pep8/${name}.tar.gz"; sha256 = "a113d5f5ad7a7abacef9df5ec3f2af23a20a28005921577b15dd584d099d5900"; }; @@ -15416,7 +15571,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/percol/${name}.tar.gz"; + url = "mirror://pypi/p/percol/${name}.tar.gz"; sha256 = "169s5mhw1s60qbsd6pkf9bb2x6wfgx8hn8nw9d4qgc68qnnpp2cj"; }; @@ -15435,7 +15590,7 @@ in modules // { version = "0.15"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pexif/pexif-0.15.tar.gz"; + url = "mirror://pypi/p/pexif/pexif-0.15.tar.gz"; sha256 = "45a3be037c7ba8b64bbfc48f3586402cc17de55bb9d7357ef2bc99954a18da3f"; }; @@ -15452,7 +15607,7 @@ in modules // { name = "pexpect-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pexpect/${name}.tar.gz"; + url = "mirror://pypi/p/pexpect/${name}.tar.gz"; sha256 = "dfea618d43e83cfff21504f18f98019ba520f330e4142e5185ef7c73527de5ba"; }; @@ -15487,7 +15642,7 @@ in modules // { name = "pg8000-1.10.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pg8000/${name}.tar.gz"; + url = "mirror://pypi/p/pg8000/${name}.tar.gz"; sha256 = "188658db63c2ca931ae1bf0167b34efaac0ecc743b707f0118cc4b87e90ce488"; }; @@ -15501,21 +15656,25 @@ in modules // { pgcli = buildPythonPackage rec { name = "pgcli-${version}"; - version = "0.19.2"; + version = "0.20.1"; src = pkgs.fetchFromGitHub { - sha256 = "1xl3yqwksnszd2vcgzb576m56613qcl82jfqmb9fbvcqlcpks6ln"; + sha256 = "0f1ff1a1x1qrcv4ygfh29yyknx8hgwck7rp020zz0jrq9dibhjp7"; rev = "v${version}"; repo = "pgcli"; owner = "dbcli"; }; propagatedBuildInputs = with self; [ - click configobj prompt_toolkit psycopg2 pygments sqlparse + click configobj prompt_toolkit psycopg2 + pygments sqlparse pgspecial setproctitle ]; + postPatch = '' + substituteInPlace setup.py --replace "==" ">=" + ''; + meta = { - inherit version; description = "Command-line interface for PostgreSQL"; longDescription = '' Rich command-line interface for PostgreSQL with auto-completion and @@ -15527,19 +15686,39 @@ in modules // { }; }; + pgspecial = buildPythonPackage rec { + name = "pgspecial-${version}"; + version = "1.3.0"; + + src = pkgs.fetchurl { + sha256 = "1nxqqkchigrznywmm73n1ksp5hhhwswz8anrlwpi9i75wq792mg1"; + url = "mirror://pypi/p/pgspecial/${name}.tar.gz"; + }; + + propagatedBuildInputs = with self; [ click ]; + + meta = { + description = "Meta-commands handler for Postgres Database"; + homepage = https://pypi.python.org/pypi/pgspecial; + licence = licenses.bsd3; + maintainers = with maintainers; [ nckx ]; + }; + }; + + mycli = buildPythonPackage rec { name = "mycli-${version}"; - version = "1.4.0"; + version = "1.6.0"; src = pkgs.fetchFromGitHub { - sha256 = "175jcfixjkq17fbda9kifbljfd5iwjpjisvhs5xhxsyf6n5ykv2l"; + sha256 = "0vvl36gxawa0h36v119j47fdylj8k73ak6hv04s5cjqn5adcjjbh"; rev = "v${version}"; repo = "mycli"; owner = "dbcli"; }; propagatedBuildInputs = with self; [ - pymysql configobj sqlparse prompt_toolkit pygments click + pymysql configobj sqlparse prompt_toolkit pygments click pycrypto ]; meta = { @@ -15559,7 +15738,7 @@ in modules // { name = "pickleshare-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pickleshare/${name}.tar.gz"; + url = "mirror://pypi/p/pickleshare/${name}.tar.gz"; sha256 = "c0be5745035d437dbf55a96f60b7712345b12423f7d0951bd7d8dc2141ca9286"; }; @@ -15578,7 +15757,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/piep/piep-${version}.tar.gz"; + url = "mirror://pypi/p/piep/piep-${version}.tar.gz"; sha256 = "1wgkg1kc28jpya5k4zvbc9jmpa60b3d5c3gwxfbp15hw6smyqirj"; }; @@ -15597,7 +15776,7 @@ in modules // { name = "pip-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pip/pip-${version}.tar.gz"; + url = "mirror://pypi/p/pip/pip-${version}.tar.gz"; sha256 = "160pa7xg0vybidhszd1n0ik2xah0yz6gsym5hp8k7dmfd83d6y1y"; }; @@ -15613,7 +15792,7 @@ in modules // { name = "pika-0.9.12"; disabled = isPy3k; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/p/pika/pika-0.9.12.tar.gz; + url = mirror://pypi/p/pika/pika-0.9.12.tar.gz; sha256 = "670787ee6ade47cadd1ec8220876b9b7ae4df7bc4b9dd1d808261a6b47e9ce5d"; }; buildInputs = with self; [ nose mock pyyaml ]; @@ -15628,7 +15807,7 @@ in modules // { disabled = isPy3k || isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/platformio/platformio-${version}.tar.gz"; + url = "mirror://pypi/p/platformio/platformio-${version}.tar.gz"; sha256 = "1l8jcwf8flmx8xcsvly2my8al8nzjr67h3mg5c9wvdr7a42q7dil"; }; @@ -15647,7 +15826,7 @@ in modules // { version = "0.2.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pylibconfig2/${name}.tar.gz"; + url = "mirror://pypi/p/pylibconfig2/${name}.tar.gz"; sha256 = "0kyg6gldj6hi2jhc5xhi834bb2mcaiy24dvfik963shnldqr7kqg"; }; @@ -15670,7 +15849,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/${pname}/${name}.tar.gz"; + url = "mirror://pypi/p/${pname}/${name}.tar.gz"; sha256 = "1rxyg9465cp6nc47pqxqf092wmbvv2zhffzvaf2w74laal43pgxw"; }; @@ -15687,7 +15866,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pysftp/${name}.tar.gz"; + url = "mirror://pypi/p/pysftp/${name}.tar.gz"; sha256 = "1d69z8yngciksch1i8rivy1xl8f6g6sb7c3kk5cm3pf8304q6hhm"; }; @@ -15710,7 +15889,7 @@ in modules // { version = "0.8.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/P/PySoundFile/PySoundFile-${version}.tar.gz"; + url = "mirror://pypi/P/PySoundFile/PySoundFile-${version}.tar.gz"; sha256 = "72c3e23b7c9998460ec78176084ea101e3439596ab29df476bc8508708df84df"; }; @@ -15740,7 +15919,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/p/python3-pika/python3-pika-0.9.14.tar.gz; + url = mirror://pypi/p/python3-pika/python3-pika-0.9.14.tar.gz; sha256 = "1c3hifwvn04kvlja88iawf0awyz726jynwnpcb6gn7376b4nfch7"; }; buildInputs = with self; [ nose mock pyyaml ]; @@ -15753,7 +15932,7 @@ in modules // { name = "python-jenkins-${version}"; version = "0.4.11"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-jenkins/${name}.tar.gz"; + url = "mirror://pypi/p/python-jenkins/${name}.tar.gz"; sha256 = "153gm7pmmn0bymglsgcr2ya0752r2v1hajkx73gl1pk4jifb2gdf"; }; patchPhase = '' @@ -15775,7 +15954,7 @@ in modules // { name = "Pillow-2.9.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/P/Pillow/${name}.zip"; + url = "mirror://pypi/P/Pillow/${name}.zip"; sha256 = "1mal92cwh85z6zqx7lrmg0dbqb2gw2cbb2fm6xh0fivmszz8vnyi"; }; @@ -15832,7 +16011,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pkgconfig/${name}.tar.gz"; + url = "mirror://pypi/p/pkgconfig/${name}.tar.gz"; sha256 = "709daaf077aa2b33bedac12706373412c3683576a43013bbaa529fc2769d80df"; }; @@ -15861,7 +16040,7 @@ in modules // { buildInputs = with self; [ self.six ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/plumbum/${name}.tar.gz"; + url = "mirror://pypi/p/plumbum/${name}.tar.gz"; sha256 = "b759f9e3b6771dff3332f01bc0683d1a56218f44d97942dabd906a0cd1cfb756"; }; }; @@ -15932,7 +16111,7 @@ in modules // { name = "praw-3.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/praw/${name}.zip"; + url = "mirror://pypi/p/praw/${name}.zip"; sha256 = "17s8s4a1yk9rq21f3kmj9k4dbgvfa3650l8b39nhwybvxl3j5nfv"; }; @@ -15961,7 +16140,7 @@ in modules // { name = "prettytable-0.7.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/P/PrettyTable/${name}.tar.bz2"; + url = "mirror://pypi/P/PrettyTable/${name}.tar.bz2"; sha256 = "599bc5b4b9602e28294cf795733c889c26dd934aa7e0ee9cff9b905d4fbad188"; }; @@ -15980,11 +16159,11 @@ in modules // { prompt_toolkit = buildPythonPackage rec { name = "prompt_toolkit-${version}"; - version = "0.46"; + version = "0.60"; src = pkgs.fetchurl { - sha256 = "1yq9nis1b2rgpndi2rqh4divf6j22jjva83r5z8jf7iffywmr8hs"; - url = "https://pypi.python.org/packages/source/p/prompt_toolkit/${name}.tar.gz"; + sha256 = "0gf3vv8dmj77xv7lrpccw9k3m1bgq3m71q9s6hqp77zvyd6cqjml"; + url = "mirror://pypi/p/prompt_toolkit/${name}.tar.gz"; }; buildInputs = with self; [ jedi ipython pygments ]; @@ -16008,7 +16187,7 @@ in modules // { version = "0.52"; src = pkgs.fetchurl { sha256 = "00h9ldqmb33nhg2kpks7paldf3n3023ipp124alwp96yz16s7f1m"; - url = "https://pypi.python.org/packages/source/p/prompt_toolkit/${name}.tar.gz"; + url = "mirror://pypi/p/prompt_toolkit/${name}.tar.gz"; }; #Only <3.4 expressly supported. @@ -16061,7 +16240,7 @@ in modules // { version = "3.4.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/psutil/${name}.tar.gz"; + url = "mirror://pypi/p/psutil/${name}.tar.gz"; sha256 = "b17fa01aa766daa388362d0eda5c215d77e03a8d37676b68971f37bf3913b725"; }; @@ -16085,7 +16264,7 @@ in modules // { psutil_1 = self.psutil.overrideDerivation (self: rec { name = "psutil-1.2.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/psutil/${name}.tar.gz"; + url = "mirror://pypi/p/psutil/${name}.tar.gz"; sha256 = "0ibclqy6a4qmkjhlk3g8jhpvnk0v9aywknc61xm3hfi5r124m3jh"; }; }); @@ -16098,7 +16277,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/psycopg2/${name}.tar.gz"; + url = "mirror://pypi/p/psycopg2/${name}.tar.gz"; sha256 = "07ivzl7bq8bjcq5n90w4bsl29gjfm5l8yamw0paxh25si8r3zfi4"; }; @@ -16117,7 +16296,7 @@ in modules // { version = "1.0.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/publicsuffix/${name}.tar.gz"; + url = "mirror://pypi/p/publicsuffix/${name}.tar.gz"; sha256 = "f6dfcb8a33fb3ac4f09e644cd26f8af6a09d1a45a019d105c8da58e289ca0096"; }; @@ -16134,7 +16313,7 @@ in modules // { version = "1.4.31"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/py/${name}.tar.gz"; + url = "mirror://pypi/p/py/${name}.tar.gz"; sha256 = "a6501963c725fc2554dabfece8ae9a8fb5e149c0ac0a42fd2b02c5c1c57fc114"; }; @@ -16153,7 +16332,7 @@ in modules // { name = "pyacoustid-1.1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyacoustid/${name}.tar.gz"; + url = "mirror://pypi/p/pyacoustid/${name}.tar.gz"; sha256 = "0117039cb116af245e6866e8e8bf3c9c8b2853ad087142bd0c2dfc0acc09d452"; }; @@ -16179,7 +16358,7 @@ in modules // { name = "pyalogotrade-0.16"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/P/PyAlgoTrade/PyAlgoTrade-0.16.tar.gz"; + url = "mirror://pypi/P/PyAlgoTrade/PyAlgoTrade-0.16.tar.gz"; sha256 = "a253617254194b91cfebae7bfd184cb109d4e48a8c70051b9560000a2c0f94b3"; }; @@ -16215,7 +16394,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyasn1-modules/${name}.tar.gz"; + url = "mirror://pypi/p/pyasn1-modules/${name}.tar.gz"; sha256 = "0hcr6klrzmw4d9j9s5wrhqva5014735pg4zk3rppac4fs87g0rdy"; }; @@ -16234,7 +16413,7 @@ in modules // { version = "0.2.9"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/P/PyAudio/PyAudio-${version}.tar.gz"; + url = "mirror://pypi/P/PyAudio/PyAudio-${version}.tar.gz"; sha256 = "bfd694272b3d1efc51726d0c27650b3c3ba1345f7f8fdada7e86c9751ce0f2a1"; }; @@ -16251,11 +16430,11 @@ in modules // { pysaml2 = buildPythonPackage rec { name = "pysaml2-${version}"; - version = "3.0.0"; + version = "3.0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pysaml2/${name}.tar.gz"; - sha256 = "1h2wvagvl59642jq0s63mfr01q637vq6526mr8riykrjnchcbbi2"; + url = "mirror://pypi/p/pysaml2/${name}.tar.gz"; + sha256 = "0y2iw1dddcvi13xjh3l52z1mvnrbc41ik9k4nn7lwj8x5kimnk9n"; }; propagatedBuildInputs = with self; [ @@ -16283,7 +16462,7 @@ in modules // { version = "0.3.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/mongodict/${name}.tar.gz"; + url = "mirror://pypi/m/mongodict/${name}.tar.gz"; sha256 = "0nv5amfs337m0gbxpjb0585s20rndqfc3mfrzq1iwgnds5gxcrlw"; }; @@ -16303,7 +16482,7 @@ in modules // { version = "2.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/repoze.who/${name}.tar.gz"; + url = "mirror://pypi/r/repoze.who/${name}.tar.gz"; sha256 = "12wsviar45nwn35w2y4i8b929dq2219vmwz8013wx7bpgkn2j9ij"; }; @@ -16355,7 +16534,7 @@ in modules // { name = "pycarddav-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyCardDAV/pyCardDAV-${version}.tar.gz"; + url = "mirror://pypi/p/pyCardDAV/pyCardDAV-${version}.tar.gz"; sha256 = "0avkrcpisfvhz103v7vmq2jd83hvmpqrb4mlbx6ikkk1wcvclsx8"; }; @@ -16375,7 +16554,7 @@ in modules // { name = "pycosat-0.6.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pycosat/${name}.tar.gz"; + url = "mirror://pypi/p/pycosat/${name}.tar.gz"; sha256 = "02sdn2998jlrm35smn1530hix3kzwyc1jv49cjdcnvfvrqqi3rww"; }; @@ -16396,7 +16575,7 @@ in modules // { name = "pygit2-0.23.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pygit2/${name}.tar.gz"; + url = "mirror://pypi/p/pygit2/${name}.tar.gz"; sha256 = "04201vcal7jq8lbpk9ylscrhjxdcf2aihiw25k4imjjqgfmvldf7"; }; @@ -16425,7 +16604,7 @@ in modules // { name = "Babel-2.2.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/B/Babel/${name}.tar.gz"; + url = "mirror://pypi/B/Babel/${name}.tar.gz"; sha256 = "d8cb4c0e78148aee89560f9fe21587aa57739c975bb89ff66b1e842cc697428f"; }; @@ -16446,7 +16625,7 @@ in modules // { disabled = isPyPy || isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pybfd/${name}.tar.gz"; + url = "mirror://pypi/p/pybfd/${name}.tar.gz"; sha256 = "d99b32ad077e704ddddc0b488c83cae851c14919e5cbc51715d00464a1932df4"; }; @@ -16498,7 +16677,7 @@ in modules // { version = "0.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/py-bcrypt/py-bcrypt-${version}.tar.gz"; + url = "mirror://pypi/p/py-bcrypt/py-bcrypt-${version}.tar.gz"; sha256 = "5fa13bce551468350d66c4883694850570f3da28d6866bb638ba44fe5eabda78"; }; @@ -16536,7 +16715,7 @@ in modules // { disabled = isPyPy || isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pycapnp/${name}.tar.gz"; + url = "mirror://pypi/p/pycapnp/${name}.tar.gz"; sha256 = "1kp97il34419gcrhn866n6a10lvh8qr13bnllnnh9473n4cq0cvk"; }; @@ -16561,7 +16740,7 @@ in modules // { disabled = !isPy27; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pycdio/${name}.tar.gz"; + url = "mirror://pypi/p/pycdio/${name}.tar.gz"; sha256 = "1mrh233pj584gf7la64d4xlmvdnfl4jwpxs95lnd3i4zd5drid14"; }; @@ -16601,7 +16780,7 @@ in modules // { disabled = isPy3k || isPyPy; # see https://bitbucket.org/pypy/pypy/issue/1190/ src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pycryptopp/${name}.tar.gz"; + url = "mirror://pypi/p/pycryptopp/${name}.tar.gz"; sha256 = "0n90h1yg7bfvlbhnc54xb6dbqm286ykaksyg04kxlhyjgf8mhq8i"; }; @@ -16700,7 +16879,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pydot/${name}.tar.gz"; + url = "mirror://pypi/p/pydot/${name}.tar.gz"; sha256 = "80ea01a7ba75671a3b7890375be0ad8d5321b07bfb6f572192c31409062b59f3"; }; propagatedBuildInputs = with self; [pyparsing pkgs.graphviz]; @@ -16714,7 +16893,7 @@ in modules // { name = "pydot_ng-1.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pydot-ng/${name}.tar.gz"; + url = "mirror://pypi/p/pydot-ng/${name}.tar.gz"; sha256 = "0h8k8wlzvnb40v4js7afgfyhp3wasmb1kg4gr6z7ck63iv8fq864"; }; @@ -16738,7 +16917,7 @@ in modules // { name = "pyelasticsearch-1.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyelasticsearch/${name}.tar.gz"; + url = "mirror://pypi/p/pyelasticsearch/${name}.tar.gz"; sha256 = "18wp6llfjv6hvyhr3f6i8dm9wc5rf46wiqsfxwpvnf6mdrvk6xr7"; }; @@ -16760,7 +16939,7 @@ in modules // { name = "${pname}-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/${pname}/${name}.tar.gz"; + url = "mirror://pypi/p/${pname}/${name}.tar.gz"; sha256 = "1pi1mdzfffgl5qcz0prsa7hlbriycy7mgagi0fdrp3vf17fslmzw"; }; @@ -16784,7 +16963,7 @@ in modules // { name = "pyenchant-1.6.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyenchant/pyenchant-1.6.6.tar.gz"; + url = "mirror://pypi/p/pyenchant/pyenchant-1.6.6.tar.gz"; sha256 = "25c9d2667d512f8fc4410465fdd2e868377ca07eb3d56e2b6e534a86281d64d3"; }; @@ -16811,7 +16990,7 @@ in modules // { name = "pyev-0.9.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyev/${name}.tar.gz"; + url = "mirror://pypi/p/pyev/${name}.tar.gz"; sha256 = "0rf603lc0s6zpa1nb25vhd8g4y337wg2wyz56i0agsdh7jchl0sx"; }; @@ -16855,7 +17034,7 @@ in modules // { version = "0.9.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyFFTW/pyFFTW-${version}.tar.gz"; + url = "mirror://pypi/p/pyFFTW/pyFFTW-${version}.tar.gz"; sha256 = "f6bbb6afa93085409ab24885a1a3cdb8909f095a142f4d49e346f2bd1b789074"; }; @@ -16887,7 +17066,7 @@ in modules // { version = "0.7.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyfiglet/${name}.tar.gz"; + url = "mirror://pypi/p/pyfiglet/${name}.tar.gz"; sha256 = "0v8a18wvaqnb1jksyv5dc5n6zj0vrkyhz0ivmm8gfwpa0ky6n68y"; }; @@ -16905,7 +17084,7 @@ in modules // { version = "1.0.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyflakes/${name}.tar.gz"; + url = "mirror://pypi/p/pyflakes/${name}.tar.gz"; sha256 = "f39e33a4c03beead8774f005bd3ecf0c3f2f264fa0201de965fce0aff1d34263"; }; @@ -16925,7 +17104,7 @@ in modules // { name = "pygeoip-0.3.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pygeoip/pygeoip-0.3.2.tar.gz"; + url = "mirror://pypi/p/pygeoip/pygeoip-0.3.2.tar.gz"; sha256 = "f22c4e00ddf1213e0fae36dc60b46ee7c25a6339941ec1a975539014c1f9a96d"; }; @@ -16946,7 +17125,7 @@ in modules // { version = "1.2.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyglet/pyglet-${version}.tar.gz"; + url = "mirror://pypi/p/pyglet/pyglet-${version}.tar.gz"; sha256 = "9f62ffbbcf2b202d084bf158685e77d28b8f4f5f2738f4c5e63a947a07503445"; }; @@ -16970,7 +17149,7 @@ in modules // { name = "Pygments-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/P/Pygments/${name}.tar.gz"; + url = "mirror://pypi/P/Pygments/${name}.tar.gz"; sha256 = "10axnp2wpjnq9g8wg53fx0c70dfxqrz498jyz8mrdx9a3flwir48"; }; @@ -16993,7 +17172,7 @@ in modules // { name = "Pygments-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/P/Pygments/${name}.tar.gz"; + url = "mirror://pypi/P/Pygments/${name}.tar.gz"; sha256 = "7320919084e6dac8f4540638a46447a3bd730fca172afc17d2c03eed22cf4f51"; }; }; @@ -17026,7 +17205,7 @@ in modules // { version = "1.5.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pylint/${name}.tar.gz"; + url = "mirror://pypi/p/pylint/${name}.tar.gz"; sha256 = "2fe3cc2fc66a56fdc35dbbc2bf1dd96a534abfc79ee6b2ad9ae4fe166e570c4b"; }; @@ -17052,7 +17231,7 @@ in modules // { version = "0.7.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyrr/pyrr-${version}.tar.gz"; + url = "mirror://pypi/p/pyrr/pyrr-${version}.tar.gz"; sha256 = "04a65a9fb5c746b41209f55b21abf47a0ef80a4271159d670ca9579d9be3b4fa"; }; @@ -17071,7 +17250,7 @@ in modules // { version = "1.2.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyshp/pyshp-${version}.tar.gz"; + url = "mirror://pypi/p/pyshp/pyshp-${version}.tar.gz"; sha256 = "e18cc19659dadc5ddaa891eb780a6958094da0cf105a1efe0f67e75b4fa1cdf9"; }; @@ -17089,7 +17268,7 @@ in modules // { version = "0.14.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/P/PyX/PyX-${version}.tar.gz"; + url = "mirror://pypi/P/PyX/PyX-${version}.tar.gz"; sha256 = "05d1b7fc813379d2c12fcb5bd0195cab522b5aabafac88f72913f1d47becd912"; }; @@ -17127,7 +17306,7 @@ in modules // { name = "kaa-base-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/k/kaa-base/kaa-base-0.99.2dev-384-2b73caca.tar.gz"; + url = "mirror://pypi/k/kaa-base/kaa-base-0.99.2dev-384-2b73caca.tar.gz"; sha256 = "0k3zzz84wzz9q1fl3vvqr2ys96z9pcf4viq9q6s2a63zaysmcfd2"; }; @@ -17198,7 +17377,7 @@ in modules // { ''; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/k/kaa-metadata/kaa-metadata-0.7.8dev-r4569-20111003.tar.gz"; + url = "mirror://pypi/k/kaa-metadata/kaa-metadata-0.7.8dev-r4569-20111003.tar.gz"; sha256 = "0bkbzfgxvmby8lvzkqjp86anxvv3vjd9nksv2g4l7shsk1n7y27a"; }; @@ -17217,7 +17396,7 @@ in modules // { version = "0.9.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/${name}/${name}-${version}.tar.gz"; + url = "mirror://pypi/p/${name}/${name}-${version}.tar.gz"; sha256 = "1x3i9wmzw33fpkis203alygfnrkcmq9w1aydcm887jh6frfqm6cw"; }; @@ -17306,7 +17485,7 @@ in modules // { name = "pyparsing-2.0.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyparsing/${name}.tar.gz"; + url = "mirror://pypi/p/pyparsing/${name}.tar.gz"; sha256 = "1r742rjbagf2i166k2w0r192adfw7l9lnsqz7wh4mflf00zws1q0"; }; @@ -17324,7 +17503,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyparsing/${name}.tar.gz"; + url = "mirror://pypi/p/pyparsing/${name}.tar.gz"; sha256 = "646e14f90b3689b005c19ac9b6b390c9a39bf976481849993e277d7380e6e79f"; }; @@ -17386,7 +17565,7 @@ in modules // { doCheck = false; # No such file or directory errors on 32bit src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyptlib/pyptlib-${version}.tar.gz"; + url = "mirror://pypi/p/pyptlib/pyptlib-${version}.tar.gz"; sha256 = "01y6vbwncqb0hxlnin6whd9wrrm5my4qzjhk76fnix78v7ip515r"; }; meta = { @@ -17402,7 +17581,7 @@ in modules // { doCheck = false; # "PyQtGraph requires either PyQt4 or PySide; neither package could be imported." src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyqtgraph/${name}.tar.gz"; + url = "mirror://pypi/p/pyqtgraph/${name}.tar.gz"; sha256 = "188pcxf3sxxjf0aipjn820lx2rf9f42zzp0sibmcl90955a3ipf1"; }; @@ -17422,7 +17601,7 @@ in modules // { version = "0.5.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pystache/${name}.tar.gz"; + url = "mirror://pypi/p/pystache/${name}.tar.gz"; sha256 = "f7bbc265fb957b4d6c7c042b336563179444ab313fb93a719759111eabd3b85a"; }; @@ -17449,7 +17628,7 @@ in modules // { name = "PyStemmer-1.3.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/P/PyStemmer/${name}.tar.gz"; + url = "mirror://pypi/P/PyStemmer/${name}.tar.gz"; sha256 = "d1ac14eb64978c1697fcfba76e3ac7ebe24357c9428e775390f634648947cb91"; }; @@ -17470,7 +17649,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/P/Pyro/${name}.tar.gz"; + url = "mirror://pypi/P/Pyro/${name}.tar.gz"; sha256 = "1bed508453ef7a7556b51424a58101af2349b662baab7e7331c5cb85dbe7e578"; }; @@ -17487,7 +17666,7 @@ in modules // { name = "pyrsistent-0.11.12"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyrsistent/${name}.tar.gz"; + url = "mirror://pypi/p/pyrsistent/${name}.tar.gz"; sha256 = "0jgyhkkq36wn36rymn4jiyqh2vdslmradq4a2mjkxfbk2cz6wpi5"; }; @@ -17509,7 +17688,7 @@ in modules // { name = "PyRSS2Gen-1.0.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/P/PyRSS2Gen/${name}.tar.gz"; + url = "mirror://pypi/P/PyRSS2Gen/${name}.tar.gz"; sha256 = "4929d022713129401160fd47550d5158931e4ea6a7136b5d8dfe3b13ac16f2f0"; }; @@ -17526,7 +17705,7 @@ in modules // { name = "pysnmp-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pysnmp/${name}.tar.gz"; + url = "mirror://pypi/p/pysnmp/${name}.tar.gz"; sha256 = "0zq7yx8732ad9dxpxqgpqyixj7kfwbvf402q7l5njkv0kbcnavn4"; }; @@ -17546,7 +17725,7 @@ in modules // { version = "1.5.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/P/PySocks/PySocks-${version}.tar.gz"; + url = "mirror://pypi/P/PySocks/PySocks-${version}.tar.gz"; sha256 = "10wq5311qrnk8rvzsh6gwzxi7h51pgvzw3d7s1mb39fsvf0vyjdk"; }; @@ -17565,7 +17744,7 @@ in modules // { meta.maintainers = with maintainers; [ mornfall ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-fedora/${name}.tar.gz"; + url = "mirror://pypi/p/python-fedora/${name}.tar.gz"; sha256 = "15m8lvbb5q4rg508i4ah8my872qrq5xjwgcgca4d3kzjv2x6fhim"; }; propagatedBuildInputs = with self; [ kitchen requests bunch paver six munch urllib3 @@ -17583,7 +17762,7 @@ in modules // { version = "0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-simple-hipchat/python-simple-hipchat-${version}.zip"; + url = "mirror://pypi/p/python-simple-hipchat/python-simple-hipchat-${version}.zip"; sha256 = "404e5ff7187abb09c2227f22063d06baf0fd525725e9c9ad280176bed1c94a3f"; }; @@ -17594,7 +17773,7 @@ in modules // { name = "python-keyczar-0.71c"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-keyczar/${name}.tar.gz"; + url = "mirror://pypi/p/python-keyczar/${name}.tar.gz"; sha256 = "18mhiwqq6vp65ykmi8x3i5l3gvrvrrr8z2kv11z1rpixmyr7sw1p"; }; @@ -17614,7 +17793,7 @@ in modules // { version = "0.16.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyudev/${name}.tar.gz"; + url = "mirror://pypi/p/pyudev/${name}.tar.gz"; sha256 = "765d1c14bd9bd031f64e2612225621984cb2bbb8cbc0c03538bcc4c735ff1c95"; }; @@ -17639,7 +17818,7 @@ in modules // { name = "pynzb-0.1.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pynzb/${name}.tar.gz"; + url = "mirror://pypi/p/pynzb/${name}.tar.gz"; sha256 = "0735b3889a1174bbb65418ee503629d3f5e4a63f04b16f46ffba18253ec3ef17"; }; @@ -17655,7 +17834,7 @@ in modules // { name = "progressbar-2.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/progressbar/${name}.tar.gz"; + url = "mirror://pypi/p/progressbar/${name}.tar.gz"; sha256 = "dfee5201237ca0e942baa4d451fee8bf8a54065a337fabe7378b8585aeda56a3"; }; @@ -17675,7 +17854,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/python-ldap/python-${name}.tar.gz"; + url = "mirror://pypi/p/python-ldap/python-${name}.tar.gz"; sha256 = "0j5hzaar4d0vhnrlpmkczgwm7ci2wibr99a7zx04xddzrhxdpz82"; }; @@ -17688,7 +17867,7 @@ in modules // { name = "ldap3-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/ldap3/${name}.tar.gz"; + url = "mirror://pypi/l/ldap3/${name}.tar.gz"; sha256 = "0j4qqj9vq022hy7wfqn8s0j4vm2g6paabbzas1vbyspawvcfai98"; }; @@ -17725,7 +17904,7 @@ in modules // { version = "0.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/ptyprocess/${name}.tar.gz"; + url = "mirror://pypi/p/ptyprocess/${name}.tar.gz"; sha256= "dcb78fb2197b49ca1b7b2f37b047bc89c0da7a90f90bd5bc17c3ce388bb6ef59"; }; @@ -17803,7 +17982,7 @@ in modules // { name = "pyPdf-1.13"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyPdf/${name}.tar.gz"; + url = "mirror://pypi/p/pyPdf/${name}.tar.gz"; sha256 = "3aede4c3c9c6ad07c98f059f90db0b09ed383f7c791c46100f649e1cabda0e3b"; }; @@ -17824,7 +18003,7 @@ in modules // { version = "1.25.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/P/PyPDF2/${name}.tar.gz"; + url = "mirror://pypi/P/PyPDF2/${name}.tar.gz"; sha256 = "1sw225j9fgsvg1zm7lrij96fihfmq8pc1vg611dc55491zvj9ls3"; }; @@ -17845,7 +18024,7 @@ in modules // { version = "3.1.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/P/PyOpenGL/PyOpenGL-${version}.tar.gz"; + url = "mirror://pypi/P/PyOpenGL/PyOpenGL-${version}.tar.gz"; sha256 = "9b47c5c3a094fa518ca88aeed35ae75834d53e4285512c61879f67a48c94ddaf"; }; propagatedBuildInputs = [ pkgs.mesa pkgs.freeglut self.pillow ]; @@ -17880,7 +18059,7 @@ in modules // { version = "0.15.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-${version}.tar.gz"; + url = "mirror://pypi/p/pyOpenSSL/pyOpenSSL-${version}.tar.gz"; sha256 = "0wnnq15rhj7fhdcd8ycwiw6r6g3w9f9lcy6cigg8226vsrq618ph"; }; @@ -17896,7 +18075,7 @@ in modules // { version = "1.2.9"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyquery/${name}.zip"; + url = "mirror://pypi/p/pyquery/${name}.zip"; sha256 = "00p6f1dfma65192hc72dxd506491lsq3g5wgxqafi1xpg2w1xia6"; }; @@ -17910,7 +18089,7 @@ in modules // { name = "pyrax-1.8.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyrax/${name}.tar.gz"; + url = "mirror://pypi/p/pyrax/${name}.tar.gz"; sha256 = "0hvim60bhgfj91m7pp8jfmb49f087xqlgkqa505zw28r7yl0hcfp"; }; @@ -17931,7 +18110,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyreport/${name}.tar.gz"; + url = "mirror://pypi/p/pyreport/${name}.tar.gz"; sha256 = "1584607596b7b310bf0b6ce79f424bd44238a017fd870aede11cd6732dbe0d4d"; }; @@ -17950,7 +18129,7 @@ in modules // { version = "1.3.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyScss/${name}.tar.gz"; + url = "mirror://pypi/p/pyScss/${name}.tar.gz"; sha256 = "03lcp853kgr66aqrw2jd1q9jhs9h049w7zlwp7bfmly7xh832cnh"; }; @@ -17969,7 +18148,7 @@ in modules // { name = "pyserial-2.7"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyserial/${name}.tar.gz"; + url = "mirror://pypi/p/pyserial/${name}.tar.gz"; sha256 = "3542ec0838793e61d6224e27ff05e8ce4ba5a5c5cc4ec5c6a3e8d49247985477"; }; @@ -17986,7 +18165,7 @@ in modules // { name = "pymongo-3.0.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pymongo/${name}.tar.gz"; + url = "mirror://pypi/p/pymongo/${name}.tar.gz"; sha256 = "3c6b2317f8031bc1e200fd1ea35f00a96f4569e3f3f220a5e66ab6227d96ccaf"; }; @@ -18004,7 +18183,7 @@ in modules // { version = "2.9.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pymongo/${name}.tar.gz"; + url = "mirror://pypi/p/pymongo/${name}.tar.gz"; sha256 = "1nrr1fxyrlxd69bgxl7bvaj2j4z7v3zaciij5sbhxg0vqiz6ny50"; }; @@ -18023,7 +18202,7 @@ in modules // { name = "pyperclip-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyperclip/${name}.zip"; + url = "mirror://pypi/p/pyperclip/${name}.zip"; sha256 = "07q8krmi7phizzp192x3j7xbk1gzhc1kc3jp4mxrm32dn84sp1vh"; }; @@ -18058,7 +18237,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pysqlite/${name}.tar.gz"; + url = "mirror://pypi/p/pysqlite/${name}.tar.gz"; sha256 = "13djzgnbi71znjjyaw4nybg6smilgszcid646j5qav7mdchkb77y"; }; @@ -18160,7 +18339,7 @@ in modules // { disabled = ! (isPy26 || isPy27 ); src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-wifi/${name}.tar.bz2"; + url = "mirror://pypi/p/python-wifi/${name}.tar.bz2"; sha256 = "504639e5953eaec0e41758900fbe143d33d82ea86762b19b659a118c77d8403d"; }; @@ -18181,7 +18360,7 @@ in modules // { version = "2016.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pytz/${name}.tar.gz"; + url = "mirror://pypi/p/pytz/${name}.tar.gz"; sha256 = "1a3hjclyylc4m1v1dn04b38wm2vl649ijdswpg0d8m8n0lcxlj9l"; }; @@ -18197,7 +18376,7 @@ in modules // { name = "pyutil-2.0.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyutil/${name}.tar.gz"; + url = "mirror://pypi/p/pyutil/${name}.tar.gz"; sha256 = "1fsg9yz5mi2sb0h6c1vvcqchx56i89nbvdb5gfgv1ia3b2w5ra8c"; }; @@ -18333,7 +18512,7 @@ in modules // { disabled = !isPy27; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyaml/${name}.tar.gz"; + url = "mirror://pypi/p/pyaml/${name}.tar.gz"; sha256 = "8dfe1b295116115695752acc84d15ecf5c1c469975fbed7672bf41a6bc6d6d51"; }; @@ -18369,7 +18548,7 @@ in modules // { name = "rabbitpy-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/rabbitpy/${name}.tar.gz"; + url = "mirror://pypi/r/rabbitpy/${name}.tar.gz"; sha256 = "0pgijv7mgxc4sm7p9s716dhl600l8isisxzyg4hz7ng1sk09p1w3"; }; @@ -18388,7 +18567,7 @@ in modules // { name = "recaptcha-client-1.0.6"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/recaptcha-client/${name}.tar.gz"; + url = "mirror://pypi/r/recaptcha-client/${name}.tar.gz"; sha256 = "28c6853c1d13d365b7dc71a6b05e5ffb56471f70a850de318af50d3d7c0dea2f"; }; @@ -18445,7 +18624,7 @@ in modules // { name = "reportlab-3.2.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/reportlab/${name}.tar.gz"; + url = "mirror://pypi/r/reportlab/${name}.tar.gz"; sha256 = "14v212cq2w3p0j5xydfr8rav8c8qas1q845r0xj7fm6q5dk8grkj"; }; @@ -18476,7 +18655,7 @@ in modules // { disabled = !pythonOlder "3.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/requests/${name}.tar.gz"; + url = "mirror://pypi/r/requests/${name}.tar.gz"; sha256 = "156bf3ec27ba9ec7e0cf8fbe02808718099d218de403eb64a714d73ba1a29ab1"; }; @@ -18492,7 +18671,7 @@ in modules // { version = "2.9.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/requests/${name}.tar.gz"; + url = "mirror://pypi/r/requests/${name}.tar.gz"; sha256 = "0zsqrzlybf25xscgi7ja4s48y2abf9wvjkn47wh984qgs1fq2xy5"; }; @@ -18551,7 +18730,7 @@ in modules // { retry_decorator = buildPythonPackage rec { name = "retry_decorator-1.0.0"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/r/retry_decorator/retry_decorator-1.0.0.tar.gz; + url = mirror://pypi/r/retry_decorator/retry_decorator-1.0.0.tar.gz; sha256 = "086zahyb6yn7ggpc58909c5r5h3jz321i1694l1c28bbpaxnlk88"; }; meta = { @@ -18597,7 +18776,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/q/qserve/${name}.zip"; + url = "mirror://pypi/q/qserve/${name}.zip"; sha256 = "0b04b2d4d11b464ff1efd42a9ea9f8136187d59f4076f57c9ba95361d41cd7ed"; }; @@ -18615,7 +18794,7 @@ in modules // { name = "qtconsole-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/q/qtconsole/${name}.tar.gz"; + url = "mirror://pypi/q/qtconsole/${name}.tar.gz"; sha256 = "741906acae9e02c0df9138ac88b621ef22e438565aa96d783a9ef88faec3de46"; }; @@ -18637,7 +18816,7 @@ in modules // { name = "quantities-0.10.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/q/quantities/quantities-0.10.1.tar.gz"; + url = "mirror://pypi/q/quantities/quantities-0.10.1.tar.gz"; sha256 = "2d27caf31a5e0c37130ac0c14bfa8f9412a5ff1fbf3378a1d6085594776c4315"; }; @@ -18684,7 +18863,7 @@ in modules // { version = "0.4.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/recommonmark/${name}.tar.gz"; + url = "mirror://pypi/r/recommonmark/${name}.tar.gz"; sha256 = "6e29c723abcf5533842376d87c4589e62923ecb6002a8e059eb608345ddaff9d"; }; @@ -18704,7 +18883,7 @@ in modules // { name = "redis-2.10.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/redis/${name}.tar.gz"; + url = "mirror://pypi/r/redis/${name}.tar.gz"; sha256 = "0csmrkxb29x7xs9b51zplwkkq2hwnbh9jns1g85dykn5rxmaxysx"; }; @@ -18758,7 +18937,7 @@ in modules // { version = "2.5.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/restview/${name}.tar.gz"; + url = "mirror://pypi/r/restview/${name}.tar.gz"; sha256 = "18diqmh6vwz6imcmvwa7s2v4562y73n072d5d7az2r2ks0g2bzdb"; }; @@ -18784,7 +18963,7 @@ in modules // { version = "0.6.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/readme/readme-${version}.tar.gz"; + url = "mirror://pypi/r/readme/readme-${version}.tar.gz"; sha256 = "08j2w67nilczn1i5r7h22vag9673i6vnfhyq2rv27r1bdmi5a30m"; }; @@ -18811,7 +18990,7 @@ in modules // { version = "2.7.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/W/Whoosh/Whoosh-${version}.tar.gz"; + url = "mirror://pypi/W/Whoosh/Whoosh-${version}.tar.gz"; sha256 = "1xx8rqk1v2xs7mxvy9q4sgz2qmgvhf6ygbqjng3pl83ka4f0xz6d"; }; @@ -18832,7 +19011,7 @@ in modules // { version = "3.3.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pysolr/pysolr-${version}.tar.gz"; + url = "mirror://pypi/p/pysolr/pysolr-${version}.tar.gz"; sha256 = "1wapg9n7myn7c82r3nzs2gisfzx52nip8w2mrfy0yih1zn02mnd6"; }; @@ -18854,7 +19033,7 @@ in modules // { version = "2.4.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django-haystack/django-haystack-${version}.tar.gz"; + url = "mirror://pypi/d/django-haystack/django-haystack-${version}.tar.gz"; sha256 = "04cva8qg79xig4zqhb4dwkpm7734dvhzqclzvrdz70fh59ki5b4f"; }; @@ -18880,7 +19059,7 @@ in modules // { version = "0.3.0.dev1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/G/GeoAlchemy2/${name}.tar.gz"; + url = "mirror://pypi/G/GeoAlchemy2/${name}.tar.gz"; sha256 = "1j95p860ikpcpcirs5791yjpy8rf18zsz7vvsdy6v3x32hkim0k6"; }; @@ -18899,7 +19078,7 @@ in modules // { disabled = !isPy27; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/geopy/geopy-${version}.tar.gz"; + url = "mirror://pypi/g/geopy/geopy-${version}.tar.gz"; sha256 = "04j1lxcsfyv03h0n0q7p2ig7a4n13x4x20fzxn8bkazpx6lyal22"; }; @@ -18916,7 +19095,7 @@ in modules // { version = "0.1.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/django-multiselectfield/django-multiselectfield-${version}.tar.gz"; + url = "mirror://pypi/d/django-multiselectfield/django-multiselectfield-${version}.tar.gz"; sha256 = "0v7wf82f8688srdsym9ajv1j54bxfxwvydypc03f8xyl4c1raziv"; }; @@ -18959,7 +19138,7 @@ in modules // { name = "rdflib-4.1.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/rdflib/${name}.tar.gz"; + url = "mirror://pypi/r/rdflib/${name}.tar.gz"; sha256 = "0kvaf332cqbi47rqzlpdx4mbkvw12mkrzkj8n9l19wk713d4py9w"; }; @@ -18979,7 +19158,7 @@ in modules // { version = "0.5.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/isodate/${name}.tar.gz"; + url = "mirror://pypi/i/isodate/${name}.tar.gz"; sha256 = "42105c41d037246dc1987e36d96f3752ffd5c0c24834dd12e4fdbe1e79544e31"; }; @@ -18993,7 +19172,7 @@ in modules // { name = "robomachine-0.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/R/RoboMachine/RoboMachine-0.6.tar.gz"; + url = "mirror://pypi/R/RoboMachine/RoboMachine-0.6.tar.gz"; sha256 = "6c9a9bae7bffa272b2a09b05df06c29a3a776542c70cae8041a8975a061d2e54"; }; @@ -19018,7 +19197,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/robotframework/${name}.tar.gz"; + url = "mirror://pypi/r/robotframework/${name}.tar.gz"; sha256 = "0mfd0s989j3jrpl8q0lb4wsjy1x280chfr9r74m2dyi9c7rxzc58"; }; @@ -19040,7 +19219,7 @@ in modules // { name = "robotframework-selenium2library-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/robotframework-selenium2library/${name}.tar.gz"; + url = "mirror://pypi/r/robotframework-selenium2library/${name}.tar.gz"; sha256 = "1asdwrpb4s7q08bx641yrh3yicgba14n3hxmsqs58mqf86ignwly"; }; @@ -19062,7 +19241,7 @@ in modules // { name = "robotframework-tools-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/robotframework-tools/${name}.tar.gz"; + url = "mirror://pypi/r/robotframework-tools/${name}.tar.gz"; sha256 = "04gkn1zpf3rsvbqdxrrjqqi8sa0md9gqwh6n5w2m03fdwjg4lc7q"; }; @@ -19082,7 +19261,7 @@ in modules // { name = "robotsuite-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/robotsuite/${name}.zip"; + url = "mirror://pypi/r/robotsuite/${name}.zip"; sha256 = "0sw09vrvwv3gzqb6jvhbrz09l6nzzj3i9av34qjddqfwq7cr1bla"; }; @@ -19139,7 +19318,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/rope/${name}.tar.gz"; + url = "mirror://pypi/r/rope/${name}.tar.gz"; sha256 = "0rdlvp8h74qs49wz1hx6qy8mgp2ddwlfs7z13h9139ynq04a3z7z"; }; @@ -19156,7 +19335,7 @@ in modules // { name = "ropemacs-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/ropemacs/${name}.tar.gz"; + url = "mirror://pypi/r/ropemacs/${name}.tar.gz"; sha256 = "1x5qf1drcdz9jfiiakc60kzqkb3ahsg9j902c5byf3gjfacdrmqj"; }; @@ -19175,7 +19354,7 @@ in modules // { name = "ropemode-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/ropemode/${name}.tar.gz"; + url = "mirror://pypi/r/ropemode/${name}.tar.gz"; sha256 = "0jw6h1wvk6wk0wknqdf7s9pw76m8472jv546lqdd88jbl2scgcjl"; }; @@ -19195,7 +19374,7 @@ in modules // { name = "routes-1.12.3"; src = pkgs.fetchurl { - url = http://pypi.python.org/packages/source/R/Routes/Routes-1.12.3.tar.gz; + url = mirror://pypi/R/Routes/Routes-1.12.3.tar.gz; sha256 = "eacc0dfb7c883374e698cebaa01a740d8c78d364b6e7f3df0312de042f77aa36"; }; @@ -19228,7 +19407,7 @@ in modules // { name = "rpy2-2.5.6"; disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/rpy2/${name}.tar.gz"; + url = "mirror://pypi/r/rpy2/${name}.tar.gz"; sha256 = "d0d584c435b5ed376925a95a4525dbe87de7fa9260117e9f208029e0c919ad06"; }; buildInputs = with pkgs; [ readline R pcre lzma bzip2 zlib icu ]; @@ -19246,7 +19425,7 @@ in modules // { version = "3.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/rpyc/${name}.tar.gz"; + url = "mirror://pypi/r/rpyc/${name}.tar.gz"; sha256 = "43fa845314f0bf442f5f5fab15bb1d1b5fe2011a8fc603f92d8022575cef8b4b"; }; @@ -19264,7 +19443,7 @@ in modules // { version = "3.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/rsa/${name}.tar.gz"; + url = "mirror://pypi/r/rsa/${name}.tar.gz"; sha256 = "03f3d9bebad06681771016b8752a40b12f615ff32363c7aa19b3798e73ccd615"; }; @@ -19287,7 +19466,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/S/SquareMap/SquareMap-1.0.4.tar.gz"; + url = "mirror://pypi/S/SquareMap/SquareMap-1.0.4.tar.gz"; sha256 = "feab6cb3b222993df68440e34825d8a16de2c74fdb290ae3974c86b1d5f3eef8"; }; @@ -19303,7 +19482,7 @@ in modules // { version = "1.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/ruamel.base/${name}.tar.gz"; + url = "mirror://pypi/r/ruamel.base/${name}.tar.gz"; sha256 = "1wswxrn4givsm917mfl39rafgadimf1sldpbjdjws00g1wx36hf0"; }; @@ -19320,7 +19499,7 @@ in modules // { disabled = isPy3k || isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/ruamel.ordereddict/${name}.tar.gz"; + url = "mirror://pypi/r/ruamel.ordereddict/${name}.tar.gz"; sha256 = "1xmkl8v9l9inm2pyxgc1fm5005yxm7fkd5gv74q7lj1iy5qc8n3h"; }; @@ -19336,7 +19515,7 @@ in modules // { version = "0.10.13"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/ruamel.yaml/${name}.tar.gz"; + url = "mirror://pypi/r/ruamel.yaml/${name}.tar.gz"; sha256 = "0r9mn5lm9dcxpy0wpn18cp7i5hkvjvknv3dxg8d9ca6km39m4asn"; }; @@ -19354,7 +19533,7 @@ in modules // { src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/R/RunSnakeRun/RunSnakeRun-2.0.4.tar.gz"; + url = "mirror://pypi/R/RunSnakeRun/RunSnakeRun-2.0.4.tar.gz"; sha256 = "61d03a13f1dcb3c1829f5a146da1fe0cc0e27947558a51e848b6d469902815ef"; }; @@ -19388,7 +19567,7 @@ in modules // { name = "s3transfer-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/s3transfer/${name}.tar.gz"; + url = "mirror://pypi/s/s3transfer/${name}.tar.gz"; sha256 = "0ma31zvv7gy240xgd1zw853lpzkdci6mapzpg3x4vycann6yvf9b"; }; @@ -19420,7 +19599,7 @@ in modules // { name = "seqdiag-0.9.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/seqdiag/${name}.tar.gz"; + url = "mirror://pypi/s/seqdiag/${name}.tar.gz"; sha256 = "1qa7d0m1wahvmrj95rxkb6128cbwd4w3gy8gbzncls66h46bifiz"; }; @@ -19447,7 +19626,7 @@ in modules // { version = "2.0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pysendfile/pysendfile-${version}.tar.gz"; + url = "mirror://pypi/p/pysendfile/pysendfile-${version}.tar.gz"; sha256 = "05qf0m32isflln1zjgxlpw0wf469lj86vdwwqyizp1h94x5l22ji"; }; @@ -19481,7 +19660,7 @@ in modules // { name = "xattr-0.7.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/x/xattr/${name}.tar.gz"; + url = "mirror://pypi/x/xattr/${name}.tar.gz"; sha256 = "0nbqfghgy26jyp5q7wl3rj78wr8s39m5042df2jlldg3fx6j0417"; }; @@ -19525,16 +19704,16 @@ in modules // { scipy_0_16 = self.buildScipyPackage rec { version = "0.16.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/scipy/scipy-${version}.tar.gz"; + url = "mirror://pypi/s/scipy/scipy-${version}.tar.gz"; sha256 = "ecd1efbb1c038accb0516151d1e6679809c6010288765eb5da6051550bf52260"; }; - numpy = self.numpy_1_10; + numpy = self.numpy; }; scipy_0_17 = self.buildScipyPackage rec { version = "0.17.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/scipy/scipy-${version}.tar.gz"; + url = "mirror://pypi/s/scipy/scipy-${version}.tar.gz"; sha256 = "f600b755fb69437d0f70361f9e560ab4d304b1b66987ed5a28bdd9dd7793e089"; }; numpy = self.numpy; @@ -19545,7 +19724,7 @@ in modules // { version = "0.11.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/scikit-image/${name}.tar.gz"; + url = "mirror://pypi/s/scikit-image/${name}.tar.gz"; sha256 = "768e568f3299966c294b7eb8cd114fc648f7bfaef422ee9cc750dd8d9d09e44b"; }; @@ -19567,7 +19746,7 @@ in modules // { disabled = stdenv.isi686; # https://github.com/scikit-learn/scikit-learn/issues/5534 src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/scikit-learn/${name}.tar.gz"; + url = "mirror://pypi/s/scikit-learn/${name}.tar.gz"; sha256 = "9f4cf58e57d81783289fc503caaed1f210bab49b7a6f680bf3c04b1e0a96e5f0"; }; @@ -19593,7 +19772,7 @@ in modules // { name = "scripttest-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/scripttest/scripttest-${version}.tar.gz"; + url = "mirror://pypi/s/scripttest/scripttest-${version}.tar.gz"; sha256 = "951cfc25219b0cd003493a565f2e621fd791beaae9f9a3bdd7024d8626419c38"; }; @@ -19611,7 +19790,7 @@ in modules // { seaborn = buildPythonPackage rec { name = "seaborn-0.6.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/seaborn/${name}.tar.gz"; + url = "mirror://pypi/s/seaborn/${name}.tar.gz"; sha256 = "e078399b56ed0d53a4aa8bd4d6bd4a9a9deebc0b4acad259d0ef81830affdb68"; }; @@ -19636,7 +19815,7 @@ in modules // { selenium = buildPythonPackage rec { name = "selenium-2.44.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/selenium/${name}.tar.gz"; + url = "mirror://pypi/s/selenium/${name}.tar.gz"; sha256 = "0l70pqwg88imbylcd831vg8nj8ipy4zr331f6qjccss7vn56i2h5"; }; @@ -19669,7 +19848,7 @@ in modules // { version = "1.10.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/setuptools_scm/${name}.tar.bz2"; + url = "mirror://pypi/s/setuptools_scm/${name}.tar.bz2"; sha256 = "1cdea91bbe1ec4d52b3e9c451ab32ae6e1f3aa3fd91e90580490a9eb75bea286"; }; @@ -19688,7 +19867,7 @@ in modules // { version = "1.2.11"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/setuptools_darcs/${name}.tar.gz"; + url = "mirror://pypi/s/setuptools_darcs/${name}.tar.gz"; sha256 = "1wsh0g1fn10msqk87l5jrvzs0yj5mp6q9ld3gghz6zrhl9kqzdn1"; }; @@ -19713,7 +19892,7 @@ in modules // { name = "setuptools-trial-0.5.12"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/setuptools_trial/setuptools_trial-0.5.12.tar.gz"; + url = "mirror://pypi/s/setuptools_trial/setuptools_trial-0.5.12.tar.gz"; sha256 = "9cc4ca5fd432944eb95e193f28b5a602e8b07201fea4d7077c0976a40f073432"; }; @@ -19733,7 +19912,7 @@ in modules // { name = "simplegeneric-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/simplegeneric/${name}.zip"; + url = "mirror://pypi/s/simplegeneric/${name}.zip"; sha256 = "dc972e06094b9af5b855b3df4a646395e43d1c9d0d39ed345b7393560d0b9173"; }; @@ -19752,7 +19931,7 @@ in modules // { disabled = isPy26; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/shortuuid/${name}.tar.gz"; + url = "mirror://pypi/s/shortuuid/${name}.tar.gz"; sha256 = "4606dbb19124d98109c00e2cafae2df8117aec02115623e18fb2abe3f766d293"; }; @@ -19771,7 +19950,7 @@ in modules // { name = "shouldbe-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/shouldbe/${name}.tar.gz"; + url = "mirror://pypi/s/shouldbe/${name}.tar.gz"; sha256 = "07pchxpv1xvjbck0xy44k3a1jrvklg0wbyccn14w0i7d135d4174"; }; @@ -19792,7 +19971,7 @@ in modules // { name = "simplejson-3.8.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/simplejson/${name}.tar.gz"; + url = "mirror://pypi/s/simplejson/${name}.tar.gz"; sha256 = "14r4l4rcsyf87p2j4ycsbb017n4vzxfmv285rq2gny4w47rwi2j2"; }; @@ -19821,7 +20000,7 @@ in modules // { buildInputs = with self; [ pep8 pytest tox ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/simpleldap/simpleldap-${version}.tar.gz"; + url = "mirror://pypi/s/simpleldap/simpleldap-${version}.tar.gz"; sha256 = "a5916680a7fe1b2c5d74dc76351be2941d03b7b94a50d8520280e3f588a84e61"; }; @@ -19844,7 +20023,7 @@ in modules // { disabled = isPy3k || isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/S/SimpleParse/SimpleParse-${version}.tar.gz"; + url = "mirror://pypi/S/SimpleParse/SimpleParse-${version}.tar.gz"; sha256 = "1n8msk71lpl3kv086xr2sv68ppgz6228575xfnbszc6p1mwr64rg"; }; @@ -19862,7 +20041,7 @@ in modules // { name = "sigal-1.0.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/sigal/${name}.tar.gz"; + url = "mirror://pypi/s/sigal/${name}.tar.gz"; sha256 = "198g2r8bii6a0p44mlk1wg07jjv95xpfvnqhhxxziqpizc776b34"; }; @@ -19886,7 +20065,7 @@ in modules // { version = "0.1a1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/slowaes/${name}.tar.gz"; + url = "mirror://pypi/s/slowaes/${name}.tar.gz"; sha256 = "83658ae54cc116b96f7fdb12fdd0efac3a4e8c7c7064e3fac3f4a881aa54bf09"; }; @@ -19903,7 +20082,7 @@ in modules // { name = "snowballstemmer-1.2.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/snowballstemmer/${name}.tar.gz"; + url = "mirror://pypi/s/snowballstemmer/${name}.tar.gz"; sha256 = "919f26a68b2c17a7634da993d91339e288964f93c274f1343e3bbbe2096e1128"; }; @@ -19925,7 +20104,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/sqlite3dbm/${name}.tar.gz"; + url = "mirror://pypi/s/sqlite3dbm/${name}.tar.gz"; sha256 = "4721607e0b817b89efdba7e79cab881a03164b94777f4cf796ad5dd59a7612c5"; }; @@ -19942,7 +20121,7 @@ in modules // { name = "pgpdump-1.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pgpdump/pgpdump-1.5.tar.gz"; + url = "mirror://pypi/p/pgpdump/pgpdump-1.5.tar.gz"; sha256 = "1c4700857bf7ba735b08cfe4101aa3a4f5fd839657af249c17b2697c20829668"; }; @@ -19974,7 +20153,7 @@ in modules // { version = "1.5.13"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/S/Shapely/${name}.tar.gz"; + url = "mirror://pypi/S/Shapely/${name}.tar.gz"; sha256 = "68f8efb43112e8ef1f7e56e2c9eef64e0cbc1c19528c627696fb07345075a348"; }; @@ -20005,7 +20184,7 @@ in modules // { version = "1.0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sockjs-tornado/${name}.tar.gz"; + url = "mirror://pypi/s/sockjs-tornado/${name}.tar.gz"; sha256 = "15lcy40h2cm0l8aknbrk48p2sni5wzybsqjx1hxwpk9lfa1xryyv"; }; @@ -20025,7 +20204,7 @@ in modules // { name = "sopel-6.3.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sopel/${name}.tar.gz"; + url = "mirror://pypi/s/sopel/${name}.tar.gz"; sha256 = "1swvw7xw8n5anb8ah8jilk4vk1y30y62fkibfd9vm9fbk45d1q48"; }; @@ -20035,7 +20214,7 @@ in modules // { disabled = isPyPy || isPy26 || isPy27; checkPhase = '' - ${python.interpreter} test/*.py + ${python.interpreter} test/*.py #*/ ''; meta = { description = "Simple and extensible IRC bot"; @@ -20050,7 +20229,7 @@ in modules // { version = "0.3.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sounddevice/${name}.tar.gz"; + url = "mirror://pypi/s/sounddevice/${name}.tar.gz"; sha256 = "8e5a6816b369c7aea77e06092b2fee99c8b6efbeef4851f53ea3cb208a7607f5"; }; @@ -20075,7 +20254,7 @@ in modules // { name = "stevedore-1.7.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/stevedore/${name}.tar.gz"; + url = "mirror://pypi/s/stevedore/${name}.tar.gz"; sha256 = "149pjc0c3z6khjisn4yil3f94qjnzwafz093wc8rrzbw828qdkv8"; }; @@ -20091,6 +20270,36 @@ in modules // { }; }; + Theano = buildPythonPackage rec { + name = "Theano-0.8.1"; + + disabled = isPyPy || pythonOlder "2.6" || (isPy3k && pythonOlder "3.3"); + + src = pkgs.fetchurl { + url = "mirror://pypi/T/Theano/${name}.tar.gz"; + sha256 = "17dikk94r8bzkxg976srqlhj5c7phs9gl837iabyfdpixkbrl79g"; + }; + + #preCheck = '' + # mkdir -p check-phase + # export HOME=$(pwd)/check-phase + #''; + doCheck = false; + # takes far too long, also throws "TypeError: sort() missing 1 required positional argument: 'a'" + # when run from the installer, and testing with Python 3.5 hits github.com/Theano/Theano/issues/4276, + # the fix for which hasn't been merged yet. + + # keep Nose around since running the tests by hand is possible from Python or bash + propagatedBuildInputs = [ stdenv ] ++ (with self; [ nose numpy numpy.blas pydot_ng scipy six ]); + + meta = { + homepage = http://deeplearning.net/software/theano/; + description = "A Python library for large-scale array computation"; + license = stdenv.lib.licenses.bsd3; + maintainers = [ maintainers.bcdarwin ]; + }; + }; + tidylib = buildPythonPackage rec { version = "0.2.4"; name = "pytidylib-${version}"; @@ -20098,7 +20307,7 @@ in modules // { propagatedBuildInputs = [ pkgs.html-tidy ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pytidylib/pytidylib-${version}.tar.gz"; + url = "mirror://pypi/p/pytidylib/pytidylib-${version}.tar.gz"; sha256 = "0af07bd8ebd256af70ca925ada9337faf16d85b3072624f975136a5134150ab6"; }; @@ -20128,7 +20337,7 @@ in modules // { version = "1.50.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/T/TileStache/TileStache-${version}.tar.gz"; + url = "mirror://pypi/T/TileStache/TileStache-${version}.tar.gz"; sha256 = "1z1j35pz77lhhjdn69sq5rmz62b5m444507d8zjnp0in5xqaj6rj"; }; @@ -20148,7 +20357,7 @@ in modules // { name = "timelib-0.2.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/timelib/${name}.zip"; + url = "mirror://pypi/t/timelib/${name}.zip"; sha256 = "49142233bdb5971d64a41e05a1f80a408a02be0dc7d9f8c99e7bdd0613ba81cb"; }; @@ -20166,7 +20375,7 @@ in modules // { version = "2.0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pid/${name}.tar.gz"; + url = "mirror://pypi/p/pid/${name}.tar.gz"; sha256 = "0cylj8p25nwkdfgy4pzai21wyzmrxdqlwwbzqag9gb5qcjfdwk05"; }; @@ -20187,7 +20396,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pydns/${name}.tar.gz"; + url = "mirror://pypi/p/pydns/${name}.tar.gz"; sha256 = "0qnv7i9824nb5h9psj0rwzjyprwgfiwh5s5raa9avbqazy5hv5pi"; }; @@ -20200,7 +20409,7 @@ in modules // { version = "2.1.1"; src = pkgs.fetchurl { - url = " https://pypi.python.org/packages/source/p/python-daemon/${name}.tar.gz"; + url = " mirror://pypi/p/python-daemon/${name}.tar.gz"; sha256 = "17v80qb98p1gv4j9mq6wb55cv7hc4j1hzw5y2f4s5hrpxs3w3a2q"; }; @@ -20222,7 +20431,7 @@ in modules // { disabled = isPy34 || isPy35 || isPyPy; # some tests fail src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sympy/${name}.tar.gz"; + url = "mirror://pypi/s/sympy/${name}.tar.gz"; sha256 = "1fc272b51091aabe7d07f1bf9f0a47f3e28657fb2bec52bf3ef0e8f159f5f564"; }; @@ -20245,7 +20454,7 @@ in modules // { name = "pilkit-1.1.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pilkit/${name}.tar.gz"; + url = "mirror://pypi/p/pilkit/${name}.tar.gz"; sha256 = "e00585f5466654ea2cdbf7decef9862cb00e16fd363017fa7ef6623a16b0d2c7"; }; @@ -20267,7 +20476,7 @@ in modules // { name = "clint-0.5.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/c/clint/${name}.tar.gz"; + url = "mirror://pypi/c/clint/${name}.tar.gz"; sha256 = "1an5lkkqk1zha47198p42ji3m94xmzx1a03dn7866m87n4r4q8h5"; }; @@ -20290,7 +20499,7 @@ in modules // { name = "argh-0.26.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/a/argh/${name}.tar.gz"; + url = "mirror://pypi/a/argh/${name}.tar.gz"; sha256 = "1nqham81ihffc9xmw85dz3rg3v90rw7h0dp3dy0bh3qkp4n499q6"; }; @@ -20310,7 +20519,7 @@ in modules // { name = "nose-progressive-1.5.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/n/nose-progressive/${name}.tar.gz"; + url = "mirror://pypi/n/nose-progressive/${name}.tar.gz"; sha256 = "0mfbjv3dcg23q0a130670g7xpfyvgza4wxkj991xxh8w9hs43ga4"; }; @@ -20329,7 +20538,7 @@ in modules // { name = "blessings-1.6"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/b/blessings/${name}.tar.gz"; + url = "mirror://pypi/b/blessings/${name}.tar.gz"; sha256 = "01rhgn2c3xjf9h1lxij9m05iwf2ba6d0vd7nic26c2gic4q73igd"; }; @@ -20351,7 +20560,7 @@ in modules // { propagatedBuildInputs = with self; [ quantities numpy ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/semantic/semantic-1.0.3.tar.gz"; + url = "mirror://pypi/s/semantic/semantic-1.0.3.tar.gz"; sha256 = "bbc47dad03dddb1ba5895612fdfa1e43cfb3c497534976cebacd4f3684b505b4"; }; @@ -20378,7 +20587,7 @@ in modules // { buildInputs = [ self.pbr ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sandboxlib/sandboxlib-0.3.1.tar.gz"; + url = "mirror://pypi/s/sandboxlib/sandboxlib-0.3.1.tar.gz"; sha256 = "0csj8hbpylqdkxcpqkcfs73dfvdqkyj23axi8m9drqdi4dhxb41h"; }; @@ -20392,7 +20601,7 @@ in modules // { semantic-version = buildPythonPackage rec { name = "semantic_version-2.4.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/semantic_version/${name}.tar.gz"; + url = "mirror://pypi/s/semantic_version/${name}.tar.gz"; sha256 = "7e8b7fa74a3bc9b6e90b15b83b9bc2377c78eaeae3447516425f475d5d6932d2"; }; @@ -20406,7 +20615,7 @@ in modules // { sexpdata = buildPythonPackage rec { name = "sexpdata-0.0.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/sexpdata/${name}.tar.gz"; + url = "mirror://pypi/s/sexpdata/${name}.tar.gz"; sha256 = "eb696bc66b35def5fb356de09481447dff4e9a3ed926823134e1d0f35eade428"; }; @@ -20423,7 +20632,7 @@ in modules // { name = "sh-1.11"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/sh/${name}.tar.gz"; + url = "mirror://pypi/s/sh/${name}.tar.gz"; sha256 = "590fb9b84abf8b1f560df92d73d87965f1e85c6b8330f8a5f6b336b36f0559a4"; }; @@ -20455,7 +20664,7 @@ in modules // { name = "six-1.10.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/six/${name}.tar.gz"; + url = "mirror://pypi/s/six/${name}.tar.gz"; sha256 = "0snmb8xffb3vsma0z67i0h0w2g2dy0p3gsgh9gi4i0kgc5l8spqh"; }; @@ -20508,7 +20717,7 @@ in modules // { name = "smartdc-0.1.12"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/s/smartdc/smartdc-0.1.12.tar.gz; + url = mirror://pypi/s/smartdc/smartdc-0.1.12.tar.gz; sha256 = "36206f4fddecae080c66faf756712537e650936b879abb23a8c428731d2415fe"; }; @@ -20524,7 +20733,7 @@ in modules // { socksipy-branch = buildPythonPackage rec { name = "SocksiPy-branch-1.01"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/S/SocksiPy-branch/SocksiPy-branch-1.01.tar.gz; + url = mirror://pypi/S/SocksiPy-branch/SocksiPy-branch-1.01.tar.gz; sha256 = "01l41v4g7fy9fzvinmjxy6zcbhgqaif8dhdqm4w90fwcw9h51a8p"; }; meta = { @@ -20538,7 +20747,7 @@ in modules // { name = "sorl-thumbnail-11.12"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sorl-thumbnail/${name}.tar.gz"; + url = "mirror://pypi/s/sorl-thumbnail/${name}.tar.gz"; sha256 = "050b9kzbx7jvs3qwfxxshhis090hk128maasy8pi5wss6nx5kyw4"; }; @@ -20558,7 +20767,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/supervisor/${name}.tar.gz"; + url = "mirror://pypi/s/supervisor/${name}.tar.gz"; sha256 = "e3c3b35804c24b6325b5ba462553ebee80d5f4d1766274737b5c532cd4a11d59"; }; @@ -20579,7 +20788,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/subprocess32/${name}.tar.gz"; + url = "mirror://pypi/s/subprocess32/${name}.tar.gz"; sha256 = "ddf4d46ed2be2c7e7372dfd00c464cabb6b3e29ca4113d85e26f82b3d2c220f6"; }; @@ -20610,7 +20819,7 @@ in modules // { # https://github.com/sphinx-doc/sphinx/issues/2394 src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/S/Sphinx/${name}.tar.gz"; + url = "mirror://pypi/S/Sphinx/${name}.tar.gz"; sha256 = "12pzlfkjjlwgvsj56k0y809jpx5mgcs9548k1l4kdbr028ifjfqb"; }; @@ -20636,7 +20845,7 @@ in modules // { sphinx_1_2 = self.sphinx.override rec { name = "sphinx-1.2.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sphinx/sphinx-1.2.3.tar.gz"; + url = "mirror://pypi/s/sphinx/sphinx-1.2.3.tar.gz"; sha256 = "94933b64e2fe0807da0612c574a021c0dac28c7bd3c4a23723ae5a39ea8f3d04"; }; patches = []; @@ -20649,7 +20858,7 @@ in modules // { name = "sphinx_rtd_theme-0.1.9"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/sphinx_rtd_theme/${name}.tar.gz"; + url = "mirror://pypi/s/sphinx_rtd_theme/${name}.tar.gz"; sha256 = "18d0r63w7jpdrk4q5qy26n08vdlmnj9sar93akwjphyambw4cf17"; }; @@ -20675,7 +20884,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sphinxcontrib-httpdomain/${name}.tar.gz"; + url = "mirror://pypi/s/sphinxcontrib-httpdomain/${name}.tar.gz"; sha256 = "ba8fbe82eddc96cfa9d7b975b0422801a14ace9d7e051b8b2c725b92ea6137b5"; }; @@ -20695,7 +20904,7 @@ in modules // { name = "sphinxcontrib-plantuml-0.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sphinxcontrib-plantuml/${name}.tar.gz"; + url = "mirror://pypi/s/sphinxcontrib-plantuml/${name}.tar.gz"; sha256 = "011yprqf41dcm1824zgk2w8vi9115286pmli6apwhlrsxc6b6cwv"; }; @@ -20716,7 +20925,7 @@ in modules // { name = "Sphinx-PyPI-upload-0.2.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/S/Sphinx-PyPI-upload/${name}.tar.gz"; + url = "mirror://pypi/S/Sphinx-PyPI-upload/${name}.tar.gz"; sha256 = "5f919a47ce7a7e6028dba809de81ae1297ac192347cf6fc54efca919d4865159"; }; @@ -20739,7 +20948,7 @@ in modules // { doCheck = !isPyPy; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; + url = "mirror://pypi/S/SQLAlchemy/${name}.tar.gz"; sha256 = "0rhxgr85xdhjn467qfs0dkyj8x46zxcv6ad3dfx3w14xbkb3kakp"; }; @@ -20773,7 +20982,7 @@ in modules // { doCheck = !isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; + url = "mirror://pypi/S/SQLAlchemy/${name}.tar.gz"; sha256 = "9edb47d137db42d57fd26673d6c841e189b1aeb9b566cca908962fcc8448c0bc"; }; @@ -20795,12 +21004,14 @@ in modules // { }; }; - sqlalchemy = buildPythonPackage rec { + sqlalchemy = self.sqlalchemy_1_0; + + sqlalchemy_1_0 = buildPythonPackage rec { name = "SQLAlchemy-${version}"; version = "1.0.12"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; + url = "mirror://pypi/S/SQLAlchemy/${name}.tar.gz"; sha256 = "1l8qclhd0s90w3pvwhi5mjxdwr5j7gw7cjka2fx6f2vqmq7f4yb6"; }; @@ -20859,7 +21070,7 @@ in modules // { name = "sqlalchemy-migrate-0.10.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sqlalchemy-migrate/${name}.tar.gz"; + url = "mirror://pypi/s/sqlalchemy-migrate/${name}.tar.gz"; sha256 = "00z0lzjs4ksr9yr31zs26csyacjvavhpz6r74xaw1r89kk75qg7q"; }; @@ -20895,7 +21106,7 @@ in modules // { doCheck = !isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sqlparse/${name}.tar.gz"; + url = "mirror://pypi/s/sqlparse/${name}.tar.gz"; sha256 = "108gy82x7davjrn3jqn7yv4r5v4jrzp892ysfx8l00abr8v6r337"; }; @@ -20915,7 +21126,7 @@ in modules // { version = "0.6.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/statsmodels/${name}.tar.gz"; + url = "mirror://pypi/s/statsmodels/${name}.tar.gz"; sha256 = "be4e44374aec9e848b73e5a230dee190ac0c4519e1d40f69a5813190b13ec676"; }; @@ -20940,7 +21151,7 @@ in modules // { disabled = isPy3k; # next release will be py3k compatible src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-statsd/${name}.tar.gz"; + url = "mirror://pypi/p/python-statsd/${name}.tar.gz"; sha256 = "3d2fc153e0d894aa9983531ef47d20d75bd4ee9fd0e46a9d82f452dde58a0a71"; }; @@ -20959,7 +21170,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/stompclient/${name}.tar.gz"; + url = "mirror://pypi/s/stompclient/${name}.tar.gz"; sha256 = "95a4e98dd0bba348714439ea11a25ee8a74acb8953f95a683924b5bf2a527e4e"; }; @@ -21057,7 +21268,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/sure/${name}.tar.gz"; + url = "mirror://pypi/s/sure/${name}.tar.gz"; sha256 = "1lyjq0rvkbv585dppjdq90lbkm6gyvag3wgrggjzyh7cpyh5c12w"; }; @@ -21076,7 +21287,7 @@ in modules // { name = "structlog-15.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/structlog/${name}.tar.gz"; + url = "mirror://pypi/s/structlog/${name}.tar.gz"; sha256 = "1h9qz4fsd7ph8rf80rqmlyj2q54xapgrmkpnyca01w1z8ww6f9w7"; }; @@ -21098,7 +21309,7 @@ in modules // { version = "1.1.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/svgwrite/${name}.tar.gz"; + url = "mirror://pypi/s/svgwrite/${name}.tar.gz"; sha256 = "1f018813072aa4d7e95e58f133acb3f68fa7de0a0d89ec9402cc38406a0ec5b8"; }; @@ -21117,7 +21328,7 @@ in modules // { version = "0.3.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/freezegun/freezegun-${version}.tar.gz"; + url = "mirror://pypi/f/freezegun/freezegun-${version}.tar.gz"; sha256 = "02ly89wwn0plcw8clkkzvxaw6zlpm8qyqpm9x2mfw4a0vppb4ngf"; }; @@ -21191,7 +21402,7 @@ in modules // { name = "tabulate-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tabulate/${name}.tar.gz"; + url = "mirror://pypi/t/tabulate/${name}.tar.gz"; sha256 = "9071aacbd97a9a915096c1aaf0dc684ac2672904cd876db5904085d6dac9810e"; }; @@ -21284,7 +21495,7 @@ in modules // { name = "taskw-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/taskw/${name}.tar.gz"; + url = "mirror://pypi/t/taskw/${name}.tar.gz"; sha256 = "1fa7bv5996ppfbryv02lpnlhk5dra63lhlwrb1i4ifqbziqfqh5n"; }; @@ -21314,7 +21525,7 @@ in modules // { name = "tempita-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/T/Tempita/Tempita-${version}.tar.gz"; + url = "mirror://pypi/T/Tempita/Tempita-${version}.tar.gz"; sha256 = "cacecf0baa674d356641f1d406b8bff1d756d739c46b869a54de515d08e6fc9c"; }; @@ -21333,7 +21544,7 @@ in modules // { version = "0.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/terminado/${name}.tar.gz"; + url = "mirror://pypi/t/terminado/${name}.tar.gz"; sha256 = "2c0ba1f624067dccaaead7d2247cfe029806355cef124dc2ccb53c83229f0126"; }; @@ -21386,7 +21597,7 @@ in modules // { version = "2.4.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/k/keystonemiddleware/${name}.tar.gz"; + url = "mirror://pypi/k/keystonemiddleware/${name}.tar.gz"; sha256 = "0avrn1f897rnam9wfdanpdwsmn8is3ncfh3nnzq3d1m31b1yqqr6"; }; @@ -21409,7 +21620,7 @@ in modules // { version = "0.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/testscenarios/${name}.tar.gz"; + url = "mirror://pypi/t/testscenarios/${name}.tar.gz"; sha256 = "1671jvrvqlmbnc42j7pc5y6vc37q44aiwrq0zic652pxyy2fxvjg"; }; @@ -21427,7 +21638,7 @@ in modules // { version = "0.0.20"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/testrepository/${name}.tar.gz"; + url = "mirror://pypi/t/testrepository/${name}.tar.gz"; sha256 = "1ssqb07c277010i6gzzkbdd46gd9mrj0bi0i8vn560n2k2y4j93m"; }; @@ -21450,7 +21661,7 @@ in modules // { version = "0.2.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/testresources/${name}.tar.gz"; + url = "mirror://pypi/t/testresources/${name}.tar.gz"; sha256 = "0cbj3plbllyz42c4b5xxgwaa7mml54lakslrn4kkhinxhdri22md"; }; @@ -21469,7 +21680,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/testtools/${name}.tar.gz"; + url = "mirror://pypi/t/testtools/${name}.tar.gz"; sha256 = "15yxz8d70iy1b1x6gd7spvblq0mjxjardl4vnaqasxafzc069zca"; }; @@ -21489,7 +21700,7 @@ in modules // { name = "traitlets-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/traitlets/${name}.tar.gz"; + url = "mirror://pypi/t/traitlets/${name}.tar.gz"; sha256 = "440e38dfa5d2a26c086d4b427cfb7aed17d0a2dca78bce90c33354da2592af5b"; }; @@ -21513,7 +21724,7 @@ in modules // { version = "0.1.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-mimeparse/${name}.tar.gz"; + url = "mirror://pypi/p/python-mimeparse/${name}.tar.gz"; sha256 = "1hyxg09kaj02ri0rmwjqi86wk4nd1akvv7n0dx77azz76wga4s9w"; }; @@ -21533,7 +21744,7 @@ in modules // { version = "0.0.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/e/extras/extras-${version}.tar.gz"; + url = "mirror://pypi/e/extras/extras-${version}.tar.gz"; sha256 = "1h7zx4dfyclalg0fqnfjijpn0f793a9mx8sy3b27gd31nr6dhq3s"; }; @@ -21551,7 +21762,7 @@ in modules // { name = "texttable-0.8.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/texttable/${name}.tar.gz"; + url = "mirror://pypi/t/texttable/${name}.tar.gz"; sha256 = "0bkhs4dx9s6g7fpb969hygq56hyz4ncfamlynw72s0n6nqfbd1w5"; }; @@ -21567,7 +21778,7 @@ in modules // { version = "0.4.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tlslite/${name}.tar.gz"; + url = "mirror://pypi/t/tlslite/${name}.tar.gz"; sha256 = "1fxx6d3nw5r1hqna1h2jvqhcygn9fyshlm0gh3gp0b1ji824gd6r"; }; @@ -21583,7 +21794,7 @@ in modules // { version = "5.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/q/qrcode/${name}.tar.gz"; + url = "mirror://pypi/q/qrcode/${name}.tar.gz"; sha256 = "0skzrvhjnnacrz52jml4i050vdx5lfcd3np172srxjaghdgfxg9k"; }; @@ -21605,7 +21816,7 @@ in modules // { version = "0.6.17"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tmdb3/${name}.zip"; + url = "mirror://pypi/t/tmdb3/${name}.zip"; sha256 = "64a6c3f1a60a9d8bf18f96a5403f3735b334040345ac3646064931c209720972"; }; @@ -21621,7 +21832,7 @@ in modules // { version = "0.7.4"; src = pkgs.fetchurl{ - url = "https://pypi.python.org/packages/source/t/toolz/toolz-${version}.tar.gz"; + url = "mirror://pypi/t/toolz/toolz-${version}.tar.gz"; sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; }; @@ -21648,7 +21859,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tox/${name}.tar.gz"; + url = "mirror://pypi/t/tox/${name}.tar.gz"; sha256 = "1vj73ar4rimq3fwy5r2z3jv4g9qbh8rmpmncsc00g0k310acqzxz"; }; }; @@ -21658,7 +21869,7 @@ in modules // { version = "3.7.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tqdm/${name}.tar.gz"; + url = "mirror://pypi/t/tqdm/${name}.tar.gz"; sha256 = "f12d792685f779e8754e623aff1a25a93b98a90457e3a2b7eb89b4401c2c239e"; }; @@ -21684,7 +21895,7 @@ in modules // { buildInputs = with self; [ nosexcover ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/smmap/${name}.tar.gz"; + url = "mirror://pypi/s/smmap/${name}.tar.gz"; sha256 = "0qlx25f6n2n9ff37w9gg62f217fzj16xlbh0pkz0lpxxjys64aqf"; }; }; @@ -21717,7 +21928,7 @@ in modules // { version = "4.5.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/t/traits/${name}.tar.gz"; + url = "mirror://pypi/t/traits/${name}.tar.gz"; sha256 = "5293a8786030b0b243e059f52004355b6939d7c0f1be2eb5a605b63cca484c84"; }; @@ -21748,7 +21959,7 @@ in modules // { version = "1.4.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/t/transaction/${name}.tar.gz"; + url = "mirror://pypi/t/transaction/${name}.tar.gz"; sha256 = "1b2304a886a85ad014f73d93346c14350fc214ae22a4f565f42f6761cfb9ecc5"; }; @@ -21766,7 +21977,7 @@ in modules // { version = "0.11"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/transmissionrpc/${name}.tar.gz"; + url = "mirror://pypi/t/transmissionrpc/${name}.tar.gz"; sha256 = "ec43b460f9fde2faedbfa6d663ef495b3fd69df855a135eebe8f8a741c0dde60"; }; @@ -21784,7 +21995,7 @@ in modules // { version = "0.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/t/tl.eggdeps/tl.${name}.tar.gz"; + url = "mirror://pypi/t/tl.eggdeps/tl.${name}.tar.gz"; sha256 = "a99de5e4652865224daab09b2e2574a4f7c1d0d9a267048f9836aa914a2caf3a"; }; @@ -21805,7 +22016,7 @@ in modules // { disabled = isPyPy || isPy3k; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/t/turses/${name}.tar.gz"; + url = "mirror://pypi/t/turses/${name}.tar.gz"; sha256 = "15mkhm3b5ka42h8qph0mhh8izfc1200v7651c62k7ldcs50ib9j6"; }; @@ -21839,7 +22050,7 @@ in modules // { name = "tweepy-3.5.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/t/tweepy/${name}.tar.gz"; + url = "mirror://pypi/t/tweepy/${name}.tar.gz"; sha256 = "0n2shilamgwhzmvf534xg7f6hrnznbixyl5pw2f5a3f391gwy37h"; }; @@ -21859,7 +22070,7 @@ in modules // { version = "0.4.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/T/Twiggy/Twiggy-0.4.5.tar.gz"; + url = "mirror://pypi/T/Twiggy/Twiggy-0.4.5.tar.gz"; sha256 = "4e8f1894e5aee522db6cb245ccbfde3c5d1aa08d31330c7e3af783b0e66eec23"; }; @@ -21880,7 +22091,7 @@ in modules // { version = "1.15.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/twitter/${name}.tar.gz"; + url = "mirror://pypi/t/twitter/${name}.tar.gz"; sha256 = "1m6b17irb9klc345k8174pni724jzy2973z2x2jg69h83hipjw2c"; }; @@ -21900,7 +22111,7 @@ in modules // { name = "Twisted-13.2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/T/Twisted/${name}.tar.bz2"; + url = "mirror://pypi/T/Twisted/${name}.tar.bz2"; sha256 = "1wrcqv5lvgwk2aq83qb2s2ng2vx14hbjjk2gc30cg6h1iiipal89"; }; @@ -21929,7 +22140,7 @@ in modules // { name = "Twisted-15.5.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/T/Twisted/${name}.tar.bz2"; + url = "mirror://pypi/T/Twisted/${name}.tar.bz2"; sha256 = "0zy18lcrris4aaslil5k12i13k56c32hzfdv6h10kbnzl026h158"; }; @@ -21959,7 +22170,7 @@ in modules // { propagatedBuildInputs = with self; [ pytz ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tzlocal/${name}.tar.gz"; + url = "mirror://pypi/t/tzlocal/${name}.tar.gz"; sha256 = "0paj7vlsb0np8b5sp4bv64wxv7qk2piyp7xg29pkhdjwsbls9fnb"; }; @@ -21978,7 +22189,7 @@ in modules // { version = "0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/u/umalqurra/umalqurra-0.2.tar.gz"; + url = "mirror://pypi/u/umalqurra/umalqurra-0.2.tar.gz"; sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678"; }; @@ -22001,7 +22212,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/u/umemcache/${name}.zip"; + url = "mirror://pypi/u/umemcache/${name}.zip"; sha256 = "211031a03576b7796bf277dbc9c9e3e754ba066bbb7fb601ab5c6291b8ec1918"; }; @@ -22017,7 +22228,7 @@ in modules // { name = "unicodecsv-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/u/unicodecsv/${name}.tar.gz"; + url = "mirror://pypi/u/unicodecsv/${name}.tar.gz"; sha256 = "1z7pdwkr6lpsa7xbyvaly7pq3akflbnz8gq62829lr28gl1hi301"; }; @@ -22036,7 +22247,7 @@ in modules // { name = "unittest2-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/u/unittest2/unittest2-${version}.tar.gz"; + url = "mirror://pypi/u/unittest2/unittest2-${version}.tar.gz"; sha256 = "0y855kmx7a8rnf81d3lh5lyxai1908xjp0laf4glwa4c8472m212"; }; @@ -22063,7 +22274,7 @@ in modules // { version = "0.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/u/uritemplate.py/${name}.tar.gz"; + url = "mirror://pypi/u/uritemplate.py/${name}.tar.gz"; sha256 = "0xvvdiwnag2pdi96hjf7v8asdia98flk2rxcjqnwcs3rk99alygx"; }; @@ -22080,7 +22291,7 @@ in modules // { name = "traceback2-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/t/traceback2/traceback2-${version}.tar.gz"; + url = "mirror://pypi/t/traceback2/traceback2-${version}.tar.gz"; sha256 = "0c1h3jas1jp1fdbn9z2mrgn3jj0hw1x3yhnkxp7jw34q15xcdb05"; }; @@ -22099,7 +22310,7 @@ in modules // { version = "1.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/linecache2/${name}.tar.gz"; + url = "mirror://pypi/l/linecache2/${name}.tar.gz"; sha256 = "0z79g3ds5wk2lvnqw0y2jpakjf32h95bd9zmnvp7dnqhf57gy9jb"; }; @@ -22140,7 +22351,7 @@ in modules // { name = "update_checker-0.11"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/u/update_checker/${name}.tar.gz"; + url = "mirror://pypi/u/update_checker/${name}.tar.gz"; sha256 = "681bc7c26cffd1564eb6f0f3170d975a31c2a9f2224a32f80fe954232b86f173"; }; @@ -22185,7 +22396,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/u/urwid/${name}.tar.gz"; + url = "mirror://pypi/u/urwid/${name}.tar.gz"; sha256 = "29f04fad3bf0a79c5491f7ebec2d50fa086e9d16359896c9204c6a92bc07aba2"; }; @@ -22219,17 +22430,17 @@ in modules // { }; pyuv = buildPythonPackage rec { - name = "pyuv-0.11.5"; + name = "pyuv-1.2.0"; disabled = isPyPy; # see https://github.com/saghul/pyuv/issues/49 src = pkgs.fetchurl { url = "https://github.com/saghul/pyuv/archive/${name}.tar.gz"; - sha256 = "c251952cb4e54c92ab0e871decd13cf73d11ca5dba9f92962de51d12e3a310a9"; + sha256 = "19yl1l5l6dq1xr8xcv6dhx1avm350nr4v2358iggcx4ma631rycx"; }; patches = [ ../development/python-modules/pyuv-external-libuv.patch ]; - buildInputs = with self; [ pkgs.libuvVersions.v0_11_29 ]; + buildInputs = with self; [ pkgs.libuv ]; meta = { description = "Python interface for libuv"; @@ -22245,7 +22456,7 @@ in modules // { propagatedBuildInputs = with self; [ easy-process ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/P/PyVirtualDisplay/${name}.tar.gz"; + url = "mirror://pypi/P/PyVirtualDisplay/${name}.tar.gz"; sha256 = "aa6aef08995e14c20cc670d933bfa6e70d736d0b555af309b2e989e2faa9ee53"; }; @@ -22261,7 +22472,7 @@ in modules // { name = "virtualenv-13.1.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/v/virtualenv/${name}.tar.gz"; + url = "mirror://pypi/v/virtualenv/${name}.tar.gz"; sha256 = "1p732accxwqfjbdna39k8w8lp9gyw91vr4kzkhm8mgfxikqqxg5a"; }; @@ -22286,7 +22497,7 @@ in modules // { name = "virtualenv-clone-0.2.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/v/virtualenv-clone/${name}.tar.gz"; + url = "mirror://pypi/v/virtualenv-clone/${name}.tar.gz"; sha256 = "7087ba4eb48acfd5209a3fd03e15d072f28742619127c98333057e32748d91c4"; }; @@ -22307,7 +22518,7 @@ in modules // { name = "virtualenvwrapper-4.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/v/virtualenvwrapper/${name}.tar.gz"; + url = "mirror://pypi/v/virtualenvwrapper/${name}.tar.gz"; sha256 = "514cbc22218347bf7b54bdbe49e1a5f550d2d53b1ad2491c10e91ddf48fb528f"; }; @@ -22397,7 +22608,7 @@ in modules // { name = "waitress-0.8.9"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/w/waitress/${name}.tar.gz"; + url = "mirror://pypi/w/waitress/${name}.tar.gz"; sha256 = "826527dc9d334ed4ed76cdae672fdcbbccf614186657db71679ab58df869458a"; }; @@ -22414,7 +22625,7 @@ in modules // { version = "0.11.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/webassets/${name}.tar.gz"; + url = "mirror://pypi/w/webassets/${name}.tar.gz"; sha256 = "0p1qypcbq9b88ipcylxh3bbnby5n6dr421wb4bwmrlcrgvj4r5lz"; }; @@ -22433,7 +22644,7 @@ in modules // { name = "webcolors-1.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/webcolors/${name}.tar.gz"; + url = "mirror://pypi/w/webcolors/${name}.tar.gz"; sha256 = "304fc95dab2848c7bf64f378356766e692c2f8b4a8b15fa3509544e6412936e8"; }; @@ -22453,7 +22664,7 @@ in modules // { name = "Wand-0.3.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/W/Wand/${name}.tar.gz"; + url = "mirror://pypi/W/Wand/${name}.tar.gz"; sha256 = "31e2186ce8d1da0d2ea84d1428fc4d441c2e9d0e25156cc746b35b781026bcff"; }; @@ -22469,11 +22680,11 @@ in modules // { wcwidth = buildPythonPackage rec { name = "wcwidth-${version}"; - version = "0.1.4"; + version = "0.1.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/wcwidth/${name}.tar.gz"; - sha256 = "0awx28xi938nv55qlmai3b5ddqd1w5c294gy95xh4xsx0hik2vch"; + url = "mirror://pypi/w/wcwidth/${name}.tar.gz"; + sha256 = "02wjrpf001gjdjsaxxbzcwfg19crlk2dbddayrfc2v06f53yrcyw"; }; # Checks fail due to missing tox.ini file: @@ -22499,7 +22710,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/web.py/web.py-${version}.tar.gz"; + url = "mirror://pypi/w/web.py/web.py-${version}.tar.gz"; sha256 = "748c7e99ad9e36f62ea19f7965eb7dd7860b530e8f563ed60ce3e53e7409a550"; }; @@ -22520,7 +22731,7 @@ in modules // { name = "webob-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/W/WebOb/WebOb-${version}.tar.gz"; + url = "mirror://pypi/W/WebOb/WebOb-${version}.tar.gz"; sha256 = "1nz9m6ijf46wfn33zfza13c0k1n4kjnmn3icdlrlgz5yj21vky0j"; }; @@ -22539,7 +22750,7 @@ in modules // { name = "websockify-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/w/websockify/websockify-${version}.tar.gz"; + url = "mirror://pypi/w/websockify/websockify-${version}.tar.gz"; sha256 = "1v6pmamjprv2x55fvbdaml26ppxdw8v6xz8p0sav3368ajwwgcqc"; }; @@ -22557,7 +22768,7 @@ in modules // { name = "webtest-${version}"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/W/WebTest/WebTest-${version}.tar.gz"; + url = "mirror://pypi/W/WebTest/WebTest-${version}.tar.gz"; sha256 = "0bv0qhdjakdsdgj4sk21gnpp8xp8bga4x03p6gjb83ihrsb7n4xv"; }; @@ -22595,7 +22806,7 @@ in modules // { name = "Werkzeug-0.10.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/W/Werkzeug/${name}.tar.gz"; + url = "mirror://pypi/W/Werkzeug/${name}.tar.gz"; sha256 = "9d2771e4c89be127bc4bac056ab7ceaf0e0064c723d6b6e195739c3af4fd5c1d"; }; @@ -22615,7 +22826,7 @@ in modules // { version = "0.29.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/wheel/${name}.tar.gz"; + url = "mirror://pypi/w/wheel/${name}.tar.gz"; sha256 = "1ebb8ad7e26b448e9caa4773d2357849bf80ff9e313964bcaf79cbf0201a1648"; }; @@ -22634,7 +22845,7 @@ in modules // { name = "willie-5.2.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/willie/willie-5.2.0.tar.gz"; + url = "mirror://pypi/w/willie/willie-5.2.0.tar.gz"; sha256 = "2da2e91b65c471b4c8e5e5e11471b25887635258d24aaf76b5354147b3ab577d"; }; @@ -22669,7 +22880,7 @@ in modules // { name = "WSGIProxy2-0.4.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/W/WSGIProxy2/${name}.zip"; + url = "mirror://pypi/W/WSGIProxy2/${name}.zip"; sha256 = "13kf9bdxrc95y9vriaz0viry3ah11nz4rlrykcfvb8nlqpx3dcm4"; }; @@ -22752,7 +22963,7 @@ in modules // { name = "xmltodict-0.9.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/x/xmltodict/${name}.tar.gz"; + url = "mirror://pypi/x/xmltodict/${name}.tar.gz"; sha256 = "00crqnjh1kbvcgfnn3b8c7vq30lf4ykkxp1xf3pf7mswr5l1wp97"; }; @@ -22770,7 +22981,7 @@ in modules // { version = "0.7.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/x/xarray/${name}.tar.gz"; + url = "mirror://pypi/x/xarray/${name}.tar.gz"; sha256 = "1swcpq8x0p5pp94r9j4hr2anz1rqh7fnqax16xn9xsgrikdjipj5"; }; @@ -22794,7 +23005,7 @@ in modules // { version = "1.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/x/xlwt/${name}.tar.gz"; + url = "mirror://pypi/x/xlwt/${name}.tar.gz"; sha256 = "1y8w5imsicp01gn749qhw6j0grh9y19zz57ribwaknn8xqwjjhxc"; }; @@ -22827,7 +23038,7 @@ in modules // { name = "zbase32-1.1.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zbase32/${name}.tar.gz"; + url = "mirror://pypi/z/zbase32/${name}.tar.gz"; sha256 = "2f44b338f750bd37b56e7887591bf2f1965bfa79f163b6afcbccf28da642ec56"; }; @@ -22848,7 +23059,7 @@ in modules // { version = "3.0.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/Z/ZConfig/ZConfig-${version}.tar.gz"; + url = "mirror://pypi/Z/ZConfig/ZConfig-${version}.tar.gz"; sha256 = "6577da957511d8c2f805fefd2e31cacc4117bb5c54aec03ad8ce374020c021f3"; }; @@ -22868,7 +23079,7 @@ in modules // { version = "1.0.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zc.lockfile/${name}.tar.gz"; + url = "mirror://pypi/z/zc.lockfile/${name}.tar.gz"; sha256 = "96bb2aa0438f3e29a31e4702316f832ec1482837daef729a92e28c202d8fba5c"; }; @@ -22886,7 +23097,7 @@ in modules // { version = "4.0.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zdaemon/${name}.tar.gz"; + url = "mirror://pypi/z/zdaemon/${name}.tar.gz"; sha256 = "82d7eaa4d831ff1ecdcffcb274f3457e095c0cc86e630bc72009a863c341ab9f"; }; @@ -22909,7 +23120,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zfec/${name}.tar.gz"; + url = "mirror://pypi/z/zfec/${name}.tar.gz"; sha256 = "1ks94zlpy7n8sb8380gf90gx85qy0p9073wi1wngg6mccxp9xsg3"; }; @@ -22940,7 +23151,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/Z/ZODB3/ZODB3-${version}.tar.gz"; + url = "mirror://pypi/Z/ZODB3/ZODB3-${version}.tar.gz"; sha256 = "b5767028e732c619f45c27189dd001e14ec155d7984807991fce751b35b4fcb0"; }; @@ -22961,7 +23172,7 @@ in modules // { version = "4.0.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/Z/ZODB/ZODB-${version}.tar.gz"; + url = "mirror://pypi/Z/ZODB/ZODB-${version}.tar.gz"; sha256 = "c5d8ffcca37ab4d0a9bfffead6228d58c00cf1c78135abc98a8dbf05b8c8fb58"; }; @@ -22986,7 +23197,7 @@ in modules // { disabled = isPyPy; # https://github.com/zopefoundation/zodbpickle/issues/10 src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/z/zodbpickle/${name}.tar.gz"; + url = "mirror://pypi/z/zodbpickle/${name}.tar.gz"; sha256 = "f65c00fbc13523fced63de6cc11747aa1a6343aeb2895c89838ed55a5ab12cca"; }; @@ -23005,7 +23216,7 @@ in modules // { propagatedBuildInputs = with self; [ persistent zope_interface transaction ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/B/BTrees/${name}.tar.gz"; + url = "mirror://pypi/B/BTrees/${name}.tar.gz"; sha256 = "1avvhkd7rvp3rzhw20v6ank8a8m9a1lmh99c4gjjsa1ry0zsri3y"; }; @@ -23024,7 +23235,7 @@ in modules // { propagatedBuildInputs = with self; [ zope_interface ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/persistent/${name}.tar.gz"; + url = "mirror://pypi/p/persistent/${name}.tar.gz"; sha256 = "678902217c5370d33694c6dc95b89e1e6284b4dc41f04c056326194a3f6f3e22"; }; @@ -23035,14 +23246,19 @@ in modules // { }; xdot = buildPythonPackage rec { - name = "xdot-0.6"; + name = "xdot-0.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/x/xdot/xdot-0.6.tar.gz"; - sha256 = "c71d82bad0fec696af36af788c2a1dbb5d9975bd70bfbdc14bda15b5c7319e6c"; + url = "mirror://pypi/x/xdot/xdot-0.7.tar.gz"; + sha256 = "1q0f3pskb09saw1qkd2s6vmk80rq5zjhq8l93dfr2x6r04r0q46j"; }; - propagatedBuildInputs = with self; [ pygtk pygobject pkgs.graphviz ]; + propagatedBuildInputs = with self; [ pkgs.gobjectIntrospection pygobject3 pkgs.graphviz pkgs.gnome3.gtk ]; + + preFixup = '' + wrapProgram "$out/bin/"* \ + --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" + ''; meta = { description = "xdot.py is an interactive viewer for graphs written in Graphviz's dot"; @@ -23051,11 +23267,34 @@ in modules // { }; }; + you-get = buildPythonApplication rec { + version = "0.4.390"; + name = "you-get-${version}"; + disabled = !isPy3k; + + # Tests aren't packaged, but they all hit the real network so + # probably aren't suitable for a build environment anyway. + doCheck = false; + + src = pkgs.fetchurl { + url = "mirror://pypi/y/you-get/${name}.tar.gz"; + sha256 = "17hs0g9yvgvkmr7p1cz39mbbvb40q65qkc31j3ixc2f873gahagw"; + }; + + meta = { + description = "A tiny command line utility to download media contents from the web"; + homepage = https://you-get.org; + license = licenses.mit; + maintainers = with maintainers; [ ryneeverett ]; + platforms = platforms.all; + }; + }; + zope_broken = buildPythonPackage rec { name = "zope.broken-3.6.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.broken/${name}.zip"; + url = "mirror://pypi/z/zope.broken/${name}.zip"; sha256 = "b9b8776002da4f7b6b12dfcce77eb642ae62b39586dbf60e1d9bdc992c9f2999"; }; @@ -23071,7 +23310,7 @@ in modules // { name = "zope.browser-2.0.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.browser/${name}.zip"; + url = "mirror://pypi/z/zope.browser/${name}.zip"; sha256 = "0f9r5rn9lzgi4hvkhgb6vgw8kpz9sv16jsfb9ws4am8gbqcgv2iy"; }; @@ -23094,7 +23333,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/z/zope.browserresource/zope.browserresource-4.0.1.zip"; + url = "mirror://pypi/z/zope.browserresource/zope.browserresource-4.0.1.zip"; sha256 = "d580184562e7098950ae377b5b37fbb88becdaa2256ac2a6760b69a3e86a99b2"; }; }; @@ -23105,7 +23344,7 @@ in modules // { name = "zope.component-4.2.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.component/zope.component-4.2.1.tar.gz"; + url = "mirror://pypi/z/zope.component/zope.component-4.2.1.tar.gz"; sha256 = "1gzbr0j6c2h0cqnpi2cjss38wrz1bcwx8xahl3vykgz5laid15l6"; }; @@ -23127,7 +23366,7 @@ in modules // { name = "zope.configuration-4.0.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.configuration/zope.configuration-4.0.3.tar.gz"; + url = "mirror://pypi/z/zope.configuration/zope.configuration-4.0.3.tar.gz"; sha256 = "1x9dfqypgympnlm25p9m43xh4qv3p7d75vksv9pzqibrb4cggw5n"; }; @@ -23143,7 +23382,7 @@ in modules // { name = "zope.container-4.0.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.container/${name}.tar.gz"; + url = "mirror://pypi/z/zope.container/${name}.tar.gz"; sha256 = "5c04e61b52fd04d8b7103476532f557c2278c86281aae30d44f88a5fbe888940"; }; @@ -23166,7 +23405,7 @@ in modules // { name = "zope.contenttype-4.0.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.contenttype/${name}.tar.gz"; + url = "mirror://pypi/z/zope.contenttype/${name}.tar.gz"; sha256 = "9decc7531ad6925057f1a667ac0ef9d658577a92b0b48dafa7daa97b78a02bbb"; }; @@ -23180,7 +23419,7 @@ in modules // { name = "zope.dottedname-3.4.6"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.dottedname/${name}.tar.gz"; + url = "mirror://pypi/z/zope.dottedname/${name}.tar.gz"; sha256 = "331d801d98e539fa6c5d50c3835ecc144c429667f483281505de53fc771e6bf5"; }; meta = { @@ -23194,7 +23433,7 @@ in modules // { version = "4.0.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.event/${name}.tar.gz"; + url = "mirror://pypi/z/zope.event/${name}.tar.gz"; sha256 = "1w858k9kmgzfj36h65kp27m9slrmykvi5cjq6c119xqnaz5gdzgm"; }; @@ -23212,7 +23451,7 @@ in modules // { version = "4.0.8"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.exceptions/${name}.tar.gz"; + url = "mirror://pypi/z/zope.exceptions/${name}.tar.gz"; sha256 = "0zwxaaa66sqxg5k7zcrvs0fbg9ym1njnxnr28dfmchzhwjvwnfzl"; }; @@ -23234,7 +23473,7 @@ in modules // { name = "zope.filerepresentation-3.6.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.filerepresentation/${name}.tar.gz"; + url = "mirror://pypi/z/zope.filerepresentation/${name}.tar.gz"; sha256 = "d775ebba4aff7687e0381f050ebda4e48ce50900c1438f3f7e901220634ed3e0"; }; @@ -23250,7 +23489,7 @@ in modules // { name = "zope.i18n-3.8.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.i18n/${name}.tar.gz"; + url = "mirror://pypi/z/zope.i18n/${name}.tar.gz"; sha256 = "045nnimmshibcq71yym2d8yrs6wzzhxq5gl7wxjnkpyjm5y0hfkm"; }; @@ -23266,7 +23505,7 @@ in modules // { name = "zope.i18nmessageid-4.0.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.i18nmessageid/zope.i18nmessageid-4.0.3.tar.gz"; + url = "mirror://pypi/z/zope.i18nmessageid/zope.i18nmessageid-4.0.3.tar.gz"; sha256 = "1rslyph0klk58dmjjy4j0jxy21k03azksixc3x2xhqbkv97cmzml"; }; @@ -23280,7 +23519,7 @@ in modules // { name = "zope.lifecycleevent-3.7.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.lifecycleevent/${name}.tar.gz"; + url = "mirror://pypi/z/zope.lifecycleevent/${name}.tar.gz"; sha256 = "0s5brphqzzz89cykg61gy7zcmz0ryq1jj2va7gh2n1b3cccllp95"; }; @@ -23296,7 +23535,7 @@ in modules // { name = "zope.location-4.0.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.location/zope.location-4.0.3.tar.gz"; + url = "mirror://pypi/z/zope.location/zope.location-4.0.3.tar.gz"; sha256 = "1nj9da4ksiyv3h8n2vpzwd0pb03mdsh7zy87hfpx72b6p2zcwg74"; }; @@ -23319,7 +23558,7 @@ in modules // { name = "zope.proxy-4.1.6"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.proxy/${name}.tar.gz"; + url = "mirror://pypi/z/zope.proxy/${name}.tar.gz"; sha256 = "0pqwwmvm1prhwv1ziv9lp8iirz7xkwb6n2kyj36p2h0ppyyhjnm4"; }; @@ -23338,7 +23577,7 @@ in modules // { name = "zope.publisher-3.12.6"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.publisher/${name}.tar.gz"; + url = "mirror://pypi/z/zope.publisher/${name}.tar.gz"; sha256 = "d994d8eddfba504841492115032a9a7d86b1713ebc96d0ca16fbc6ee93168ba4"; }; @@ -23356,7 +23595,7 @@ in modules // { name = "zope.schema-4.4.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.schema/${name}.tar.gz"; + url = "mirror://pypi/z/zope.schema/${name}.tar.gz"; sha256 = "1p943jdxb587dh7php4vx04qvn7b2877hr4qs5zyckvp5afhhank"; }; @@ -23372,7 +23611,7 @@ in modules // { name = "zope.security-4.0.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.security/${name}.tar.gz"; + url = "mirror://pypi/z/zope.security/${name}.tar.gz"; sha256 = "8da30b03d5491464d59397e03b88192f31f587325ee6c6eb1ca596a1e487e2ec"; }; @@ -23391,7 +23630,7 @@ in modules // { name = "zope.size-3.5.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.size/${name}.tar.gz"; + url = "mirror://pypi/z/zope.size/${name}.tar.gz"; sha256 = "006xfkhvmypwd3ww9gbba4zly7n9w30bpp1h74d53la7l7fiqk2f"; }; @@ -23409,7 +23648,7 @@ in modules // { doCheck = !isPyPy; # https://github.com/zopefoundation/zope.sqlalchemy/issues/12 src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.sqlalchemy/${name}.zip"; + url = "mirror://pypi/z/zope.sqlalchemy/${name}.zip"; sha256 = "0vxhpdvzihsmg63aralmc7hx62lzrsnlxvskvlcr4mkwzwb22haj"; }; @@ -23428,7 +23667,7 @@ in modules // { version = "4.5.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.testing/${name}.tar.gz"; + url = "mirror://pypi/z/zope.testing/${name}.tar.gz"; sha256 = "1yvglxhzvhl45mndvn9gskx2ph30zz1bz7rrlyfs62fv2pvih90s"; }; @@ -23450,7 +23689,7 @@ in modules // { version = "4.4.10"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.testrunner/${name}.zip"; + url = "mirror://pypi/z/zope.testrunner/${name}.zip"; sha256 = "1w09wbqiqmq6hvrammi4fzc7fr129v63gdnzlk4qi2b1xy5qpqab"; }; @@ -23469,7 +23708,7 @@ in modules // { name = "zope.traversing-4.0.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.traversing/${name}.zip"; + url = "mirror://pypi/z/zope.traversing/${name}.zip"; sha256 = "79d38b92ec1d9a2467966ee954b792d83ac66f22e45e928113d4b5dc1f5e74eb"; }; @@ -23488,7 +23727,7 @@ in modules // { name = "zope.interface-4.1.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/z/zope.interface/${name}.tar.gz"; + url = "mirror://pypi/z/zope.interface/${name}.tar.gz"; sha256 = "0ks8h73b2g4bkad821qbv0wzjppdrwys33i7ka45ik3wxjg1l8if"; }; @@ -23505,7 +23744,7 @@ in modules // { hgsvn = buildPythonPackage rec { name = "hgsvn-0.3.11"; src = pkgs.fetchurl rec { - url = "https://pypi.python.org/packages/source/h/hgsvn/${name}-hotfix.zip"; + url = "mirror://pypi/h/hgsvn/${name}-hotfix.zip"; sha256 = "0yvhwdh8xx8rvaqd3pnnyb99hfa0zjdciadlc933p27hp9rf880p"; }; disabled = isPy3k || isPyPy; @@ -23570,7 +23809,7 @@ in modules // { propagatedBuildInputs = with self; [ backports_ssl_match_hostname_3_4_0_2 certifi ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tornado/${name}.tar.gz"; + url = "mirror://pypi/t/tornado/${name}.tar.gz"; sha256 = "a16fcdc4f76b184cb82f4f9eaeeacef6113b524b26a2cb331222e4a7fa6f2969"; }; }; @@ -23582,7 +23821,7 @@ in modules // { propagatedBuildInputs = with self; [ backports_ssl_match_hostname_3_4_0_2 certifi ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tornado/${name}.tar.gz"; + url = "mirror://pypi/t/tornado/${name}.tar.gz"; sha256 = "00crp5vnasxg7qyjv89qgssb69vd7qr13jfghdryrcbnn9l8c1df"; }; }; @@ -23659,7 +23898,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tarman/tarman-${version}.zip"; + url = "mirror://pypi/t/tarman/tarman-${version}.zip"; sha256 = "0ri6gj883k042xaxa2d5ymmhbw2bfcxdzhh4bz7700ibxwxxj62h"; }; @@ -23688,7 +23927,7 @@ in modules // { name = "libarchive-c-2.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/libarchive-c/${name}.tar.gz"; + url = "mirror://pypi/l/libarchive-c/${name}.tar.gz"; sha256 = "089lrz6xyrfnk55v35vis6jyqyyl77w093057djyspnd2744wi2n"; }; @@ -23726,7 +23965,7 @@ in modules // { pyzmq = buildPythonPackage rec { name = "pyzmq-15.2.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyzmq/${name}.tar.gz"; + url = "mirror://pypi/p/pyzmq/${name}.tar.gz"; sha256 = "2dafa322670a94e20283aba2a44b92134d425bd326419b68ad4db8d0831a26ec"; }; buildInputs = with self; [ pkgs.zeromq3 pytest tornado ]; @@ -23763,7 +24002,7 @@ in modules // { version = "4.5.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/testfixtures/testfixtures-${version}.tar.gz"; + url = "mirror://pypi/t/testfixtures/testfixtures-${version}.tar.gz"; sha256 = "0my8zq9d27mc7j78pz9971cn5wz6zi4vxlqa50szr2vq9j2xxkll"; }; @@ -23786,7 +24025,7 @@ in modules // { tissue = buildPythonPackage rec { name = "tissue-0.9.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/t/tissue/${name}.tar.gz"; + url = "mirror://pypi/t/tissue/${name}.tar.gz"; sha256 = "7e34726c3ec8fae358a7faf62de172db15716f5582e5192a109e33348bd76c2e"; }; @@ -23825,7 +24064,7 @@ in modules // { name = "translationstring-1.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/t/translationstring/${name}.tar.gz"; + url = "mirror://pypi/t/translationstring/${name}.tar.gz"; sha256 = "4ee44cfa58c52ade8910ea0ebc3d2d84bdcad9fa0422405b1801ec9b9a65b72d"; }; @@ -23885,7 +24124,7 @@ in modules // { name = "websocket_client-0.32.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/websocket-client/${name}.tar.gz"; + url = "mirror://pypi/w/websocket-client/${name}.tar.gz"; sha256 = "cb3ab95617ed2098d24723e3ad04ed06c4fde661400b96daa1859af965bfe040"; }; @@ -23903,7 +24142,7 @@ in modules // { name = "WebHelpers-1.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/W/WebHelpers/${name}.tar.gz"; + url = "mirror://pypi/W/WebHelpers/${name}.tar.gz"; sha256 = "ea86f284e929366b77424ba9a89341f43ae8dee3cbeb8702f73bcf86058aa583"; }; @@ -23941,7 +24180,7 @@ in modules // { version = "0.9.12"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/whisper/${name}.tar.gz"; + url = "mirror://pypi/w/whisper/${name}.tar.gz"; sha256 = "0eca66449d6ceb29e2ab5457b01618e0fe525710dd130a286a18282d849ae5b2"; }; @@ -23960,7 +24199,7 @@ in modules // { version = "0.9.15"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/carbon/${name}.tar.gz"; + url = "mirror://pypi/c/carbon/${name}.tar.gz"; sha256 = "f01db6d37726c6fc0a8aaa66a7bf14436b0dd0d62ef3c20ecb31605a4d365d2e"; }; @@ -23980,7 +24219,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/u/ujson/${name}.zip"; + url = "mirror://pypi/u/ujson/${name}.zip"; sha256 = "68cf825f227c82e1ac61e423cfcad923ff734c27b5bdd7174495d162c42c602b"; }; @@ -23996,7 +24235,7 @@ in modules // { name = "Unidecode-0.04.18"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/U/Unidecode/${name}.tar.gz"; + url = "mirror://pypi/U/Unidecode/${name}.tar.gz"; sha256 = "12hhblqy1ajvidm38im4171x4arg83pfmziyn53nizp29p3m14gi"; }; @@ -24017,7 +24256,7 @@ in modules // { name = "pyusb-1.0.0rc1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyusb/${name}.tar.gz"; + url = "mirror://pypi/p/pyusb/${name}.tar.gz"; sha256 = "07cjq11qhngzjd746k7688s6y2x7lpj669fxqfsiy985rg0jsn7j"; }; @@ -24045,7 +24284,7 @@ in modules // { version = "1.1.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/B/BlinkStick/${name}.tar.gz"; + url = "mirror://pypi/B/BlinkStick/${name}.tar.gz"; sha256 = "3edf4b83a3fa1a7bd953b452b76542d54285ff6f1145b6e19f9b5438120fa408"; }; @@ -24107,7 +24346,7 @@ in modules // { doCheck = (!isPy3k); src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/v/versiontools/${name}.tar.gz"; + url = "mirror://pypi/v/versiontools/${name}.tar.gz"; sha256 = "1xhl6kl7f4srgnw6zw4lr8j2z5vmrbaa83nzn2c9r2m1hwl36sd9"; }; @@ -24118,7 +24357,7 @@ in modules // { version = "0.8.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/v/veryprettytable/${name}.tar.gz"; + url = "mirror://pypi/v/veryprettytable/${name}.tar.gz"; sha256 = "1k1rifz8x6qcicmx2is9vgxcj0qb2f5pvzrp7zhmvbmci3yack3f"; }; @@ -24136,7 +24375,7 @@ in modules // { version = "0.9.12"; src = pkgs.fetchurl rec { - url = "https://pypi.python.org/packages/source/g/graphite-web/${name}.tar.gz"; + url = "mirror://pypi/g/graphite-web/${name}.tar.gz"; sha256 = "472a4403fd5b5364939aee10e78f171b1489e5f6bfe6f150ed9cae8476410114"; }; @@ -24207,7 +24446,7 @@ in modules // { name = "graphite_beacon-0.22.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/graphite_beacon/${name}.tar.gz"; + url = "mirror://pypi/g/graphite_beacon/${name}.tar.gz"; sha256 = "ebde1aba8030c8aeffaeea39f9d44a2be464b198583ad4a390a2bff5f4172543"; }; @@ -24406,7 +24645,7 @@ in modules // { version = "0.11.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/L/Logbook/${name}.tar.gz"; + url = "mirror://pypi/L/Logbook/${name}.tar.gz"; sha256 = "0bchn00jj0y4dmrmqsm29ffcx37g79jcxjihadmgz2aj0z6dbsrc"; }; @@ -24425,13 +24664,13 @@ in modules // { }; libvirt = let - version = "1.3.2"; + version = "1.3.3"; 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"; - sha256 = "1y0b2sglc6q43pw1sr0by5wx8037kvrp2969p69k6mq1g2gawdbd"; + sha256 = "0jhf1h4zdysxf5mj769l5ddcbs5j3mzj4sdy8gp4kbj4imwaws5a"; }; buildInputs = with self; [ python pkgs.pkgconfig pkgs.libvirt lxml ]; @@ -24474,7 +24713,7 @@ in modules // { name = "rpdb-0.1.5"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/r/rpdb/${name}.tar.gz"; + url = "mirror://pypi/r/rpdb/${name}.tar.gz"; sha256 = "0rql1hq3lziwcql0h3dy05w074cn866p397ng9bv6qbz85ifw1bk"; }; @@ -24490,7 +24729,7 @@ in modules // { name = "grequests-0.2.0"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/g/grequests/${name}.tar.gz"; + url = "mirror://pypi/g/grequests/${name}.tar.gz"; sha256 = "0lafzax5igbh8y4x0krizr573wjsxz7bhvwygiah6qwrzv83kv5c"; }; @@ -24508,7 +24747,7 @@ in modules // { name = "Flask-Babel-0.9"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/F/Flask-Babel/${name}.tar.gz"; + url = "mirror://pypi/F/Flask-Babel/${name}.tar.gz"; sha256 = "0k7vk4k54y55ma0nx2k5s0phfqbriwslhy5shh3b0d046q7ibzaa"; }; @@ -24526,7 +24765,7 @@ in modules // { name = "speaklater-1.3"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/speaklater/${name}.tar.gz"; + url = "mirror://pypi/s/speaklater/${name}.tar.gz"; sha256 = "1ab5dbfzzgz6cnz4xlwx79gz83id4bhiw67k1cgqrlzfs0va7zjr"; }; @@ -24543,7 +24782,7 @@ in modules // { version = "0.10.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pushbullet.py/pushbullet.py-0.10.0.tar.gz"; + url = "mirror://pypi/p/pushbullet.py/pushbullet.py-0.10.0.tar.gz"; sha256 = "537d3132e1dbc91e31ade4cccf4c7def6f9d48e904a67f341d35b8a54a9be74d"; }; @@ -24554,7 +24793,7 @@ in modules // { name = "power-1.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/power/${name}.tar.gz"; + url = "mirror://pypi/p/power/${name}.tar.gz"; sha256 = "7d7d60ec332acbe3a7d00379b45e39abf650bf7ee311d61da5ab921f52f060f0"; }; @@ -24666,7 +24905,7 @@ in modules // { name = "toposort-${version}"; version = "1.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/toposort/toposort-1.1.tar.gz"; + url = "mirror://pypi/t/toposort/toposort-1.1.tar.gz"; sha256 = "1izmirbwmd9xrk7rq83p486cvnsslfa5ljvl7rijj1r64zkcnf3a"; }; meta = { @@ -24769,7 +25008,7 @@ in modules // { name = "funcy-1.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/f/funcy/${name}.tar.gz"; + url = "mirror://pypi/f/funcy/${name}.tar.gz"; sha256 = "511495db0c5660af18d3151b008c6ce698ae7fbf60887278e79675e35eed1f01"; }; @@ -24788,7 +25027,7 @@ in modules // { name = "boto-2.30.0"; disabled = ! isPy27; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/b/boto/boto-2.30.0.tar.gz; + url = mirror://pypi/b/boto/boto-2.30.0.tar.gz; sha256 = "12gl8azmx1vv8dbv9jhnsbhjpc2dd1ng0jlbcg734k6ggwq1h6hh"; }; doCheck = false; @@ -24803,7 +25042,7 @@ in modules // { name = "gcs-oauth2-boto-plugin-1.8"; disabled = ! isPy27; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/g/gcs-oauth2-boto-plugin/gcs-oauth2-boto-plugin-1.8.tar.gz; + url = mirror://pypi/g/gcs-oauth2-boto-plugin/gcs-oauth2-boto-plugin-1.8.tar.gz; sha256 = "0jy62y5bmaf1mb735lqwry1s5nx2qqrxvl5sxip9yg4miih3qkyb"; }; propagatedBuildInputs = with self; [ boto-230 httplib2 google_api_python_client retry_decorator pkgs.pyopenssl socksipy-branch ]; @@ -24826,7 +25065,7 @@ in modules // { doCheck = false; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/g/gsutil/gsutil-4.6.tar.gz; + url = mirror://pypi/g/gsutil/gsutil-4.6.tar.gz; sha256 = "1i0clm60162rbk45ljr8nsw4ndkzjnwb7r440shcqjrvw8jq49mn"; }; @@ -24922,7 +25161,7 @@ in modules // { version = "0.2.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/W/WSGIProxy/WSGIProxy-${version}.tar.gz"; + url = "mirror://pypi/W/WSGIProxy/WSGIProxy-${version}.tar.gz"; sha256 = "0wqz1q8cvb81a37gb4kkxxpv4w7k8192a08qzyz67rn68ln2wcig"; }; @@ -24942,7 +25181,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/blist/blist-${version}.tar.gz"; + url = "mirror://pypi/b/blist/blist-${version}.tar.gz"; sha256 = "1hqz9pqbwx0czvq9bjdqjqh5bwfksva1is0anfazig81n18c84is"; }; }; @@ -24967,7 +25206,7 @@ in modules // { version = "2.4.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/daemonize/daemonize-${version}.tar.gz"; + url = "mirror://pypi/d/daemonize/daemonize-${version}.tar.gz"; sha256 = "0y139sq657bpzfv6k0aqm4071z4s40i6ybpni9qvngvdcz6r86n2"; }; }; @@ -24977,7 +25216,7 @@ in modules // { version = "0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pydenticon/pydenticon-0.2.tar.gz"; + url = "mirror://pypi/p/pydenticon/pydenticon-0.2.tar.gz"; sha256 = "035dawcspgjw2rksbnn863s7b0i9ac8cc1nshshvd1l837ir1czp"; }; propagatedBuildInputs = with self; [ @@ -25003,7 +25242,7 @@ in modules // { version = "0.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/P/PyNaCl/PyNaCl-0.3.0.tar.gz"; + url = "mirror://pypi/P/PyNaCl/PyNaCl-0.3.0.tar.gz"; sha256 = "1hknxlp3a3f8njn19w92p8nhzl9jkfwzhv5fmxhmyq2m8hqrfj8j"; }; @@ -25015,7 +25254,7 @@ in modules // { version = "14.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/service_identity/service_identity-${version}.tar.gz"; + url = "mirror://pypi/s/service_identity/service_identity-${version}.tar.gz"; sha256 = "0njg9bklkkp4rl2b9vsfh9aasxy3w2dmjkv9cq34jn65lwcs619i"; }; @@ -25045,12 +25284,12 @@ in modules // { unpaddedbase64 = buildPythonPackage rec { name = "unpaddedbase64-${version}"; - version = "1.0.1"; + version = "1.1.0"; src = pkgs.fetchgit { url = "https://github.com/matrix-org/python-unpaddedbase64.git"; rev = "refs/tags/v${version}"; - sha256 = "f221240a6d414c4244ab906b1dc8983c4d1114acb778cb857f6fc50d710be502"; + sha256 = "2dad07b53cf816a5c2fc14a1a193b0df63ab5aacaccffb328753e7d3027d434e"; }; }; @@ -25083,7 +25322,7 @@ in modules // { ] ++ optionals (!isPy3k) [ futures ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/thumbor/${name}.tar.gz"; + url = "mirror://pypi/t/thumbor/${name}.tar.gz"; sha256 = "57b0d7e261e792b2e2c53a79c3d8c722964003d1828331995dc3491dc67db7d8"; }; @@ -25099,7 +25338,7 @@ in modules // { disabled = ! isPy27; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/thumbor-pexif/${name}.tar.gz"; + url = "mirror://pypi/t/thumbor-pexif/${name}.tar.gz"; sha256 = "715cd24760c7c28d6270c79c9e29b55b8d952a24e0e56833d827c2c62451bc3c"; }; @@ -25117,7 +25356,7 @@ in modules // { disabled = ! isPy27; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/${baseName}/${name}.tar.gz"; + url = "mirror://pypi/p/${baseName}/${name}.tar.gz"; sha256 = "0lc1x0pai85avm1r452xnvxc12wijnhz87xv20yp3is9fs6rnkrh"; }; @@ -25164,7 +25403,7 @@ in modules // { disabled = ! isPy27; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/datadiff/datadiff-1.1.6.zip"; + url = "mirror://pypi/d/datadiff/datadiff-1.1.6.zip"; sha256 = "f1402701063998f6a70609789aae8dc05703f3ad0a34882f6199653654c55543"; }; @@ -25181,7 +25420,7 @@ in modules // { name = "termcolor-1.1.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/termcolor/termcolor-1.1.0.tar.gz"; + url = "mirror://pypi/t/termcolor/termcolor-1.1.0.tar.gz"; sha256 = "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"; }; @@ -25197,7 +25436,7 @@ in modules // { disabled = ! isPy27; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/html2text/${name}.tar.gz"; + url = "mirror://pypi/h/html2text/${name}.tar.gz"; sha256 = "021pqcshxajhdy4whkawz95v98m8njv5lknzgac0sp8jzl01qls4"; }; @@ -25248,7 +25487,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/networkx/${name}.tar.gz"; + url = "mirror://pypi/n/networkx/${name}.tar.gz"; sha256 = "ced4095ab83b7451cec1172183eff419ed32e21397ea4e1971d92a5808ed6fb8"; }; @@ -25264,7 +25503,7 @@ in modules // { ofxclient = buildPythonPackage rec { name = "ofxclient-1.3.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/ofxclient/${name}.tar.gz"; + url = "mirror://pypi/o/ofxclient/${name}.tar.gz"; sha256 = "99ab03bffdb30d9ec98724898f428f8e73129483417d5892799a0f0d2249f233"; }; @@ -25277,7 +25516,7 @@ in modules // { ofxhome = buildPythonPackage rec { name = "ofxhome-0.3.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/ofxhome/${name}.tar.gz"; + url = "mirror://pypi/o/ofxhome/${name}.tar.gz"; sha256 = "0000db437fd1a8c7c65cea5d88ce9d3b54642a1f4844dde04f860e29330ac68d"; }; @@ -25296,7 +25535,7 @@ in modules // { ofxparse = buildPythonPackage rec { name = "ofxparse-0.14"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/ofxparse/${name}.tar.gz"; + url = "mirror://pypi/o/ofxparse/${name}.tar.gz"; sha256 = "d8c486126a94d912442d040121db44fbc4a646ea70fa935df33b5b4dbfbbe42a"; }; @@ -25312,7 +25551,7 @@ in modules // { ofxtools = buildPythonPackage rec { name = "ofxtools-0.3.8"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/ofxtools/${name}.tar.gz"; + url = "mirror://pypi/o/ofxtools/${name}.tar.gz"; sha256 = "88f289a60f4312a1599c38a8fb3216e2b46d10cc34476f9a16a33ac8aac7ec35"; }; meta = { @@ -25363,7 +25602,7 @@ in modules // { name = "dicttoxml-1.6.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dicttoxml/dicttoxml-1.6.4.tar.gz"; + url = "mirror://pypi/d/dicttoxml/dicttoxml-1.6.4.tar.gz"; sha256 = "5f29e95fec56680823dc41911c04c2af08727ee53c1b60e83c489212bab71161"; }; @@ -25381,7 +25620,7 @@ in modules // { version = "2.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/markdown2/${name}.zip"; + url = "mirror://pypi/m/markdown2/${name}.zip"; sha256 = "073zyx3caqa9zlzxa82k9k2nhhn8c5imqpgp5nwqnh0fgaj9pqn8"; }; propagatedBuildInputs = with self; []; @@ -25400,7 +25639,7 @@ in modules // { disabled = ! isPy27; #some dependencies do not work with py3 src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/e/evernote/${name}.tar.gz"; + url = "mirror://pypi/e/evernote/${name}.tar.gz"; sha256 = "1lwlg6fpi3530245jzham1400a5b855bm4sbdyck229h9kg1v02d"; }; @@ -25419,7 +25658,7 @@ in modules // { version = "1.1.9"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/setproctitle/setproctitle-${version}.tar.gz"; + url = "mirror://pypi/s/setproctitle/setproctitle-${version}.tar.gz"; sha256 = "1mqadassxcm0m9r1l02m5vr4bbandn48xz8gifvxmb4wiz8i8d0w"; }; @@ -25436,7 +25675,7 @@ in modules // { version = "0.9.3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/thrift/${name}.tar.gz"; + url = "mirror://pypi/t/thrift/${name}.tar.gz"; sha256 = "dfbc3d3bd19d396718dab05abaf46d93ae8005e2df798ef02e32793cd963877e"; }; @@ -25492,7 +25731,7 @@ in modules // { disabled = isPy34; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/trollius/${name}.tar.gz"; + url = "mirror://pypi/t/trollius/${name}.tar.gz"; sha256 = "8884cae4ec6a2d593abcffd5e700626ad4618f42b11beb2b75998f2e8247de76"; }; @@ -25550,7 +25789,7 @@ in modules // { name = "neovim-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/neovim/${name}.tar.gz"; + url = "mirror://pypi/n/neovim/${name}.tar.gz"; sha256 = "93f475d5583a053af919ba0729b32b3fefef1dbde4717b5657d806bdc69b76b3"; }; @@ -25598,7 +25837,7 @@ in modules // { version = "0.4.1"; name = "ghp-import-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/ghp-import/${name}.tar.gz"; + url = "mirror://pypi/g/ghp-import/${name}.tar.gz"; sha256 = "6058810e1c46dd3b5b1eee87e203bdfbd566e10cfc77566edda7aa4dbf6a3053"; }; disabled = isPyPy; @@ -25617,7 +25856,7 @@ in modules // { typogrify = buildPythonPackage rec { name = "typogrify-2.0.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/typogrify/${name}.tar.gz"; + url = "mirror://pypi/t/typogrify/${name}.tar.gz"; sha256 = "8be4668cda434163ce229d87ca273a11922cb1614cb359970b7dc96eed13cb38"; }; disabled = isPyPy; @@ -25655,7 +25894,7 @@ in modules // { name = "pypeg2-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pyPEG2/pyPEG2-${version}.tar.gz"; + url = "mirror://pypi/p/pyPEG2/pyPEG2-${version}.tar.gz"; sha256 = "f4814a5f9c84bbb0794bef8d2a5871f4aed25366791c55e2162681873ad8bd21"; }; @@ -25671,7 +25910,7 @@ in modules // { disabled = ! (isPy26 || isPy27); src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/j/jenkins-job-builder/${name}.tar.gz"; + url = "mirror://pypi/j/jenkins-job-builder/${name}.tar.gz"; sha256 = "10zipq3dyyfhwvrcyk70zky07b0fssiahwig2h8daw977aszsfqb"; }; @@ -25708,7 +25947,7 @@ in modules // { name = "dot2tex-2.9.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dot2tex/dot2tex-2.9.0.tar.gz"; + url = "mirror://pypi/d/dot2tex/dot2tex-2.9.0.tar.gz"; sha256 = "7d3e54add7dccdaeb6cc9e61ceaf7b587914cf8ebd6821cfea008acdc1e50d4a"; }; @@ -25762,7 +26001,7 @@ in modules // { name = "potr-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-potr/python-${name}.zip"; + url = "mirror://pypi/p/python-potr/python-${name}.zip"; sha256 = "1b3vjbv8hvynwj6amw3rg5zj8bagynbj0ipy09xwksf1mb0kz8m8"; }; @@ -25781,7 +26020,7 @@ in modules // { version = "0.3.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pluggy/${name}.tar.gz"; + url = "mirror://pypi/p/pluggy/${name}.tar.gz"; sha256 = "18qfzfm40bgx672lkg8q9x5hdh76n7vax99aank7vh2nw21wg70m"; }; @@ -25798,7 +26037,7 @@ in modules // { name = "xcffib-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/x/xcffib/${name}.tar.gz"; + url = "mirror://pypi/x/xcffib/${name}.tar.gz"; sha256 = "a84eecd5a1bb7570e26c83aca87a2016578ca4e353e1fa56189e95bdef063e6a"; }; @@ -25822,7 +26061,7 @@ in modules // { version = "0.5.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pafy/${name}.tar.gz"; + url = "mirror://pypi/p/pafy/${name}.tar.gz"; sha256 = "1q699dcnq34nfgm0bg8mp5krhzk9cyirqdcadhs9al4fa5410igw"; }; @@ -25841,7 +26080,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/suds/suds-0.4.tar.gz"; + url = "mirror://pypi/s/suds/suds-0.4.tar.gz"; sha256 = "1w4s9051iv90c0gs73k80c3d51y2wbx1xgfdgg2hk7mv4gjlllnm"; }; @@ -25860,7 +26099,7 @@ in modules // { disabled = isPyPy; # lots of failures src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/suds-jurko/${name}.zip"; + url = "mirror://pypi/s/suds-jurko/${name}.zip"; sha256 = "1s4radwf38kdh3jrn5acbidqlr66sx786fkwi0rgq61hn4n2bdqw"; }; @@ -25885,7 +26124,7 @@ in modules // { disabled = !isPy27; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/maildir-deduplicate/${name}.tar.gz"; + url = "mirror://pypi/m/maildir-deduplicate/${name}.tar.gz"; sha256 = "1xy5z756alrjgpl9qx2gdx898rw1mryrqkwmipbh39mgrvkl3fz9"; }; @@ -25928,7 +26167,7 @@ in modules // { buildInputs = with self; [ nose ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/d2to1/d2to1-${version}.tar.gz"; + url = "mirror://pypi/d/d2to1/d2to1-${version}.tar.gz"; sha256 = "1a5z367b7dpd6dgi0w8pymb68aj2pblk8w04l2c8hibhj8dpl2b4"; }; @@ -25948,7 +26187,7 @@ in modules // { propagatedBuildInputs = with self; [ requests2 ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/ovh/ovh-${version}.tar.gz"; + url = "mirror://pypi/o/ovh/ovh-${version}.tar.gz"; sha256 = "1y74lrdlgbb786mwas7ynphimfi00dgr67ncjq20kdf31jg5415n"; }; @@ -25966,7 +26205,7 @@ in modules // { disabled = pythonOlder "2.7"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/W/Willow/Willow-${version}.tar.gz"; + url = "mirror://pypi/W/Willow/Willow-${version}.tar.gz"; sha256 = "111c82fbfcda2710ce6201b0b7e0cfa1ff3c4f2f0dc788cc8dfc8db933c39c73"; }; @@ -25991,7 +26230,7 @@ in modules // { doCheck = false; # missing json file from tarball src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/i/${simpleName}/${name}.tar.gz"; + url = "mirror://pypi/i/${simpleName}/${name}.tar.gz"; sha256 = "194bl8l8sc2ibwi6g5kz6xydkbngdqpaj6r2gcsaw1fc73iswwrj"; }; @@ -26019,7 +26258,7 @@ in modules // { xstatic-pygments ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/bepasty/bepasty-${version}.tar.gz"; + url = "mirror://pypi/b/bepasty/bepasty-${version}.tar.gz"; sha256 = "0bs79pgrjlnkmjfyj2hllbx3rw757va5w2g2aghi9cydmsl7gyi4"; }; @@ -26035,7 +26274,7 @@ in modules // { name = "xkcdpass-${version}"; version = "1.4.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/x/xkcdpass/xkcdpass-1.4.2.tar.gz"; + url = "mirror://pypi/x/xkcdpass/xkcdpass-1.4.2.tar.gz"; sha256 = "4c1f8bee886820c42ccc64c15c3a2275dc6d01028cf6af7c481ded87267d8269"; }; @@ -26055,7 +26294,7 @@ in modules // { name = "XStatic-${version}"; version = "1.0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/X/XStatic/XStatic-${version}.tar.gz"; + url = "mirror://pypi/X/XStatic/XStatic-${version}.tar.gz"; sha256 = "09npcsyf1ccygjs0qc8kdsv4qqy8gm1m6iv63g9y1fgbcry3vj8f"; }; meta = { @@ -26070,7 +26309,7 @@ in modules // { name = "xlsx2csv-${version}"; version = "0.7.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/x/xlsx2csv/${name}.tar.gz"; + url = "mirror://pypi/x/xlsx2csv/${name}.tar.gz"; sha256 = "7c6c8fa6c2774224d03a6a96049e116822484dccfa3634893397212ebcd23866"; }; meta = { @@ -26106,7 +26345,7 @@ in modules // { name = "XStatic-Bootbox-${version}"; version = "4.3.0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/X/XStatic-Bootbox/XStatic-Bootbox-${version}.tar.gz"; + url = "mirror://pypi/X/XStatic-Bootbox/XStatic-Bootbox-${version}.tar.gz"; sha256 = "0wks1lsqngn3gvlhzrvaan1zj8w4wr58xi0pfqhrzckbghvvr0gj"; }; @@ -26122,7 +26361,7 @@ in modules // { name = "XStatic-Bootstrap-${version}"; version = "3.3.5.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/X/XStatic-Bootstrap/XStatic-Bootstrap-${version}.tar.gz"; + url = "mirror://pypi/X/XStatic-Bootstrap/XStatic-Bootstrap-${version}.tar.gz"; sha256 = "0jzjq3d4vp2shd2n20f9y53jnnk1cvphkj1v0awgrf18qsy2bmin"; }; @@ -26138,7 +26377,7 @@ in modules // { name = "XStatic-jQuery-${version}"; version = "1.10.2.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/X/XStatic-jQuery/XStatic-jQuery-${version}.tar.gz"; + url = "mirror://pypi/X/XStatic-jQuery/XStatic-jQuery-${version}.tar.gz"; sha256 = "018kx4zijflcq8081xx6kmiqf748bsjdq7adij2k91bfp1mnlhc3"; }; @@ -26155,7 +26394,7 @@ in modules // { version = "9.7.0.1"; propagatedBuildInputs = with self;[ xstatic-jquery ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/X/XStatic-jQuery-File-Upload/XStatic-jQuery-File-Upload-${version}.tar.gz"; + url = "mirror://pypi/X/XStatic-jQuery-File-Upload/XStatic-jQuery-File-Upload-${version}.tar.gz"; sha256 = "0d5za18lhzhb54baxq8z73wazq801n3qfj5vgcz7ri3ngx7nb0cg"; }; @@ -26172,7 +26411,7 @@ in modules // { version = "1.11.0.1"; propagatedBuildInputs = with self; [ xstatic-jquery ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/X/XStatic-jquery-ui/XStatic-jquery-ui-${version}.tar.gz"; + url = "mirror://pypi/X/XStatic-jquery-ui/XStatic-jquery-ui-${version}.tar.gz"; sha256 = "0n6sgg9jxrqfz4zg6iqdmx1isqx2aswadf7mk3fbi48dxcv1i6q9"; }; @@ -26188,7 +26427,7 @@ in modules // { name = "XStatic-Pygments-${version}"; version = "1.6.0.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/X/XStatic-Pygments/XStatic-Pygments-${version}.tar.gz"; + url = "mirror://pypi/X/XStatic-Pygments/XStatic-Pygments-${version}.tar.gz"; sha256 = "0fjqgg433wfdnswn7fad1g6k2x6mf24wfnay2j82j0fwgkdxrr7m"; }; @@ -26205,7 +26444,7 @@ in modules // { name = "hidapi-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/h/hidapi/${name}.tar.gz"; + url = "mirror://pypi/h/hidapi/${name}.tar.gz"; sha256 = "1jaj0y5vn5yk033q01wacsz379mf3sy66d6gz072ycfr5rahcp59"; }; @@ -26233,7 +26472,7 @@ in modules // { name = "mnemonic-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/mnemonic/${name}.tar.gz"; + url = "mirror://pypi/m/mnemonic/${name}.tar.gz"; sha256 = "0j5jm4v54135qqw455fw4ix2mhxhzjqvxji9gqkpxagk31cvbnj4"; }; @@ -26252,7 +26491,7 @@ in modules // { name = "trezor-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/trezor/${name}.tar.gz"; + url = "mirror://pypi/t/trezor/${name}.tar.gz"; sha256 = "0nqbjj0mvkp314hpq36px12hxbyidmhsdflq3121l4g9y3scfbnx"; }; @@ -26276,7 +26515,7 @@ in modules // { name = "keepkey-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/k/keepkey/${name}.tar.gz"; + url = "mirror://pypi/k/keepkey/${name}.tar.gz"; sha256 = "1ikyp4jpydskznsrlwmxh9sn7b64aldwj2lf0phmb19r5kk06qmp"; }; @@ -26300,7 +26539,7 @@ in modules // { version = "2.2.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/s/semver/${name}.tar.gz"; + url = "mirror://pypi/s/semver/${name}.tar.gz"; sha256 = "161gvsfpw0l8lnf1v19rvqc8b9f8n70cc8ppya4l0n6rwc1c1n4m"; }; @@ -26317,7 +26556,7 @@ in modules // { version = "1.4"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/e/ed25519/${name}.tar.gz"; + url = "mirror://pypi/e/ed25519/${name}.tar.gz"; sha256 = "0ahx1nkxa0xis3cw0h5c4fpgv8mq4znkq7kajly33lc3317bk499"; }; @@ -26334,7 +26573,7 @@ in modules // { name = "trezor_agent-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/trezor_agent/${name}.tar.gz"; + url = "mirror://pypi/t/trezor_agent/${name}.tar.gz"; sha256 = "0wpppxzld7kqqxdvy80qc8629n047vm3m3nk171i7hijfw285p0b"; }; @@ -26353,7 +26592,7 @@ in modules // { name = "x11_hash-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/x/x11_hash/${name}.tar.gz"; + url = "mirror://pypi/x/x11_hash/${name}.tar.gz"; sha256 = "172skm9xbbrivy1p4xabxihx9lsnzi53hvzryfw64m799k2fmp22"; }; @@ -26369,7 +26608,7 @@ in modules // { name = "python-termstyle-${version}"; version = "0.1.10"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/python-termstyle/${name}.tar.gz"; + url = "mirror://pypi/p/python-termstyle/${name}.tar.gz"; sha256 = "1qllzkx1alf14zcfapppf8w87si4cpa7lgjmdp3f5idzdyqnnapl"; }; @@ -26385,7 +26624,7 @@ in modules // { name = "green-${version}"; version = "2.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/green/${name}.tar.gz"; + url = "mirror://pypi/g/green/${name}.tar.gz"; sha256 = "1888khfl9yxb8yfxq9b48dxwplqlxx8s0l530z5j7c6bx74v08b4"; }; @@ -26423,4 +26662,210 @@ in modules // { }; }; + w3lib = buildPythonPackage rec { + name = "w3lib-${version}"; + version = "1.14.2"; + + buildInputs = with self ; [ six pytest ]; + + src = pkgs.fetchurl { + url = "mirror://pypi/w/w3lib/${name}.tar.gz"; + sha256 = "bd87eae62d208eef70869951abf05e96a8ee559714074a485168de4c5b190004"; + }; + + meta = { + description = "A library of web-related functions"; + homepage = "https://github.com/scrapy/w3lib"; + license = licenses.bsd3; + maintainers = with maintainers; [ drewkett ]; + }; + }; + + queuelib = buildPythonPackage rec { + name = "queuelib-${version}"; + version = "1.4.2"; + + src = pkgs.fetchurl { + url = "mirror://pypi/q/queuelib/${name}.tar.gz"; + sha256 = "a6829918157ed433fafa87b0bb1e93e3e63c885270166db5884a02c34c86f914"; + }; + + buildInputs = with self ; [ pytest ]; + + meta = { + description = "A collection of persistent (disk-based) queues for Python"; + homepage = "https://github.com/scrapy/queuelib"; + license = licenses.bsd3; + maintainers = with maintainers; [ drewkett ]; + }; + }; + + scrapy = buildPythonPackage rec { + name = "Scrapy-${version}"; + version = "1.0.5"; + + disabled = isPy3k; + + buildInputs = with self ; [ pytest ]; + propagatedBuildInputs = with self ; [ six twisted w3lib lxml cssselect queuelib pyopenssl service-identity ]; + + src = pkgs.fetchurl { + url = "mirror://pypi/S/Scrapy/${name}.tar.gz"; + sha256 = "0a51c785a310d65f6e70285a2da56d48ef7d049bd7fd60a08eef05c52328ca96"; + }; + + meta = { + description = "A fast high-level web crawling and web scraping framework, used to crawl websites and extract structured data from their pages"; + homepage = "http://scrapy.org/"; + license = licenses.bsd3; + maintainers = with maintainers; [ drewkett ]; + platforms = platforms.linux; + }; + }; + pandocfilters = buildPythonPackage rec{ + version = "1.3.0"; + pname = "pandocfilters"; + name = pname + "-${version}"; + + src = pkgs.fetchFromGitHub { + owner = "jgm"; + repo = pname; + rev = version; + sha256 = "0ky9k800ixwiwvra0na6d6qaqcyps83mycgd8qvkrn5r80hddkzz"; + }; + + propagatedBuildInputs = with self; [ ]; + + meta = { + description = "A python module for writing pandoc filters, with a collection of examples"; + homepage = https://github.com/jgm/pandocfilters; + license = licenses.mit; + maintainers = with maintainers; []; + }; + }; + + htmltreediff = buildPythonPackage rec{ + version = "0.1.2"; + pname = "htmltreediff"; + name = pname + "-${version}"; + + # Does not work with Py >= 3 + disabled = !isPy27; + + src = pkgs.fetchFromGitHub { + owner = "christian-oudard"; + repo = pname; + rev = "v" + version; + sha256 = "16mqp2jyznrw1mgd3qzybq28h2k5wz7vmmz1m6xpgscazyjhvvd1"; + }; + + propagatedBuildInputs = with self; [ lxml html5lib ]; + + meta = { + description = " Structure-aware diff for html and xml documents"; + homepage = https://github.com/christian-oudard/htmltreediff; + license = licenses.bsdOriginal; + maintainers = with maintainers; []; + }; + }; + + repeated_test = buildPythonPackage rec { + name = "repeated_test-${version}"; + version = "0.1a3"; + + src = pkgs.fetchurl { + url = "mirror://pypi/r/repeated-test/${name}.tar.gz"; + sha256 = "062syp7kl2g0x6qx3z8zb5sdycpi7qcpxp9iml2v8dqzqnij9bpg"; + }; + + buildInputs = with self; [ + unittest2 + ]; + propagatedBuildInputs = with self; [ + six + ]; + + meta = { + description = "A quick unittest-compatible framework for repeating a test function over many fixtures"; + homepage = "https://github.com/epsy/repeated_test"; + license = licenses.mit; + }; + }; + + sigtools = buildPythonPackage rec { + name = "sigtools-${version}"; + version = "1.1a3"; + + src = pkgs.fetchurl { + url = "mirror://pypi/s/sigtools/${name}.tar.gz"; + sha256 = "190w14vzbiyvxcl9jmyyimpahar5b0bq69v9iv7chi852yi71w6w"; + }; + + buildInputs = with self; [ + repeated_test + sphinx + mock + coverage + unittest2 + ]; + propagatedBuildInputs = with self; [ + funcsigs + six + ]; + + patchPhase = ''sed -i s/test_suite="'"sigtools.tests"'"/test_suite="'"unittest2.collector"'"/ setup.py''; + + meta = { + description = "Utilities for working with 3.3's inspect.Signature objects."; + homepage = "https://pypi.python.org/pypi/sigtools"; + license = licenses.mit; + }; + }; + + clize = buildPythonPackage rec { + name = "clize-${version}"; + version = "3.0"; + + src = pkgs.fetchurl { + url = "mirror://pypi/c/clize/${name}.tar.gz"; + sha256 = "1xkr3h404d7pgj5gdpg6bddv3v3yq2hgx8qlwkgw5abg218k53hm"; + }; + + buildInputs = with self; [ + dateutil + ]; + propagatedBuildInputs = with self; [ + sigtools + ]; + + meta = { + description = "Command-line argument parsing for Python"; + homepage = "https://github.com/epsy/clize"; + license = licenses.mit; + }; + }; + + zerobin = buildPythonPackage rec { + name = "zerobin-${version}"; + version = "20160108"; + + src = pkgs.fetchFromGitHub { + owner = "sametmax"; + repo = "0bin"; + rev = "7da1615"; + sha256 = "1pzcwy454kn5216pvwjqzz311s6jbh7viw9s6kw4xps6f5h44bid"; + }; + + propagatedBuildInputs = with self; [ + cherrypy + bottle + lockfile + clize + ]; + meta = { + description = "A client side encrypted pastebin"; + homepage = "http://0bin.net/"; + license = licenses.wtfpl; + }; + }; } diff --git a/pkgs/top-level/release-small.nix b/pkgs/top-level/release-small.nix index 95df07ea709..fd269eef291 100644 --- a/pkgs/top-level/release-small.nix +++ b/pkgs/top-level/release-small.nix @@ -104,7 +104,6 @@ with import ./release-lib.nix { inherit supportedSystems; }; mingetty = linux; mk = linux; mktemp = all; - module_init_tools = linux; mono = linux; monotone = linux; mpg321 = linux; diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index 5aa1fd87881..3301f2e14cc 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -96,7 +96,6 @@ let ddrescue = linux; dhcp = linux; dico = linux; - dietlibc = linux; diffutils = all; disnix = all; disnixos = linux; @@ -183,6 +182,7 @@ let pythonFull = linux; sbcl = linux; qt3 = linux; + qt4_clang = ["i686-linux"]; quake3demo = linux; reiserfsprogs = linux; rubber = allBut cygwin; diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix index a829445d7b5..d3a84d416d1 100644 --- a/pkgs/top-level/rust-packages.nix +++ b/pkgs/top-level/rust-packages.nix @@ -7,20 +7,20 @@ { runCommand, fetchFromGitHub, git }: let - version = "2016-04-02"; - rev = "b705d049d78f96bc27c58ccec7902e65d90826bd"; + version = "2016-04-23"; + rev = "ae2c4051b5df822213c3382bf0d1daaef38ea90c"; src = fetchFromGitHub { inherit rev; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "1aspn79i1rw9migw7j0m12ghdq9cqhq8n2vzxy6hy1l728j3ykdp"; + sha256 = "17ypnb59w4j2f51qpyx5jidkgqvsrk3c7b3mc5s85niy7mvk8wy4"; }; in -runCommand "rustRegistry-${version}-${builtins.substring 0 7 rev}" {} '' +runCommand "rustRegistry-${version}-${builtins.substring 0 7 rev}" { inherit src; } '' # For some reason, cargo doesn't like fetchgit's git repositories, not even # if we set leaveDotGit to true, set the fetchgit branch to 'master' and clone # the repository (tested with registry rev